* {
  margin: 0;
  padding: 0px;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: #ffffff;
  color: #000000;
  overflow-x: hidden;
}

section {
  scroll-margin-top: 100px; /* height of navbar */
}


/*----------------------- NAVBAR ------------------------*/
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 58px;
  background: #fff;
  position: sticky;
  top: 0; 
  z-index: 100000;
  transition: all 0.3s ease;
}

.navbar.glass {
  background: rgba(255, 255, 255, 0.35); /* glassy */
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}


.navbar .logo img {
  height: 50px;
}

.navbar nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar a {
  text-decoration: none;
  color: #000;
  font-size: 16px;
  font-weight: 400;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 6px 20px;
  background: #e60023;
  color: #fff;
  border: none;
  border-radius: 9px;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
}
.nav-cta img {
  width: 21px;
  height: 21px;
}

/*--------------------- HAMBURGER --------------------*/
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: #000;
  border-radius: 3px;
}

/*-------------------------- MOBILE MENU -----------------------*/
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 22px;
  padding: 24px;
  background: #fff;

  max-height: calc(100vh - 64px);
  overflow-y: auto;
  transition: all 0.3s ease;

  position: fixed;
  top: 64px;              /* match navbar height */
  left: 0;
  width: 100%;

  z-index: 99999;         /* 🔥 VERY IMPORTANT */
  
}

.mobile-menu.glass {
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.mobile-menu a {
  text-decoration: none;
  color: #000;
  font-size: 18px;
  font-weight: 500;
}

.mobile-menu .mobile-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #e60023;
  color: #fff;
  padding: 10px 20px;
  border-radius: 10px;
  justify-content: center;
}

/* -----------------------------HERO----------------------------------- */
.hero-video {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* VIDEO */
.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* OVERLAY */
.hero-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.35) 0%,
    rgba(0,0,0,0.75) 100%
  );
  z-index: 1;
}

/* CONTENT */
.hero-overlay {
  position: relative;
  z-index: 2;
  max-width: 960px;
  padding: 0 24px;
  text-align: center;
  color: #fff;
}

/* TEXT */
.hero-overlay h1 {
  font-size: 64px;
  font-weight: 200;
  line-height: 1.15;
  letter-spacing: 1px;
  font-family: 'Roboto Slab', serif;
}

.hero-overlay h1 span {
  color: #ff2b45;
}

.hero-overlay p {
  margin-top: 28px;
  font-size: 18px;
  line-height: 1.6;
  color: #e0e0e0;
}

/* ACTIONS */
.hero-actions {
  margin-top: 40px;
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* IMAGE BUTTONS */
.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.btn-primary img,
.btn-outline img {
  height: 44px; /* adjust to design */
  width: auto;
  display: block;
}

.btn-primary:hover img,
.btn-outline:hover img {
  opacity: 0.9;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-overlay h1 {
    font-size: 38px;
  }

  .hero-overlay p {
    font-size: 15px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 14px;
  }

  .btn-primary img,
  .btn-outline img {
    height: 40px;
  }
}

.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 400px;
    background: #000;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0 5%;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.background-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 2;
}

.content {
    position: relative;
    z-index: 3;
    max-width: 600px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 200;
    font-family: 'Roboto Slab', serif;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: #fff;

}

.highlight {
    color: #ff1744;
    font-weight: 200;
    display: block;
}

