* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}


/* NAVBAR */
.navbar {
  height: 72px;
  background: #0b0f14;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 48px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-left nav {
  display: flex;
  align-items: center;
}

.logo {
  font-size: 15px;
  font-weight: 600;
}

.logo img {
  display: block;
  height: clamp(58px, 3.2vw, 40px);
  width: auto;
  max-width: 250px;
  object-fit: contain;
}

.nav-left nav a {
  text-decoration: none;
  color: #e6e6e6;
  font-size: 14px;
}


/* Make nav links and dropdown trigger align as a single row */
.nav-left nav a,
.dropdown-btn {
  display: inline-flex;
  align-items: center;
  height: 38px;
  padding: 0 12px;
  border-radius: 10px;
}



.nav-left nav a:hover,
.dropdown-btn:hover,
.nav-dropdown:hover .dropdown-btn,
.nav-left nav a:focus-visible,
.dropdown-btn:focus-visible {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.10);
  outline: none;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-right a {
  text-decoration: none;
  color: #e6e6e6;
  font-size: 14px;
}

.icon {
  cursor: pointer;
  font-size: 16px;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: white;
}

/* Hamburger animation */
.hamburger span {
  transition: all 0.3s ease;
  transform-origin: center;
}

/* When active → X */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}


.dropdown-btn {
  background: none;
  border: none;
  font-weight: 500;
  cursor: pointer;
  color: #e6e6e6;
  font-size: 14px;
}

.nav-item.dropdown {
  position: relative;
}

.dropdown-menu {
  left: 50%;
  transform: translateX(-50%);
}


.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  /*left: 0;*/
  right: auto;
  background: #0b0f14;
  padding: 10px 0;
  list-style: none;
  min-width: 160px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
  z-index: 1001;

  /* Show only ~4 options, scroll for the rest */
  max-height: 176px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.dropdown-menu li a {
  display: block;
  padding: 8px 15px;
  text-decoration: none;
  color: #e6e6e6;
}

.dropdown-menu li a:hover {
  background: rgba(255, 255, 255, 0.10);
  color: #ffffff;
}

.dropdown-menu.active {
  display: block;
}

/* Clean hover/focus behavior for the nav dropdown */
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  display: block;
}

/* Optional: nicer scrollbar (WebKit) */
.dropdown-menu::-webkit-scrollbar {
  width: 8px;
}

.dropdown-menu::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.25);
  border-radius: 999px;
}

.dropdown-menu::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.06);
}

/* HERO */
.hero {
  position: relative;
  height: calc(100vh - 72px);
  background: url("hero.jpg") center/cover no-repeat;
  /*background-image: url("https://papayawhip-walrus-628788.hostingersite.com/odi/assets/images/home.webp"); */
  background-image: url("http://opendoorindia.com/assets/images/home.webp");
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

/* CARD */
.hero-card {
  position: relative;
  margin-left: 80px;
  background: linear-gradient(135deg, #0d4fa3, #0b3c7a);
  padding: 48px 56px;
  width: 420px;
  color: #fff;
  border-radius: 4px;
}

.hero-card h1 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 16px;
}

.hero-card p {
  font-size: 16px;
  opacity: 0.9;
}

@media (max-width: 768px) {

  /* NAV LEFT CONTAINER */
  .nav-left {
    position: relative;
    width: 100%;
    justify-content: center;
    /* center logo by default */
  }

  /* LOGO CENTERED BY DEFAULT */
  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s ease;
  }

  /* HAMBURGER ON RIGHT */
  .hamburger {
    margin-left: auto;
    z-index: 2;
  }

  /* WHEN MENU OPENS */
  .nav-left.menu-open {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }

  .nav-left.menu-open .hamburger {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
  }


  .nav-left.menu-open nav {
    order: 1;
  }

  .nav-left.menu-open .logo {
    display: none;
  }
}







body {
  padding-top: 72px;
  background: #0b0f14;
  color: #ffffff;
  font-family: "Segoe UI", Helvetica, Arial, sans-serif;
}

/* SECTION */
.highlights {
  max-width: 1320px;
  margin: 0 auto;
  padding: 96px 40px 120px;
}

/* TITLE */
.section-title {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 48px;
}

/* GRID */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* CARD */
.card {
  display: flex;
  flex-direction: column;
}

/* IMAGE */
.image-wrapper {
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  margin-bottom: 24px;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* TITLE */
.card h3 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.35;
  margin-bottom: 12px;
}

/* DESCRIPTION */
.card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: #d6d9df;
  max-width: 92%;
}











