    @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;600;700&display=swap");




    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: "Poppins", sans-serif;
      background: #f5f8ff;
      color: #333;
    }

    /* Navbar */
    nav {
      background: linear-gradient(135deg, #ff2d84, #dd3179);
      color: white;
      padding: 10px 8%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .logo {
      font-size: 1.6rem;
      font-weight: 700;
      letter-spacing: 1px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 25px;
      list-style: none;
      transition: 0.4s;
    }

    .nav-links li {
      position: relative;
    }

    .nav-links a {
      color: white;
      text-decoration: none;
      font-weight: 500;
      font-size: 1rem;
      transition: color 0.3s;
    }

    .nav-links a:hover {
      color:  #eb799f;
    }

    .dropdown-menu {
      position: absolute;
      top: 40px;
      left: 0;
      background: white;
      color: #333;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      display: none;
      flex-direction: column;
      min-width: 200px;
      overflow: hidden;
      z-index: 100;
    }

    .dropdown:hover .dropdown-menu {
      display: flex;
      animation: fadeIn 0.3s ease-in-out;
    }

    .dropdown-menu a {
      padding: 10px 15px;
      color: #333;
      display: block;
    }

    .dropdown-menu a:hover {
      background:  #ff4081;
      color: #fff;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(-10px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .menu-icon {
      display: none;
      font-size: 1.8rem;
      cursor: pointer;
    }

    @media (max-width: 768px) {
      .menu-icon {
        display: block;
      }

      .nav-links {
        position: absolute;
        top: 70px;
        left: -100%;
        background: #ff4081;
        flex-direction: column;
        width: 100%;
        gap: 15px;
        padding: 20px 0;
        text-align: center;
      }

      .nav-links.active {
        left: 0;
      }

      .dropdown-menu {
        position: static;
        box-shadow: none;
        background:  #ff4081;
      }

      .dropdown-menu a {
        color: white;
      }

      .dropdown-menu a:hover {
        background: #ff4081;
      }
    }

    /* Hero Section */
   /* === Hero Section === */
.hero-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 80px 10%;
  background: linear-gradient(135deg, #eef6ff, #ffffff);
  min-height: 90vh;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
 background: url("bg.jpg") no-repeat center center/cover;
}

/* Hero Text Content */
.hero-content {
  flex: 1 1 500px;
  animation: fadeInLeft 1.5s ease;
}

.hero-content h1 {
  font-size: 2.8rem;
  color: #111;
  line-height: 1.3;
  margin-bottom: 20px;
}

.hero-content h1 span {
  color: #ff4081;
  font-weight: 700;
}

.hero-content p {
  color: #555;
  font-size: 1rem;
  margin-bottom: 30px;
  animation: slideUp 2s ease;
}

.hero-btn {
  display: inline-block;
  background: #ff4081;
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  animation: fadeInUp 2.5s ease;
}

.hero-btn:hover {
  background: #e73370;
  transform: scale(1.05);
}

/* Hero Image / Banner */
.hero-banner {
  flex: 1 1 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.banner-slide {
  width: 420px;
  height: 420px;
  border-radius: 30px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  animation: slideImages 12s infinite linear, float 4s ease-in-out infinite;
}

/* Banner Animation Images */
@keyframes slideImages {
  0%, 25% {
    background-image: url('banner1.jpg');
  }
  26%, 50% {
    background-image: url('banner1.jpg');
  }
  51%, 75% {
    background-image: url('banner1.jpg');
  }
  76%, 100% {
    background-image: url('banner1.jpg');
  }
}

/* Floating Effect */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Text Animations */
@keyframes fadeInLeft {
  0% { opacity: 0; transform: translateX(-50px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section {
    flex-direction: column;
    text-align: center;
  }

  .hero-banner {
    margin-top: 40px;
  }

  .banner-slide {
    width: 300px;
    height: 300px;
  }
}

.services-section {
  text-align: center;
  padding: 80px 10%;
  background: white
}

.services-section h2 {
  font-size: 36px;
  color: #111;
  margin-bottom: 60px;
  position: relative;
}

.services-section h2::after{
 content: "";
  width: 60px;
  height: 4px;
  background: #ff004f;
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 5px;
}


.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.service-card {
  position: relative;
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.card-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.wave {
  position: relative;
  height: 60px;
  margin-top: -1px;
background: url("data:image/svg+xml;utf8,<svg viewBox='0 0 500 150' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'><path d='M0,40 C80,120 170,0 260,70 C340,130 420,30 500,60 L500,0 L0,0 Z' style='stroke:none;fill:%23ff4081;'></path></svg>") no-repeat;
background-size: cover;





}

.card-content {
  padding: 25px;
  text-align: center;
}

.card-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: #111;
  margin-bottom: 15px;
}

.card-content p {
  color: #666;
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.read-more {
  background: #ff004f;
  color: #fff;
  text-decoration: none;
  padding: 10px 25px;
  border-radius: 4px;
  transition: 0.3s;
  font-weight: 500;
}

.read-more:hover {
  background: #111;
}



/* === Testimonials Section === */
.clients-section {
  background: linear-gradient(135deg, #f8f9fa, #efb9da);
  text-align: center;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.clients-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #222;
  position: relative;
  display: inline-block;
}

.clients-section h2::after {
  content: "";
  width: 60px;
  height: 4px;
  background: #ff004f;
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 5px;
}

/* Slider Container */
.slider-container {
  overflow: hidden;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.slider-track {
  display: flex;
  width: calc(300px * 12);
  animation: scroll 25s linear infinite;
}

/* Individual Cards */
.client-card {
  flex: 0 0 300px;
  background: #fff;
  margin: 0 15px;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(194, 23, 94, 0.1);
  transition: transform 0.4s ease, box-shadow 0.3s ease;
}

.client-card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(129, 12, 72, 0.3);
}

.client-card img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid #ff004f;
}

.client-card h3 {
  font-size: 1.2rem;
  color: #222;
  margin-bottom: 10px;
}

.client-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* Sliding Animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .client-card {
    flex: 0 0 250px;
  }

  .clients-section h2 {
    font-size: 2rem;
  }
}

/* === FAQ Section === */
.faqs {
  background: linear-gradient(135deg, #ffffff, #f7faff);
  padding: 80px 10%;
  font-family: 'Poppins', sans-serif;
}

.faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.faq-header h2 {
  font-size: 2.5rem;
  color: #111;
  font-weight: 700;
}

.faq-header p {
  color: #555;
  margin-top: 10px;
  font-size: 1rem;
}

/* FAQ Container */
.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

/* FAQ Items */
.faq-item {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 15px;
  padding: 20px 25px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Question Row */
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question h4 {
  font-size: 1.1rem;
  color: #111;
  margin: 0;
}

.faq-toggle {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ff4081;
  transition: transform 0.3s ease;
}

/* Answer Section (Hidden by default) */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}

.faq-answer p {
  color: #555;
  font-size: 0.95rem;
  margin-top: 15px;
  line-height: 1.6;
}

/* Active FAQ (when clicked) */
.faq-item.active .faq-answer {
  max-height: 300px;
  opacity: 1;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

/* === Footer Section === */
.footer {
  background: #0a0a23;
  color: #fff;
  padding-top: 60px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  padding: 0 10%;
  margin-bottom: 40px;
}

.footer h3, .footer h4 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
}

.footer h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 50px;
  height: 3px;
  background: #ff4081;
  border-radius: 3px;
}

/* Company Info */
.footer-col p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #ccc;
}

/* Links */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #bbb;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-col ul li a:hover {
  color: #ff4081;
  transform: translateX(5px);
}

/* Contact Info Icons */
.footer-col ul li i {
  color: #ff4081;
  margin-right: 10px;
}

/* Social Icons */
.social-links {
  margin-top: 20px;
}

.social-links a {
  display: inline-block;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  text-align: center;
  line-height: 36px;
  margin-right: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #ff4081;
  transform: translateY(-5px);
}

/* Footer Bottom */
.footer-bottom {
  background: #08081a;
  text-align: center;
  padding: 20px 10%;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: #bbb;
  font-size: 0.9rem;
}

.footer-bottom span {
  color: #ff4081;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-links a {
    margin-right: 5px;
  }
}