.cta-button {
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-button img {
    height: 50px;
    width: auto;
    display: block;
}

.cta-button:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.cta-button:active {
    transform: translateY(0);
}

.belief-section {
  background: #ffffff;
  padding: 80px 24px 100px;
}

.belief-wrapper {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.belief-wrapper p {
  font-size: 24px;
  line-height: 1.7;
  color: #111;
  font-weight: 400;
}

.belief-wrapper p span {
  color: #ff2b45;
}

/* MOBILE */
@media (max-width: 768px) {
  .belief-section {
    padding: 60px 20px;
  }

  .belief-wrapper p {
    font-size: 16px;
  }
}


/*-----------------------------MIRROR TEST SECTION------------------------- */

#mirror-section {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.pin-container {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Heading */
.main-heading {
  font-size: 100px;
  font-weight: 200;
  font-family: 'Roboto Slab', serif;
  text-align: center;
  color: #000;
  position: relative;
  z-index: 1;
  pointer-events: none;
}

.main-heading .mirror {
  color: #ff1744;
}

/* Glass Cards */
.text-block {
  position: absolute;
  max-width: 280px;
  padding: 2rem 2.5rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  color: rgba(0, 0, 0, 0.95);
  font-size: 0.95rem;
  line-height: 1.6;
  font-weight: 300;
  opacity: 0;
  filter: blur(10px);
  will-change: transform, opacity, filter;
  z-index: 2;
}

.text-block::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.4),
    rgba(255, 255, 255, 0.1)
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* Positions */
.text-left {
  left: 10%;
  top: 60%;
}

.text-center {
  left: 50%;
  top: 75%;
  translate: -50% 0;
}

.text-right {
  right: 10%;
  top: 60%;
}

/*----------------------------- CLIENTS SECTION------------------------------ */
.clients {
  padding: 1px 64px;
}

.clients h2 {
  font-family: 'Roboto Slab', serif;
  font-size: 40px;
  font-weight: 200;
  /* margin-bottom: 20px; */
  margin: 0 93px 50px 70px;
}

.clients-inner h2 span {
  color: #e60023;
}

/* SCROLL CONTAINER */
.logo-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* TRACK */
.logo-track {
  display: flex;
  align-items: center;
  gap: 70px;
  width: fit-content;
  animation: scroll 15s linear infinite;
}

/* LOGOS */
.logo-track img {
  height: 250px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

/* ANIMATION */
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/*----------------------------------HERO2-------------------------*/

.hero-section {
  position: relative;
  width: 100vw;
  height: 57vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Background Image via IMG */
.hero-bg {
  position: absolute;
  inset: 0;
  width: 79%;
  height: 100%;
  object-fit: cover; 
  z-index: 1;
  margin-left: 330px;
}

/* Content Layer */
.hero-content {
  position: relative;
  z-index: 2;
  margin-left: 56px;
  color: #ffffff;
}

/* Heading */
.hero-content h1 {
  font-size: 3rem;
  font-weight: 200;
  margin-bottom: 0.8rem;
  font-family: 'Roboto Slab', serif;
  color: #ff2b45;
}

/* Subtext */
.hero-content p {
  font-size: 3rem;
  margin-bottom: 4rem;
  opacity: 0.9;
  font-family: 'Roboto Slab', serif;
  font-weight: 200;
  color: #ffffff;
}

/* Image Button */
.hero-btn-img img {
  width: 160px;
  height: auto;
  display: block;
  cursor: pointer;
  transition: transform 0.25s ease;
}

.hero-btn-img img:hover {
  transform: scale(1.05);
}

/* -------------------------------SERVICES-------------------------------- */

/* SECTION (RENAMED) */
.services {
  padding: 96px 64px;
  height: 300vh;
}

/* HEADER */
.services h2 {
  max-width: none;
  margin: 0 64px 50px;
  gap: 40px;
  font-size: 40px;
  font-weight: 200;
  text-align: left;
  font-family: 'Roboto Slab', serif;
}

.services h2 span {
  color: #ff2b45;
}

.services .services-intro {
  margin: 0 0 30px 95px; 
  font-size: 16px;
  line-height: 1.6;
}


.services-grid {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  position: sticky;
  top: 120px;
}


/* CARD (RENAMED) */
.service-card {
  position: relative;
  padding: 28px 40px;
  overflow: hidden;
  transition: all 0.6s ease;
  background-size: cover;
  background-position: center;
  width: 100%;
  min-height: 75px;

}

/* overlay */
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  max-width: 200px;
}

.service-card::before p {
  visibility: hidden;
}

.service-card > * {
  position: relative;
  z-index: 1;
  color: #fff;
  margin-left: 96px;
}

.service-card h3 {
  font-size: 30px;
  font-weight: 600;
  margin: 0 0 16px 96px;
  color:#ff2b45;
}

/* CONTENT */
.service-card-content {
  max-height: 0;
  opacity: 0;
  margin-top: 0;
  margin-left: 260px;
  max-width: 420px;
  transition: all 0.6s ease;
}

/* ACTIVE */
.service-card.active .service-card-content {
  max-height: 400px;
  opacity: 1;
  margin-top: 24px;
  margin-left: 60%;
}

.service-card.active p {
  font-size: 24px;
  font-weight: 600;
  padding-right: 60%;
  margin-left: 96px;
}

.service-card-content p {
  font-size: 14px;
  margin-bottom: 16px;
}

.service-card-content ul {
  list-style: none;
  color: #fff;
}

.service-card-content li {
  font-size: 16px;
  margin-bottom: 8px;
  padding-left: 14px;
  position: relative;
}

.service-card-content li::before {
  content: "•";
  position: absolute;
  left: 0;
}



/* -------------------------------CASE STUDY-------------------------------- */



.section-header {
    text-align: left;
    /* margin-bottom: 60px; */
    margin: 0 93px 50px;
    padding: 0 40px;
}

.section-header h1 {
    font-size: 40px;
    font-weight: 200;
    font-family: 'Roboto Slab', serif;
    letter-spacing: -1px;
    color: #000;
}

.section-header h1 span {
    color: #ff2b45;
}

.case-study-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0px 0px 96px;
    position: relative;
}

.cards-wrapper {
    display: flex;
    gap: 20px;
    align-items: stretch;
}

.static-card {
    flex: 0 0 350px;
    background: #1a1d29;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* border-radius: 12px; */
    min-height: 500px;
}

.static-card h2 {
    color: white;
    font-size: 42px;
    line-height: 1.3;
    font-weight: 300;
    margin-bottom: 40px;
}

.static-card-bottom {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.arrow-left {
    align-self: flex-start;
    width: 60px;
    height: 2px;
    background: white;
    position: relative;
}

.arrow-left::before {
    content: '';
    position: absolute;
    left: 0;
    top: -5px;
    width: 12px;
    height: 12px;
    border-left: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
}

.download-btn {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 0;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
    align-self: flex-start;
    overflow: hidden;
    display: block;
    margin-left: 15px;
}

.download-btn img {
    display: block;
    max-width: 100%;
    height: auto;
}

.download-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255,255,255,0.3);
}

