body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #000;
  color: white;
}

.navbar {
  display: flex;
  padding: 20px 0px;
  justify-content: center;
  background-color: transparent;
}

.navbar ul {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.navbar a:hover {
  color: #00aaff;
}

.hero-section {
  background: radial-gradient(#111, #000);
  padding-left: 80px;
  padding-right: 80px;
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.text-content {
  max-width: 600px;
}

.text-content h1 {
  font-size: 48px;
  font-weight: bold;
}

.text-content .highlight {
  color: #007bff;
}

.text-content p {
  margin-top: 20px;
  line-height: 1.6;
  color: #ccc;
}

.stats {
  display: flex;
  gap: 60px;
  margin-top: 40px;
}

.stats h3 {
  font-size: 28px;
  margin-bottom: 5px;
  color: #00aaff;
}

.stats p {
  margin: 0;
  color: #aaa;
}

.hero-image img {
  width: 320px;
  height: 320px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #fff;
}


/* Banner Section */
.banner-section {
  /*background-image: url('img.png');*/
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  margin: 40px auto;
  max-width: 1200px;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top:-50px;
}

.banner-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 40px;
  border-radius: 12px;
  color: white;
}

.banner-overlay h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
}

.banner-overlay .blue {
  color: #007bff;
}

.banner-overlay p {
  font-size: 20px;
  margin-bottom: 30px;
}

.btn-banner {
  padding: 12px 24px;
  background-color: #555;
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn-banner:hover {
  background-color: #333;
}

/* Disclaimer */
.disclaimer {
  text-align: center;
  font-size: 14px;
  color: #aaa;
  margin-top: 10px;
  font-style: italic;
}


/* ---------- Mobile Responsive ---------- */
@media screen and (max-width: 768px) {

  .hero-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .text-content h1 {
    font-size: 32px;
  }

  .text-content p {
    font-size: 16px;
    padding: 0 10px;
  }

  .stats {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .hero-image img {
    width: 200px;
    height: 200px;
    margin-top: 20px;
  }

  .btn-banner {
    font-size: 14px;
    padding: 10px 20px;
  }

  .banner-overlay h2 {
    font-size: 22px;
  }

  .banner-overlay p {
    font-size: 16px;
  }
}




.counter {
  color: #0d6efd;
  font-weight: bold;
  font-size: 2rem;
}


.feature-section {
  padding: 60px 30px;
  background: #000;
  color: white;
}

.feature-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

.feature-image img {
  width: 500px;
  max-width: 100%;
  border-radius: 12px;
}

.feature-text {
  max-width: 500px;
}

.feature-text h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #007bff;
}

.feature-text p {
  font-size: 18px;
  color: #ccc;
  line-height: 1.6;
}

/* Mobile & Tablet */
@media screen and (max-width: 768px) {
  .feature-content {
    flex-direction: column;
    text-align: center;
  }

  .feature-image img {
    width: 90%;
  }

  .feature-text {
    padding: 20px 10px;
  }

  .feature-text h2 {
    font-size: 24px;
  }

  .feature-text p {
    font-size: 16px;
  }
}

/* Scroll animation */
.scroll-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-in.visible {
  opacity: 1;
  transform: translateY(0);
}


html {
  scroll-behavior: smooth;
}
section {
  padding: 80px 20px;
  scroll-margin-top: 100px; /* Prevents hiding under fixed navbar */
}







.animate-on-load {
  opacity: 0;
  transform: translateX(-100px);
  animation: slideIn 1s ease-out forwards;
  animation-delay: 0.5s;
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.highlight {
  color: #007bff;
}




.newsletter-section {
  background: linear-gradient(to right, #000000, #000000);
  padding: 10px 10px;
  text-align: center;
  color: white;
  margin-top: -100px;
}

.newsletter-wrapper {
  max-width: 400px;
  margin: auto;
}

.newsletter-wrapper h2 {
  font-size: 30px;
  color: #007bff;
  margin-bottom: 15px;
}

.newsletter-wrapper p {
  color: #ccc;
  font-size: 18px;
  margin-bottom: 30px;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.newsletter-form input[type="email"] {
  padding: 14px 18px;
  border-radius: 8px;
  border: none;
  font-size: 16px;
  width: 260px;
  max-width: 90%;
  background-color: #1e1e1e;
  color: white;
  outline: none;
  transition: box-shadow 0.3s ease;
}

.newsletter-form input[type="email"]:focus {
  box-shadow: none;}

.newsletter-form button {
  padding: 14px 26px;
  background: linear-gradient(135deg, #007bff, #3801ff);
  color: white;
  font-weight: bold;
  font-size: 16px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(161, 210, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.newsletter-form button::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
}

.newsletter-form button:hover::after {
  left: 100%;
}

.newsletter-form button:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(255, 122, 0, 0.4);
}


/* Footer Styling Fix */
.site-footer {
  background: #000;
  color: #fff;
  padding: 30px 20px;
  text-align: center;
}
.footer-content {
  max-width: 900px;
  margin: auto;
}


.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  padding: 0;
  list-style: none;
  margin: 18px 0;
}

.footer-links li {
  flex: 0 1 45%; /* try two per row on medium screens */
  text-align: center;
  min-width: 140px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.footer-links a:hover {
  color: #00aaff;
}

/* Mobile-friendly: make them stack neatly */
@media (max-width: 520px) {
  .footer-links li {
    flex: 1 1 100%;
    min-width: 0;
  }
}

.site-footer p {
  font-size: 14px;
  color: #888;
  margin-top: 10px;
}

.follow-us {
  background-color: #000000;
  text-align: center;
  padding: 50px 20px 30px;
  border-top: 1px solid #000000;
}

.follow-us h3 {
  color: #ffffff;
  font-size: 24px;
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.social-icons a img {
  width: 40px;
  height: 40px;
  transition: transform 0.3s, filter 0.3s;
}

.social-icons a img:hover {
  transform: scale(1.2);
  filter: grayscale(0%);
}


.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: black;
  padding: 15px 20px;
  border-bottom: 1px solid #222;
}










.testimonials {
  margin-top: -80px;
  background: #111;
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.testimonials h2 {
  font-size: 2rem;
  color: #0d6efd;
  margin-bottom: 30px;
}

.testimonial-slider {
  position: relative;
  max-width: 600px;
  margin: auto;
  overflow: hidden;
}

.testimonial {
  display: none;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.testimonial.active {
  display: block;
  opacity: 1;
}

.testimonial p {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.testimonial h4 {
  color: #ccc;
  font-weight: normal;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #0d6efd;
  color: white;
  border: none;
  width: 48px;
  height: 48px;
  font-size: 1.5rem;
  cursor: pointer;
  border-radius: 50%; /* perfect circle */
  z-index: 2;
  opacity: 0.95;
  transition: background 0.3s ease, transform 0.2s ease;
  box-shadow: 0 0 10px rgba(13, 110, 253, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Add spacing from edges */
.arrow.left {
  left: 20px;
}

.arrow.right {
  right: 20px;
}

.arrow:hover {
  background: #084ec1;
  transform: translateY(-50%) scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .arrow {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .arrow.left {
    left: 10px;
  }

  .arrow.right {
    right: 10px;
  }
}
.testimonial-slider {
  position: relative;
  max-width: 600px;
  margin: auto;
  overflow: hidden;
  padding: 40px 60px;
}



















/* Common Scroll Animation */
@keyframes scrollHorizontal {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Testimonials */
.testimonial-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 20px 0;
}
.testimonial-track {
  display: flex;
  width: max-content;
  animation: scrollHorizontal 40s linear infinite;
}
.testimonial-card {
  min-width: 300px;
  max-width: 300px;
  margin: 0 15px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #0d6efd;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(13, 110, 253, 0.4);
  transition: transform 0.3s ease;
}
.testimonial-card:hover {
  transform: scale(1.05);
}







/* Transformations */
.transformations {
  background: #111;
  padding: 0px 20px;
  text-align: center;
    margin-top: -50px;
}

.transformation-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 20px 0;
}

.transformation-track {
  display: flex;
  width: max-content;
  animation: scrollHorizontal 30s linear infinite;
}

.transformation-card {
  min-width: 250px;      /* Desktop width */
  height: 300px;         /* Fixed height for uniform look */
  margin: 0 10px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.transformation-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;     /* Crops image to fit */
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.transformation-card:hover img {
  transform: scale(1.05);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .transformation-card {
    min-width: 200px;    /* Slightly smaller for phones */
    height: 250px;       /* Keep proportions */
  }
}

@media (max-width: 480px) {
  .transformation-card {
    min-width: 160px;    /* Even smaller for very small screens */
    height: 200px;
  }
}
/* Faster scroll */
.transformation-track {
  display: flex;
  width: max-content;
  animation: scrollHorizontal 15s linear infinite; /* was 30s, now faster */
}





.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
  background: #111;
  color: white;
  padding: 30px;
  margin: 100px auto;
  width: 90%;
  max-width: 400px;
  border-radius: 10px;
  position: relative;
  text-align: center;
}

.modal-content input,
.modal-content button {
  display: block;
  width: 100%;
  margin: 10px 0;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
}

.modal-content input {
  background: #222;
  color: white;
}

.modal-content button {
  background-color: #0d6efd;
  color: white;
  cursor: pointer;
}

.close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
}

    



















 body {
      background-color: #0a0a0a;
      font-family: 'Poppins', sans-serif;
      color: white;
      margin: 0;
      padding: 0;
    }

    h2 {
      text-align: center;
      margin-top: 40px;
      font-size: 2rem;
    }

    .reviews-container {
      overflow: hidden;
      position: relative;
      width: 100%;
      padding: 40px 0;
    }

    .reviews-track {
      display: flex;
      width: max-content;
      animation: scroll 40s linear infinite;
    }

    .review {
      min-width: 300px;
      max-width: 300px;
      margin: 0 15px;
      padding: 20px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid #2f18ff;
      border-radius: 12px;
      box-shadow: 0 0 10px rgba(57, 93, 255, 0.4);
      transition: transform 0.3s ease;
    }

    .review:hover {
      transform: scale(1.05);
    }

    .reviews-container:hover .reviews-track {
      animation-play-state: paused;
    }

    @keyframes scroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    .name {
      margin-top: 10px;
      font-size: 0.9rem;
      color: #ccc;
    }








/* About Us Section */
.about-section {
  background: #0a0a0a;
  padding: 60px 20px;
  text-align: center;
  color: white;
}

.about-content {
  max-width: 900px;
  margin: auto;
}

.about-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .about-content h2 {
    font-size: 1.8rem;
  }
  .about-content p {
    font-size: 1rem;
  }
}





.navbar a.active {
  color: #007bff;
  font-weight: bold;
  /*border-bottom: 2px solid #ff9800; underline effect */
}

.faq-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #000000, #000000);
  text-align: center;
}
.faq-section h2 {
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: #ffffff;
}
.faq-container {
  max-width: 800px;
  margin: auto;
  text-align: left;
}
.faq-item {
  border-bottom: 1px solid #ffffff;
  padding: 15px 0;
}
.faq-question {
  background: none;
  border: none;
  font-size: 1.1rem;
  font-weight: bold;
  width: 100%;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  color: #ffffff;
}
.faq-answer {
  display: none;
  padding-top: 10px;
  color: #ffffff;
  font-size: 0.95rem;
}
.faq-item.active .faq-answer {
  display: block;
  animation: fadeIn 0.3s ease-in-out;
}
@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  width: 50px;
  height: 50px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.whatsapp-float img {
  width: 28px !important;
  height: 28px !important;
}