/* ===== FONTS ===== */
@font-face {
  font-family: "f2";
  src: url("../fonts/Gilroy-Medium.ttf");
}

@font-face {
  font-family: "f3";
  src: url("../fonts/Gilroy-SemiBold.ttf");
}

@font-face {
  font-family: "f4";
  src: url("../fonts/Gilroy-Bold.ttf");
}

@font-face {
  font-family: "f5";
  src: url("../fonts/Gilroy-RegularItalic.ttf");
}

/* ===== GLOBAL RESET ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

a {
  text-decoration: none !important;
}

/* ===== BODY ===== */
body {
  background: #002E4A;
  margin: 0;
  overflow-x: hidden;
  /* prevent horizontal scroll on all screens */
}

/* ===== HEADER ===== */
/* Replaced .w-70 fixed width with full-width + max-width container approach to prevent overflow */
.site-header {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  /* padding: 0 16px; */
}

/* ===== NAVBAR WRAPPER ===== */
.nav-wrapper {
  padding: 18px ;
}

/* ===== WHITE ROUNDED NAV CONTAINER ===== */
.custom-navbar {
  background: #ffffff;
  border-radius: 14px;
  padding: 14px 24px;
}

/* Logo */
.navbar-brand img {
  height: 36px;
  width: auto;
}

/* Push menu to right */
.nav-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  /* allow wrapping on mid sizes */
}

/* Nav links */
.nav-link-custom {
  color: #002E4A !important;
  font-weight: 500;
  font-size: 16px;
  position: relative;
  padding: 8px 6px !important;
  font-family: "f3";
  white-space: nowrap;
}

/* Active underline */
.nav-link-custom.active-link::after {
  content: "";
  position: absolute;
  left: 5px;
  right: 5px;
  bottom: -2px;
  height: 2px;
  background: #002E4A;
  border-radius: 2px;
}

/* Contact button */
.contact-btn {
  background: #002E4A;
  color: #fff !important;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 500;
  white-space: nowrap;
}

.contact-btn:hover {
  background: #001f33;
  color: #fff !important;
}

/* Services layout */
.services-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Custom dropdown arrow */
.dropdown-icon {
  width: 8px;
  height: 8px;
  border-right: 2px solid #002E4A;
  border-bottom: 2px solid #002E4A;
  transform: rotate(45deg);
  margin-top: -3px;
  flex-shrink: 0;
}

/* Hide Bootstrap default caret */
.dropdown-toggle::after {
  display: none !important;
}

/* Desktop: dropdown on hover */
@media (min-width: 992px) {
  .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

/* ===== MOBILE NAV ===== */
@media (max-width: 991px) {
  .nav-right {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    width: 100%;
  }

  .nav-link-custom {
    text-align: center;
    padding: 12px 0 !important;
    width: 100%;
  }

  .services-wrap {
    justify-content: center;
  }

  .contact-btn {
    width: 100%;
    text-align: center;
  }

  .dropdown-menu {
    position: static !important;
    text-align: center;
    width: 100%;
    box-shadow: none;
  }
}


/* ===== HERO BANNER ===== */
.hero-wrap {
  padding: 20px 0 40px;
}

.hero-carousel {
  border-radius: 18px;
  overflow: hidden;
}

.hero-slide {
  position: relative;
  height: 600px;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.75) 0%,
      rgba(0, 0, 0, 0.25) 60%,
      rgba(0, 0, 0, 0.10) 100%);
  pointer-events: none;
}

.hero-content {
  position: absolute;
  left: 60px;
  right: 60px;
  bottom: 60px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  color: #fff;
  z-index: 2;
}

.hero-title {
  font-family: "f4";
  font-size: 48px;
  line-height: 1.1;
  margin: 0 0 18px 0;
}

.hero-sub {
  font-family: "f5";
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
  max-width: 520px;
  opacity: .95;
}

.hero-btn {
  background: #fff;
  color: #002E4A;
  border: 0;
  padding: 14px 30px;
  border-radius: 999px;
  font-family: "f4";
  font-size: 20px;
  white-space: nowrap;
  transition: background .25s;
  flex-shrink: 0;
}

.hero-btn:hover {
  background: #eaeaea;
  color: #002E4A;
}

/* Hero indicators */
.carousel-indicators {
  margin-bottom: 18px;
  gap: 10px;
}

.carousel-indicators [data-bs-target] {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  opacity: .55;
}

.carousel-indicators .active {
  opacity: 1;
}

/* Hero responsive */
@media (max-width: 992px) {
  .hero-slide {
    height: 520px;
  }

  .hero-content {
    left: 40px;
    right: 40px;
    bottom: 40px;
  }

  .hero-title {
    font-size: 38px;
  }
}

@media (max-width: 768px) {
  .hero-slide {
    height: 460px;
  }

  .hero-content {
    left: 24px;
    right: 24px;
    bottom: 26px;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-title {
    font-size: 30px;
  }

  .hero-sub {
    font-size: 16px;
  }

  .hero-btn {
    width: 100%;
    text-align: center;
    font-size: 17px;
    padding: 12px 24px;
  }
}

@media (max-width: 480px) {
  .hero-slide {
    height: 400px;
  }

  .hero-title {
    font-size: 24px;
  }

  .hero-sub {
    font-size: 14px;
  }
}


/* ===== ABOUT / STATS SECTION ===== */
.lp-wrap {
  padding: 28px 0 60px;
  position: relative;
  overflow: hidden;
  background-color: #002E4A;
}

.lp-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../img/Frame\ 1410105713.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right center;
  opacity: 0.20;
  pointer-events: none;
}

