:root {
  --primary: #007bff;
  --primary-light: #4da3ff;
  --primary-soft: #e5f2ff;
  --secondary: #001f4d;
  --accent: #00c0ff;
  --navy: #001230;
  --gray-dark: #4a4a4a;
  --gray-light: #f5f7fa;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #1b1b1b;
  background-color: #ffffff;
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  height: auto;
}

/* Top Bar */
.top-bar {
  background: linear-gradient(90deg, #001f4d, #007bff);
  color: #ffffff;
}

.top-bar .social-icons a {
  color: #ffffff;
  opacity: 0.85;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.top-bar .social-icons a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

/* Navbar */
.navbar {
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
}

.navbar-brand .logo-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #4da3ff, #001f4d);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.3rem;
}

.brand-title {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 1rem;
}

.brand-subtitle {
  font-size: 0.72rem;
  color: #6c757d;
}

.navbar-light .navbar-nav .nav-link {
  font-weight: 500;
  font-size: 0.94rem;
  color: #1b1b1b;
  margin: 0 0.25rem;
  position: relative;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: #007bff;
}

.navbar-light .navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0.7rem;
  right: 0.7rem;
  bottom: 0.2rem;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, #007bff, #00c0ff);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.navbar-light .navbar-nav .nav-link:hover::after,
.navbar-light .navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

/* Hero */
.hero-section {
  position: relative;
}

.hero-slide {
  min-height: 70vh;
  position: relative;
  /* important for the overlay */
  color: #ffffff;
  overflow: hidden;
  padding: 4rem 0;
}

/* Background images */
.hero-slide-1 {
  background: url("../img/b1.jpg") center center/cover no-repeat;
}

.hero-slide-2 {
  background: url("../img/b2.webp") center center/cover no-repeat;
}

.hero-slide-3 {
  background: url("../img/b3.jfif") center center/cover no-repeat;
}

/* Ensure consistent height */
.hero-slide-1,
.hero-slide-2,
.hero-slide-3 {
  min-height: 75vh;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Dark overlay BEHIND text */
.hero-slide-1::after,
.hero-slide-2::after,
.hero-slide-3::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  /* adjust darkness if needed */
  z-index: 0;
  /* behind the content */
}

/* Text/content ABOVE overlay */
.hero-content {
  position: relative;
  z-index: 2;
  /* higher than overlay */
  color: #ffffff;
  /* force white text for clarity */
}

.hero-title {
  font-weight: 700;
  font-size: 2rem;
}

.hero-text {
  max-width: 460px;
}

/* Badge stays readable */
.badge.bg-gradient-primary {
  background: linear-gradient(90deg, #00c0ff, #4da3ff);
  color: #001230;
  font-weight: 600;
}

/* Sections */
.section-padding {
  padding: 3.8rem 0;
  background-color: #f0f0f0;
}

.bg-light-soft {
  background: linear-gradient(180deg, #f7f9fd, #ffffff);
}

.section-tag {
  display: inline-block;
  padding: 0.2rem 0.9rem;
  border-radius: 999px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  background: rgba(0, 123, 255, 0.08);
  color: #007bff;
  margin-bottom: 0.7rem;
}

.section-title {
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 0.7rem;
}

.section-text {
  max-width: 600px;
  margin: 0 auto;
  color: #555;
}

/* About */
.about-card {
  padding: 2rem;
}

.glass-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  border: 1px solid #e4ebf7;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
}

.about-stat {
  background: #f1f5ff;
  border-radius: 12px;
  padding: 0.8rem;
}

.about-stat h3 {
  margin-bottom: 0.15rem;
  font-size: 1rem;
}

.about-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.about-image-wrapper img {
  display: block;
  width: 100%;
  height: 450px;
  transition: transform 0.4s ease;
}

.about-image-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(0, 192, 255, 0.18), transparent 55%);
  pointer-events: none;
}

.about-image-wrapper:hover img {
  transform: scale(1.04);
}


/* Services */
.service-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 1.6rem 1.4rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  border-top: 3px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
  border-color: #007bff;
}

/* New: image inside service card */
.service-img {
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 0.9rem;
  background: #000;
}

.service-img img {
  display: block;
  width: 100%;
  height: 230px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.service-card:hover .service-img img {
  transform: scale(1.05);
  opacity: 0.95;
}

/* Icon box */
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, #4da3ff, #007bff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.6rem;
  margin-bottom: 0.9rem;
}

/* New: 360° rotation effect on icon when card is hovered */
.service-icon i {
  display: inline-block;
  transition: transform 0.6s ease;
}

.service-card:hover .service-icon i {
  transform: rotate(360deg);
}


/* Make all service cards equal height */
#services .row>div {
  display: flex;
}

.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Push WhatsApp button to the bottom for perfect alignment */
.service-card a.btn {
  margin-top: auto;
}


/* Products */
.product-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 1.6rem 1.4rem;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f2;
}

/* Why Choose */
.why-list li {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 0.4rem;
  color: #444;
}

.why-list i {
  color: #007bff;
}

.why-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 1.1rem 0.9rem;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.why-card i {
  font-size: 1.7rem;
  color: #007bff;
  margin-bottom: 0.4rem;
}

/* Achievements */
.achievement-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 1.4rem 1rem;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
}

.gallery-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  cursor: default; /* click effect removed */
  background: #000;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.gallery-thumb {
  display: block;
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hover effect remains */
.gallery-item:hover .gallery-thumb {
  transform: scale(1.06);
  opacity: 0.9;
}


