/* ═══════════════════════════════════════════════
   ROOT & GLOBAL
═══════════════════════════════════════════════ */
:root {
  --red: #d60000;
  --red-dark: #b00000;
  --red-light: #ff1a1a;
  --white: #ffffff;
  --grey-bg: #f5f5f5;
  --dark: #1a1a2e;
  --text: #333333;
  --text-muted: #666666;
  --nav-h: 80px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.08);
  --radius: 12px;
  --transition: all 0.35s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

.section-pad {
  padding: 60px 0;
}

.bg-light-grey {
  background: var(--grey-bg);
}

/* ── Reusable section badges ── */
.section-badge {
  display: inline-block;
  background: rgba(214, 0, 0, 0.08);
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.section-badge-light {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.section-title {
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 10px;
}
.red-title {
  color: var(--red);
}

.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  margin-top: 8px;
}

/* Title decorative bar */
.title-bar {
  width: 60px;
  height: 4px;
  background: var(--red);
  border-radius: 4px;
  margin-bottom: 20px;
}
.title-bar-white {
  width: 60px;
  height: 4px;
  background: var(--white);
  border-radius: 4px;
}

/* ── Buttons ── */
.btn-red {
  background: var(--red);
  color: var(--white);
  border: 2px solid var(--red);
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 6px;
  transition: var(--transition);
  font-size: 0.92rem;
}
.btn-red:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(214, 0, 0, 0.3);
}

.btn-red-outline {
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
  font-weight: 600;
  padding: 9px 22px;
  border-radius: 6px;
  transition: var(--transition);
  font-size: 0.88rem;
}
.btn-red-outline:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(214, 0, 0, 0.25);
}

.btn-hero-red {
  background: var(--red);
  color: var(--white);
  border: 2px solid var(--red);
  font-weight: 600;
  padding: 14px 34px;
  border-radius: 6px;
  font-size: 0.97rem;
  transition: var(--transition);
  text-decoration: none;
}
.btn-hero-red:hover {
  background: var(--red-dark);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(214, 0, 0, 0.4);
}

.btn-hero-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.85);
  font-weight: 600;
  padding: 14px 34px;
  border-radius: 6px;
  font-size: 0.97rem;
  transition: var(--transition);
  text-decoration: none;
}
.btn-hero-white:hover {
  background: var(--white);
  color: var(--dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.25);
}

/* ═══════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════ */
#mainNavbar {
  height: var(--nav-h);
  background: transparent;
  transition:
    background 0.4s ease,
    box-shadow 0.4s ease,
    height 0.3s ease;
  padding: 0;
  z-index: 1000;
}

#mainNavbar.scrolled {
  background: var(--white) !important;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  height: 68px;
}

#mainNavbar.scrolled .nav-link,
#mainNavbar.scrolled .navbar-brand {
  color: var(--dark) !important;
}

#mainNavbar.scrolled .btn-contact-nav {
  background: var(--red);
  color: var(--white) !important;
}

#mainNavbar .navbar-nav .nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  padding: 8px 14px;
  border-radius: 5px;
  transition: var(--transition);
  letter-spacing: 0.2px;
}

#mainNavbar .navbar-nav .nav-link:hover {
  color: var(--white) !important;
  background: rgba(255, 255, 255, 0.12);
}

#mainNavbar.scrolled .navbar-nav .nav-link:hover {
  color: var(--red) !important;
  background: rgba(214, 0, 0, 0.07);
}

.btn-contact-nav {
  background: var(--red);
  color: var(--white) !important;
  border-radius: 6px !important;
  font-weight: 600 !important;
  padding: 8px 20px !important;
  border: 2px solid var(--red);
}

.btn-contact-nav:hover {
  background: var(--red-dark) !important;
  border-color: var(--red-dark) !important;
}

.nav-logo {
  height: 52px;
  width: auto;
  object-fit: contain;

  transition: var(--transition);
}

#mainNavbar.scrolled .nav-logo {
  filter: none;
}

.logo-text-fallback {
  font-size: 1.5rem;
  font-weight: 800;
}