.blueprint-bg {
  position: absolute;
  inset: -40px -60px -40px -60px;
  pointer-events: none;
  opacity: .22;
  background:
    radial-gradient(circle at 70% 30%, rgba(255, 255, 255, .10), transparent 55%),
    linear-gradient(115deg, rgba(255, 255, 255, .11) 0 1px, transparent 1px 100%),
    linear-gradient(25deg, rgba(255, 255, 255, .08) 0 1px, transparent 1px 100%);
  background-size: auto, 140px 140px, 160px 160px;
  mix-blend-mode: screen;
}

/* ===== STAT CARDS ===== */
.stat-row {
  display: flex;
  justify-content: center;
  gap: 54px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.stat-card {
  width: 270px;
  background: #fff;
  border-radius: 14px;
  padding: 18px 22px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .14);
  text-align: left;
}

.stat-ico {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #eaf3fb;
  border: 1px solid rgba(0, 46, 74, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.stat-ico i {
  color: #002E4A;
  font-size: 18px;
}

.stat-title {
  font-family: "f4";
  font-size: 20px;
  color: #002E4A;
  margin: 0 0 6px;
}

.stat-sub {
  font-family: "f5";
  font-size: 14px;
  color: #000;
  margin: 0;
  line-height: 1.35;
}

@media (max-width: 992px) {
  .stat-row {
    gap: 18px;
  }

  .stat-card {
    width: 100%;
    max-width: 360px;
  }
}

@media (max-width: 576px) {
  .stat-card {
    max-width: 100%;
  }
}


/* ===== ABOUT GRID ===== */
.about-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 40px;
  align-items: start;
  margin-top: 80px;
}

/* Pills */
.about-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  border-radius: 999px;
  background: #fff;
  color: #ff5f48;
  font-family: "f3";
  font-size: 18px;
}

.pill-ico {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.about-title {
  font-family: "f4";
  font-size: 44px;
  line-height: 1.12;
  margin: 16px 0 14px;
  color: #fff;
}

.about-para {
  font-family: "f2";
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .85);
  margin: 0;
  max-width: 520px;
}

.story-block {
  margin-top: 28px;
}

.story-title {
  font-family: "f3";
  font-size: 32px;
  line-height: 1.3;
  margin: 14px 0 10px;
  color: #fff;
}

.story-para {
  font-family: "f2";
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .85);
  margin: 0;
  max-width: 520px;
}

/* Photo frame */
.photo-frame {
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
}

.photo-frame img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .about-title {
    font-size: 34px;
  }

  .photo-frame {
    margin-left: 0;
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .about-title {
    font-size: 28px;
  }

  .story-title {
    font-size: 24px;
  }

  .about-para,
  .story-para {
    font-size: 16px;
  }
}


/* ===== VISION & MISSION ===== */
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px 46px;
  align-items: center;
  margin-top: 80px;
  position: relative;
  z-index: 2;
}

.vm-collage {
  position: relative;
  width: 100%;
  max-width: 560px;
}

.vm-main {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  aspect-ratio: 16 / 9;
  display: block;
}

.vm-collage--right {
  margin-left: auto;
}

.vm-card {
  background: #dff1ff;
  border-radius: 18px;
  padding: 22px 26px;
  color: #0b2b3a;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .18);
}

.vm-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.vm-head-ico {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background: rgba(255, 95, 72, .18);
  color: #ff5f48;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex: 0 0 auto;
}

.vm-title {
  font-family: "f3";
  font-size: 32px;
  margin: 0;
  color: #000;
}

.vm-para {
  font-family: "f2";
  font-size: 16px;
  line-height: 1.55;
  margin: 0 0 14px;
  color: #000;
}

.vm-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.vm-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-family: "f2";
  font-size: 16px;
  line-height: 1.45;
  color: #000;
}

.vm-tick {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: rgba(39, 174, 96, .14);
  border: 1px solid rgba(39, 174, 96, .55);
  color: #27ae60;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  margin-top: 2px;
  flex: 0 0 auto;
}

@media (max-width: 992px) {
  .vm-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .vm-collage {
    max-width: 100%;
  }

  .vm-collage--right {
    margin-left: 0;
  }
}

@media (max-width: 576px) {
  .vm-card {
    padding: 18px;
    border-radius: 16px;
  }

  .vm-title {
    font-size: 22px;
  }

  .vm-para,
  .vm-list li {
    font-size: 14px;
  }
}


/* ===== FEATURED PROJECTS ===== */
.featured-sec {
  padding: 60px 0;
  color: #fff;
  background: #002E4A;
}

.feat-title {
  font-family: "f4";
  font-size: 60px;
  line-height: 1;
  margin: 0;
}

.feat-title span {
  display: block;
  color: #ff5f48;
  margin-top: 8px;
}

.feat-sub {
  font-family: "f2";
  font-size: 16px;
  max-width: 650px;
  margin-top: 15px;
  margin-bottom: 0;
}

