/* ================= GENERAL STYLES ================= */
body {
  font-family: 'Inter', 'Roboto', Arial, sans-serif;
  color: #333;
  background: #f9f9fb;
  line-height: 1.6;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

h2, h3, h4, h5 {
  font-weight: 600;
  margin-bottom: 1rem;
  h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: #ffffff;
  margin: 12px auto 0;
  border-radius: 2px;
}
}

h1 {
  background-color: #6132d8;
  border: none;
  padding: 0.65rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s;
}

h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: #5f3dc4;
  margin: 12px auto 0;
  border-radius: 2px;
}

a {
  text-decoration: none;
  transition: color 0.3s;
}
a:hover {
  color: #5f3dc4;
}

/* ================= NAVBAR ================= */
.navbar {
  background: #fff !important;
  padding: 1rem 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.navbar-brand {
  font-weight: 700;
  color: #fff !important;
}
.nav-link {
  color: #000000 !important;
  margin-right: 1rem;
  font-weight: 500;
}
.nav-link:hover {
  color: #7f4be7 !important;
}


/* ================= HERO SECTION ================= */
.landing-hero {
  background: linear-gradient(105deg, #964be7 0%, #5f3dc4 100%);
  color: #fff;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 30px;
  align-items: center;
}
.landing-hero h1 {
  font-size: 3rem;
  font-weight: 700;
}
.landing-hero p {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 1rem;
  padding: 10px 100px 10px 100px;
}
.landing-hero .lead {
  font-size: 1rem;
  max-width: 700px;
  margin: 1rem auto 0;
  line-height: 1.6;
}

.landing-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 90%;
  background: rgba(0,0,0,0.5); /* dark overlay */
  z-index: 1;
}
.landing-hero > .container {
  position: relative;
  z-index: 2;
}

/* ================= BUTTONS ================= */
.btn-primary {
  background-color: #7f4be7;
  border: none;
  padding: 0.65rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s;
}
.btn-primary:hover {
  background-color: #5f3dc4;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(127,75,231,0.3);
}

/* ================= SECTIONS ================= */

/* Services */
.my-wave-section {
  background: linear-gradient(135deg, #7f4be7 0%, #9170ef 100%);
  color: #fff;
  padding: 6rem 0;
  text-align: center;
}

/* About */
#about {
  padding: 6rem 0;
  background-color:#9170ef !important
}
#about img {
  border-radius: 12px;
}
#about p {
  font-size: 1rem;
  line-height: 1.8;
}

/* Partners */
.partners-section {
  background: #f3eefc;
  padding: 4rem 0;
  text-align: center;
}
.partner-logo {
  height: 153px;
  filter: grayscale(0.3);
  transition: all 0.3s ease;
  margin: 0 1rem;
}
.partner-logo:hover {
  filter: grayscale(0);
  transform: scale(1.1);
}

/* Benefits */
.choose-card {
  border-radius: 16px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  padding: 2rem 1rem;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
  cursor: pointer;
}
.choose-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 20px 40px rgba(127,75,231,0.2);
}

/* ================= SERVICE CARDS ================= */
.service-card-modern {
  background: #fff;
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card-modern:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(95,61,196,0.25);
}

.service-card-modern .icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #5f3dc4, #7f4be7);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 2rem;
}

.service-card-modern h5 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #333;
}

.service-card-modern p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .service-card-modern {
    padding: 1.5rem 1rem;
  }
  .service-card-modern .icon-wrapper {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}


/* ================= TESTIMONIALS ================= */
.blockquote {
  border-left: 6px solid #7f4be7;
  background: #fff;
  padding: 2rem 1.5rem;
  margin: 2rem auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  font-style: italic;
}

/* ================= CONTACT ================= */
#contact {
  padding: 6rem 0;
}
form input, form textarea {
  border-radius: 8px;
  border: 1px solid #ddd;
  padding: 0.75rem 1rem;
  width: 100%;
  margin-bottom: 1rem;
  transition: all 0.3s;
}
form input:focus, form textarea:focus {
  border-color: #7f4be7;
  box-shadow: 0 0 12px rgba(127,75,231,0.15);
}

/* ================= FOOTER ================= */
.footer-section {
  background: #1a1a2e;
  color: #fff;
  padding: 2rem 0;
  text-align: center;
}
.footer-section img {
  margin-bottom: 0.5rem;
}
.footer-section strong {
  color: #7f4be7;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .landing-hero h1 { font-size: 2.25rem; }
}

@media (max-width: 576px) {
  .landing-hero h1 { font-size: 1.75rem; }
  .landing-hero p { font-size: 1rem; }
  .service-card .service-icon { font-size: 2.5rem; }
}