/* VALUE SECTION */
.cap-value-section {
  background: #0b0f14;
  padding: 120px 0;
}

/* INNER BLUE BAND */
.cap-value-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 72px 80px;
  background: linear-gradient(90deg, #0e1a3a 0%, #0b1f46 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LEFT TEXT */
.cap-value-text {
  max-width: 420px;
}

.cap-value-text h2 {
  font-size: 28px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 24px;
}

.cap-value-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #d6d9df;
}

/* VIDEO PLACEHOLDER */
.cap-video-placeholder {
  background: #ffffff;
  color: #000000;
  font-size: 14px;
  padding: 12px 18px;
  white-space: nowrap;
}







.cap-insight-grid {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* LEFT SOLID CARD */
.cap-insight.cap-solid {
  background: #1c3557;
  padding: 40px;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* RIGHT IMAGE CARD */
.cap-insight.cap-image {
  position: relative;
  min-height: 360px;
}

.cap-insight.cap-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY */
.cap-overlay {
  position: absolute;
  inset: 40px;
  background: #1e242c;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* TEXT */
.cap-insight h3 {
  font-size: 23px;
  font-weight: 500;
  line-height: 1.45;
  color: #ffffff;
}

@media (max-width: 768px) {
  .cap-insight h3 {
    font-size: 18px;
  }
}



/* Video Wrapper Base */
.video-wrapper {
  display: flex;
  align-items: center;
  height: 72px;
  /* Match header height */
  flex-shrink: 0;
}

/* Video Container */
.video-container-ads {
  height: 60px;
  /* Slightly smaller than header */
  display: flex;
  align-items: center;
  position: relative;
}

/* Video Styling */
.video-container-ads video {
  height: 100%;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  border-radius: 6px;
}

.sound-toggle {
  position: absolute;
  bottom: 5px;
  right: 5px;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: white;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  font-size: 14px;
  padding: 0;
  transition: background 0.3s ease;
}

.sound-toggle:hover {
  background: rgba(0, 0, 0, 0.8);
}


@media (max-width: 767px) {

  .video-wrapper {
    order: 1;
    /* Left */
  }

  .logo {
    order: 2;
    margin: 0 auto;
  }

  .hamburger {
    order: 3;
  }

}


@media (min-width: 992px) {

  .video-wrapper {
    order: 3;
    /* Push to right */
    margin-left: auto;
    /* Move to extreme right */
  }

}






/* FEATURED INSIGHT */
.cap-featured-insight {
  background: #0b0f14;
  padding: 0 0 80px;
}

.cap-featured-wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}

/* IMAGE */
.cap-featured-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

/* CONTENT CARD */
.cap-featured-content {
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
  background: #1e242c;
  padding: 40px;
  max-width: 440px;
}

/* TEXT */
.cap-featured-content .cap-eyebrow {
  display: block;
  font-size: 14px;
  color: #d6d9df;
  margin-bottom: 16px;
}

.cap-featured-content h3 {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.45;
  color: #ffffff;
  margin-bottom: 40px;
}

.cap-featured-content .cap-footer {
  font-size: 13px;
  color: #ffffff;
  letter-spacing: 0.5px;
}


/* CLIENT STORIES */
.cap-client-stories {
  background: #0b0f14;
  padding: 96px 0 120px;
}

.cap-client-title {
  max-width: 1320px;
  margin: 0 auto 40px;
  padding: 0 40px;
  font-size: 28px;
  font-weight: 500;
  color: #ffffff;
}

/* SLIDER */
.cap-slider {
  position: relative;
  max-width: 100%;
  overflow: hidden;
}

.cap-slides {
  position: relative;
}

.cap-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.cap-left-Acard {
  position: absolute;
  left: 0px;
  bottom: 0px;
  background: #06295e;
  padding: 40px;
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.cap-slide.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
}

.Akimg img {
  width: 50% !important;
  height: 100%;
  position: absolute;
  right: 0;
  bottom: 0;
  /* object-fit: cover; */
  display: block;
}

.cap-slide img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

/* CONTENT CARD */
.cap-slide-card {
  position: absolute;
  left: 80px;
  bottom: 80px;
  background: #1e242c;
  padding: 40px;
  max-width: 520px;
}

.cap-slide-card h3 {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.45;
  color: #ffffff;
  margin-bottom: 16px;
}

.cap-slide-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #d6d9df;
  margin-bottom: 24px;
}

.cap-read-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border: 1px solid #ffffff;
  border-radius: 999px;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
}