.feat-btn {
  background: #ffffff;
  color: #ff5f48;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: "f3";
  font-size: 18px;
  white-space: nowrap;
  flex-shrink: 0;
  align-self: flex-end;
}

.feat-btn:hover {
  background: #f0f0f0;
  color: #ff5f48;
}

.feat-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 30px;
}

/* Card */
.feat-card {
  background: #fff;
  border-radius: 22px;
  padding: 30px;
  color: #000;
}

.feat-inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 30px;
  align-items: center;
}

.feat-name {
  font-family: "f4";
  font-size: 28px;
  margin: 0 0 8px;
}

.feat-desc {
  font-family: "f2";
  font-size: 14px;
  color: #6c757d;
  margin: 0 0 20px;
}

.meta {
  margin-bottom: 20px;
}

/* Fixed: removed fixed 100px gap, use flexible layout instead */
.meta-row {
  display: flex;
  gap: 20px;
  margin-bottom: 14px;
  font-family: "f2";
  font-size: 14px;
  flex-wrap: wrap;
}

.meta-row b {
  min-width: 80px;
  flex-shrink: 0;
}

.meta-ok {
  color: green;
  font-weight: 600;
}

.feat-more {
  background: #002E4A;
  color: #fff;
  padding: 12px 24px;
  border-radius: 999px;
  font-family: "f3";
  display: inline-block;
}

.feat-more:hover {
  background: #001f33;
  color: #fff;
}

.feat-img img {
  width: 100%;
  border-radius: 18px;
  height: 350px;
  object-fit: cover;
}

/* Arrows */
.feat-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  font-size: 32px;
  color: #fff;
  z-index: 10;
  cursor: pointer;
  line-height: 1;
  padding: 8px;
}

.feat-prev {
  left: -44px;
}

.feat-next {
  right: -44px;
}

/* Dots */
.feat-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.feat-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  border: none;
  cursor: pointer;
  transition: width .2s, background .2s;
}

.feat-dot.active {
  width: 25px;
  background: #ff5f48;
  border-radius: 10px;
}

@media (max-width: 992px) {
  .feat-inner {
    grid-template-columns: 1fr;
  }

  .feat-arrow {
    display: none;
  }

  .feat-title {
    font-size: 40px;
  }

  .feat-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 576px) {
  .feat-title {
    font-size: 32px;
  }

  .feat-card {
    padding: 20px;
  }

  .feat-img img {
    height: 220px;
  }
}


/* ===== SERVICES SECTION ===== */
.services-sec {
  position: relative;
  padding: 54px 0 70px;
  overflow: hidden;
  background: #002E4A;
}

.services-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../img/Blueprint.png) no-repeat right center;
  background-size: 100%;
  opacity: .20;
  pointer-events: none;
}

.srv-head {
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
}

.srv-head h2 {
  font-family: "f4";
  font-size: 52px;
  line-height: 1.02;
  margin: 0;
  color: #fff;
}

.srv-head h2 span {
  display: block;
  color: #ff5f48;
  margin-top: 8px;
}

.srv-head p {
  font-size: 18px;
  line-height: 1.6;
  margin: 12px 0 0;
  color: #fff;
  font-family: "f2";
  /* max-width: 700px; */
}

.srv-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 44px;
}

.srv-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}

/* Reversed row: image first */
.srv-row.reverse .srv-imgwrap {
  order: -1;
}

.srv-name {
  font-family: "f4";
  color: #ff5f48;
  font-size: 40px;
  margin: 0 0 10px;
}

.srv-desc {
  font-family: "f2";
  font-size: 20px;
  line-height: 1.7;
  margin: 0 0 12px;
  color: #fff;
}

.srv-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ff5f48;
  font-family: "f3";
  font-size: 24px;
}

.srv-link i {
  font-size: 12px;
  transform: translateY(1px);
}

.srv-link:hover {
  opacity: .85;
  color: #fff;
}

.srv-img {
  width: 100%;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

@media (max-width: 992px) {
  .srv-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  /* Reset order on mobile so image always follows text */
  .srv-row.reverse .srv-imgwrap {
    order: initial;
  }

  .srv-head h2 {
    font-size: 40px;
  }

  .srv-name {
    font-size: 30px;
  }

  .srv-desc {
    font-size: 17px;
  }
}

@media (max-width: 576px) {
  .srv-head h2 {
    font-size: 30px;
  }

  .srv-name {
    font-size: 26px;
  }

  .srv-desc {
    font-size: 15px;
  }

  .srv-img {
    height: 190px;
  }

  .services-sec::before {
    background-size: 700px;
    background-position: center bottom;
    opacity: .06;
  }
}


/* ===== PARTNER / CONTACT FORM SECTION ===== */
.partner-sec {
  padding: 26px 0 60px;
  background: #002E4A;
}

.partner-shell {
  background: #e9e9e9;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .18);
}

.partner-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 22px;
  align-items: stretch;
}

.p-title {
  font-family: "f4";
  font-size: 40px;
  line-height: 1.1;
  margin: 6px 0 10px;
  color: #ff5f48;
}

.p-sub {
  font-family: "f5";
  font-size: 20px;
  line-height: 1.55;
  margin: 0 0 18px;
  color: #111;
}

.form-label {
  font-size: 16px;
  color: rgba(0, 0, 0, .45);
  margin-bottom: 6px;
  font-family: "f3";
}