.scrollable-wrapper {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.scrollable-cards {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 10px;
}

.scrollable-cards::-webkit-scrollbar {
    display: none;
}

.case-card {
    flex: 0 0 380px;
    height: 500px;
    /* border-radius: 12px; */
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
    z-index: 1;
    transition: all 0.4s ease;
}

.case-card-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.case-card-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 3;
    transition: all 0.4s ease;
    pointer-events: none;
}

.case-card-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 60px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.case-card-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.view-case-btn {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
    overflow: hidden;
    display: block;
}

.view-case-btn img {
    display: block;
    max-width: 100%;
    height: auto;
    margin-right: 115px;
}

.view-case-btn:hover {
    transform: scale(1.05);
}

.case-card:hover {
    transform: scale(1.05);
    z-index: 10;
    flex: 0 0 500px;
}

.case-card:hover::before {
    background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.8));
}

.case-card:hover .case-card-bg {
    filter: blur(1px);
    transform: scale(1.1);
}

.case-card:hover .case-card-hover {
    opacity: 1;
    pointer-events: auto;
}

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    cursor: pointer;

    width: auto;
    height: auto;
    padding: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: none;
    z-index: 100;
}


.nav-arrow:hover {
    background: transparent;
    transform: translateY(-50%);
}

.nav-arrow:hover::after {
    border-color: #ffffff;
}


.nav-arrow.left {
    left: 20px;
}

.nav-arrow.right {
    right: 20px;
}

.nav-arrow::after {
    content: '';
    width: 12px;
    height: 12px;
    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    transition: all 0.3s ease;
}

.nav-arrow.left::after {
    transform: rotate(135deg);
    margin-left: 4px;
}

.nav-arrow.right::after {
    transform: rotate(-45deg);
    margin-right: 4px;
}



@media (max-width: 1024px) {
    .static-card {
        flex: 0 0 300px;
        padding: 40px 30px;
    }

    .static-card h2 {
        font-size: 32px;
    }

    .case-card {
        flex: 0 0 320px;
    }

    .nav-arrow {
        display: none;
    }
}

@media (max-width: 768px) {

    .section-header {
      padding: 0 20px;
    }

    .case-study-container {
        padding: 0 20px 60px;
    }
    .section-header h1 {
        font-size: 28px;
    }

    .cards-wrapper {
        flex-direction: column;
    }

    .static-card {
        flex: 0 0 auto;
        min-height: auto;
        padding: 40px 30px;
    }

    .static-card h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .scrollable-wrapper {
        width: 100%;
    }

    .case-card {
        flex: 0 0 300px !important;
        height: 420px;
    }

    /* Disable hover effects on mobile */
    .case-card:hover {
        transform: none !important;
        flex: 0 0 300px !important;
        z-index: 1 !important;
    }

    .case-card:hover .case-card-bg {
        filter: none !important;
        transform: none !important;
    }

    /* Always show the button and logo on mobile */
    .case-card-hover {
        opacity: 1 !important;
        pointer-events: auto !important;
    }

    .case-card::before {
        background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.75)) !important;
    }

    .case-card:hover::before {
        background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.75)) !important;
    }

    .case-card-logo {
        width: 140px;
        height: 50px;
    }

    .view-case-btn {
        bottom: 20px;
        right: 20px;
    }
}