/* Lightbox image sizing – prevent it from being too big */
.lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
}

/* Contact */
.contact-form .form-control {
  border-radius: 10px;
  border: 1px solid #d4deec;
  padding: 0.55rem 0.75rem;
}

.contact-form .form-control:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 0.1rem rgba(0, 123, 255, 0.2);
}

.contact-card {
  padding: 1.8rem;
}

.contact-list li {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}

.contact-list i {
  font-size: 1.4rem;
  color: #007bff;
}

/* Map */
.map-section {
  height: 320px;
  position: relative;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.map-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 18, 48, 0.12), transparent);
  pointer-events: none;
}

/* Footer */
.footer-section {
  position: relative;
  background: url("../img/b3.jfif") center center/cover no-repeat;
  color: #dbe4ff;
}

.footer-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  /* yaha se dark control karein */
  z-index: 1;
}

.footer-section * {
  position: relative;
  z-index: 2;
}


.footer-title {
  font-size: 1.02rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.footer-text {
  font-size: 0.9rem;
  color: #a9b4d0;
}

.footer-links li {
  margin-bottom: 0.4rem;
}

.footer-links a {
  color: #dbe4ff;
  text-decoration: none;
  opacity: 0.85;
}

.footer-links a:hover {
  opacity: 1;
  color: #00c0ff;
}

.footer-bottom {
  border-top: 1px solid rgba(219, 228, 255, 0.18);
  background: #000814;
}



/* Floating buttons */
.floating-btn {
  position: fixed;
  right: 1rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  color: #ffffff;
  font-size: 1.4rem;
  box-shadow: 0 0 0 0 rgba(0, 192, 255, 0.5);
  animation: pulse-glow 1.6s infinite;
}

.floating-call {
  bottom: 6.5rem;
  background: linear-gradient(135deg, #00c0ff, #004aad);
}

.floating-whatsapp {
  bottom: 2.6rem;
  background: linear-gradient(135deg, #25d366, #0b9c42);
}

.floating-btn:hover {
  transform: translateY(-2px);
}

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 2.6rem;
  left: 1rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 123, 255, 0.95);
  color: #ffffff;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 998;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}

/* Animations */
@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 192, 255, 0.4);
  }

  70% {
    box-shadow: 0 0 0 18px rgba(0, 192, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(0, 192, 255, 0);
  }
}

[data-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

[data-animate].animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 991.98px) {
  .hero-slide {
    min-height: 60vh;
    text-align: center;
  }

  .hero-text {
    margin-left: auto;
    margin-right: auto;
  }

  .navbar-light .navbar-nav .nav-link::after {
    display: none;
  }

  .floating-btn {
    width: 46px;
    height: 46px;
  }
  .sticky-top{
	  position:relative;
  }
}
#callme {
        position: fixed;
        right: 15px;
        top: 190px;
        width: 70px;
        height: 70px;
        cursor: pointer;
      
        z-index: 99990;
    }
    #callme #callmeMain {
        -moz-border-radius: 50% !important;
        -webkit-border-radius: 50% !important;
        border-radius: 50% !important;
        -moz-background-clip: padding;
        -webkit-background-clip: padding-box;
        background-clip: padding-box;
        background-color: rgb(40 167 69);
        width: 60px;
        height: 60px;
        -webkit-animation: zcwmini2 1.5s 0s ease-out infinite;
        -moz-animation: zcwmini2 1.5s 0s ease-out infinite;
        animation: zcwmini2 1.5s 0s ease-out infinite;
    }
    #callme #callmeMain:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        top: -6px;
        left: -6px;
        background-image: url(https://ss.zadarma.com/callbackWidget/images/mini.png);
        background-repeat: no-repeat;
        background-position: center center;
        -webkit-animation: zcwphone2 1.5s linear infinite;
        -moz-animation: zcwphone2 1.5s linear infinite;
        animation: zcwphone2 1.5s linear infinite;
    }
    @-webkit-keyframes zcwphone {
        0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
        50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
        100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    }
    @-moz-keyframes zcwphone {
        0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
        50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
        100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    }
    @keyframes zcwphone {
        0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
        50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
        100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    }
    @-webkit-keyframes zcwphone2 {
        0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
        50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
        100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    }
    @-moz-keyframes zcwphone2 {
        0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
        50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
        100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    }
    @keyframes zcwphone2 {
        0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
        50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
        100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    }
    @-webkit-keyframes zcwmini {
        0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
        10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
        100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
    }
    @-moz-keyframes zcwmini {
        0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
        10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
        100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
    }
    @keyframes zcwmini {
        0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
        10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
        100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
    }
    @-webkit-keyframes zcwmini2 {
        0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
        10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
        100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
    }
    @-moz-keyframes zcwmini2 {
        0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
        10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
        100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
    }
    @keyframes zcwmini2 {
        0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
        10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
        100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
    }
@media (max-width: 767.98px) {
  .section-padding {
    padding: 3.2rem 0;
  }

  .section-title {
    font-size: 1.5rem;
  }
  .cu-dss-nn{
	  display:none!important
  }
  .cu-jf-cntr{
	  justify-content:center!important;
  }

  .hero-title {
    font-size: 1.6rem;
  }
}
.img-fluid{
max-width: 140px;
    height: auto;
}

.img-fluids{
max-width: 100%;
    height: auto;
}