.req {
  color: #ff5f48;
  font-family: "f3";
  margin-left: 2px;
}

.p-input {
  border: 1px solid rgba(0, 0, 0, .10);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 16px;
  box-shadow: 0 2px 0 rgba(0, 0, 0, .03);
  font-family: "f3";
  width: 100%;
}

.p-input:focus {
  box-shadow: none;
  border-color: rgba(0, 46, 74, .45);
  outline: none;
}

.p-textarea {
  min-height: 92px;
  resize: none;
}

.p-btn {
  width: 100%;
  background: #002E4A;
  color: #fff;
  border: 0;
  padding: 12px 16px;
  border-radius: 10px;
  font-family: "f2";
  font-size: 20px;
  cursor: pointer;
}

.p-btn:hover {
  background: #001f33;
}

/* ===== TESTIMONIAL CARD ===== */
.t-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 585px;
  width: 100%;
}

.t-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  z-index: 1;
}

.t-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .62);
  z-index: 2;
}

.t-top,
.t-quote,
.t-person,
.t-nav {
  position: absolute;
  z-index: 3;
}

.t-top {
  left: 26px;
  right: 26px;
  top: 340px;
}

.t-logo {
  font-family: "f4";
  font-size: 34px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
}

.t-logo img {
  height: 28px;
  width: auto;
}

.t-org {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  font-family: "f3";
  font-size: 14px;
  color: #ff5f48;
}

.t-org-arrow {
  font-size: 18px;
  line-height: 1;
}

.t-quote {
  left: 26px;
  right: 26px;
  bottom: 120px;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, .90);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.t-person {
  left: 26px;
  bottom: 58px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.t-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, .25);
  flex-shrink: 0;
}

.t-name {
  margin: 0;
  font-family: "f3";
  font-size: 14px;
  color: #fff;
  line-height: 1.2;
}

.t-role {
  margin: 2px 0 0;
  font-size: 11px;
  color: rgba(255, 255, 255, .70);
}

.t-nav {
  right: 16px;
  bottom: 16px;
  display: flex;
  gap: 10px;
}

.t-nav button {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 0;
  background: rgba(230, 230, 230, .85);
  color: #0b2b3a;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.t-nav button:hover {
  background: #fff;
}

@media (max-width: 992px) {
  .partner-grid {
    grid-template-columns: 1fr;
  }

  .t-card {
    min-height: 520px;
  }

  .t-top {
    top: 240px;
  }

  .t-quote {
    bottom: 110px;
    right: 18px;
    left: 18px;
  }
}

@media (max-width: 576px) {
  .partner-shell {
    padding: 16px;
  }

  .p-title {
    font-size: 28px;
  }

  .p-sub {
    font-size: 15px;
  }

  .t-top {
    left: 18px;
    top: 220px;
  }

  .t-quote {
    left: 18px;
    right: 18px;
  }

  .t-person {
    left: 18px;
  }
}


/* ===== TRUSTED PARTNERS ===== */
.partners-sec {
  background: #002E4A;
  padding: 54px 0 70px;
}

.partners-title {
  text-align: center;
  font-family: "f4";
  font-size: 38px;
  color: #ff5f48;
  margin: 0 0 38px;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 44px 64px;
  align-items: center;
}

.partner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  opacity: .95;
}

.partner-item img {
  max-width: 170px;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: brightness(.95);
}

.partner-item img.small {
  max-width: 140px;
}

.partner-item img.big {
  max-width: 190px;
}

@media (max-width: 992px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 40px;
  }

  .partner-item img {
    max-width: 160px;
  }
}

@media (max-width: 576px) {
  .partners-title {
    font-size: 28px;
  }

  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 24px;
  }

  .partner-item {
    min-height: 56px;
  }

  .partner-item img {
    max-width: 130px;
  }
}

@media (max-width: 360px) {
  .partners-grid {
    grid-template-columns: 1fr;
  }
}


/* ===== CONTACT SECTION ===== */
.contact-sec {
  background: #002E4A;
  padding: 36px 0 64px;
}

.contact-title {
  text-align: center;
  font-family: "f4";
  font-size: 38px;
  color: #ff5f48;
  margin: 0 0 18px;
}

.contact-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 520px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .28);
}

.contact-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .55);
}

.contact-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 26px;
  padding: 28px;
  align-items: stretch;
}

.contact-info {
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 160px 24px 24px;
}

.info-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.info-ico {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff5f48;
  font-size: 16px;
  flex-shrink: 0;
}

.info-label {
  font-family: "f4";
  font-size: 20px;
  color: #ff5f48;
}

.info-val {
  font-family: "f3";
  font-size: 22px;
  line-height: 1.2;
}

.info-val a {
  color: inherit;
}

.info-addr {
  font-family: "f2";
  font-size: 20px;
  line-height: 1.3;
  max-width: 520px;
}

/* Contact right form card */
.contact-form {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .22);
}

.form-title {
  font-family: "f4";
  font-size: 22px;
  margin: 2px 0 14px;
  color: #002E4A;
}

.form-grid {
  display: grid;
  gap: 14px;
}

.f-field input,
.f-field textarea {
  width: 100%;
  border: 0;
  background: #eef3ff;
  border-radius: 6px;
  padding: 14px 16px;
  font-family: "f2";
  font-size: 13px;
  outline: none;
}