/* -------------------------------SEEING IT DIFFERENTLY---------------------------- */
.it-differently {
  padding: 96px 64px;
  background: #000;
  font-family: 'Montserrat', sans-serif;
}

.it-differently h2 {
  text-align: left;
  font-size: 48px;
  font-family: 'Roboto Slab', serif;
  font-weight: 200;
  /* margin-bottom: 80px; */
  margin: 0 72px 50px;
  color: #fff;
}

.it-differently h2 span {
  color: #e60023;
}

/* WRAPPER */
.it-slider-wrapper {
  position: relative;
  height: 360px;
  overflow: hidden;
  touch-action: none;
}

/* SLIDE */
.it-slide {
  position: absolute;
  top: 0;
  left: 50%;
  width: 520px;
  height: 360px;
  transform: translateX(-50%);
  opacity: 0;
  transition: transform 0.45s ease, opacity 0.45s ease;
}

/* STATES */
.it-slide.center {
  opacity: 1;
  transform: translateX(-50%);
  z-index: 3;
}

.it-slide.left {
  opacity: 0.6;
  transform: translateX(calc(-50% - 420px));
  z-index: 2;
}

.it-slide.right {
  opacity: 0.6;
  transform: translateX(calc(-50% + 420px));
  z-index: 2;
}

/* CARD */
.it-card {
  height: 100%;
  width: 100%;
  /* border-radius: 24px; */
  padding: 32px;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
}

/* TEXT */
.it-card p {
  font-size: 15px;
  line-height: 1.7;
}

.author {
  font-size: 16px;
}

.role {
  font-size: 15px;
  opacity: 0.85;
}

/* ARROWS */
.it-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 44px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  z-index: 10;
}

.it-arrow.left { left: 40px; }
.it-arrow.right { right: 40px; }

/* MOBILE */
@media (max-width: 768px) {
  .it-slide { width: 85vw; }
  .it-slide.left { transform: translateX(calc(-50% - 65vw)); }
  .it-slide.right { transform: translateX(calc(-50% + 65vw)); }
  .it-arrow { display: none; }
}




/* -----------------------------------FORM SECTION-------------------------------- */
/* SECTION */
.form-section {
  padding: 80px 64px 80px 127px;
  background-color: #000;
}

.form-wrapper {
  max-width: 1400px;
  margin: 0 auto;

  /* MAIN LAYOUT FIX */
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* ================= FIRST FORM ================= */
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.form-content h2 {
  font-size: 46px;
  font-weight: 200;
  font-family: 'Roboto Slab', serif;
  line-height: 1.25;
  color: #fff;
}

.form-content h2 span {
  color: #ff2b45;
}

.form-content p {
  margin-top: 24px;
  font-size: 16px;
  color: #cfcfcf;
}

.form-box {
  width: 100%;
}

/* STACK INPUTS */
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.form-group {
  margin-bottom: 14px;
}

/* INPUTS */
input,
textarea {
  width: 100%;
  height: 46px;
  background: #000000;
  border: 1px solid #2a2a2a;
  padding: 0 18px;
  color: #fff;
  font-size: 14px;
  border-radius: 14px;
  font-family: 'Montserrat', sans-serif;
}

textarea {
  height: 56px;
  padding: 14px 18px;
  border-radius: 14px;
  resize: none;
}

.iti__selected-dial-code {
  color: #777;
}

input::placeholder,
textarea::placeholder {
  color: #777;
}

/* IMAGE BUTTONS (UNCHANGED – REAL IMAGES) */
.form-actions {
  display: flex;
  gap: 16px;
  margin-top: 18px;
}

.img-btn {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}

.img-btn img {
  height: 40px;
  display: block;
}

.img-btn:hover img {
  opacity: 0.9;
}

/* ================= SECOND FORM ================= */
.secondary-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

/* LEFT TEXT */
.secondary-left h2 {
  font-size: 46px;
  font-weight: 200;
  font-family: 'Roboto Slab', serif;
  line-height: 1.25;
  color: #fff;
}

.secondary-left h2 span {
  color: #ff2b45;
}

.secondary-left p {
  margin-top: 24px;
  font-size: 16px;
  color: #cfcfcf;
}

/* RIGHT FORM */
.secondary-right .form-group {
  margin-bottom: 22px;
}

.secondary-right label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  color: #cfcfcf;
}

