* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter, sans-serif;
}

body {
  background: #000;
}


/* NAVBAR */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 20px 60px;
  display: flex;
  align-items: center;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(10px);
}
.center-menu {
  margin: 0 auto;
  display: flex;
  gap: 40px;
}


.center-menu a {
  text-decoration: none;
  color: #aaa;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.center-menu a:hover {
  color: #fff;
}


.menu a {
  margin-left: 30px;
  text-decoration: none;
  color: #aaa;
}

.menu a:hover {
  color: #fff;
}

/* SERVICES */
.services-section {
  display: flex;
  padding: 100px 60px;
  gap: 80px;
}

.services-left {
  width: 35%;
  position: sticky;
  top: 140px;
}

.services-left h1 {
  font-size: 72px;
  line-height: 1;
  letter-spacing: -2px;
}



.services-left p {
  font-size: 16px;
  line-height: 1.6;
}


.services-right {
  width: 65%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.service-card {
  border-top: 1px solid #222;
  padding-top: 30px;
}

.service-card h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.service-card p {
  color: #888;
  max-width: 420px;
}
.service-card {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* FOOTER */
footer {
  padding: 40px;
  text-align: center;
  color: #555;
}
/* ANIMATIONS */
.service-card {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.8s ease forwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* HOVER MAGIC */
.service-card:hover {
  border-top-color: #fff;
  transform: translateY(-6px);
  transition: 0.4s ease;
}
.logo {
  font-weight: 600;
  letter-spacing: 1px;
  position: relative;
}

body {
  cursor: crosshair;
}
.nav {
  backdrop-filter: blur(10px);
  background: rgba(0,0,0,0.7);
}
.center-menu a {
  position: relative;
}

.center-menu a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #fff;
  transition: 0.3s ease;
}

.center-menu a:hover::after {
  width: 100%;
}
/* WORK PAGE */

.work-hero {
  padding: 120px 60px 60px;
}

.work-hero h1 {
  font-size: 64px;
  letter-spacing: -2px;
}

.work-hero p {
  margin-top: 10px;
  color: #888;
}

/* GRID */
.work-grid {
  padding: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

.work-card {
  cursor: pointer;
}

.work-img {
  height: 220px;
  background: linear-gradient(135deg, #1a1a1a, #000);
  border-radius: 12px;
  margin-bottom: 16px;
  transition: 0.4s ease;
}

.work-card h3 {
  font-size: 18px;
  margin-bottom: 4px;
}

.work-card span {
  font-size: 14px;
  color: #777;
}

/* HOVER EFFECT */
.work-card:hover .work-img {
  transform: scale(1.04);
}
/* CUSTOM CURSOR */

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  background: rgba(255,255,255,0.9);
  color: #000;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.1s ease;
  z-index: 9999;
}

.cursor.active {
  opacity: 1;
}
.work-card {
  cursor: none;
}
/* ABOUT PAGE */

.about-section {
  padding: 120px 60px;
  max-width: 1000px;
}

.about-section h1 {
  font-size: 56px;
  margin-bottom: 20px;
}

.about-intro {
  color: #888;
  max-width: 600px;
  margin-bottom: 60px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

.about-grid h3 {
  margin-bottom: 10px;
}

.about-grid p {
  color: #888;
  line-height: 1.6;
}
/* CONTACT PAGE */

.contact-section {
  padding: 120px 60px;
}

.contact-section h1 {
  font-size: 56px;
  margin-bottom: 10px;
}

.contact-section p {
  color: #888;
  margin-bottom: 40px;
}

.contact-box p {
  margin-bottom: 10px;
  font-size: 16px;
}
/* BLOG PAGE */

.blog-hero {
  padding: 120px 60px 60px;
}

.blog-hero h1 {
  font-size: 56px;
  letter-spacing: -2px;
}

.blog-hero p {
  margin-top: 10px;
  color: #888;
}

/* BLOG GRID */
.blog-grid {
  padding: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.blog-card {
  cursor: pointer;
}

.blog-img {
  height: 200px;
  background: linear-gradient(135deg, #1a1a1a, #000);
  border-radius: 12px;
  margin-bottom: 14px;
  transition: 0.4s ease;
}

.blog-card h3 {
  font-size: 18px;
  margin: 10px 0 6px;
}

.blog-card p {
  color: #777;
  font-size: 14px;
}

.blog-date {
  font-size: 12px;
  color: #666;
}

/* HOVER */
.blog-card:hover .blog-img {
  transform: scale(1.05);
}
/* HOME PAGE */

/* HERO */
.hero-section {
  height: 100vh;
  padding: 160px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.hero-section h1 {
  font-size: 64px;
  line-height: 1.05;
  letter-spacing: -2px;
  max-width: 900px;
}

.hero-section p {
  margin-top: 20px;
  color: #888;
  font-size: 18px;
}

.hero-actions {
  margin-top: 40px;
  display: flex;
  gap: 20px;
}
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: #000;
}


/* VIDEO = PURE BACKGROUND */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* DARK LAYER */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

/* CONTENT ON TOP */
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
  color: #fff;
  padding: 0 20px;
}
.hero-content h1 {
  max-width: 900px;
  font-size: 56px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-content .subtitle {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 8px;
}

.hero-content .tagline {
  font-size: 14px;
  opacity: 0.7;
}



/* CTA BUTTONS – CLEAN & PREMIUM */

.btn-primary {
  padding: 14px 34px;
  background: #ffffff;
  color: #000;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-radius: 40px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255,255,255,0.15);
}

.btn-secondary {
  padding: 14px 34px;
  background: transparent;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  border-radius: 40px;
  border: 1px solid rgba(255,255,255,0.25);
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.5);
}


.scroll-indicator {
  position: absolute;
  bottom: 40px;
  font-size: 12px;
  letter-spacing: 2px;
  color: #666;
  animation: bounce 1.8s infinite;
}

@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}







.view-all {
  display: inline-block;
  margin-top: 30px;
  color: #aaa;
  text-decoration: none;
}

/* CTA */
.home-cta {
  padding: 140px 60px;
  text-align: center;
  background: #000;
}

.home-cta h2 {
  font-size: 48px;
}

.home-cta p {
  color: #888;
  margin: 20px 0 40px;
}
/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width: 768px) {

  /* NAVBAR */
  .nav {
    padding: 16px 20px;
  }

  .center-menu {
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .center-menu a {
    font-size: 12px;
  }

  
/* STATS CENTER */
.home-stats {
  margin: 50px 0 40px;
  display: flex;
  justify-content: center;
  gap: 60px;
}

.home-stats h3 {
  font-size: 36px;
}

.home-stats span {
  font-size: 14px;
  color: #888;
}

/* BUTTONS CENTER */
.hero-actions {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
}


  .scroll-indicator {
    display: none;
  }

  /* WHAT WE DO */
  .home-services {
    padding: 80px 20px;
  }

  .home-services h2 {
    font-size: 32px;
  }

  .home-services-grid div {
    padding: 28px;
    text-align: center;
  }

  /* WORK PREVIEW */
  .home-work {
    padding: 80px 20px;
  }

  .home-work h2 {
    font-size: 32px;
  }

  .work-preview {
    height: 180px;
  }

  /* CTA */
  .home-cta {
    padding: 100px 20px;
  }

  .home-cta h2 {
    font-size: 34px;
  }

  /* SERVICES PAGE */
  .services-section {
    flex-direction: column;
    padding: 80px 20px;
  }

  .services-left,
  .services-right {
    width: 100%;
  }

  .services-left h1 {
    font-size: 42px;
  }
  

  /* ABOUT PAGE */
  .about-section {
    padding: 80px 20px;
  }

  .about-section h1 {
    font-size: 42px;
  }

  /* WORK PAGE */
  .work-hero {
    padding: 100px 20px 40px;
  }

  .work-hero h1 {
    font-size: 42px;
  }

  .work-grid {
    padding: 40px 20px;
  }

  /* BLOG PAGE */
  .blog-hero {
    padding: 100px 20px 40px;
  }

  .blog-hero h1 {
    font-size: 42px;
  }

  .blog-grid {
    padding: 40px 20px;
  }

  /* CONTACT */
  .contact-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 20px;
}


  .contact-section h1 {
    font-size: 42px;
  }

}
/* HAMBURGER */
.hamburger {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* MOBILE NAV */
@media (max-width: 768px) {

  .nav {
    position: relative;
  }

  .hamburger {
    display: block;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 26px;
    cursor: pointer;
  }

  .center-menu {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    width: 100%;
    background: #000;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
  }

  .center-menu a {
    padding: 12px 0;
  }

  .center-menu.active {
    display: flex;
  }
}


.contact-form {
  max-width: 400px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  background: #111;
  border: none;
  color: #fff;
}

.contact-form button {
  padding: 12px;
  background: #fff;
  color: #000;
  border: none;
  cursor: pointer;
}
.whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #25D366;
  color: #fff;
  padding: 14px;
  border-radius: 50%;
  font-size: 22px;
  text-decoration: none;
  z-index: 999;
}
/* CASE STUDY PAGE */

.case-hero {
  padding: 140px 60px 80px;
  max-width: 900px;
}

.case-hero h1 {
  font-size: 56px;
  letter-spacing: -2px;
}

.case-hero p {
  margin-top: 14px;
  color: #888;
  font-size: 18px;
}

.case-content {
  padding: 60px;
  max-width: 900px;
}

.case-block {
  margin-bottom: 60px;
}

.case-block h2 {
  margin-bottom: 14px;
}

.case-block p,
.case-block li {
  color: #888;
  line-height: 1.7;
}

.case-block ul {
  padding-left: 20px;
}

.case-results {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.case-results div {
  background: #111;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
}

.case-results h3 {
  font-size: 32px;
}
/* TEXT REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  animation: revealUp 0.8s ease forwards;
}

.reveal.delay {
  animation-delay: 0.2s;
}

@keyframes revealUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* STATS */
.home-stats {
  padding: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 30px;
  text-align: center;
}

.home-stats h3 {
  font-size: 36px;
}

.home-stats span {
  color: #888;
  font-size: 14px;
}
/* TESTIMONIALS */
.home-testimonials {
  padding: 120px 60px;
  max-width: 700px;
}

.home-testimonials h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

.home-testimonials p {
  color: #888;
  font-size: 18px;
  line-height: 1.6;
}

.home-testimonials span {
  display: block;
  margin-top: 14px;
  color: #666;
}

/* FOOTER */

.site-footer {
  padding: 80px 60px;
  text-align: center;
  background: #000;
}

.footer-tagline {
  font-size: 18px;
  color: #aaa;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
}

.footer-socials a {
  color: #777;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s ease;
}

.footer-socials a:hover {
  color: #fff;
}

.footer-copy {
  font-size: 12px;
  color: #555;
}

/* Mobile footer */
@media (max-width: 768px) {
  .site-footer {
    padding: 60px 20px;
  }

  .footer-tagline {
    font-size: 16px;
  }
}
.nav-link.active {
  color: #fff;
}

.nav-link.active::after {
  width: 100%;
}
#loader {
  position: fixed;
  inset: 0;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#loader span {
  width: 40px;
  height: 40px;
  border: 3px solid #444;
  border-top: 3px solid #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}
/* SECTION DEPTH */

.home-services {
  background: #0f0f0f;
}

.home-work {
  background: #0b0b0b;
}

.home-cta {
  background: linear-gradient(180deg, #0f0f0f, #000);
}
.service-card,
.work-preview,
.blog-card,
.case-results div {
  background: #121212;
  border: 1px solid #1e1e1e;
}
.testimonials h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

.testimonials p {
  font-size: 18px;
  line-height: 1.6;
  color: #bfbfbf;
}

.testimonials .author {
  margin-top: 15px;
  font-size: 14px;
  color: #888;
}
/* ===== FORCE HERO CENTER FIX ===== */

.hero-section {
  min-height: 100vh !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  padding: 0 !important;
}

.hero-content {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  
}

/* BUTTONS FORCE CENTER */
.hero-actions {
  display: flex !important;
  justify-content: center !important;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

/* STATS FORCE CENTER */
.home-stats {
  display: flex !important;
  justify-content: center !important;
  align-items: center;
  gap: 60px;
  margin: 50px 0;
}
/* WHAT WE DO – PERFECT IMAGE FIT (NO ZOOM) */

.service-box {
  position: relative;
  height: 260px;
  background: #111;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

/* IMAGE */
.service-box img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;   /* 👈 MOST IMPORTANT LINE */
  object-position: center;
}

/* DARK OVERLAY */
.service-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.1),
    rgba(0,0,0,0.75)
  );
  z-index: 1;
}

/* TEXT */
.service-box h3 {
  position: relative;
  z-index: 2;
  font-size: 20px;
}
/* SERVICE HOVER NOTE */

.service-note {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  font-size: 13px;
  color: #ddd;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.3s ease;
  z-index: 3;
}

/* Show note on hover */
.service-box:hover .service-note {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 768px) {
  .service-note {
    display: none;
  }
}
/* SERVICE CONTENT FIX */

.service-box {
  position: relative;
}

.service-content {
  position: relative;
  z-index: 3;
}

.service-content h3 {
  margin-bottom: 6px;
}

/* NOTE */
.service-note {
  display: block;
  font-size: 13px;
  color: #ccc;
  opacity: 0;
  transform: translateY(6px);
  transition: 0.3s ease;
}

/* Hover pe note show */
.service-box:hover .service-note {
  opacity: 1;
  transform: translateY(0);
}
/* SERVICES PAGE */

.services-hero {
  padding: 140px 60px 80px;
  max-width: 900px;
}

.services-hero h1 {
  font-size: 56px;
  margin-bottom: 16px;
}

.services-hero p {
  color: #9a9a9a;
  max-width: 600px;
}


/* SERVICES LIST */

.services-list {
  padding: 60px;
  max-width: 900px;
}

.service-item {
  padding: 40px 0;
  border-bottom: 1px solid #1e1e1e;
}

.service-item:last-child {
  border-bottom: none;
}

.service-item h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.service-item p {
  color: #9a9a9a;
  max-width: 600px;
}

/* CTA */

.services-cta {
  padding: 120px 60px;
  text-align: center;
  background: #0f0f0f;
}

.services-cta h2 {
  font-size: 42px;
}

.services-cta p {
  color: #888;
  margin: 20px 0 40px;
}
@media (max-width: 768px) {

  .services-hero {
    padding: 100px 20px 60px;
  }

  .services-hero h1 {
    font-size: 38px;
  }

  .services-list {
    padding: 40px 20px;
  }

  .service-item h2 {
    font-size: 22px;
  }

  .services-cta {
    padding: 80px 20px;
  }

  .services-cta h2 {
    font-size: 32px;
  }
}
/* ATTRACTIVE SERVICES */

.service-item {
  padding: 50px 0;
  border-bottom: 1px solid #1e1e1e;
  transition: 0.3s ease;
}

.service-item:hover {
  transform: translateX(6px);
}

.service-tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 10px;
}

.service-item h2 {
  font-size: 32px;
  margin-bottom: 12px;
}

.service-item p {
  color: #9a9a9a;
  max-width: 520px;
  line-height: 1.6;
}
/* SERVICES ICON + CASE LINK */

.service-icon {
  font-size: 14px;
  color: #aaa;
  display: inline-block;
  margin-bottom: 10px;
}

.service-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 14px;
  color: #aaa;
  text-decoration: none;
  transition: 0.3s ease;
}

.service-link:hover {
  color: #fff;
  transform: translateX(4px);
}
/* CASE STUDY */

.case-hero {
  padding: 140px 60px 80px;
  max-width: 900px;
}

.case-hero h1 {
  font-size: 56px;
  margin-bottom: 12px;
}

.case-hero p {
  color: #9a9a9a;
  max-width: 600px;
}

.case-content {
  padding: 60px;
  max-width: 900px;
}

.case-block {
  margin-bottom: 60px;
}

.case-block h2 {
  margin-bottom: 12px;
}

.case-block p,
.case-block li {
  color: #9a9a9a;
  line-height: 1.7;
}

.case-block ul {
  padding-left: 20px;
}

.case-results {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.case-results div {
  background: #121212;
  padding: 30px;
  border-radius: 14px;
  text-align: center;
}

.case-results h3 {
  font-size: 32px;
}
/* ABOUT PAGE */

.about-hero {
  padding: 140px 60px 80px;
  max-width: 900px;
}

.about-hero h1 {
  font-size: 56px;
  margin-bottom: 16px;
}

.about-hero p {
  color: #9a9a9a;
  max-width: 650px;
}

/* CONTENT */

.about-content {
  padding: 60px;
  max-width: 900px;
}

.about-block {
  margin-bottom: 60px;
}

.about-block h2 {
  margin-bottom: 12px;
}

.about-block p {
  color: #9a9a9a;
  line-height: 1.7;
  max-width: 650px;
}

/* CTA */

.about-cta {
  padding: 120px 60px;
  background: #0f0f0f;
  text-align: center;
}

.about-cta h2 {
  font-size: 42px;
}

.about-cta p {
  color: #888;
  margin: 20px 0 40px;
}
@media (max-width: 768px) {

  .about-hero {
    padding: 100px 20px 60px;
  }

  .about-hero h1 {
    font-size: 38px;
  }

  .about-content {
    padding: 40px 20px;
  }

  .about-cta {
    padding: 80px 20px;
  }

  .about-cta h2 {
    font-size: 32px;
  }
}
/* CONTACT PAGE – CLEAN ALIGNMENT */

.contact-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 100px 60px;   /* 👈 kam padding */
  gap: 50px;             /* 👈 columns paas aaye */
}


/* LEFT INFO */

.contact-info h1 {
  font-size: 56px;
  margin-bottom: 8px;
}

.contact-info p {
  color: #9a9a9a;
  margin-bottom: 18px;
}

.contact-details p {
  color: #777;
  margin-bottom: 8px;
}

/* FORM */

.contact-form {
  max-width: 520px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  background: #121212;
  border: 1px solid #1e1e1e;
  color: #fff;
  font-size: 14px;
}

.contact-form textarea {
  min-height: 110px;
  margin-bottom: 16px;
}

.contact-form button {
  width: 100%;
}
@media (max-width: 768px) {
  .contact-page {
    padding: 80px 20px;
  }
}
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: radial-gradient(circle at top left, #111 0%, #000 45%);
  color: #fff;
}
.tagline {
  margin-top: 16px;
  font-size: 14px;
  letter-spacing: 1px;
  color: #aaa;
  text-transform: uppercase;
}
button {
  transition: all 0.3s ease;
}

button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255,255,255,0.15);
}
.hero {
  min-height: 100vh;
  display: flex;
}