/* Dropdown */
.dropdown-menu {
  border: none;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border-radius: var(--radius);
  padding: 10px 0;
  margin-top: 8px;
}

.dropdown-item {
  font-size: 0.88rem;
  font-weight: 500;
  padding: 9px 22px;
  color: var(--text);
  transition: var(--transition);
}

.dropdown-item:hover {
  background: rgba(214, 0, 0, 0.07);
  color: var(--red);
  padding-left: 28px;
}

/* Toggler on dark bg */
.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.5);
}

#mainNavbar.scrolled .navbar-toggler {
  border-color: var(--red);
}

#mainNavbar.scrolled .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28214%2C0%2C0%2C1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* ═══════════════════════════════════════════════
   HERO — FULL WIDTH VIDEO
═══════════════════════════════════════════════ */
.hero-section {
  position: relative;
  width: 100%;
  /* min-height: 100vh; */
  height: 100vh;
  max-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #000;
}

/* Video wrapper fills entire section */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* The <video> tag — cover like background-size:cover */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

/* Dark gradient overlay — stronger on left for readability */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.52) 55%,
    rgba(0, 0, 0, 0.2) 100%
  );
  z-index: 1;
}

/* Content sits above video + overlay */
.hero-content {
  position: relative;
  z-index: 2;
  /* padding-top: calc(var(--nav-h) + 20px);
  padding-bottom: 80px; */
  padding-top: 0;
  padding-bottom: 0;
}

/* Tagline pill */
.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 22px;
  animation: fadeSlideUp 0.8s ease both;
  animation-delay: 0.2s;
}

.tagline-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.6;
  }
}

/* Main Heading */
.hero-heading {
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 22px;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.5);
  animation: fadeSlideUp 0.9s ease both;
  animation-delay: 0.4s;
}

/* Second line of heading gets accent colour */
.hero-heading span {
  color: #ffffff;
  /* Uncomment below for red accent on 2nd line:
  color: var(--red-light); */
}

/* Sub-text */
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.82);
  max-width: 560px;
  line-height: 1.6;
  animation: fadeSlideUp 1s ease both;
  animation-delay: 0.6s;
}

/* Buttons */
.hero-buttons {
  animation: fadeSlideUp 1.1s ease both;
  animation-delay: 0.8s;
}

.btn-hero-red {
  background: var(--red);
  color: var(--white);
  border: 2px solid var(--red);
  font-weight: 600;
  padding: 14px 36px;
  border-radius: 6px;
  font-size: 0.97rem;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.btn-hero-red:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(214, 0, 0, 0.45);
}

.btn-hero-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.8);
  font-weight: 600;
  padding: 14px 36px;
  border-radius: 6px;
  font-size: 0.97rem;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  backdrop-filter: blur(4px);
}

.btn-hero-white:hover {
  background: rgba(255, 255, 255, 0.95);
  color: var(--dark);
  border-color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(255, 255, 255, 0.2);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.3s;
  animation: fadeIn 1.5s ease both;
  animation-delay: 1.2s;
}

.scroll-indicator:hover {
  color: var(--white);
}

.scroll-text {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-indicator i {
  font-size: 1.2rem;
  animation: bounce 1.8s infinite;
}

/* Animations */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(7px);
  }
}