/* CONTROLS */
.cap-slider-controls {
  position: absolute;
  right: 47rem;
  bottom: 20px;
  z-index: 20;
  background: #0b0f14;
  border-radius: 999px;
  display: flex;
  align-items: center;
  padding: 8px 12px;
  gap: 14px;
}

.cap-prev,
.cap-next {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 20px;
  cursor: pointer;
}

.cap-dots {
  display: flex;
  gap: 10px;
}

.cap-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  opacity: 0.5;
}

.cap-dot.active {
  background: #1f7aff;
  border-color: #1f7aff;
  opacity: 1;
}

.cap-client-stories .cap-slider-controls {
  right: auto;
  left: 50%;
  transform: translateX(-50%);
}




/* LATEST NEWS */
.cap-latest-news {
  background: #0b0f14;
  padding: 96px 0 120px;
}

.cap-news-wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
}

/* LEFT */
.cap-news-left h2 {
  font-size: 28px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 40px;
}

.cap-news-feature h3 {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.45;
  color: #ffffff;
  margin-bottom: 16px;
}

.cap-news-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 56px;
  padding: 14px 28px;
  border: 1px solid #ffffff;
  border-radius: 999px;
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
}

/* RIGHT */
.cap-news-right {
  display: flex;
  flex-direction: column;
}

.cap-news-item {
  padding: 24px 0;
}

.cap-news-item h4 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.45;
  color: #ffffff;
  margin-bottom: 12px;
}

/* SHARED */
.cap-eyebrow {
  display: block;
  font-size: 14px;
  color: #d6d9df;
  margin-bottom: 12px;
}

.cap-date {
  font-size: 13px;
  color: #9aa1ad;
}

/* DIVIDER */
.cap-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

/* Customer comments links */
.cap-news-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.cap-news-link:hover .cap-news-feature h3,
.cap-news-link:hover .cap-news-item h4 {
  text-decoration: underline;
}





/* INSIDE STORIES */
.cap-inside-stories {
  background: #0b0f14;
  padding: 96px 0 120px;
}

.cap-inside-title {
  max-width: 1320px;
  margin: 0 auto 40px;
  padding: 0 40px;
  font-size: 28px;
  font-weight: 500;
  color: #ffffff;
}

/* GRID */
.cap-inside-grid {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

/* LEFT LARGE */
.cap-inside-main img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  margin-bottom: 24px;
}

.cap-inside-text h3 {
  font-size: 22px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 8px;
}

.cap-inside-text p {
  font-size: 15px;
  line-height: 1.6;
  color: #d6d9df;
  max-width: 520px;
}

/* RIGHT COLUMN */
.cap-inside-side {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.cap-inside-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  margin-bottom: 16px;
}

.cap-inside-card-text h4 {
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 6px;
}

.cap-inside-card-text p {
  font-size: 14.5px;
  line-height: 1.6;
  color: #d6d9df;
}

/* SHARED */
.cap-eyebrow {
  display: block;
  font-size: 14px;
  color: #d6d9df;
  margin-bottom: 12px;
}




/* GENERIC BLUE SLIDER PLACEHOLDER */
.cap-generic-slider {
  background: #0b0f14;
  padding: 120px 0;
}

.cap-generic-slider .cap-slider {
  position: relative;
  max-width: 100%;
  overflow: hidden;
}

.cap-generic-slider .cap-slide {
  position: absolute;
  inset: 0;
  background: #1c3557;
  /* blue placeholder */
  height: 520px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.cap-generic-slider .cap-slide.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
}

/* CONTROLS (reused) */
.cap-generic-slider .cap-slider-controls {
  position: absolute;
  left: 50%;
  right: auto;
  bottom: 32px;
  transform: translateX(-50%);
  background: #0b0f14;
  border-radius: 999px;
  display: flex;
  align-items: center;
  padding: 12px 24px;
  gap: 14px;
}

.cap-generic-slider .cap-prev,
.cap-generic-slider .cap-next {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 20px;
  cursor: pointer;
}




/* GLOBAL IMAGE ZOOM ON HOVER */
.cap-hover-zoom {
  overflow: hidden;
}

.cap-hover-zoom img {
  transition: transform 0.6s ease;
  will-change: transform;
}

.cap-hover-zoom:hover img {
  transform: scale(1.2);
}






/* FOOTER */
.odi-footer {
  background: #0b0f14;
  color: #d6d9df;
  padding: 72px 0 32px;
}

/* CONTAINER */
.odi-footer-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
}