.hero-container {
  width: 100%;
  display: grid;
  grid-template-columns: 50% 50%;
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 768px) {
  .services-row {
    flex-wrap: wrap;
  }
  .services-section {
  margin-bottom: 60px;
}


  .service-card {
    width: 100%;
    max-width: 320px;
  }
}


/* ROWS */
.services-row {
  display: grid;
  gap: 24px;
  justify-content: center;
}

/* 3 cards row */
.row-3 {
  grid-template-columns: repeat(3, 220px);
}

/* 2 cards row (CENTERED) */
.row-2 {
  grid-template-columns: repeat(2, 220px);
}

/* CARD – SAME SIZE EVERYWHERE */
.service-card {
  height: 90px;
  background: #ffc83d;
  color: #000;
  border-radius: 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 18px;
  font-weight: 600;
  text-align: center;
}



.hero-illus {
  width: 80%;
  max-width: 500px;
  animation: float 4s ease-in-out infinite;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.6));
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
  100% { transform: translateY(0); }
}
.services-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ROWS */
.services-row {
  display: flex;
  justify-content: center;
  gap: 24px;
}

/* CARD – SAME SIZE ALWAYS */
.service-card {
  width: 220px;
  height: 90px;

  background: #ffc83d;
  color: #000;

  border-radius: 18px;
  font-size: 18px;
  font-weight: 600;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
}
.services-section {
  padding: 80px 0;
  background: #000;
}

