 :root {
      --brand-blue: #1b2a78;
      --accent-blue: #2256f3;
      --panel-blue: #243274;
      --section-blue: #263A8B;
      --badge-blue: #2E89FF;
      --partner-text: #263A8B;
    }
    /* === Fix: Remove unwanted white strip above hero === */
header {
  background: transparent !important;
  position: relative !important;
  z-index: 10;
}

body {
  margin: 0;
  padding: 0;
  background-color: #000; /* ensures no white peek from behind */
}
   /* === HERO SECTION: Full Cover Background Under Navbar === */
.service-hero {
  position: relative;
  width: 100%;
  height: 110vh; 
  overflow: hidden;
  margin-top: -90px;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/* Background slideshow (auto image change) */
.service-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* parallax feel on desktop */
  animation: heroFade 24s infinite ease-in-out;
  transition: opacity 1.5s ease;
  z-index: -2;
}

/* Gradient overlay for visibility */
.service-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom right,
    rgba(0, 0, 0, 0.35),
    rgba(0, 0, 0, 0.15)
  );
  z-index: -1;
}

/* Hero text content */
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 700px;
  padding: 0 2rem;
  margin-left: 8%;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-content h1 span {
  color: var(--accent-blue, #2e6bff);
}

.hero-content p {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Buttons */
.hero-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-primary {
  background: var(--accent-blue, #2e6bff);
  color: #fff;
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #1b56f0;
  transform: translateY(-2px);
}

.btn-play {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.btn-play:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: scale(1.1);
}

/* === Transparent Navbar === */
header,
.navbar,
header.bg-white {
  background: transparent ;
  box-shadow: none t;
  position: relative ;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  backdrop-filter: none !important;
}

/* === Background Fade Animation === */
@keyframes heroFade {
  0%, 25% {
    background-image: url("../img/s1.jpg");
  }
  25%, 50% {
    background-image: url("../img/s2.jpg");
  }
  40%, 75% {
    background-image: url("../img/s3.jpg");
  }
  75%, 100% {
    background-image: url("../img/s4.jpg");
  }
}

/* === Responsive Adjustments === */
@media (max-width: 1024px) {
  .service-hero {
    height: 90vh;
    background-attachment: scroll;
  }

  .hero-content {
    margin-left: 5%;
  }

  .hero-content h1 {
    font-size: 3rem;
  }
}

@media (max-width: 640px) {
  .service-hero {
    height: 100vh;
    margin-top: -70px;
    background-attachment: scroll;
  }

  .hero-content {
    margin: 0 auto;
    text-align: center;
    padding: 0 1.5rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}
 
/* whatsapp banner */
.whatsapp-section {
  position: relative;
  overflow: hidden;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

/* Background image */
.whatsapp-section .bg-image {
  position: absolute;
  inset: 0;
  background: url("../img/whatsapp_banner.png") center/cover no-repeat;
  z-index: 0;
  transform: scale(1);
  transition: transform 3s ease-out;
}

/* Dark overlay */
.whatsapp-section .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

/* Content container */
.whatsapp-section .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  padding: 0 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

/* Text */
.whatsapp-section .content {
  text-align: left;
}

/* Button */
.whatsapp-section .whatsapp-btn {
  background-color: #25d366;
  color: #fff;
  padding: 12px 30px;
  border-radius: 9999px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  left: 220%;
  top: -90px;
}

.whatsapp-section .whatsapp-btn:hover {
  background-color: #1ebc59;
  transform: scale(1.05);
}

/* Hover zoom effect on background */
.whatsapp-section:hover .bg-image {
  transform: scale(1.05);
}
.content{
    position: relative;
    align-items: start;
    left: -10%;
}
/* ourteam */
.team-section, .about-section {
  transition: all 0.4s ease;
}

.team-section img,
.about-section img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-section img:hover,
.about-section img:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.bi-star-fill, .bi-star-half {
  font-size: 0.9rem;
}


/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 { font-size: 1.8rem; }
  .team-img { height: 220px; }
}
/* === Fix: Navbar background + layering for mobile === */
@media (max-width: 1024px) {
  header {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    z-index: 9999;
  }

  /* Ensure hero starts below fixed header */
  .service-hero {
    margin-top: 0px;
  }

  /* Fix for mobile nav dropdown (white background solid) */
  #mobileNav {
    background: rgba(255, 255, 255, 0.98) !important;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 10000;
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  }

  /* Fix nav text color visibility */
  #mobileNav a {
    color: #0f172a !important;
  }
}