.f-field textarea {
  min-height: 120px;
  resize: none;
}

.f-label {
  display: block;
  font-family: "f3";
  color: #002E4A;
  font-size: 13px;
  margin: 2px 0 6px;
}

.f-btn {
  width: 100%;
  margin-top: 8px;
  border: 0;
  border-radius: 8px;
  padding: 14px 16px;
  font-family: "f4";
  color: #fff;
  background: #002E4A;
  cursor: pointer;
}

.f-btn:hover {
  background: #001f33;
}

@media (max-width: 992px) {
  .contact-inner {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .contact-info {
    padding: 60px 10px 10px;
  }
}

@media (max-width: 576px) {
  .contact-title {
    font-size: 30px;
  }

  .info-val {
    font-size: 18px;
  }

  .info-addr {
    font-size: 16px;
  }

  .contact-form {
    padding: 16px;
  }
}



/* //////////project///////// */
/* ===== HERO IMAGE ===== */
.pd-hero {
  background: #002E4A;
  padding: 0 0 0;
}

.pd-hero-inner {
  /* reuse site-header max-width+padding */
}

.pd-hero-img-wrap {
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  max-height: 520px;
}

.pd-hero-img-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}


/* ===== INTRO SECTION ===== */
.pd-intro {
  background: #002E4A;
  position: relative;
  overflow: hidden;
  padding: 60px 0 70px;
}

/* Faint blueprint background art (same technique as lp-wrap) */
.pd-bg-art {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    url("../img/projectbk.png") center center / cover no-repeat;
  opacity: 0.20;
  z-index: 0;
  width: 100%;

}

.pd-intro-content {
  position: relative;
  z-index: 1;
}

/* Project Title */
.pd-title {
  font-family: "f4";
  font-size: 60px;
  line-height: 1.08;
  color: #fff;
  margin: 0 0 22px;
}

.pd-dot {
  color: #ff5f48;
}

.pd-desc {
  font-family: "f2";
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
  margin: 0 0 16px;
}

.pd-tagline {
  font-family: "f3";
  font-size: 17px;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 54px;
}

.pd-tagline b {
  font-family: "f4";
}


/* ===== PROJECT HIGHLIGHTS ===== */
.pd-highlights-title {
  font-family: "f4";
  font-size: 38px;
  color: #ff5f48;
  margin: 0 0 28px;
}

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

/* Individual highlight card */
.pd-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 22px 20px 24px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pd-card-ico {
  /* icon box — inherits SVG rect bg */
  display: flex;
  align-items: flex-start;
}

.pd-card-ico svg {
  flex-shrink: 0;
}

.pd-card-title {
  font-family: "f4";
  font-size: 24px;
  color: #0b2b3a;
  margin: 0;
  line-height: 1.2;
}

.pd-card-desc {
  font-family: "f2";
  font-size: 16px;
  color: #444;
  line-height: 1.6;
  margin: 0;
}


/* ===== FULL-WIDTH PROJECT PHOTO ===== */
.pd-fullimg {
  background: #002E4A;
  padding: 0 0 70px;
}

.pd-fullimg-wrap {
  border-radius: 18px;
  overflow: hidden;
  width: 100%;
}

.pd-fullimg-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center top;
  display: block;
}


/* =============================================================
   RESPONSIVE
   ============================================================= */

@media (max-width: 1100px) {
  .pd-title {
    font-size: 46px;
  }
}

@media (max-width: 992px) {

  .pd-hero-img-wrap,
  .pd-hero-img-wrap img {
    height: 340px;
  }

  .pd-title {
    font-size: 40px;
  }

  .pd-cards-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .pd-fullimg-wrap img {
    height: 380px;
  }
}

@media (max-width: 768px) {

  .pd-hero-img-wrap,
  .pd-hero-img-wrap img {
    height: 280px;
    border-radius: 14px;
  }

  .pd-intro {
    padding: 44px 0 54px;
  }

  .pd-title {
    font-size: 34px;
  }

  .pd-desc {
    font-size: 16px;
  }

  .pd-fullimg-wrap img {
    height: 300px;
  }
}