.services-bg {
  max-width: 1200px;
  margin: auto;

  /* 🔥 BACKGROUND IMAGE */
  background:
    url("assets/img/services-bg.jpg") center/cover no-repeat;

  border-radius: 24px;
  padding: 60px;
}
/* FORCE SERVICES BACKGROUND IMAGE */
.services-section {
  padding: 100px 0 !important;
  background:
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url("market.png") center / cover no-repeat !important;
}

/* SERVICES ALIGNMENT */
.services-wrapper {
  display: flex !important;
  flex-direction: column !important;
  gap: 32px !important;
  align-items: center !important;
}

.services-row {
  display: flex !important;
  gap: 24px !important;
  justify-content: center !important;
}

.about-page .site-wrapper {
  max-width: none;
  width: 100%;
  background: transparent;
}
body.about-page {
  background:
    linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
    url("digital.jpg") center / cover no-repeat;
}

/* HOME WORK */
.home-work {
  padding: 50px 60px;   /* 👈 pehle zyada tha */
}
.featured-work {
  padding: 22px;        /* 👈 pehle 30px */
  gap: 24px;            /* image–text gap kam */
  border-radius: 18px;
}
/* HOME – SELECTED WORK WITH IMAGE */

.home-work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.work-preview {
  background: #121212;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  transition: 0.35s ease;
}