/* GRID */
.odi-footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 48px;
}

/* COLUMN */
.odi-footer-col h4 {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 16px;
}

.odi-footer-col p {
  font-size: 14px;
  line-height: 1.6;
  max-width: 320px;
}

/* LISTS */
.odi-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.odi-footer-col ul li {
  font-size: 14px;
  margin-bottom: 10px;
}

.odi-footer-col ul li a {
  color: #d6d9df;
  text-decoration: none;
}

.odi-footer-col ul li a:hover {
  text-decoration: underline;
}

/* BOTTOM BAR */
.odi-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
}

.odi-footer-bottom p {
  font-size: 13px;
  color: #9aa1ad;
}



@media (max-width: 1024px) {

  /* Global paddings */
  .cap-featured-wrap,
  .cap-news-wrap,
  .cap-inside-grid,
  .cap-insight-grid,
  .highlights,
  .cap-value-inner,
  .odi-footer-container {
    padding-left: 32px;
    padding-right: 32px;
  }

  /* Highlights Grid */
  .cards {
    gap: 24px;
  }

  /* Featured insight card */
  .cap-featured-content {
    right: 32px;
    max-width: 380px;
  }

  /* Client slider card */
  .cap-slide-card {
    left: 48px;
    bottom: 48px;
    max-width: 420px;
  }

  /* Inside stories */
  .cap-inside-grid {
    grid-template-columns: 1.5fr 1fr;
  }
}

@media (max-width: 768px) {

  /* NAVBAR */
  .navbar {
    height: auto;
    flex-direction: column;
    padding: 20px;
    align-items: flex-start;
  }

  .logo img {
    height: clamp(56px, 6vw, 34px);
    max-width: 180px;
  }

  .nav-left {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0;
  }

  .hamburger {
    display: flex;
  }

  .nav-left nav {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 15px;
    margin-top: 20px;
  }

  .nav-left nav.active {
    display: flex;
  }

  .nav-left nav a {
    margin-right: 0;
    display: block;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-right {
    margin-top: 20px;
    width: 100%;
    justify-content: flex-start;
  }

  /* HERO */
  .hero {
    height: auto;
    min-height: 600px;
  }

  .hero-card {
    margin: 0 20px;
    width: auto;
    max-width: 100%;
    padding: 40px 30px;
  }

  /* HIGHLIGHTS */
  .cards {
    grid-template-columns: 1fr;
  }

  /* VALUE SECTION */
  .cap-value-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    padding: 40px 20px;
  }

  .cap-value-text {
    max-width: 100%;
  }

  /* INSIGHT GRID */
  .cap-insight-grid {
    grid-template-columns: 1fr;
  }

  /* SECTION PADDING */
  .cap-client-stories,
  .cap-latest-news,
  .cap-inside-stories,
  .cap-generic-slider,
  .highlights,
  .cap-value-section {
    padding: 60px 20px;
  }

  /* FEATURED INSIGHT */
  .cap-featured-img {
    height: 320px;
  }

  .cap-featured-content {
    position: static;
    transform: none;
    margin-top: 24px;
    max-width: 100%;
  }

  /* CLIENT SLIDER */
  .cap-slide img {
    height: 380px;
  }

  .cap-slide-card {
    position: static;
    margin: 24px;
    max-width: 100%;
  }

  .cap-slider-controls {
    right: 50%;
    /* transform: translateX(50%); */
    /* bottom: 24px; */
  }

  .cap-client-stories .cap-slider-controls {
    right: auto;
    left: 50%;
    top: 50%;
    bottom: auto;
    transform: translate(-50%, -50%);
  }

  /* INSIDE STORIES */
  .cap-inside-grid {
    grid-template-columns: 1fr;
  }

  .cap-inside-side {
    gap: 32px;
  }

  /* LATEST NEWS */
  .cap-news-wrap {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .cap-news-cta {
    margin-top: 40px;
  }

  /* FOOTER */
  .odi-footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* GENERIC SLIDER (stack on mobile) */
  .cap-generic-slider .cap-slide {
    height: auto;
  }

  .cap-generic-slider .cap-slide.active {
    display: flex;
    flex-direction: column;
  }

  .cap-generic-slider .cap-left-Acard {
    position: relative;
    width: 100%;
    height: auto;
    padding: 24px;
  }

  .cap-generic-slider .Akimg img {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100% !important;
    height: 320px;
    object-fit: cover;
  }
}

@media (max-width: 480px) {

  /* TITLES */
  h1 {
    font-size: 32px;
  }

  h2,
  .section-title {
    font-size: 24px;
  }

  /* HERO */
  .hero-card {
    padding: 32px 24px;
  }

  /* FEATURED INSIGHT */
  .cap-featured-img {
    height: 240px;
  }

  .cap-featured-content h3 {
    font-size: 18px;
  }

  /* SLIDER */
  .cap-slide img {
    height: 260px;
  }

  .cap-generic-slider .Akimg img {
    height: 260px;
  }

  .cap-slide-card {
    padding: 24px;
  }

  .cap-slide-card h3 {
    font-size: 18px;
  }

  /* INSIDE STORIES */
  .cap-inside-main img {
    height: 260px;
  }

  .cap-inside-card img {
    height: 160px;
  }

  .cap-video-placeholder {
    padding: 8px 12px;
    font-size: 12px;
  }

  /* CTA BUTTONS */
  .cap-read-more,
  .cap-news-cta {
    width: 100%;
    justify-content: center;
  }

  /* DOT CONTROLS */
  .cap-slider-controls {
    padding: 10px 14px;
    gap: px;
  }
}



/* 
@media (max-width: 768px) {
  .cap-client-stories .cap-slider-controls {
    bottom: 12px;
    padding: 6px 12px;
  }
}

@media (max-width: 480px) {
  .cap-client-stories .cap-slider-controls {
    bottom: 10px;
    gap: 8px;
  }

  .cap-client-stories .cap-dot {
    width: 8px;
    height: 8px;
  }
} */
@media (max-width: 768px) {
  .cap-client-stories .cap-slider-controls {
    right: auto;
    left: 50%;
    top: 35%;
    bottom: auto;
    transform: translate(-50%, -50%);
  }
}

/* ================= ROOT VARIABLES (MISSING) ================= */
:root {
  --heading-color: #ffffff;
  --secondary-color: #1c3557;
}

/* ================= SHARED CONTAINER ================= */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ================= ABOUT PAGE ONLY ================= */
.hero-about {
  height: 50vh;
}

.about-content {
  padding: 80px 0;
  background: #0b0f14;
}

.about-content h2 {
  color: var(--heading-color);
  margin-bottom: 16px;
  font-size: 26px;
  font-weight: 500;
}

.about-content p {
  color: #d6d9df;
  line-height: 1.7;
  max-width: 900px;
}

.mission-section,
.history-section {
  margin-bottom: 60px;
}

.map-placeholder {
  background: var(--secondary-color);
  padding: 40px;
  border-radius: 8px;
  margin-top: 24px;
}

.map-placeholder ul {
  list-style: none;
  margin-top: 20px;
  padding: 0;
}

.map-placeholder li {
  margin-bottom: 10px;
}

.map-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* 50% + 50% */
  align-items: center;
  gap: 40px;
}