/* ================= ABOUT SECTION IMPROVED ================= */
#about {
  background: #f9f8ff;
  padding: 6rem 0;
}

#about h2 {
  font-size: 2.5rem;
  color: #ffffff;
  position: relative;
}
#about h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: #ffffff;
  margin: 12px auto 0;
  border-radius: 2px;
}

.about-img-wrapper {
  /* border-radius: 20px; */
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.about-img-wrapper img {
  width: 70%;
  height: auto;
  display: block;
  align-items: center;
}
.about-img-wrapper:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.about-text {
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}
.about-text:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(127,75,231,0.15);
}
.about-text p {
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
}

/* Button */
#about .btn-primary {
  background: linear-gradient(135deg, #7f4be7, #5f3dc4);
  border: none;
  font-weight: 600;
  padding: 0.65rem 1.5rem;
  border-radius: 8px;
  transition: all 0.3s;
}
#about .btn-primary:hover {
  background: linear-gradient(135deg, #5f3dc4, #7f4be7);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(127,75,231,0.3);
}

/* Responsive */
@media (max-width: 768px) {
  #about .about-text {
    padding: 2rem;
    margin-top: 1.5rem;
  }
  #about h2 {
    font-size: 2rem;
  }
}



/* ================= BENEFITS CARDS ================= */
#benefits {
  background: #f7f4ff;
  padding: 6rem 0;
}

#benefits h2 {
  font-size: 2.5rem;
  color: #5f3dc4;
  position: relative;
}
#benefits h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: #7f4be7;
  margin: 12px auto 0;
  border-radius: 2px;
}

.choose-card {
  background: linear-gradient(145deg, #7f4be7, #5f3dc4);
  color: #fff;
  border-radius: 20px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
  transition: all 0.4s ease;
  cursor: pointer;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.choose-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 40px rgba(127,75,231,0.3);
}

.choose-card h5 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.choose-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  flex-grow: 1;
}

/* Icons */
.benefit-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  transition: all 0.3s;
}
.choose-card:hover .benefit-icon {
  transform: scale(1.2);
  background: rgba(255,255,255,0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .choose-card {
    padding: 2rem 1rem;
  }
  .benefit-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}



/* ================= TESTIMONIALS ================= */
.testimonial-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  border-radius: 25px;
  padding: 2.5rem 2rem;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
  transition: transform 0.4s, box-shadow 0.4s;
  height: 100%;
  color: #fff;
  position: relative;
  margin: 30px 10px;
}

.testimonial-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 25px 50px rgba(127,75,231,0.3);
}

.testimonial-avatar {
  width: 90px;
  height: 90px;
  margin: 0 auto 20px;
  border-radius: 50%;
  border: 3px solid #fff;
  padding: 3px;
  background: linear-gradient(135deg, #5f3dc4, #7f4be7);
  transition: transform 0.3s;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.testimonial-avatar:hover {
  transform: scale(1.1);
}

.testimonial-text {
  font-style: italic;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #f1f1f1;
}

.testimonial-name {
  font-weight: 700;
  color: #fff;
  margin-bottom: 0;
}

.testimonial-title {
  font-size: 0.9rem;
  color: #dcd6f7;
}

/* Swiper buttons */
.swiper-button-next,
.swiper-button-prev {
  color: #fff;
  font-size: 1.5rem;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: #ffd700;
}

.swiper-pagination-bullet {
  background: #fff;
  opacity: 0.7;
}
.swiper-pagination-bullet-active {
  background: #ffd700;
  opacity: 1;
}

/* Floating decorative shapes */
.floating-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.3;
  background: #fff;
  animation: float 10s ease-in-out infinite;
}
.shape1 { width: 120px; height: 120px; top: -50px; left: 20%; }
.shape2 { width: 80px; height: 80px; bottom: 20px; right: 15%; }
.shape3 { width: 60px; height: 60px; top: 50%; left: 75%; }

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-card {
    padding: 2rem 1.5rem;
  }
  .testimonial-avatar {
    width: 70px;
    height: 70px;
  }
  .testimonial-text {
    font-size: 0.95rem;
  }
}



/* ================= CONTACT CARDS ================= */
.contact-card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem 1.5rem;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(127,75,231,0.2);
}

.contact-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7f4be7, #5f3dc4);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 2rem;
  transition: all 0.3s;
}

.contact-card:hover .contact-icon {
  transform: scale(1.2);
  background: linear-gradient(135deg, #5f3dc4, #7f4be7);
}

.contact-card h5 {
  font-weight: 600;
  color: #5f3dc4;
  margin-bottom: 0.5rem;
}

.contact-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-card {
    padding: 1.8rem 1rem;
  }
  .contact-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}
