* {
  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: 22px;
}

.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: 35px; /* 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;
  }
  
  
}



/*----------------------------- CLIENTS SECTION------------------------------ */
.clients {
  padding: 70px 64px 0px;
}

.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 20s 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%);
  }
}


/* -------------------------------SERVICES-------------------------------- */

/* -------------------------------SERVICES-------------------------------- */

.services {
  padding: 96px 64px;
  height: 300vh;
}

.services h2 {
  max-width: none;
  margin: 0 64px 20px;
  font-size: 40px;
  font-weight: 200;
  text-align: left;
  font-family: 'Roboto Slab', serif;
}

.services h2 span {
  color: #ff2b45;
}

.services-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #555;
  margin: 0 0 50px 67px;
}

.services-grid {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  position: sticky;
  top: 120px;
}

/* CARD */
.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;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  max-width: 200px;
}

.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: #ffffff;
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-card h3 img {
  width: 35px;
  height: 40px;
  object-fit: contain;
}

/* CARD CONTENT — hidden by default */
.service-card-content {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 0 60px !important;
  padding: 0 96px 32px !important;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin-left: 0 !important;
  max-width: none !important;
  transition: max-height 0.6s ease, opacity 0.6s ease, margin-top 0.6s ease;
  margin-top: 0;
}

/* ACTIVE STATE */
.service-card.active .service-card-content {
  max-height: 600px;
  opacity: 1;
  margin-top: 32px;
}

.service-card.active p {
  font-size: 18px;
  font-weight: 400;
  padding-right: 0;
  /* margin-left: 96px; */
  color: #fff;
}

/* TWO COLUMNS */
.sc-col {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.sc-item h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #ff2b45;
  /* margin-bottom: 30px; */
  position: relative;
  z-index: 1;
}

.sc-item p {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #ccc;
  line-height: 1.7;
  margin: 0;
  padding: 0;
}


/* work------------------------------------------------------------- */

/* ===================== SELECTED WORK STYLES ===================== */
.selected-work {
  padding: 96px 64px;
  background: #fff;
}
.selected-work .sw-title {
  font-family: 'Roboto Slab', serif;
  font-size: 40px;
  font-weight: 200;
  margin: 0 64px 40px;
  line-height: 1.15;
}
.selected-work .sw-title .sw-highlight {
  color: #ff2b45;
}
.sw-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 35px;
  margin: 0 64px 36px;
}
.sw-filter-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 9px 45px;
  border-radius: 10px;
  border: 1.5px solid #1a1a1a;
  background: transparent;
  color: #1a1a1a;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
  outline: none;
}
.sw-filter-btn:hover:not(.sw-active) {
  background: rgba(0,0,0,0.06);
}
.sw-filter-btn:focus-visible {
  box-shadow: 0 0 0 3px rgba(255,43,69,0.35);
}
.sw-filter-btn.sw-active {
  background: #1a1a1a;
  color: #fff;
  border-color: #1a1a1a;
}

.sw-dropdown-wrap {
  position: relative;
  display: inline-flex;
  flex-direction: column;
}

.sw-perf-pill {
  display: inline-flex;
  align-items: stretch;
  border: 1.5px solid #1a1a1a;
  border-radius: 10px;
  overflow: hidden;
}

.sw-perf-pill .sw-filter-btn {
  border: none !important;
  border-radius: 0 !important;
  padding-right: 8px;
}

.sw-perf-pill .sw-filter-btn.sw-active {
  background: #1a1a1a;
  color: #fff;
}

.sw-chevron-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  background: transparent;
  border: none;
  /* border-left: 1.5px solid #1a1a1a; */
  cursor: pointer;
  outline: none;
  color: #1a1a1a;
  transition: background 0.2s, color 0.2s;
}

.sw-chevron-btn:hover { background: rgba(0,0,0,0.06); }

.sw-perf-pill:has(.sw-filter-btn.sw-active) .sw-chevron-btn {
  border-left-color: #fff;
  background: #1a1a1a;
  color: #fff;
}

.sw-chevron {
  transition: transform 0.25s ease;
  display: block;
}

.sw-chevron-btn[aria-expanded="true"] .sw-chevron {
  transform: rotate(180deg);
}

.sw-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: #fff;
  border: 1.5px solid #1a1a1a;
  border-radius: 14px;
  overflow: hidden;
  z-index: 1000;
  min-width: 100%;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.sw-dropdown.sw-open { display: block; }