.map-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* covers 50% area nicely */
  display: block;
}

@media (max-width: 768px) {
  .map-section {
    grid-template-columns: 1fr;
  }
}

/* ================= CONTACT PAGE ================= */

.contact-hero {
  padding: 100px 0 60px;
  background: #0b0f14;
  text-align: center;
}

.contact-hero h1 {
  font-size: 36px;
  margin-bottom: 12px;
  color: #ffffff;
}

.contact-hero p {
  font-size: 16px;
  color: #d6d9df;
}

.contact-section {
  padding: 80px 0;
  background: #0b0f14;
}

.contact-wrapper {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.contact-info {
  flex: 1;
  min-width: 280px;
}

.contact-info h3 {
  color: #ffffff;
  margin-bottom: 16px;
}

.contact-info p {
  color: #d6d9df;
  margin-bottom: 12px;
}

.consultation-form {
  flex: 1;
  min-width: 280px;
  background: #1e242c;
  padding: 32px;
  border-radius: 6px;
}

.consultation-form h3 {
  color: #ffffff;
  margin-bottom: 20px;
}

.consultation-form input,
.consultation-form select,
.consultation-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 16px;
  background: #0b0f14;
  border: 1px solid #2e3440;
  color: #ffffff;
  border-radius: 4px;
}

.consultation-form button {
  width: 100%;
  padding: 12px;
  background: #1c3557;
  color: #ffffff;
  border: none;
  font-size: 15px;
  cursor: pointer;
}

.consultation-form button:hover {
  background: #243f66;
}

@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
  }
}


/*.about-cnt-footer{*/
/*    text-align: justify;*/
/*}*/

.develop-footer {
  text-align: center;
}