@media (max-width: 576px) {

  .pd-hero-img-wrap,
  .pd-hero-img-wrap img {
    height: 220px;
    border-radius: 12px;
  }

  .pd-title {
    font-size: 28px;
  }

  .pd-tagline {
    font-size: 15px;
    margin-bottom: 36px;
  }

  .pd-cards-row {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .pd-card {
    padding: 16px 14px 18px;
    gap: 10px;
  }

  .pd-card-title {
    font-size: 16px;
  }

  .pd-card-desc {
    font-size: 12px;
  }

  .pd-fullimg-wrap img {
    height: 240px;
    object-position: center center;
  }

  .pd-highlights-title {
    font-size: 22px;
  }
}

@media (max-width: 400px) {
  .pd-cards-row {
    grid-template-columns: 1fr;
  }
}






/* ===== FOOTER ===== */
.sm-footer {
  background: #0b0b0b;
  color: #fff;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding: 60px 0 60px;
  flex-wrap: wrap;
  /* allow wrapping on tablets */
}

.footer-left {
  min-width: 220px;
}

.footer-logo img {
  height: 80px;
  width: auto;
  display: block;
  margin-bottom: 14px;
}

.footer-enquiry-title {
  font-family: "f3";
  font-size: 20px;
  margin: 0 0 10px;
  color: #fff;
  opacity: .9;
}

.footer-form {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 999px;
  padding: 4px;
  max-width: 260px;
}

.footer-form input {
  border: 0;
  outline: none;
  flex: 1;
  padding: 8px 12px;
  font-family: "f2";
  font-size: 12px;
  border-radius: 999px;
  min-width: 0;
  /* prevent overflow in flex */
}

.footer-form button {
  border: 0;
  background: #0b0b0b;
  color: #fff;
  font-family: "f3";
  font-size: 12px;
  padding: 8px 14px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  cursor: pointer;
  flex-shrink: 0;
}

.footer-form button .arrow {
  font-size: 14px;
  line-height: 1;
}

/* Footer nav links */
.footer-links {
  display: flex;
  gap: 60px;
  margin-top: 6px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: #fff;
  font-family: "f2";
  font-size: 18px;
  opacity: .8;
  transition: opacity .2s;
}

.footer-col a:hover {
  opacity: 1;
}

/* Social icons */
.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 6px;
  flex-wrap: wrap;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: .85;
  font-size: 20px;
}

.footer-social a:hover {
  opacity: 1;
}

/* Footer bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .10);
  padding: 10px 0;
  background-color: #fff;
  color: #000;
}

.footer-bottom p {
  margin: 0;
  text-align: center;
  font-family: "f2";
  font-size: 11px;
}

@media (max-width: 992px) {
  .footer-top {
    /* flex-direction: column; */
    gap: 22px;
  }

  .footer-links {
    gap: 40px;
  }
}

@media (max-width: 576px) {
  .footer-form {
    max-width: 100%;
  }

  .footer-links {
    gap: 30px;
  }

  .footer-col a {
    font-size: 16px;
  }
}



/* =============================================================
   OUR APPROACH SECTION
   ============================================================= */
.pd-approach {
  background: #002E4A;
  position: relative;
  overflow: hidden;
  padding: 20px 0 20px;
}

/* Blueprint background — same building-line art from the design */
.pd-approach-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: url("../img/projettt.png") right center / cover no-repeat;
  opacity: 0.80;
  z-index: 0;
}

.pd-approach-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.pd-approach-title {
  font-family: "f4";
  font-size: 52px;
  line-height: 1.08;
  color: #fff;
  margin: 0 0 32px;
}

.pd-approach-lead {
  font-family: "f2";
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 24px;
}

.pd-approach-body {
  font-family: "f2";
  font-size: 18px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 28px;
}

.pd-approach-label {
  font-family: "f3";
  font-size: 20px;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 14px;
}

.pd-approach-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pd-approach-list li {
  font-family: "f2";
  font-size: 18px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  padding-left: 18px;
  position: relative;
}

/* Bullet dot */
.pd-approach-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .pd-approach-title {
    font-size: 38px;
  }
}

@media (max-width: 576px) {
  .pd-approach {
    padding: 50px 0 60px;
  }

  .pd-approach-title {
    font-size: 30px;
    margin-bottom: 24px;
  }

  .pd-approach-lead,
  .pd-approach-body {
    font-size: 15px;
  }
}


/* =============================================================
   GALLERY SECTION
   ============================================================= */
.pd-gallery {
  background: #002E4A;
  padding: 20px 0 80px;
}

.pd-gallery-head {
  margin-bottom: 40px;
}

.pd-gallery-label {
  font-family: "f4";
  font-size: 34px;
  color: #ff5f48;
  margin: 0 0 10px;
  text-transform: lowercase;
}

.pd-gallery-title {
  font-family: "f4";
  font-size: 50px;
  line-height: 1.15;
  color: #fff;
  margin: 0;
}

/* 2-column grid, 3 rows — matching the design exactly */
.pd-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.pd-gallery-item {
  border-radius: 14px;
  overflow: hidden;
  width: 100%;
}

.pd-gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.pd-gallery-item:hover img {
  transform: scale(1.04);
}

/* Responsive */
@media (max-width: 992px) {
  .pd-gallery-title {
    font-size: 30px;
  }

  .pd-gallery-item img {
    height: 220px;
  }
}

@media (max-width: 576px) {
  .pd-gallery {
    padding: 16px 0 60px;
  }

  .pd-gallery-title {
    font-size: 24px;
  }

  .pd-gallery-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pd-gallery-item img {
    height: 220px;
  }

  .pd-gallery-label {
    font-size: 16px;
  }
}








/* =============================================================
   HERO — left-aligned title over a vivid wireframe building bg
   ============================================================= */
.sd-hero {
  background: #002E4A;
  position: relative;
  overflow: hidden;
  padding: 80px 0 90px;
  min-height: 420px;
  display: flex;
  align-items: center;
}

/* The wireframe/blueprint building image fills the RIGHT side
   of the hero at high opacity — exactly as in the design       */
.sd-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: url("../img/bannerpd.png");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 100% auto;
  opacity: 0.40;
}

.sd-hero-content {
  position: relative;
  z-index: 1;
  max-width: 480px;
}

.sd-hero-title {
  font-family: "f4";
  font-size: 64px;
  line-height: 1.05;
  color: #fff;
  margin: 0 0 28px;
}

