/* =========================================
   Global Styles
========================================= */
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: #fff;
  color: #333;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}


/* =========================================
   Header
========================================= */
.site-header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 9999;
  transition: all 0.3s ease;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
}

/* Logo & Company Name */
.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
}

.site-logo {
  max-height: 45px;
}

.logo-gradient-text {
  font-size: 1.6rem;
  font-weight: 700;
  background: linear-gradient(90deg, #0073e6, #00c6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.5px;
}

/* =========================================
   Navigation (Desktop)
========================================= */
.primary-navigation {
  display: flex;
  align-items: center;
  gap: 25px;
}

.primary-menu {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.primary-menu > li {
  position: relative;
}

.primary-menu > li > a {
  display: block;
  padding: 10px 18px;
  font-weight: 500;
  color: #333;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.primary-menu > li > a:hover {
  background: linear-gradient(90deg, #0073e6, #00c6ff);
  color: #fff;
}

/* =========================================
   Submenu (Desktop)
========================================= */
.primary-menu li.menu-item-has-children > ul.sub-menu {
  display: none;
  position: absolute;
  top: 110%;
  right: 0; /* 👈 Show submenu on left side */
  background: #f0f8ff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  border-radius: 12px;
  padding: 12px 0;
  min-width: 220px;
  flex-direction: column;
  z-index: 9999;
}

.primary-menu li.menu-item-has-children:hover > ul.sub-menu {
  display: flex; /* Desktop hover effect */
}

.primary-menu li.menu-item-has-children > ul.sub-menu li a {
  padding: 10px 20px;
  margin: 0 10px;
  border-radius: 8px;
  display: block;
  font-weight: 500;
  color: #0073e6;
  transition: all 0.3s ease;
}

.primary-menu li.menu-item-has-children > ul.sub-menu li a:hover {
  background: #0073e6;
  color: #fff;
}

/* =========================================
   (Removed plus/minus icons)
========================================= */
.primary-menu li.menu-item-has-children > a::after {
  content: none !important; /* No + or − icons */
}

/* =========================================
   Hamburger (Mobile)
========================================= */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  cursor: pointer;
  z-index: 1100;
}

.hamburger span {
  display: block;
  height: 3px;
  background: #333;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* =========================================
   Mobile Navigation
========================================= */
@media (max-width: 992px) {
  .primary-navigation {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100%;
    background: #ffffff;
    flex-direction: column;
    padding: 80px 20px;
    box-shadow: -3px 0 12px rgba(0,0,0,0.15);
    transition: right 0.4s ease;
    z-index: 1050;
    overflow-y: auto;
  }

  .primary-navigation.active {
    right: 0;
  }

  .primary-menu {
    flex-direction: column;
    gap: 20px;
  }

  .primary-menu li a {
    font-size: 1rem;
    padding: 10px 15px;
    border-radius: 6px;
    transition: all 0.3s ease;
  }

  .primary-menu li a:hover {
    background: #0073e6;
    color: #fff;
  }

  .primary-menu li.menu-item-has-children > ul.sub-menu {
    display: none;
    flex-direction: column;
    gap: 8px;
    background: #e9f4ff;
    border-radius: 10px;
    margin-top: 8px;
    padding: 10px 15px;
    overflow-y: auto;
    max-height: 60vh; /* scroll if too many submenu items */
  }

  .primary-menu li.menu-item-has-children.open > ul.sub-menu {
    display: flex;
  }

  .primary-menu li.menu-item-has-children > ul.sub-menu li a {
    color: #0073e6;
    padding: 8px 10px;
  }

  .primary-menu li.menu-item-has-children > ul.sub-menu li a:hover {
    background: #0073e6;
    color: #fff;
  }

  .hamburger {
    display: flex;
  }
}



/* =========================================
   Smooth Hover & Typography
========================================= */
.primary-menu li a {
  font-size: 1rem;
}

.primary-menu li a:hover {
  transition: all 0.3s ease;
}

.site-header,
.primary-menu li a,
.sub-menu li a {
  transition: all 0.3s ease;
}






/* =========================================
   Footer
========================================= */
.site-footer {
  background: #f8f8f8;
  padding: 20px 0;
  border-top: 2px solid #eee;
  text-align: center;
}

.footer-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 0 0 10px;
  padding: 0;
}

.footer-links li a {
  color: #333;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links li a:hover {
  color: #0073e6;
}

.site-footer p {
  font-size: 0.85rem;
  margin: 0;
  color: #666;
}

/* =========================================
   Landing Page & Services
========================================= */
.landing-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 15px;
  font-family: 'Segoe UI', sans-serif;
}

.services {
  text-align: center;
  margin-bottom: 60px;
}

.services h2 {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 40px;
  color: #222;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.service-card {
  background: #eaf3ff;
  border-radius: 16px;
  overflow: hidden;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 2px solid #0073e6;
}

.service-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #0073e6;
}

