* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #fff;
  color: #222;
}

/* ================= HEADER ================= */
.header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.container {
  max-width: 1200px;
  width: 100%;
  padding: 0 16px;
  margin: auto;
}


.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
}

.logo img {
  height: 48px;
}

img,
video {
  max-width: 100%;
  height: auto;
}

.hero img,
.project-card img,
.stats-media video {
  width: 100%;
  object-fit: cover;
}

.hero {
  min-height: 60vh;
}

@media (max-width: 768px) {
  .hero{
    min-height: auto;
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  p  { font-size: 14px; }
}

@media (max-width: 768px) {
  .btn,
  button {
    width: 100%;
    text-align: center;
  }
}

/* ================= NAV MENU ================= */
nav > ul {
  display: flex;
  list-style: none;
  gap: 28px;
}

nav > ul > li > a {
  text-decoration: none;
  color: #0a2540;
  font-weight: 500;
  font-size: 15px;
}

/* Brochure Button */
.brochure-btn {
  background: #0a2540;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
}

/* ================= DROPDOWN ================= */
nav ul li {
  position: relative;
}

nav ul li ul {
  position: absolute;
  top: 120%;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  width: 320px;
  padding: 10px 0;
  border-radius: 6px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  display: none;
  z-index: 999;
}

nav ul li ul li {
  list-style: none;
}

nav ul li ul li a {
  display: block;
  padding: 12px 20px;
  font-size: 14px;
  color: #222;
  text-decoration: none;
  transition: background-color 0.25s ease;
}

nav ul li ul li a:hover {
  background-color: #f5f7fa;
}

nav ul li:hover > ul {
  display: block;
}

/* ================= HERO ================= */
.hero {
  margin-top: 85px;
  position: relative;
  height: 85vh;
}

/* IMPORTANT HEIGHT FIX */
.heroSwiper,
.heroSwiper .swiper-wrapper,
.heroSwiper .swiper-slide {
  height: 100%;
}

/* Slide backgrounds */
.heroSwiper .swiper-slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

/* Overlay */
.heroSwiper .swiper-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 37, 64, 0.65);
  z-index: 1;
}

/* Text on top */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 100px 80px;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
}

.hero-content h1 span {
  color: #f5a623;
}

.hero-content p {
  margin-top: 20px;
  font-size: 16px;
  color: #e5e7eb;
  line-height: 1.7;
}



/* ================= HERO IMAGES ================= */
.heroSwiper .swiper-slide:nth-child(1) {
  background-image: url("../images/hero-1.jpeg");
}

.heroSwiper .swiper-slide:nth-child(2) {
  background-image: url("../images/hero-2.jpeg");
}

/* ================= WHATSAPP ================= */
.whatsapp {
  position: fixed;
  bottom: 25px;
  left: 25px;
  background: #25d366;
  color: #fff;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  z-index: 1000;
  text-decoration: none;
}
/* ================= ABOUT SECTION ================= */
.about-section {
  padding: 90px 0;
  background: #ffffff;
}

.about-wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
}

/* LEFT CONTENT */
.about-content {
  flex: 1;
}

.about-tag {
  display: inline-block;
  font-size: 14px;
  color: #0a2540;
  margin-bottom: 12px;
  position: relative;
  padding-left: 14px;
}

.about-tag::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 4px;
  height: 14px;
  background: #0a2540;
  border-radius: 2px;
}

.about-content h2 {
  font-size: 40px;
  font-weight: 700;
  color: #0a2540;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 18px;
  max-width: 520px;
}

/* BUTTON */
.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  background: #0a2540;
  color: #ffffff;
  padding: 12px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.about-btn:hover {
  background: #123a6f;
}

/* RIGHT IMAGE */
.about-image {
  flex: 1;
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 120px 20px 120px 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .about-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .about-content h2 {
    font-size: 32px;
  }

  .about-image img {
    border-radius: 30px;
  }
}
/* ================= SERVICES SECTION ================= */
.services-section {
  background: #0a1f3f;
  padding: 90px 0;
  color: #ffffff;
}

.services-header {
  text-align: center;
  max-width: 700px;
  margin: auto;
}

.services-header h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 14px;
}

.services-header p {
  font-size: 15px;
  opacity: 0.9;
  line-height: 1.7;
}

/* Grid */
.services-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  justify-items: center;
}
@media (max-width: 768px) {
  .services-grid,
  .projects-grid,
  .stats-wrapper,
  .enquiry-wrapper {
    grid-template-columns: 1fr;
  }
}


/* Card */
.service-box {
  background: #ffffff;
  color: #222;
  padding: 36px 28px;
  border-radius: 14px;
  text-align: center;
  max-width: 340px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.service-box:hover {
  transform: translateY(-6px);
}

.service-box i {
  font-size: 40px;
  color: #0a2540;
  margin-bottom: 16px;
}

.service-box h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #0a2540;
}

.service-box p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* Center last card */
.center-box {
  grid-column: 2 / span 1;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .center-box {
    grid-column: auto;
  }

  .services-header h2 {
    font-size: 32px;
  }
}
/* ================= WHY CHOOSE ================= */
.why-choose {
  padding: 90px 0;
  background: #ffffff;
}

.why-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.why-left h2 {
  font-size: 40px;
  color: #0a2540;
  margin-bottom: 40px;
}

.why-item {
  display: flex;
  gap: 20px;
  margin-bottom: 26px;
}

.why-icon {
  width: 46px;
  height: 46px;
  background: #0a2540;
  color: #ffffff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.why-item:hover .why-icon {
  transform: rotate(8deg) scale(1.05);
}