.sw-dropdown-item {
  display: block;
  width: 100%;
  padding: 10px 22px;
  background: transparent;
  border: none;
  border-bottom: 1px solid #eee;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #1a1a1a;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.sw-dropdown-item:last-child { border-bottom: none; }

.sw-dropdown-item:hover,
.sw-dropdown-item.sw-active {
  background: #1a1a1a;
  color: #fff;
}

.sw-carousel-wrapper {
  position: relative;
  margin: 0 64px;
  padding: 0 0;
}
.sw-track-outer {
  overflow: hidden;
}
.sw-track {
  display: flex;
  gap: 24px;
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.sw-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 0;
  cursor: pointer;
  border-radius: 6px;
  overflow: hidden;
  background: #e5e5e5;
  position: relative;
  aspect-ratio: 16/9;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  outline: none;
}
.sw-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.14);
}
.sw-card:focus-visible {
  box-shadow: 0 0 0 3px #ff2b45;
}
.sw-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #ddd;
}
.sw-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.sw-play-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease;
}
.sw-card:hover .sw-play-circle {
  transform: scale(1.12);
  background: #fff;
}
.sw-play-icon {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 0 9px 17px;
  border-color: transparent transparent transparent #1a1a1a;
  margin-left: 4px;
}
.sw-card-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.65));
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 2rem 1rem 0.75rem;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.sw-card:hover .sw-card-label,
.sw-card:focus-visible .sw-card-label {
  opacity: 1;
}
.sw-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  outline: none;
  padding: 4px;
  transition: opacity 0.2s;
}
.sw-arrow:hover { opacity: 0.45; }
.sw-arrow:focus-visible { outline: 2px solid #ff2b45; border-radius: 2px; }
.sw-arrow:disabled { opacity: 0.15; cursor: default; pointer-events: none; }
.sw-arrow.sw-prev { left: -44px; }
.sw-arrow.sw-next { right: -44px; }
.sw-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 24px;
}
.sw-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ccc;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
  outline: none;
}
.sw-dot.sw-dot-active {
  background: #1a1a1a;
  transform: scale(1.35);
}
.sw-dot:focus-visible { box-shadow: 0 0 0 2px #ff2b45; }
.sw-empty {
  text-align: center;
  padding: 60px 20px;
  color: #999;
  font-size: 15px;
  font-family: 'Montserrat', sans-serif;
  display: none;
}
.sw-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 1rem;
}
.sw-modal-overlay.sw-modal-open {
  opacity: 1;
  pointer-events: all;
}
.sw-modal-box {
  background: #111;
  border-radius: 10px;
  width: 100%;
  max-width: 860px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.65);
  position: relative;
  transform: scale(0.93) translateY(18px);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  overflow: hidden;
}
.sw-modal-overlay.sw-modal-open .sw-modal-box {
  transform: scale(1) translateY(0);
}
.sw-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.sw-modal-title {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 400;
  opacity: 0.75;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 85%;
}
.sw-modal-close {
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  font-size: 16px;
  line-height: 1;
  transition: background 0.2s;
  flex-shrink: 0;
  outline: none;
  font-family: 'Montserrat', sans-serif;
}
.sw-modal-close:hover { background: rgba(255,255,255,0.22); }
.sw-modal-close:focus-visible { box-shadow: 0 0 0 2px #ff2b45; }
.sw-modal-video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  background: #000;
}
.sw-modal-video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

.sw-viewmore-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 9px 45px;
  border-radius: 10px;
  border: 1.5px solid #1a1a1a;
  background: transparent;
  color: #1a1a1a;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.sw-viewmore-btn:hover {
  background: rgba(0,0,0,0.06);
}

/* ===================== END SELECTED WORK STYLES ===================== */

.ie-section {
  padding: 60px 165px;
  background: #fff;
  overflow: hidden;
}

.ie-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 60px;
}

.ie-copy {
  flex: 0 0 420px;
  min-width: 0;
}

.ie-heading {
  font-family: 'Roboto Slab', serif;
  font-size: 40px;
  font-weight: 200;
  color: #1a1a1a;
  line-height: 1.15;
  margin-bottom: 20px;
  display: block;
  width: 100%;
}

