/* GENERAL */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
}
/* REMOVE UNDERLINE FROM NAV LINKS */
.nav-link {
  text-decoration: none; /* removes underline */
}

.nav-link.btn-cta {
  text-decoration: none; /* removes underline from CTA button */
}

.nav-link:hover,
.nav-link.active {
  background: rgba(255, 255, 255, 0.2);
  text-decoration: none; /* ensures no underline on hover */
}


/* HEADER */
.header {
  position: sticky;
  top: 0;
  width: 100%;
  background: linear-gradient(90deg, #4a6cf7, #8aa4ff);
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

.header .container {
  max-width: 1300px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 8%;
}

/* LOGO */
.logo img {
  width: 180px;
  height: auto;
  transition: transform 0.3s ease;
}
.logo img:hover {
  transform: scale(1.05);
}

/* NAVIGATION */
.nav {
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav-link {
  color: #fff;
  font-weight: 600;
  transition: 0.3s;
  padding: 8px 12px;
  border-radius: 8px;
}

.nav-link:hover,
.nav-link.active {
  background: rgba(255, 255, 255, 0.2);
}

.nav-link.btn-cta {
  background: #fff;
  color: #4a6cf7;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 12px;
  transition: 0.3s;
}

.nav-link.btn-cta:hover {
  background: #f0f4ff;
}

/* HAMBURGER MENU */
.menu-icon {
  display: none;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
  user-select: none;
}

/* MOBILE MENU */
@media (max-width: 992px) {
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100%;
    flex-direction: column;
    background: #4a6cf7;
    width: 250px;
    padding-top: 100px;
    gap: 25px;
    transition: right 0.3s ease;
    z-index: 999;
  }

  .nav.show {
    right: 0;
  }

  .menu-icon {
    display: block;
  }
}

/* FEATURES PAGE HERO - UNIQUE */
.features-hero-unique {
  padding: 140px 8%;
  background: linear-gradient(135deg, #b8cbe8, #f9faff);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.features-hero-unique h1 {
  font-size: 42px;
  font-weight: 800;
  color: #1c1c1c;
  margin-bottom: 20px;
}

.features-hero-unique p {
  font-size: 18px;
  color: #555;
  margin-bottom: 40px;
  line-height: 1.6;
}

.features-hero-unique .cta-btn {
  padding: 16px 40px;
  background: #4a6cf7;
  color: #fff;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s;
}

.features-hero-unique .cta-btn:hover {
  background: #3a55c2;
  transform: translateY(-3px);
}

/* Floating icons */
.floating-icons {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 40px;
  animation: floatIcons 6s ease-in-out infinite;
}

.floating-icons img {
  width: 50px;
  height: 50px;
}

/* Float animation */
@keyframes floatIcons {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-15px); }
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .features-hero-unique h1 {
    font-size: 32px;
  }

  .features-hero-unique p {
    font-size: 16px;
  }

  .floating-icons {
    gap: 25px;
  }

  .floating-icons img {
    width: 40px;
    height: 40px;
  }
}

/* FEATURES CARDS SECTION */
.features-cards-section {
  padding: 100px 8%;
  background: #fff;
  text-align: center;
}

.features-cards-section .section-title {
  font-size: 36px;
  font-weight: 800;
  color: #1c1c1c;
  margin-bottom: 10px;
}

.features-cards-section .section-subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 50px;
}

.features-cards-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.feature-card {
  background: #f9faff;
  border-radius: 20px;
  padding: 40px 20px;
  max-width: 280px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: transform 0.4s, box-shadow 0.4s;
  text-align: center;
}

.feature-card img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #4a6cf7;
}

.feature-card p {
  font-size: 16px;
  color: #1c1c1c;
  line-height: 1.5;
}

/* Hover effect */
.feature-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .features-cards-wrapper {
    gap: 20px;
  }

  .feature-card {
    max-width: 220px;
    padding: 30px 15px;
  }

  .feature-card img {
    width: 70px;
    height: 70px;
  }

  .feature-card h3 {
    font-size: 20px;
  }

  .feature-card p {
    font-size: 14px;
  }
}

/* FEATURES STATS SECTION */
.features-stats-section {
  padding: 100px 8%;
  background: #f1f6ff; /* light gradient/soft color */
  text-align: center;
}

.features-stats-section .section-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #1c1c1c;
}

.features-stats-section .section-subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 50px;
}

.stats-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
}

.stat-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  max-width: 220px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}

.stat-card:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

.stat-card .stat-number {
  font-size: 42px;
  font-weight: 800;
  color: #4a6cf7;
  margin-bottom: 15px;
}

.stat-card p {
  font-size: 16px;
  color: #1c1c1c;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .stats-wrapper {
    gap: 30px;
  }

  .stat-card {
    max-width: 180px;
    padding: 30px 20px;
  }

  .stat-card .stat-number {
    font-size: 36px;
  }

  .stat-card p {
    font-size: 14px;
  }
}
/* FEATURES HOW IT WORKS SECTION */
.features-showcase {
  padding: 100px 8%;
  background: #fff;
}

.features-showcase .section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #1c1c1c;
}

.features-showcase .section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #555;
  margin-bottom: 60px;
}

.showcase-wrapper {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.showcase-item {
  display: flex;
  align-items: center;
  gap: 40px;
}

.showcase-item.reverse {
  flex-direction: row-reverse;
}

.showcase-img {
  flex: 1;
}

.showcase-img img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.showcase-text {
  flex: 1;
}

.showcase-text h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #4a6cf7;
}

.showcase-text p {
  font-size: 16px;
  color: #1c1c1c;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .showcase-item,
  .showcase-item.reverse {
    flex-direction: column;
    text-align: center;
  }

  .showcase-text h3 {
    font-size: 22px;
  }

  .showcase-text p {
    font-size: 15px;
  }
}
/* FEATURES TESTIMONIALS SECTION */
.features-testimonials {
  padding: 100px 8%;
  background: #f9faff; /* Light background */
  text-align: center;
}

.features-testimonials .section-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #1c1c1c;
}

.features-testimonials .section-subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 50px;
}

.testimonials-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.testimonial-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  max-width: 300px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}

.testimonial-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

.testimonial-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.testimonial-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-top: 15px;
  color: #4a6cf7;
}

.testimonial-card span {
  font-size: 14px;
  color: #555;
}

.testimonial-card p {
  font-size: 15px;
  color: #1c1c1c;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .testimonials-wrapper {
    flex-direction: column;
    gap: 25px;
  }

  .testimonial-card {
    max-width: 90%;
    padding: 30px 20px;
  }
}

/* FOOTER SECTION */
.footer-section {
  background: #4a6cf7;; /* light background consistent with CTA and hero */
  color: #ffffff;
  padding: 60px 8% 30px 8%;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-logo img {
  width: 150px;
  margin-bottom: 15px;
}

.footer-logo p {
  font-size: 14px;
  line-height: 1.5;
  max-width: 250px;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  text-decoration: none;
  color: #ffffff;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: #ffffff;
}

.footer-contact p {
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-socials a {
  display: inline-block;
  margin-right: 10px;
}

.footer-socials img {
  width: 24px;
  height: 24px;
  transition: transform 0.3s;
}

.footer-socials img:hover {
  transform: scale(1.2);
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-links ul li {
    display: inline-block;
    margin: 0 10px 10px 10px;
  }

  .footer-socials a {
    margin: 0 8px;
  }
}