.service-card p {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 15px;
  flex-grow: 1;
}

.service-card .btn-primary {
  display: inline-block;
  background: #0073e6;
  color: #fff;
  padding: 10px 18px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.service-card:hover img {
  transform: scale(1.05);
}

.service-card .btn-primary:hover {
  background: #005bb5;
  transform: scale(1.05);
}

/* CTA Section */
.cta {
  background: #f5f5f5;
  padding: 50px 20px;
  text-align: center;
  border-radius: 16px;
  margin-top: 50px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.cta h2 {
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 15px;
  color: #0073e6;
}

.cta p {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #333;
}

.cta-phone {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0073e6;
  background: #ffd700;
  padding: 10px 25px;
  border-radius: 50px;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.cta-phone:hover {
  transform: scale(1.05);
}

/* =========================================
   Responsive adjustments
========================================= */
@media (max-width: 991px) {
  .services h2 {
    font-size: 1.8rem;
  }
  .service-card h3 {
    font-size: 1.2rem;
  }
  .cta h2 {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .services-grid {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .service-card {
    padding: 12px;
  }
  .service-card h3 {
    font-size: 1.1rem;
  }
  .cta-phone {
    font-size: 1.3rem;
    padding: 8px 20px;
  }
}





/* =========================================
   Global Styles
========================================= */
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: #fff;
  color: #333;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* =========================================
   Header
========================================= */
.site-header {
  background: #ffffff;
  border-bottom: 2px solid #eee;
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 48px;
  margin-right: 8px;
}

.logo-text {
  font-size: 1.6rem;
  font-weight: 700;
  color: #222;
}

/* =========================================
   Navigation (Desktop)
========================================= */
.primary-navigation {
  display: flex;
}

.primary-menu {
  display: flex;
  gap: 40px; /* Desktop main menu gap */
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-menu > li > a {
  background: linear-gradient(90deg, #cce7ff, #e0f7ff);
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.primary-menu > li > a:hover {
  background: #0073e6;
  color: #fff;
  border-color: #005bb5;
}

/* =========================================
   Submenu (Desktop)
========================================= */
.primary-menu li.menu-item-has-children {
  position: relative;
}

.primary-menu li.menu-item-has-children > ul.sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #f0f8ff;
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
  list-style: none;
  margin: 0;
  padding: 12px 0;
  min-width: 220px;
  border-radius: 10px;
  z-index: 9999;
}

.primary-menu li.menu-item-has-children:hover > ul.sub-menu {
  display: block;
}

.primary-menu li.menu-item-has-children > ul.sub-menu li a {
  background: #e6f3ff;
  margin: 4px 12px;
  padding: 10px 16px;
  border-radius: 8px;
  display: block;
  font-weight: 500;
  transition: all 0.3s ease;
}

.primary-menu li.menu-item-has-children > ul.sub-menu li a:hover {
  background: #0073e6;
  color: #fff;
}

/* =========================================
   Hamburger
========================================= */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  cursor: pointer;
  z-index: 1100;
}

.hamburger span {
  display: block;
  height: 3px;
  background: #333;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* =========================================
   Mobile Navigation
========================================= */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .primary-navigation {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100%;
    background: #ffffff;
    flex-direction: column;
    padding: 80px 20px;
    box-shadow: -3px 0 12px rgba(0,0,0,0.15);
    transition: right 0.3s ease;
    z-index: 1050;
  }

  .primary-navigation.active {
    right: 0;
  }

  .primary-menu {
    flex-direction: column;
    gap: 35px; /* Mobile main menu items gap */
  }

  .primary-menu li.menu-item-has-children > ul.sub-menu {
    display: none;
    flex-direction: column;
    padding-left: 20px;
    gap: 18px; /* Submenu items gap mobile */
    background: #f0f8ff;
    border-radius: 8px;
  }

  .primary-menu li.menu-item-has-children.open > ul.sub-menu {
    display: flex;
  }
}

/* =========================================
   Footer
========================================= */
.site-footer {
  background: #f8f8f8;
  padding: 20px 0;
  border-top: 2px solid #eee;
  text-align: center;
}

.footer-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 0 0 10px;
  padding: 0;
}

.footer-links li a {
  color: #333;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links li a:hover {
  color: #0073e6;
}

.site-footer p {
  font-size: 0.85rem;
  margin: 0;
  color: #666;
}






/* ==============================
   Global Styles
============================== */
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: #ffffff;
  color: #1d3557;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* ==============================
   Hero Section (Heading Only)
============================== */
.deep-cleaning-hero {
  background: linear-gradient(90deg, rgba(5, 111, 168, 1) 0%, rgba(32, 130, 168, 1) 50%, rgba(5, 111, 168, 1) 100%);
  text-align: center;
  padding: 25px 15px;
  margin-bottom: 45px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  color: #fff;
  border-radius: 10px;
}

.deep-cleaning-hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #FFD700; /* Yellow heading */
  margin: 0;
  line-height: 1.3;
}

.deep-cleaning-hero h1 span {
  color: #ffffff;
}




/* ==============================
   Services Grid
============================== */
.cleaning-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin: 80px auto;
  padding: 0 10px;
}

/* ==============================
   Service Card
============================== */
.service-card {
  background: #f9f9f9;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* ==============================
   Image Styling (Full Fit)
============================== */
.service-card img {
  width: 100%;
  height: 230px;
  object-fit: cover; /* perfect image fit */
  object-position: center;
  border-radius: 12px;
  margin-bottom: 15px;
  display: block;
  border: none;
  transition: transform 0.4s ease;
}

/* subtle zoom on hover */
.service-card:hover img {
  transform: scale(1.05);
}

/* ==============================
   Text & Button
============================== */
.service-card h2 {
  font-size: 1.4rem;
  color: #0052cc; /* blue heading */
  margin-bottom: 10px;
}

.service-card p {
  font-size: 1rem;
  color: #333;
  flex-grow: 1;
}

.view-more-btn {
  margin-top: 15px;
  background: #0073e6;
  color: #ffffff;
  border: none;
  padding: 10px 22px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.2s ease;
}

.view-more-btn:hover {
  background: #0052cc;
  transform: scale(1.05);
}



/* ==============================
   Pricing Section
============================== */
.pricing-box {
  background: linear-gradient(135deg, #f8fbff 0%, #e9f1ff 100%);
  border-radius: 25px;
  padding: 70px 25px;
  margin: 150px auto 80px auto; /* 👈 Extra top margin for spacing */
  text-align: center;
  max-width: 1200px;
  color: #1d3557;
  border: 1px solid rgba(26, 115, 232, 0.2);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* ==============================
   Section Heading
============================== */
.pricing-box h2 {
  font-size: 2.3rem;
  margin-bottom: 50px;
  font-weight: 800;
  color: #0052cc;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.pricing-box h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #0073e6;
  border-radius: 2px;
  margin: 10px auto 0;
}

/* ==============================
   Pricing Grid
============================== */
.pricing-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 35px;
  justify-content: center;
}

/* ==============================
   Individual Pricing Card
============================== */
.pricing-item {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 25px;
  box-shadow: 0 8px 20px rgba(0, 82, 204, 0.08);
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 82, 204, 0.15);
  position: relative;
  overflow: hidden;
}

.pricing-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 82, 204, 0.18);
  border-color: #0073e6;
}

.pricing-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,115,230,0.05), rgba(255,255,255,0.05));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.pricing-item:hover::before {
  opacity: 1;
}