.secondary-right textarea {
  height: 64px;
  border-radius: 14px;
}

/* ATTACH ROW */
.attach-row {
  display: flex;
  align-items: center;
  height: 46px;
  border: 1px solid #2a2a2a;
  border-radius: 14px;
  overflow: hidden;
}

.attach-row input {
  border: none;
  background: transparent;
  flex: 1;
  height: 100%;
}

.attach-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  background: #000;
  color: #fff;
  cursor: pointer;
  border-radius: 6px;
  font-weight: 600;
}

.attach-btn:hover {
  opacity: 0.85;
}




/* -----------------------------------FOOTER SECTION------------------------- */

.footer {
  background: radial-gradient(circle at top left, #1e2640, #0e1424);
  color: #ffffff;
  padding: 80px 130px 40px;
  font-family: "Georgia", serif;
}

.footer-container {
  max-width: 1300px;
  margin: 0 auto;
}

/* ================= TOP CONTENT ================= */
/* ================= TOP CONTENT ================= */
.footer-top {
  display: grid;
  grid-template-rows: auto auto;
  row-gap: 32px;
}

/* CITY NAMES ROW */
.footer-locations {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 160px;
}

.footer-locations h2 {
  font-size: 52px;
  font-weight: 200;
  font-family: 'Roboto Slab', serif;
  margin: 0;
}

/* ADDRESS ROW */
.footer-top > div:last-child {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 160px;
}

/* ADDRESS BLOCKS */
.footer-address {
  max-width: 420px;
}

.footer-address p {
  font-size: 15px;
  line-height: 1.6;
  color: #e6e6e6;
  margin-bottom: 8px;
  font-family: 'Montserrat', sans-serif;
}

.footer-address a {
  color: #ffffff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.5);
  padding-bottom: 2px;
  font-size: 15px;
  font-family: 'Montserrat', sans-serif;
}

.footer-address span {
  font-size: 12px;
  opacity: 0.7;
  font-family: 'Montserrat', sans-serif;
}


/* ================= BOTTOM BAR ================= */
/* ================= BOTTOM BAR (FIXED) ================= */
.footer-bottom {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: end;
  column-gap: 160px;
}

/* LOGO → under Bengaluru */
.footer-logo {
  justify-self: start;
}

.footer-logo img {
  max-width: 120px;
}

/* COPYRIGHT → under Mumbai */
.footer-copy {
  font-size: 13px;
  opacity: 0.7;
  justify-self: start;
  margin-left: 90px;
  margin-bottom: 15px;
  font-family: 'Montserrat', sans-serif;
}

/* LINKEDIN → far right corner */
.footer-social {
  justify-self: end;
}

.footer-social img {
  width: 26px;
  height: 26px;
  margin-bottom: 10px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .footer {
    padding: 64px 24px 32px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-locations h2 {
    font-size: 40px;
    margin-bottom: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popup-box {
  background: #fff;
  padding: 40px;
  text-align: center;
  max-width: 400px;
  border-radius: 8px;
}

.popup-box button {
  margin-top: 20px;
  padding: 10px 20px;
  cursor: pointer;
}


/*----------------- IMAGE MODAL TO PREVIEW CASE STUDY IMAGE -------------------*/
.image-modal {
  display: none;
  position: fixed;
  z-index: 999999;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
}

.image-modal img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from {
    transform: scale(0.85);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 36px;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
}

.modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: #fff;
  background: rgba(0,0,0,0);
  border: none;
  cursor: pointer;
  padding: 12px 16px;
  border-radius: 50%;
  z-index: 10001;
  transition: 0.2s;
}

.modal-nav:hover {
  background: rgba(0,0,0,0);
}

.modal-nav.prev {
  left: 20px;
}

.modal-nav.next {
  right: 20px;
}

 /* -------------------------------ABOUT US SECTION---------------------------- */

.about-section {
  padding: 46px 64px;
  background: #fff;
}
.about-banner {
  position: relative;
  width: 100%;
  height: auto;
}

.about-banner img {
  width: 100%;
  height: auto;
  display: block;
}


.about-wrapper {
  max-width: 1300px;
  margin: 0 auto 0 0;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 270px;
  align-items: flex-start;
}



/* LEFT COLUMN */
.about-left {
  max-width: 420px;
}

.about-image {
  margin-bottom: 48px;
}

.about-image img {
  width: 100%;
  max-width: 150px;
}

.about-heading {
  font-size: 47px;
  line-height: 1.2;
  font-weight: 200;
  color: #000;
  font-family: 'Roboto Slab', serif;
}

.about-heading span {
  color: #ff2b45;
}

/* RIGHT COLUMN */
.about-right {
  max-width: 520px;
}

.about-right p {
  font-size: 16px;
  line-height: 1.9;
  color: #333;
  margin-bottom: 26px;
}

.about-right strong {
  font-weight: 600;
}

.about-right .promise {
  margin-top: 28px;
}




  /* -------------------------------TEAM SECTION---------------------------- */
.team-section {
  padding: 46px 0px 0px 0px;
  background: #fff;
}

/* TITLE */
.team-title {
  font-size: 42px;
  font-weight: 200;
  margin-bottom: 64px;
  margin-left: 78px;
  font-family: 'Roboto Slab', serif;
}

.team-title span {
  color: #ff2b45;
}

/* IMAGE + TEXT STAGE */
.team-stage {
  position: relative;
  /*max-width: 1200px;*/
  /*margin-left: 75px;*/
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

/* IMAGE */
.team-bg {
  width: 100%;
  display: block;
  /* border-radius: 14px; */
  transition: filter 0.5s ease;
}

/* TEXT BLOCK */
.team-info {
  position: absolute;
  max-width: 260px;
}

/* NAME */
.team-info h3 {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin: 0;
  transition: color 0.4s ease;
}

/* ROLE */
.team-info span {
  display: block;
  font-size: 14px;
  color: #000;
  opacity: 0.7;
  margin-top: 4px;
  transition: color 0.4s ease;
}

/* DESCRIPTION (hidden initially) */
.team-info p {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.6;
  color: #fff;
  opacity: 0;
  transition: opacity 0.4s ease;
  font-family: 'Montserrat', sans-serif;
}

/* POSITIONS */
.team-info.left {
  left: 110px;
  top: 25%;
}

.team-info.center {
  left: 55%;
  top: 11%;
  transform: translateX(-50%);
}

.team-info.right {
  right: 60px;
  top: 20%;
}

/* HOVER EFFECT */
.team-stage:hover .team-bg {
  filter: brightness(45%) blur(1px);
}

/* TEXT COLOR CHANGE ON HOVER */
.team-stage:hover .team-info h3,
.team-stage:hover .team-info span {
  color: #fff;
}

/* SHOW DESCRIPTIONS */
.team-stage:hover .team-info p {
  opacity: 1;
}

/* DIVIDER LINE (hidden by default) */
.team-info span::after {
  content: "";
  display: block;
  width: 160px;
  height: 1px;
  background: #fff;
  margin-top: 12px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* SHOW LINE ON HOVER */
.team-stage:hover .team-info span::after {
  opacity: 1;
}


/* -------------------------------MOBILE RESPONSIVE---------------------- */
@media (max-width: 786px) {

  /* GLOBAL */
  body {
    padding: 0;
  }

  * {
    padding: 0;
  }

  /*---------------- NAVBAR -----------------*/
  .navbar {
    padding: 16px 20px;
  }

  .navbar nav {
    display: none;
  }

  .navbar .logo img {
    height: 40px;
  }

  .nav-cta {
    padding: 8px 18px;
    font-size: 13px;
    color: #ffffff;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu.active {
    display: flex;
  }

  /*--------------------- HERO ----------------*/

  .hero-video {
    height: 100vh;
  }

  .hero-overlay {
    padding: 24px 20px;
    max-width: 100%;
    justify-content: flex-start; /* text at top */
  }

  /* TEXT */
  .hero-overlay h1 {
    font-size: 28px;
    line-height: 1.25;
    margin-bottom: 16px;
    margin-top: 45px;
  }

  .hero-overlay p {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 0;
  }

  /* ACTIONS WRAPPER */
  .hero-actions,
  .buttons {
    margin-top: auto; /* PUSH TO BOTTOM */
    justify-content: center;
    padding-bottom: 24px;
  }

  /* HIDE OUR WORK BUTTON */
  .btn-outline {
    display: none;
  }

  /* LET’S TALK BUTTON */
  .btn-primary {
    width: 100%;
    justify-content: center;
    padding: 258px 0 0 0;
    border-radius: 30px;
  }

  /*----------------- MIRROR SECTION --------------------*/
  /* .mirror-test {
    padding: 50px 20px;
  }

  .mirror-test h2 {
    font-size: 26px;
    margin-bottom: 48px;
  }

  .mirror-cards {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .mirror-card {
    padding: 24px;
    padding-left: 24px;
  }

  .number img {
    position: static;
    font-size: 72px;
    margin-bottom: 16px;
  }

  .mirror-card p {
    max-width: 100%;
  } */

    #mirror-section {
    height: auto;
    padding: 0px 0 0px;
  }

  .pin-container {
    height: auto;
    flex-direction: column;
    align-items: center;
  }

  .main-heading {
    font-size: 30px;
    margin-bottom: 2rem;
    text-align: center;
  }

  .text-block {
    position: relative;
    opacity: 1;
    filter: none;
    transform: none !important;
    translate: none !important;
    max-width: 90%;
    margin: 1.2rem auto;
    left: auto !important;
    right: auto !important;
    top: auto !important;
  }

  /*-------------- CLIENTS ---------------*/

    .clients {
    padding: 10px 20px;
  }

  .clients-inner {
    flex-direction: column;
    align-items: flex-start; 
    gap: 24px;
  }

  .clients h2 {
    font-size: 28px;
    text-align: left;
    margin: 0 0 20px 0;
  }

  .logo-track {
    gap: 30px;
  }

  .logo-track img {
    height: 150px;
  }

  .client-logos {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 24px;
    justify-items: center;
  }

  .client-logos img {
    height: 100px;
    max-width: 100%;
  }
  
  .hero-section {
    height: auto;
    min-height: 70vh;
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 1.5rem;
  }

  /* Background Image */
  .hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin-left: 0;
    object-fit: cover;
  }

  /* Content */
  .hero-content {
    margin-left: 0;
    /*margin-top: 4rem;*/
    max-width: 100%;
  }

  /* Heading */
  .hero-content h1 {
    font-size: 24px;
    margin-bottom: 0.6rem;
    line-height: 1.2;
  }

  /* Subtext */
  .hero-content p {
    font-size: 24px;
    margin-bottom: 2rem;
    line-height: 1.4;
  }

  /* Button Image */
  .hero-btn-img img {
    width: 120px;
  }


  /*------------------- SERVICES -------------------*/

  .services {
    padding: 40px 0 60px 0;
  }

  .services h2 {
    padding: 10px 20px;
    max-width: 1200px;
    margin: 0 0 0px;
    /* display: grid; */
    gap: 40px;
    font-size: 28px;
    font-weight: 200;
    text-align: left;
    padding-right: 100px;
  }

  .services .services-intro {
    margin: 0 0 30px 22px;
    font-size: 14px;
    line-height: 1.6;
  }
  
  .service-card {
    position: relative;
    padding: 28px 40px 28px 19px;
    overflow: hidden;
    transition: all 0.6s ease;
    background-size: cover;
    background-position: center;
    width: 100%;
    min-height: 75px;
  }

  .service-card h3 {
    font-size: 20px;
    margin-left: 0px;
  }

  .service-card.active p {
    font-size: 16px;
    font-weight: 600;
    padding-right: 10%;
    color: #fff;
    margin-left: 0px;
  }
  
   .service-card > * {
    margin-left: 0px;
  }

  .service-card-content ul {
  margin-left: -150%;
  color: #fff;
  }

  .service-card-content li {
  font-size: 14px;
  margin-bottom: 8px;
  padding-left: 14px;
  position: relative;
  }


  /*------------------ CASE STUDY ----------------------*/
  .case-study {
    padding: 64px 20px;
  }

  .section-header {
    margin: 0 0 60px 0;
  }

  .case-study h2 {
    font-size: 27px;
  }

  .case-wrapper {
    flex-direction: column;
  }

  .slider,
  .case-content {
    width: 100%;
  }

  .case-content h3 {
    font-size: 24px;
  }

  .accordion-header {
    font-size: 20px;
  }

  .dots {
    margin: 16px auto 0;
  }

  /* MOBILE ORDER */
  .slider { order: 1; }
  .case-content { order: 2; }


  /* -----------------------SEEING IT DIFFERENTLY------------------- */
  .it-differently {
    padding: 64px 20px;
  }

  .it-differently h2 {
    font-size: 27px;
    margin: 0 0 32px 0;
    
  }

  .it-slider-wrapper {
    overflow: hidden;
    touch-action: pan-x;
  }

  .it-slider {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .it-slider::-webkit-scrollbar {
    display: none;
  }

  .it-slide {
    flex: 0 0 85%;
    scroll-snap-align: start;
  }

/* Responsive card size */
  .it-card,
  .it-slide img {
    width: 100%;
    max-width: 500px;
    height: 345px;
    border-radius: 16px;
  }

  .it-card-footer .role {
    font-size: 13px;
  }

  .it-card p {
    font-size: 13px;
    line-height: 1.6;
  }

  .it-arrow {
    display: none;
  }

  .it-dots {
    display: none;
  }


  /* ----------------------FORM SECTION-------------------- */
  /* STACK BOTH FORMS */

  .form-section {
    padding: 0 20px 60px;
  }

  .form-wrapper {
    grid-template-columns: 1fr;
    gap: 80px;
  }

  /* CENTER TEXT FOR MOBILE (OPTIONAL BUT MATCHES IMAGE FLOW) */
  .form-content h2,
  .secondary-left h2 {
    font-size: 34px;
    line-height: 1.3;
  }

  .form-content p,
  .secondary-left p {
    font-size: 15px;
  }

  /* INPUTS FULL WIDTH (SAFETY) */
  input,
  textarea {
    width: 100%;
  }

  /* BUTTONS STACK NICELY */
  .form-actions {
    flex-direction: row;
    align-items: flex-start;
    gap: 14px;
  }

  .img-btn img {
    height: 38px;
  }

  /* ----------------------FOOTER-------------------- */
  .footer {
    padding: 40px 20px 28px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  /* HEADINGS */
  .footer-locations {
    display: contents;
  }

  .footer-locations h2 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 16px;
  }

  /* ADDRESS WRAPPER */
  .footer-top > div:last-child {
    display: contents;
  }

  .footer-address {
    max-width: 100%;
    margin-bottom: 0;
  }

  .footer-address p {
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 6px;
  }

  .footer-address a {
    font-size: 12px;
    border-bottom-width: 0.5px;
  }

  .footer-address span {
    font-size: 10px;
    opacity: 0.6;
  }

  /* BOTTOM SECTION */
  /* ================= MOBILE FOOTER BOTTOM FIX ================= */
  .footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    align-items: center;
    row-gap: 12px;
    column-gap: 0px;
  }

  /* Logo on top-left */
  .footer-logo {
    grid-column: 1;
    grid-row: 1;
  }

  /* Copyright below logo */
  .footer-copy {
    grid-column: 1;
    grid-row: 2;
    margin-left: 0px;
  }

  /* LinkedIn on right, vertically centered */
  .footer-social {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
  }



/* ------------------------about us-------------- */

  .about-section {
    padding: 32px 20px;
  }

  .about-wrapper {
    grid-template-columns: 1fr; /* stack columns */
    gap: 40px;
    padding: 0;
  }

  /* LEFT COLUMN */
  .about-left {
    max-width: 100%;
    text-align: left;
  }

  .about-image {
    margin-bottom: 32px;
  }

  .about-image img {
    max-width: 120px;
  }

  .about-heading {
    font-size: 32px;
    line-height: 1.25;
  }

  /* RIGHT COLUMN */
  .about-right {
    max-width: 100%;
  }

  .about-right p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
  }

  .about-right .promise {
    margin-top: 20px;
  }


    /* IMAGE */


  .team-section {
    padding: 32px 0px 0px 0px;
  }
  
  .team-stage {
    position: relative;
    margin-left: 0;
    margin-right: auto;
  }

  .team-bg {
    width: 100%;
    height: auto;        /* IMPORTANT */
    display: block;
    object-fit: cover;
    border-radius: 0;
  }

  .team-title {
    font-size: 32px;
    margin-bottom: 48px;
    margin-left: 20px;
    text-align: left;
    padding-right: 60px;
  }

  /* COMMON TEXT RESET */
  .team-info {
    position: absolute;
    max-width: 85%;
    display: none;
  }

  .team-stage:hover .team-bg {
    filter: none !important;
  }

  /* FONT SIZE REDUCTION */
  .team-info h3 {
    font-size: 14px;
    line-height: 1.3;
  }

  .team-info span {
    font-size: 12px;
    margin-top: 2px;
  }

  .team-info p {
    font-size: 12px;
    line-height: 1.5;
    margin-top: 8px;
    opacity: 1;
    color: #000;
  }

  /* DIVIDER */
  .team-info span::after {
    width: 24px;
    margin-top: 8px;
    opacity: 1;
    background: #000;
  }

  /* SAFE POSITIONS (NO OVERLAP) */

  /* Top-left */
  .team-info.left {
    top: 8%;
    left: 12px;
  }

  /* Top-center */
  .team-info.center {
    top: 8%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
  }

  /* Bottom-right */
  .team-info.right {
    bottom: 8%;
    right: 12px;
    top: auto;
    text-align: right;
  }

  /* TEXT COLOR */
  .team-info h3,
  .team-info span {
    color: #000;
  }

}