.work-preview img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.work-preview:hover {
  transform: translateY(-8px);
}

.work-info {
  padding: 20px;
}

.work-info h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.work-info p {
  color: #9a9a9a;
  font-size: 14px;
  line-height: 1.5;

}
/* ===== SELECTED WORK ALIGN PERFECT ===== */

/* IMAGE BOX */
.work-img {
  width: 200px;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* IMAGE */
.work-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  align-items: center;
  border-radius: 16px;
}

/* TEXT */
.work-info {
  max-width: 520px;
}

.work-info h3 {
  margin-bottom: 12px;
}

.work-info p {
  color: #9a9a9a;
  line-height: 1.6;
}
/* ================================
   MOBILE ONLY FIX – SELECTED WORK
   ================================ */
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* ======================================
   MOBILE – FORCE FEATURED WORK FULL SIZE
   ====================================== */

@media (max-width: 768px) {

  /* card ko full width force */
  .work-preview,
  .featured-work,
  .work-card {
    width: 1000% !important;
    max-width: 100% !important;
    padding: 12px !important;
    min-height: 630px !important;
  }

  /* image wrapper ko bhi full width */
  .work-img,
  .work-preview img,
  .featured-work img {
    width: 100% !important;
    max-width: 100% !important;
    height: 380px !important;   /* 👈 yahin se size badhega */
    margin: 0 !important;
    display: block !important;
    object-fit: cover !important;
  }

  /* agar image kisi inner box me ho */
  .work-inner {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* text normal rahe */
  .work-info {
    width: 100% !important;
    max-width: 100% !important;
  }
}
/* content creation styles */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: Arial, sans-serif;
}