/* ── Mobile: ensure video still covers properly ── */
@media (max-width: 991.98px) {
  .hero-heading {
    font-size: 2.3rem;
  }
  .hero-sub {
    font-size: 1rem;
  }
  .hero-content {
    text-align: center;
  }
  .hero-sub {
    margin: 0 auto;
  }
  .hero-buttons {
    justify-content: center;
  }
  .tagline-dot {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .hero-heading {
    font-size: 1.9rem;
  }
  .btn-hero-red,
  .btn-hero-white {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

/* ═══════════════════════════════════════════════
   ABOUT SECTION
═══════════════════════════════════════════════ */
.about-section {
  background: #fff;
}

/* Heading */
.about-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 10px;
}

.about-title-bar {
  width: 55px;
  height: 4px;
  background: var(--red);
  border-radius: 4px;
  margin-bottom: 24px;
}

/* Paragraphs — justified like reference */
.about-text {
  font-size: 0.97rem;
  color: #444;
  line-height: 1.9;
  text-align: justify;
  margin-bottom: 18px;
}

.about-text strong {
  color: #222;
  font-weight: 600;
}

/* ── Stats Box (right side) ── */
.about-stats-box {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  border-top: 4px solid var(--red);
  border-bottom: 4px solid var(--red);
  padding: 10px 36px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.07);
  position: relative;
  overflow: hidden;
}

/* Subtle watermark pattern like reference */
.about-stats-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 28px,
      rgba(214, 0, 0, 0.04) 28px,
      rgba(214, 0, 0, 0.04) 29px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 28px,
      rgba(214, 0, 0, 0.04) 28px,
      rgba(214, 0, 0, 0.04) 29px
    );
  pointer-events: none;
  z-index: 0;
}

/* Each stat row */
.about-stat-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 0;
  position: relative;
  z-index: 1;
}

/* Divider between stats */
.about-stat-divider {
  height: 1px;
  background: #f0f0f0;
  position: relative;
  z-index: 1;
}

/* Icon circle */
.about-stat-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(214, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--red);
  flex-shrink: 0;
  transition: var(--transition);
}

.about-stat-item:hover .about-stat-icon {
  background: var(--red);
  color: #fff;
  transform: scale(1.08);
}

/* Number + plus */
.about-stat-right {
  flex: 1;
}

.about-stat-number {
  display: flex;
  align-items: baseline;
  gap: 2px;
  line-height: 1;
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  display: inline-block;
}

.stat-plus {
  font-size: 2rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
}

/* Label */
.about-stat-label {
  font-size: 0.88rem;
  font-weight: 500;
  color: #666;
  margin: 6px 0 0;
  letter-spacing: 0.2px;
}

/* ── Responsive ── */
@media (max-width: 991.98px) {
  .about-stats-box {
    padding: 10px 24px;
    margin-top: 10px;
  }
  .stat-number {
    font-size: 2.2rem;
  }
  .about-title {
    font-size: 1.8rem;
  }
  .about-text {
    text-align: left;
  }
}

@media (max-width: 575.98px) {
  .about-stat-item {
    gap: 14px;
  }
  .about-stat-icon {
    width: 46px;
    height: 46px;
    font-size: 1.1rem;
  }
  .stat-number {
    font-size: 1.8rem;
  }
}

/* ═══════════════════════════════════════════════
   SERVICES SECTION
═══════════════════════════════════════════════ */
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  border-bottom: 4px solid transparent;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.13);
  border-bottom-color: var(--red);
}

.service-icon-wrap {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(214, 0, 0, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--red);
  margin: 0 auto 22px;
  transition: var(--transition);
}

.service-card:hover .service-icon-wrap {
  background: var(--red);
  color: var(--white);
  transform: scale(1.08) rotate(5deg);
}

.service-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 12px;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  flex: 1;
}

/* ═══════════════════════════════════════════════
   WHY CHOOSE SECTION
═══════════════════════════════════════════════ */
.why-section {
  background: #fff;
  padding-top: 60px;
}

.services-section {
  padding-bottom: 40px !important;
}

.why-main-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 10px;
  margin-top: 20px;
}

/* LEFT — infographic */
.why-left-img {
  background: #f7f7f7;
  padding: 25px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-left-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
  /* display: block; */
  border-radius: 12px;
}

.why-left-img {
  background: #f7f7f7;
  padding: 25px;
  border-radius: 16px;
}

/* RIGHT — frame wrapper */
.why-right-frame {
  position: relative;
  padding: 24px 0 24px 24px;
}

/* Green corner — top right */
.why-frame-tl {
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  border-top: 6px solid #6cc000;
  border-right: 6px solid #6cc000;
  border-radius: 0 16px 0 0;
  z-index: 0;
  pointer-events: none;
}