/* ==============================
   Icon
============================== */
.pricing-item .icon {
  font-size: 48px;
  color: #0073e6;
  margin-bottom: 18px;
  transition: transform 0.3s ease, color 0.3s ease;
  z-index: 1;
  position: relative;
}

.pricing-item:hover .icon {
  transform: scale(1.15);
  color: #0052cc;
}

/* ==============================
   Text & Price
============================== */
.pricing-item h3 {
  color: #0052cc;
  font-size: 1.6rem;
  margin-bottom: 12px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.pricing-item p {
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  margin: 10px 0;
  z-index: 1;
  position: relative;
}

.pricing-item .price {
  font-size: 2rem;
  font-weight: 800;
  color: #ffb400; /* Yellow price */
  margin: 18px 0 10px;
  z-index: 1;
  position: relative;
}

/* ==============================
   CTA Button
============================== */
.pricing-btn {
  margin-top: 20px;
  background: #0073e6;
  color: #fff;
  padding: 10px 26px;
  border-radius: 8px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  position: relative;
  z-index: 1;
}

.pricing-btn:hover {
  background: #0052cc;
  transform: scale(1.05);
}

/* ==============================
   Responsive Adjustments
============================== */
@media (max-width: 992px) {
  .pricing-box {
    padding: 60px 20px;
    margin: 120px auto 60px auto;
  }

  .pricing-box h2 {
    font-size: 2rem;
  }

  .pricing-item h3 {
    font-size: 1.4rem;
  }

  .pricing-item .price {
    font-size: 1.7rem;
  }
}

@media (max-width: 600px) {
  .pricing-box {
    padding: 45px 15px;
    margin: 90px auto 50px auto;
  }

  .pricing-box h2 {
    font-size: 1.8rem;
  }

  .pricing-items {
    gap: 25px;
  }

  .pricing-item {
    padding: 30px 18px;
  }

  .pricing-item .icon {
    font-size: 42px;
    margin-bottom: 15px;
  }

  .pricing-item .price {
    font-size: 1.6rem;
  }
}




/* ==============================
   Image Popup Overlay
============================== */
.image-popup-overlay {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.9);
  text-align: center;
}