body{
  background:#0f0f0f;
  color:#ffffff;
}
.hero{
  min-height:100vh;
  padding:80px 8%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:60px;
}

.hero-left{
  max-width:550px;
}

.hero-left h1{
  font-size:52px;
  line-height:1.2;
}

.hero-left p{
  margin:20px 0;
  font-size:18px;
  color:#cfcfcf;
}

.btn{
  display:inline-block;
  padding:14px 30px;
  background:#ff7a18;
  color:#000;
  text-decoration:none;
  border-radius:8px;
  font-weight:600;
}

.hero-right{
  width:480px;
  height:300px;
  background:#1f1f1f;
  border-radius:18px;
}
.production{
  padding:80px 8%;
}

.production h2{
  font-size:40px;
  margin-bottom:40px;
}

.production-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:20px;
}

.production-grid img{
  width:100%;
  height:260px;
  object-fit:cover;
  border-radius:16px;
}

/* PRODUCTION GRID – MOBILE & TABLET */
@media (max-width:1024px){
  .production-grid,
  .movie-collab.production .collab-grid,
  .movie-collab.production-grid,
  .movie-collab .production-grid{
    grid-template-columns: repeat(3, 1fr);
    gap:14px;
  }
}


/* ===== FORCE FULL WIDTH HERO (BLACK BORDER FIX) ===== */