/* Green corner — bottom left */
.why-frame-br {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 120px;
  height: 120px;
  border-bottom: 6px solid #00c06b;
  border-left: 6px solid #00c06b;
  border-radius: 0 0 0 16px;
  z-index: 0;
  pointer-events: none;
}

/* Swiper container */
.why-swiper {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.16);
  position: relative;
  z-index: 1;
}

/* Each slide image */
.why-swiper .swiper-slide img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

/* Nav arrows — styled like reference */
.why-swiper .swiper-button-prev,
.why-swiper .swiper-button-next {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
  top: 50%;
  transform: translateY(-50%);
  transition: background 0.3s;
}

.why-swiper .swiper-button-prev::after,
.why-swiper .swiper-button-next::after {
  font-size: 0.85rem;
  font-weight: 900;
  color: #333;
}

.why-swiper .swiper-button-prev:hover,
.why-swiper .swiper-button-next:hover {
  background: var(--red);
}

.why-swiper .swiper-button-prev:hover::after,
.why-swiper .swiper-button-next:hover::after {
  color: #fff;
}

/* ── Responsive ── */
@media (max-width: 991.98px) {
  .why-main-title {
    font-size: 1.6rem;
  }
  .why-swiper .swiper-slide img {
    height: 300px;
  }
  .why-frame-tl,
  .why-frame-br {
    width: 80px;
    height: 80px;
  }
  .why-right-frame {
    padding: 16px 0 16px 16px;
  }
}

@media (max-width: 575.98px) {
  .why-swiper .swiper-slide img {
    height: 220px;
  }
}

.why-image-box {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.16);
  position: relative;
}

.why-image-box img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: opacity 0.6s ease;
}

.services-section {
  padding-bottom: 80px !important;
}

/* ═══════════════════════════════════════════════
   PROJECT PORTFOLIO SECTION
═══════════════════════════════════════════════ */
.portfolio-section {
  background: #f9f9f9;
}

/* Heading — Red, centered, no badge */
.portfolio-title {
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 0;
}

/* Key value drivers image */
.portfolio-img-wrap {
  text-align: center;
}

.portfolio-key-img {
  width: 100%;
  max-width: 1100px;
  height: auto;
  display: inline-block;
}

/* Bullet list — exact like reference */
.portfolio-ref-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.portfolio-ref-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 20px;
  font-size: 0.95rem;
  color: #333;
  line-height: 1.55;
  border-bottom: 1px solid #ececec;
  transition: background 0.2s;
}

.portfolio-ref-list li:last-child {
  border-bottom: none;
}

.portfolio-ref-list li:hover {
  background: rgba(214, 0, 0, 0.03);
}

/* SVG icon — red chevron circle */
.pli-icon {
  flex-shrink: 0;
  margin-top: 2px;
  width: 18px;
  height: 18px;
  display: inline-flex;
}

.pli-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--red);
}

/* Responsive */
@media (max-width: 767.98px) {
  .portfolio-title {
    font-size: 1.6rem;
  }
  .portfolio-ref-list li {
    font-size: 0.88rem;
    padding: 12px 10px;
  }
}

/* ═══════════════════════════════════════════════
   OUR WORK SECTION
═══════════════════════════════════════════════ */
.ourwork-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.ourwork-bg-layers {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ourwork-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease;
}

.ourwork-bg.active {
  opacity: 1;
}

.ourwork-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.68));
  z-index: 1;
}

.ourwork-content {
  position: relative;
  z-index: 2;
}

.ourwork-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0;
}

.ourwork-list li {
  font-size: 1rem;
  padding: 6px 0;
  font-weight: 400;
}

/* ═══════════════════════════════════════════════
   CUSTOMER BASE SECTION
═══════════════════════════════════════════════ */
.customers-section {
  background: #fff;
}

/* Heading — Red like reference */
.customers-title {
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 10px;
}

.customers-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  font-weight: 400;
}

.customers-desc {
  font-size: 0.97rem;
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Swiper wrapper with arrows ── */
.clients-swiper-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 30px 0 10px;
}

/* The Swiper itself */
.clients-swiper {
  flex: 1;
  overflow: hidden;
}