.sd-dot {
  color: #ff5f48;
}

.sd-hero-desc {
  font-family: "f2";
  font-size: 18px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}


/* =============================================================
   WHAT WE DO
   ============================================================= */
.sd-wwd {
  background: #002E4A;
  padding: 80px 0 80px;
}

.sd-wwd-label {
  font-family: "f4";
  font-size: 30px;
  color: #ff5f48;
  margin: 0 0 34px;
}

.sd-wwd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 52px;
}

.sd-wwd-left {
  display: flex;
  flex-direction: column;
}

.sd-wwd-title {
  font-family: "f4";
  font-size: 70px;
  line-height: 1.06;
  color: #fff;
  margin: 0 0 30px;
}

.sd-wwd-body {
  font-family: "f2";
  font-size: 18px;
  line-height: 1.78;
  color: rgba(255, 255, 255, 0.80);
  margin: 0;
}

.sd-wwd-right {
  display: flex;
  align-items: center;
}

.sd-wwd-imgwrap {
  border-radius: 18px;
  overflow: hidden;
  width: 100%;
}

.sd-wwd-imgwrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.sd-wwd-para {
  font-family: "f2";
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.80);
  margin: 0;
}


/* =============================================================
   RESPONSIVE
   ============================================================= */

@media (max-width: 1100px) {
  .sd-hero-title {
    font-size: 52px;
  }

  .sd-wwd-title {
    font-size: 46px;
  }

  .sd-hero-bg {
    background-size: 100% auto;
  }
}

@media (max-width: 992px) {
  .sd-hero {
    padding: 60px 0 70px;
    min-height: auto;
  }

  .sd-hero-title {
    font-size: 44px;
  }

  .sd-hero-bg {
    background-size: 100% auto;
    opacity: 0.35;
  }

  .sd-wwd-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 36px;
  }

  .sd-wwd-title {
    font-size: 38px;
  }

  .sd-wwd-imgwrap img {
    height: 380px;
  }

  .sd-wwd-label {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .sd-hero-title {
    font-size: 36px;
    margin-bottom: 20px;
  }

  .sd-hero-desc {
    font-size: 14px;
  }

  .sd-hero-bg {
    background-position: right bottom;
    background-size: 100% auto;
    opacity: 0.25;
  }

  .sd-wwd-title {
    font-size: 32px;
  }

  .sd-wwd-imgwrap img {
    height: 300px;
  }
}

@media (max-width: 576px) {
  .sd-hero {
    padding: 44px 0 54px;
  }

  .sd-hero-title {
    font-size: 30px;
    margin-bottom: 16px;
  }

  .sd-wwd {
    padding: 50px 0 60px;
  }

  .sd-wwd-label {
    font-size: 17px;
    margin-bottom: 24px;
  }

  .sd-wwd-title {
    font-size: 26px;
    margin-bottom: 18px;
  }

  .sd-wwd-body {
    font-size: 15px;
  }

  .sd-wwd-para {
    font-size: 15px;
  }

  .sd-wwd-imgwrap img {
    height: 240px;
  }
}





/* =============================================================
   OUR EXPERTISE SECTION
   ============================================================= */
.sd-exp {
  background: #002E4A;
  padding: 70px 0 90px;
}

/* "Our Expertise" — orange label */
.sd-exp-label {
  font-family: "f4";
  font-size: 30px;
  color: #ff5f48;
  margin: 0 0 16px;
}

/* "Metro Construction Capabilities" — large white heading */
.sd-exp-title {
  font-family: "f4";
  font-size: 64px;
  line-height: 1.06;
  color: #fff;
  margin: 0 0 64px;
}

/* ── Each expertise row ───────────────────────────────────────
   Row 1: text left  | image right
   Row 2: image left | text right  (reversed)               */
.sd-exp-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 70px;
}

.sd-exp-row:last-child {
  margin-bottom: 0;
}

/* Reversed row — image col comes first in source but renders left */
.sd-exp-row--reverse .sd-exp-imgwrap {
  order: -1;
}

/* Icon (shield + checkmark SVG) */
.sd-exp-ico {
  margin-bottom: 18px;
  display: flex;
  align-items: flex-start;
}

/* Orange capability name */
.sd-exp-name {
  font-family: "f4";
  font-size: 32px;
  color: #ff5f48;
  margin: 0 0 18px;
}

/* Description paragraph */
.sd-exp-desc {
  font-family: "f2";
  font-size: 18px;
  line-height: 1.78;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}

/* Image */
.sd-exp-imgwrap {
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
}

.sd-exp-imgwrap img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .sd-exp-title {
    font-size: 46px;
  }
}

@media (max-width: 992px) {
  .sd-exp-title {
    font-size: 38px;
    margin-bottom: 44px;
  }

  .sd-exp-row {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 52px;
  }

  /* On mobile, always show text first, image after */
  .sd-exp-row--reverse .sd-exp-imgwrap {
    order: 1;
  }

  .sd-exp-imgwrap img {
    height: 280px;
  }
}

@media (max-width: 768px) {
  .sd-exp-title {
    font-size: 32px;
  }

  .sd-exp-imgwrap img {
    height: 240px;
  }
}