.image-popup-overlay.active {
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-popup-overlay img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
}

.popup-close,
.popup-prev,
.popup-next {
  position: absolute;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  user-select: none;
}

.popup-close {
  top: 20px;
  right: 30px;
}

.popup-prev {
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
}

.popup-next {
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
}

/* ==============================
   Responsive
============================== */
@media (max-width: 1024px) {
  .deep-cleaning-hero h1 {
    font-size: 2.4rem;
  }
  .service-card h2 {
    font-size: 1.3rem;
  }
  .pricing-box h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .deep-cleaning-hero h1 {
    font-size: 2rem;
  }
  .pricing-items {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .deep-cleaning-hero {
    padding: 50px 15px;
  }
  .deep-cleaning-hero h1 {
    font-size: 1.7rem;
  }
}



/* =========================================================
   Home Banner (Header ke neeche)
========================================================= */
.home-banner {
  width: 100%;
  margin: 0;
  padding: 0;
  height: auto; /* Let content define height */
  position: relative; /* Ensure overlay or inner elements are positioned correctly */
}

/* Banner Image */
.home-banner img {
  width: 100%;
  height: auto; /* Maintain aspect ratio */
  display: block;
  object-fit: cover; /* Cover works better if height is set */
  max-height: 80vh; /* Optional: prevent image from being too tall on mobile */
}

/* Optional: overlay text */
.banner-text {
  display: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .home-banner {
    height: auto; /* Ensure banner height adjusts to content */
  }
  .home-banner img {
    max-height: 60vh; /* Adjust banner height for tablets/mobile */
  }
}

@media (max-width: 480px) {
  .home-banner img {
    max-height: 50vh; /* Adjust for small mobile screens */
  }
}






/* ===============================
   What We Do Section
============================== */
.what-we-do {
  background: linear-gradient(135deg, #f0f8ff, #e6f0ff);
  padding: 80px 25px;
  border-radius: 20px;
  margin-top: 50px; /* More spacing from previous section */
  box-shadow: 0 10px 25px rgba(0, 82, 204, 0.08);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.what-we-do h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 40px;
  color: #0052cc;
  letter-spacing: 1px;
  position: relative;
}

.what-we-do h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #0073e6, #ffb400);
  margin: 12px auto 0;
  border-radius: 2px;
}

/* ===============================
   What We Do List
============================== */
.what-we-do ul {
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.what-we-do ul li {
  background: linear-gradient(145deg, #ffffff, #f0f4ff);
  margin: 15px 0;
  padding: 18px 25px;
  border-radius: 15px;
  font-size: 17px;
  font-weight: 500;
  color: #333;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.4s ease;
  border-left: 6px solid #0052cc;
  box-shadow: 0 6px 18px rgba(0,82,204,0.08);
  position: relative;
  overflow: hidden;
}

.what-we-do ul li::before {
  content: "✔";
  color: #0073e6;
  font-weight: bold;
  font-size: 20px;
  flex-shrink: 0;
}

.what-we-do ul li:hover {
  transform: translateX(6px);
  box-shadow: 0 10px 25px rgba(0,82,204,0.15);
  border-left-color: #ffb400;
}

/* ===============================
   Optional Hover Graphic Effect
============================== */
.what-we-do ul li::after {
  content: "";
  position: absolute;
  width: 120%;
  height: 100%;
  top: 0;
  left: -100%;
  background: rgba(0,115,230,0.05);
  transition: all 0.5s ease;
  z-index: 0;
}

.what-we-do ul li:hover::after {
  left: 0;
}

/* ===============================
   Responsive Design
============================== */
@media (max-width: 992px) {
  .what-we-do {
    padding: 60px 20px;
  }

  .what-we-do h2 {
    font-size: 28px;
    margin-bottom: 35px;
  }

  .what-we-do ul li {
    font-size: 16px;
    padding: 16px 22px;
  }

  .what-we-do ul li::before {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .what-we-do {
    padding: 50px 15px;
    border-radius: 16px;
  }

  .what-we-do h2 {
    font-size: 26px;
    margin-bottom: 30px;
  }

  .what-we-do ul li {
    font-size: 15px;
    padding: 14px 20px;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .what-we-do {
    padding: 35px 12px;
    margin-top: 35px;
  }

  .what-we-do h2 {
    font-size: 22px;
  }

  .what-we-do ul li {
    font-size: 14px;
    padding: 12px 16px;
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
  }

  .what-we-do ul li::before {
    font-size: 16px;
    margin-top: 2px;
  }
}







/* ==============================
   Sticky WhatsApp & Call Buttons
============================== */
.sticky-buttons {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.sticky-buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 20px;
  font-weight: 600;
  font-size: 16px;
  border-radius: 50px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  text-decoration: none;
  transition: all 0.3s ease;
  gap: 10px;
}

/* WhatsApp Button */
.sticky-buttons a.whatsapp-btn {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
}

/* Call Button */
.sticky-buttons a.call-btn {
  background: linear-gradient(135deg, #f2994a, #f2c94c);
  color: #1d1d1d;
}

/* Hover Effect */
.sticky-buttons a:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 25px rgba(0,0,0,0.35);
}

/* Responsive */
@media (max-width: 768px) {
  .sticky-buttons a {
    font-size: 14px;
    padding: 12px 18px;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .sticky-buttons a {
    font-size: 13px;
    padding: 10px 15px;
    gap: 6px;
  }
}




/* ===============================
   Our Works Section
=============================== */
.our-works {
  text-align: center;
  margin: 80px auto; /* 🔹 Top aur bottom dono taraf 80px gap */
  padding: 40px 15px; /* 🔹 Thoda inner spacing bhi smooth feel ke liye */
}

.our-works h2 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 25px;
  color: #056fa8;
  text-transform: capitalize;
}

/* Video Thumbnail */
.video-thumbnail {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 700px;
  cursor: pointer;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  transition: transform 0.3s ease;
  margin: 20px 0; /* 🔹 Thumbnail ke upar-niche bhi thoda gap */
}

.video-thumbnail:hover {
  transform: scale(1.02);
}

.video-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}

/* Play Button */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.85);
  color: #000;
  font-size: 50px;
  border: none;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.play-btn:hover {
  background: rgba(5, 111, 168, 0.9);
  color: #fff;
  transform: translate(-50%, -50%) scale(1.1);
}


/* ===============================
   Video Popup Styling
=============================== */
.video-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 15px;
}

.video-popup-overlay.active {
  display: flex;
}

.video-popup {
  position: relative;
  width: 100%;
  max-width: 900px;   /* Desktop pe max width */
  aspect-ratio: 16 / 9; /* Fix aspect ratio */
  background: #000;
  border-radius: 10px;
  overflow: hidden;
}

.video-popup video {
  width: 100%;
  height: 100%;
  object-fit: contain;  /* No zoom/crop, full video fit */
  border-radius: 10px;
}

.video-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  z-index: 10000;
}

/* ===============================
   Responsive
=============================== */
@media (max-width: 1024px) {
  .video-popup {
    max-width: 90%;
  }
  .play-btn {
    font-size: 45px;
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 768px) {
  .video-popup {
    max-width: 95%;
  }
  .play-btn {
    font-size: 40px;
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 480px) {
  .video-close {
    font-size: 22px;
  }
  .play-btn {
    font-size: 35px;
    width: 50px;
    height: 50px;
  }
}

/* =========================================
   Global Styles
========================================= */
body, html {
  font-family: "Poppins", sans-serif;
  color: #333;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}
h1, h2, h3 {
  margin: 0 0 15px 0;
  font-weight: 600;
}
p {
  margin: 0 0 10px 0;
}

/* ===============================
   About Company
=============================== */
.about-company {
  margin: 70px auto;
  text-align: center;
}
.about-text h2 {
  font-size: 32px;
  color: #056fa8;
  margin-bottom: 20px;
}
.about-text p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* ===============================
   Stats Section
=============================== */
.about-stats {
  background: #f9f9f9;
  padding: 60px 20px;
  margin: 50px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.stat-box {
  background: #fff;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  text-align: center;
  flex: 1 1 200px;
  max-width: 220px;
  transition: transform 0.3s ease;
}
.stat-box:hover {
  transform: translateY(-5px);
}
.stat-box h3 {
  font-size: 32px;
  color: #056fa8;
  margin-bottom: 10px;
}
.stat-box p {
  font-size: 16px;
}

/* ===============================
   Mission & Vision
=============================== */
.mission-vision {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin: 60px auto;
  flex-wrap: wrap;
}
.mission, .vision {
  flex: 1;
  min-width: 280px;
  background: #f9f9f9;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  text-align: center;
}
.mission h2, .vision h2 {
  color: #056fa8;
  margin-bottom: 15px;
}

/* ===============================
   Why Choose Us
=============================== */
.why-choose-us {
  text-align: center;
  margin: 70px auto;
  padding: 0 15px;
}
.why-choose-us h2 {
  font-size: 30px;
  margin-bottom: 40px;
  color: #056fa8;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}
.why-item {
  background: #f1faff;
  padding: 20px;
  border-radius: 12px;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
}

/* ===============================
   Team Section
=============================== */
.team-section {
  background: #f7f9fc;
  border-radius: 12px;
  padding: 60px 20px;
  text-align: center;
  margin: 70px auto;
  max-width: 1200px;
}
.team-section h2 {
  font-size: 32px;
  color: #056fa8;
  margin-bottom: 50px;
}
.team-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}
.team-member {
  flex: 1 1 220px;
  max-width: 220px;
  background: #fff;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease;
}
.team-member:hover {
  transform: translateY(-5px);
}
.team-member h3 {
  font-size: 18px;
  margin-bottom: 5px;
  color: #056fa8;
}
.team-member p {
  font-size: 14px;
  color: #333;
}

/* ===============================
   Call To Action (Boxed & Centered)
=============================== */
.about-cta {
  background: #0284c7;
  color: #fff;
  text-align: center;
  padding: 60px 20px 60px 20px;
  border-radius: 25px;
  margin: 60px auto;
  max-width: 800px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.about-cta h2 {
  font-size: 30px;
  margin-bottom: 20px;
  font-weight: 700;
}
.about-cta p {
  font-size: 18px;
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 90%;
}
.about-cta .cta-btn {
  display: inline-block;
  background: #ffd700;
  color: #000;
  padding: 16px 40px;
  border-radius: 12px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
}
.about-cta .cta-btn:hover {
  background: #ffcc00;
  transform: translateY(-3px);
}

/* ===============================
   Responsive
=============================== */
@media (max-width: 992px) {
  .mission-vision { flex-direction: column; }
  .team-member { flex: 1 1 45%; max-width: 45%; }
}

@media (max-width: 768px) {
  .stat-box h3 { font-size: 26px; }
  .team-section { padding: 50px 15px; }
  .team-section h2 { font-size: 24px; }
  .team-member { flex: 1 1 48%; max-width: 48%; }
  .about-cta { padding: 50px 15px 50px 15px; }
  .about-cta h2 { font-size: 24px; }
  .about-cta p { font-size: 15px; margin-bottom: 25px; }
  .about-cta .cta-btn { padding: 12px 30px; font-size: 14px; }
}

@media (max-width: 576px) {
  .stat-box { flex: 1 1 100%; max-width: 100%; margin-bottom: 20px; }
  .team-member { flex: 1 1 100%; max-width: 100%; margin-bottom: 20px; }
  .about-cta { padding: 40px 10px 40px 10px; }
  .about-cta h2 { font-size: 20px; }
  .about-cta p { font-size: 14px; margin-bottom: 20px; }
  .about-cta .cta-btn { padding: 10px 25px; font-size: 13px; }
}

/* Achievement Gallery */
.achievement-gallery {
  margin: 60px 0;
  text-align: center; /* centers the heading and gallery content */
}

.achievement-gallery h2 {
  color: #0052cc; /* dark blue color */
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: center; /* ensures heading is centered */
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 per row on desktop */
  gap: 20px;
  justify-items: center; /* centers each item in its column */
  align-items: center;
}

.gallery-item img {
  width: 100%;
  max-width: 300px;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

/* Popup */
.image-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.image-popup-overlay.active {
  display: flex;
}

.popup-content {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
}

.popup-close, .popup-prev, .popup-next {
  position: absolute;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  user-select: none;
}

.popup-close { top: 20px; right: 30px; }
.popup-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.popup-next { right: 20px; top: 50%; transform: translateY(-50%); }

/* Mobile responsiveness */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr; /* 1 per row on mobile */
  }

  .gallery-item img { max-width: 250px; }
  .popup-close, .popup-prev, .popup-next { font-size: 1.6rem; }
}

@media (max-width: 480px) {
  .gallery-item img { max-width: 200px; }
}