.movie-collab{
  padding:60px 8% 35px;
}

.movie-collab h2{
  font-size:38px;
  font-weight:600;
  margin-bottom:48px;
}

.collab-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:32px;
}

.collab-card{
  background:#434242;
  border-radius:20px;
  overflow:hidden;
}

.collab-card img{
  width:100%;
  height:400px;
  object-fit:cover;
  display:block;
}
.collab-card{
  position: relative;
  overflow: hidden;
  border-radius:20px;
}

/* IMAGE */
.collab-card img{
  transition: transform 0.5s ease;
}

/* DARK OVERLAY */
.collab-card::after{
  content:'';
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.35);
  opacity:0;
  transition:0.4s ease;
}

/* HOVER EFFECT */
.collab-card:hover img{
  transform: scale(1.08);
}

.collab-card:hover::after{
  opacity:1;
}
.collab-card::before{
  content:'▶';
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%) scale(0.8);
  width:60px;
  height:60px;
  background:rgba(0,0,0,0.7);
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  opacity:0;
  transition:0.3s ease;
  z-index:2;
}

.collab-card:hover::before{
  opacity:1;
  transform:translate(-50%, -50%) scale(1);
}
/* overlay & play icon click block na kare */
.collab-card::before,
.collab-card::after{
  pointer-events: none;
}

/* anchor full card clickable ho */
.collab-card a{
  display:block;
  width:100%;
  height:100%;
}

@media (max-width: 1024px){
  .collab-grid{
    grid-template-columns: repeat(3, 1fr);
    gap:20px;
  }

  .collab-card img{
    height:380px;
    object-fit:cover;
  }
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #000;
  color: #fff;
  font-family: Arial, sans-serif;
}

/* TESTIMONIALS and gallery */

.testimonials {
  padding: 80px 20px;
  max-width: 1200px;
  margin: auto;
}

.testimonials h2 {
  font-size: 40px;
  margin-bottom: 40px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.testimonial-card {
  background: #111;
  padding: 24px;
  border-radius: 16px;
}

.testimonial-card p {
  color: #aaa;
  line-height: 1.6;
  margin-bottom: 14px;
}

.testimonial-card span {
  font-weight: bold;
}

/* GALLERY */

.gallery {
  padding: 60px 20px 100px;
  max-width: 1200px;
  margin: auto;
}

.gallery h2 {
  font-size: 40px;
  margin-bottom: 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.gallery-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 14px;
}