@media (max-width: 576px) {
  .sd-exp {
    padding: 50px 0 70px;
  }

  .sd-exp-label {
    font-size: 17px;
  }

  .sd-exp-title {
    font-size: 26px;
    margin-bottom: 36px;
  }

  .sd-exp-name {
    font-size: 19px;
  }

  .sd-exp-desc {
    font-size: 15px;
  }

  .sd-exp-imgwrap img {
    height: 210px;
  }

  .sd-exp-row {
    gap: 20px;
    margin-bottom: 44px;
  }
}




/* =============================================================
   OUR PROCESS — Alternating timeline
   ============================================================= */
.sd-proc {
  background: #002E4A;
  position: relative;
  overflow: hidden;
  padding: 70px 0 100px;
}

/* Blueprint background art — same as other sections */
.sd-proc-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: url("../img/Bluss.png") center center / cover no-repeat;
  opacity: 0.50;
  z-index: 0;
}

.sd-proc .container {
  position: relative;
  z-index: 1;
}

/* "Our Process" orange label */
.sd-proc-label {
  font-family: "f4";
  font-size: 30px;
  color: #ff5f48;
  margin: 0 0 14px;
}

/* "How We Deliver Metro Projects" */
.sd-proc-title {
  font-family: "f4";
  font-size: 64px;
  line-height: 1.08;
  color: #fff;
  margin: 0 0 14px;
}

/* Italic subtitle */
.sd-proc-sub {
  font-family: "f5";
  font-size: 20px;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 60px;
}

/* ── TIMELINE WRAPPER ─────────────────────────────────────────
   3-column grid: [left content] [48px centre column] [right content]
   The number bubble always lives in the fixed 48px centre column,
   so it sits perfectly centred on the dashed line regardless of
   card height or content.                                        */
.sd-proc-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Vertical dashed line — absolutely centred using the same
   left: calc(50%) that matches the centre of the middle column  */
.sd-proc-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  border-left: 2px dashed rgba(255, 95, 72, 0.7);
  z-index: 0;
  pointer-events: none;
}

/* ── Each step row ────────────────────────────────────────────
   grid-template-columns: 1fr 48px 1fr
   Col 1 = left content area
   Col 2 = fixed 48px  → the number bubble fills this exactly
   Col 3 = right content area                                   */
.sd-proc-step {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 48px 1fr;
  align-items: center;
  gap: 0;
  margin-bottom: 24px;
  z-index: 1;
}

.sd-proc-step:last-child {
  margin-bottom: 0;
}

/* --left: card in col 1, number in col 2, col 3 empty */
.sd-proc-step--left .sd-proc-card {
  grid-column: 1;
  grid-row: 1;
  margin-right: 36px;
}

.sd-proc-step--left .sd-proc-num {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  align-self: center;
}

/* --right: col 1 empty, number in col 2, card in col 3 */
.sd-proc-step--right .sd-proc-num {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  align-self: center;
}

.sd-proc-step--right .sd-proc-card {
  grid-column: 3;
  grid-row: 1;
  margin-left: 36px;
}

/* ── Number bubble ────────────────────────────────────────────
   Exactly 48px × 48px so it fills the centre column cleanly   */
.sd-proc-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ff5f48;
  color: #fff;
  font-family: "f4";
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 6px rgba(255, 95, 72, 0.18);
}

/* ── Content card ────────────────────────────────────────────*/
.sd-proc-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 14px;
  padding: 22px 24px 26px;
  backdrop-filter: blur(4px);
}

.sd-proc-card-title {
  font-family: "f4";
  font-size: 24px;
  color: #ff5f48;
  margin: 0 0 16px;
  line-height: 1.3;
}

.sd-proc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sd-proc-list li {
  font-family: "f2";
  font-size: 18px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  padding-left: 16px;
  position: relative;
}

.sd-proc-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: rgba(255, 255, 255, 0.50);
  font-size: 13px;
  line-height: 1.6;
}

/* ── Responsive ──────────────────────────────────────────────*/
@media (max-width: 1100px) {
  .sd-proc-title {
    font-size: 42px;
  }
}

@media (max-width: 992px) {
  .sd-proc-title {
    font-size: 36px;
  }

  .sd-proc-step--left .sd-proc-card {
    margin-right: 24px;
  }

  .sd-proc-step--right .sd-proc-card {
    margin-left: 24px;
  }
}

/* Stack to single column on mobile — number on top, card below */
@media (max-width: 700px) {
  .sd-proc-line {
    display: none;
  }

  .sd-proc-step,
  .sd-proc-step--left,
  .sd-proc-step--right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 36px;
  }

  /* Number always first */
  .sd-proc-step--left .sd-proc-num,
  .sd-proc-step--right .sd-proc-num {
    order: 1;
  }

  /* Card always second, full width, no side margins */
  .sd-proc-step--left .sd-proc-card,
  .sd-proc-step--right .sd-proc-card {
    order: 2;
    width: 100%;
    margin: 0;
  }
}

@media (max-width: 576px) {
  .sd-proc {
    padding: 50px 0 70px;
  }

  .sd-proc-label {
    font-size: 17px;
  }

  .sd-proc-title {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .sd-proc-sub {
    font-size: 14px;
    margin-bottom: 40px;
  }

  .sd-proc-card-title {
    font-size: 15px;
  }

  .sd-proc-list li {
    font-size: 13px;
  }
}