.why-text h4 {
  font-size: 18px;
  color: #0a2540;
}

.why-text p {
  font-size: 14px;
  color: #555;
  max-width: 420px;
}

.why-right img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .about-wrapper,
  .why-wrapper {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding: 60px 30px;
  }
}
/* ================= STATS SECTION ================= */
.stats-section {
  background: linear-gradient(135deg, #0a1f3f, #07172f);
  padding: 100px 0;
  color: #ffffff;
}

.stats-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT */
.stats-left h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 14px;
}

.stats-left p {
  font-size: 15px;
  color: #d1d5db;
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.7;
}

/* STATS GRID */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.stat-box {
  background: #ffffff;
  color: #0a2540;
  padding: 22px 20px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

.stat-box h3 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 4px;
}

.stat-box span {
  font-size: 14px;
  font-weight: 500;
}

/* BUTTONS */
.stats-buttons {
  display: flex;
  gap: 14px;
}

.btn-primary {
  background: #0a2540;
  color: #ffffff;
  padding: 12px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
}

.btn-outline {
  border: 1px solid #ffffff;
  color: #ffffff;
  padding: 12px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
}

/* ================= STATS WRAPPER FIX ================= */
.stats-wrapper {
  display: grid;
  grid-template-columns: 1fr auto; /* 🔥 auto column for fixed video */
  gap: 60px;
  align-items: center;
}

/* ================= RIGHT MEDIA – FIXED SIZE ================= */
.stats-media {
  width: 320px;          /* FIXED WIDTH */
  height: 300px;         /* FIXED HEIGHT */
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
  justify-self: end;     /* aligns right */
}

/* Image / Video */
.stats-media img,
.stats-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 900px) {
  .stats-wrapper {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .stats-media {
    width: 320px;
    height: 240px;
  }
}
/* ================= ENQUIRY SECTION ================= */
.enquiry-section {
  background: #e9eef4;
  padding: 100px 0;
}

.enquiry-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* LEFT */
.enquiry-left h2 {
  font-size: 42px;
  font-weight: 700;
  color: #0a2540;
  margin-bottom: 18px;
}

.enquiry-left p {
  font-size: 15px;
  color: #555;
  max-width: 420px;
  line-height: 1.7;
}

/* RIGHT FORM */
.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 14px;
  border-radius: 6px;
  border: 1px solid #bfc7d1;
  outline: none;
  background: #ffffff;
}

.enquiry-form textarea {
  resize: none;
}

.enquiry-form input::placeholder,
.enquiry-form textarea::placeholder {
  color: #999;
}

/* BUTTON */
.enquiry-form button {
  width: 140px;
  padding: 12px 0;
  background: #0a2540;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.enquiry-form button:hover {
  background: #123a6f;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .enquiry-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .enquiry-left h2 {
    font-size: 32px;
  }

  .enquiry-form button {
    width: 100%;
  }
}
/* ===== FOOTER ===== */
.site-footer {
  background: #0a1f3f;
  color: #fff;
  padding-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.site-footer h4 {
  margin-bottom: 14px;
  font-size: 16px;
}

.site-footer p,
.site-footer li {
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.9;
}

.site-footer ul {
  list-style: none;
}

.site-footer li {
  margin-bottom: 8px;
}

.social-icons span {
  display: inline-flex;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  color: #0a1f3f;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 10px;
}

.footer-bottom {
  margin-top: 40px;
  padding: 16px;
  text-align: center;
  font-size: 13px;
  background: #07172f;
}
/* CALL BUTTON */
.call-btn {
  position: fixed;
  bottom: 90px;            /* above WhatsApp */
  left: 25px;
  background: #05f531;    /* brand blue */
  color: #fff;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  z-index: 1000;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  transition: transform 0.3s ease;
}

.call-btn:hover {
  transform: scale(1.08);
}
/* ================= GLOBAL MOBILE FIX ================= */
html, body {
  width: 100%;
  overflow-x: hidden;
}

/* ================= HEADER FIX ================= */
@media (max-width: 768px) {
  .header {
    position: relative;   /* fixed header breaks mobile layouts */
  }

  .nav {
    flex-wrap: wrap;
    gap: 12px;
  }

  nav > ul {
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
  }
}

/* ================= HERO FIX ================= */
@media (max-width: 768px) {
  .hero {
    height: auto;
    min-height: auto;
  }

  .hero-content {
    max-width: 100%;
    padding: 60px 20px;
    text-align: center;
  }
}

/* ================= ABOUT FIX ================= */
@media (max-width: 768px) {
  .about-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .about-content p {
    max-width: 100%;
  }
}

/* ================= SERVICES FIX ================= */
@media (max-width: 768px) {
  .services-grid {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 24px;
  }

  .service-box {
    max-width: 100%;
  }
}

/* ================= WHY CHOOSE FIX ================= */
@media (max-width: 768px) {
  .why-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-left h2 {
    text-align: center;
  }
}

/* ================= STATS FIX ================= */
@media (max-width: 768px) {
  .stats-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .stats-media {
    width: 100%;
    max-width: 320px;
    height: 220px;
    justify-self: center;
  }
}

/* ================= ENQUIRY FIX ================= */
@media (max-width: 768px) {
  .enquiry-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .enquiry-left p {
    max-width: 100%;
    margin: auto;
  }
}

/* ================= FOOTER FIX ================= */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
}

/* ================= FLOATING BUTTON FIX ================= */
@media (max-width: 768px) {
  .whatsapp,
  .call-btn {
    left: 16px;
    width: 48px;
    height: 48px;
  }
}