/* Each slide */
.clients-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Logo card — white box with separator */
.client-logo-item {
  width: 100%;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 2px solid #e8e8e8;
  min-height: 110px;
}

/* Last visible item — no right border */
.clients-swiper .swiper-slide:last-child .client-logo-item {
  border-right: none;
}

.client-logo-item img {
  max-height: 80px;
  max-width: 160px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: var(--transition);
}

.client-logo-item img:hover {
  transform: scale(1.06);
}

/* ── Prev / Next arrow buttons ── */
.clients-btn-prev,
.clients-btn-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  color: var(--dark);
  flex-shrink: 0;
  transition: var(--transition);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  z-index: 2;
}

.clients-btn-prev:hover,
.clients-btn-next:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  box-shadow: 0 4px 16px rgba(214, 0, 0, 0.25);
}

/* Disabled state */
.clients-btn-prev.swiper-button-disabled,
.clients-btn-next.swiper-button-disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

/* ── Responsive ── */
@media (max-width: 767.98px) {
  .customers-title {
    font-size: 1.7rem;
  }
  .client-logo-item {
    padding: 14px 16px;
    min-height: 80px;
    border-right: none;
  }
  .client-logo-item img {
    max-height: 55px;
  }
  .clients-btn-prev,
  .clients-btn-next {
    width: 34px;
    height: 34px;
    font-size: 0.85rem;
  }
}

@media (max-width: 575.98px) {
  .client-logo-item img {
    max-height: 45px;
  }
}

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.footer-section {
  background: #d60000;
  color: rgba(255, 255, 255, 0.88);
}

.footer-top {
  padding: 70px 0 50px;
}

.footer-logo {
  height: 55px;
  object-fit: contain;
 
}

.footer-brand-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  margin: 0;
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 4px 0 0;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  transition: var(--transition);
  text-decoration: none;
}

.social-icon:hover {
  background: var(--white);
  color: var(--red);
  transform: translateY(-3px);
}

.footer-heading {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 3px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 0.88rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a::before {
  content: "›";
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.1rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 6px;
}

.footer-links a:hover::before {
  color: var(--white);
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}

.footer-contact li i {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: 18px 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
}

.footer-bottom .container {
  justify-content: center !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 4px !important;
}

/* ═══════════════════════════════════════════════
   SCROLL TO TOP BUTTON
═══════════════════════════════════════════════ */
.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  background: #046bd2;
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 999;
  box-shadow: 0 4px 16px rgba(214, 0, 0, 0.35);
}

.scroll-top-btn.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  background: #04498f;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(214, 0, 0, 0.45);
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 991.98px) {
  .section-pad {
    padding: 60px 0;
  }
  .hero-heading {
    font-size: 2.2rem;
  }
  .hero-sub {
    font-size: 1rem;
  }
  .hero-content {
    text-align: center;
  }
  .hero-sub {
    margin: 0 auto;
  }
  .stats-card-wrapper {
    margin-top: 20px;
  }
  #mainNavbar .navbar-collapse {
    background: var(--white);
    border-radius: var(--radius);
    padding: 16px;
    box-shadow: var(--shadow);
    margin-top: 8px;
  }
  #mainNavbar .navbar-collapse .nav-link {
    color: var(--dark) !important;
  }
  #mainNavbar .navbar-collapse .nav-link:hover {
    color: var(--red) !important;
    background: rgba(214, 0, 0, 0.05);
  }
  .why-img-main img {
    height: 200px;
  }
  .why-img-row img {
    height: 110px;
  }
}

@media (max-width: 767.98px) {
  .section-title {
    font-size: 1.7rem;
  }
  .stat-number {
    font-size: 1.9rem;
  }
  .ourwork-title {
    font-size: 1.6rem;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  .btn-hero-red,
  .btn-hero-white {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
  .scroll-top-btn {
    bottom: 20px;
    right: 20px;
  }
}

@media (max-width: 575.98px) {
  .stat-block {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .strength-block {
    flex-direction: column;
  }
  .logo-item {
    width: 90px;
  }
  .logo-item img {
    max-width: 80px;
  }
}