.ie-pink { color: #ff2b45; }

.ie-body {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #444;
  line-height: 1.8;
  margin: 0;
  display: block;
  width: 100%;
}

.ie-logo-slider {
  flex: 1;
  overflow: hidden;
  min-width: 0;
}

.ie-logo-track {
  display: flex;
  align-items: center;
  gap: 40px;
  width: fit-content;
  animation: scroll 20s linear infinite;
}

.ie-logo-track img {
  height: 130px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}


/* motion design section---------------------------------------------- */
.md-section {
  background: #000;
  padding: 96px 64px 96px 6px;
}


.md-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.md-inner .md-copy {
  padding: 0px 0px 0px 40px;
}

.md-heading {
  font-family: 'Roboto Slab', serif;
  font-size: 36px;
  font-weight: 200;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 32px;
}

.md-highlight { color: #ff2b45; }
.md-body {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.85;
  color: #bbb;
  margin-bottom: 20px;
}
.md-body:last-child { margin-bottom: 0; }
.md-video-side {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.md-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}
.md-track-outer {
  flex: 1;
  overflow: hidden;
  border-radius: 6px;
}
.md-track {
  display: flex;
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.md-card {
  flex: 0 0 100%;
  min-width: 0;
  cursor: pointer;
  position: relative;
  aspect-ratio: 16/9;
  background: #222;
  border-radius: 6px;
  overflow: hidden;
  outline: none;
}
.md-card:focus-visible { box-shadow: 0 0 0 3px #ff2b45; }
.md-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #333;
}
.md-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.md-play-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease;
}
.md-card:hover .md-play-circle {
  transform: scale(1.1);
  background: #fff;
}
.md-play-icon {
  width: 0; height: 0;
  border-style: solid;
  border-width: 9px 0 9px 17px;
  border-color: transparent transparent transparent #1a1a1a;
  margin-left: 4px;
}
.md-arrow {
  flex-shrink: 0;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  outline: none;
  transition: opacity 0.2s;
}
.md-arrow:hover { opacity: 0.45; }
.md-arrow:focus-visible { outline: 2px solid #ff2b45; border-radius: 2px; }
.md-arrow:disabled { opacity: 0.15; cursor: default; pointer-events: none; }
.md-video-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  margin: 0;
  padding-left: 38px;
}

/* -----------------------------------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: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

/* LOGO → under Bengaluru */
.footer-logo {
  justify-self: start;
}

.footer-logo img {
  max-width: 120px;
}

/* COPYRIGHT → under Mumbai */
.footer-copy {
    flex: 1;
    text-align: center;
  font-size: 13px;
  opacity: 0.7;
  justify-self: start;
  margin-left: 300px;
  margin-bottom: 15px;
  font-family: 'Montserrat', sans-serif;
}

.footer-faq a {
    color: #ffffff;
    text-decoration: none;
    font-size: 25px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    opacity: 0.85;
    transition: opacity 0.2s ease;
    white-space: nowrap;
}

.footer-faq a:hover { opacity: 1; text-decoration: underline; }

/* 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;
}


/* -------------------------------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: 20px;
  }

  .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;
  }

  /*-------------- 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;
    margin: 0 0 10px;
    font-size: 28px;
    font-weight: 200;
    padding-right: 100px;
  }

  .services-subtitle {
    margin: 0 0 30px 20px;
    font-size: 13px;
  }

  .service-card {
    padding: 28px 19px 28px 19px;
  }

  .sc-col {
    gap: 20px;
  }

  .service-card h3 {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 12px;
    margin-left: 0;
  }

  .service-card.active p {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    margin-left: 0;
  }

  .service-card.active .service-card-content {
    margin-top: 0px;
  }

  .service-card > * {
    margin-left: 0;
  }

  .service-card-content {
    grid-template-columns: 1fr !important;
    padding: 0 20px 24px 0px !important;
    gap: 20px !important;
  }

  .sc-item h4 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .sc-item p {
    font-size: 13px;
  }


  /*------------------- our work -------------------*/
  .selected-work {
    padding: 60px 20px;
  }
  .selected-work .sw-title {
    font-size: 28px;
    margin: 0 0 28px;
  }
  .sw-filters {
    margin: 0 0 24px;
    gap: 5px;
  }
  .sw-filter-btn {
    font-size: 8px;
    padding: 7px 25px;
  }
  .sw-viewmore-btn {
    font-size: 8px;
    padding: 7px 40px;
  }
  .sw-dropdown-item {
    font-size: 8px;
    padding: 7px 14px;
  }
  .sw-carousel-wrapper {
    margin: 0;
    padding: 0 32px;
  }
  .sw-card {
    flex: 0 0 100%;
  }
  .sw-arrow.sw-prev { left: 0px; }
  .sw-arrow.sw-next { right: 0px; }

  /* ------------------IE Section------------------ */
  .ie-section {
    padding: 48px 20px;
  }
  .ie-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 36px;
  }
  .ie-copy {
    flex: none;
    width: 100%;
  }
  .ie-heading {
    font-size: 28px;
  }
  .ie-logo-track img {
    height: 100px;
  }

/* ------------------about us------------------------ */

  .md-section { padding: 60px 20px; }
  .md-inner { grid-template-columns: 1fr; gap: 48px; }
  .md-heading { font-size: 26px; }
  .md-inner .md-copy {
    padding: 0px 0px 0px 0px;
  }

  /* ----------------------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;
  }
}
