/* 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;
  }
}

/* HERO PREMIUM */
.hero-premium {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 100px 8%;
  background: linear-gradient(135deg, #eef4ff, #dbe8ff);
  position: relative;
  overflow: hidden;
  gap: 60px;
}

.hero-content {
  max-width: 600px;
  opacity: 0;
  animation: fadeInUp 1s forwards 0.3s; /* fade-in animation */
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 800;
  color: #1c1c1c;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.6;
}

.cta-btn {
  padding: 14px 36px;
  background: #4a6cf7;
  color: #fff;
  font-weight: 700;
  border-radius: 12px;
  transition: 0.3s;
  text-decoration: none; /* Remove underline */
  display: inline-block;
}

.cta-btn:hover {
  background: #3551d4;
  transform: translateY(-2px);
  background: #3551d4;
  transform: translateY(-2px);
  text-decoration: none; /* Ensure underline stays removed */
}

/* HERO IMAGE */
.hero-image img {
  width: 480px;
  height: 480px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  opacity: 0;
  animation: fadeIn 1s forwards 0.6s; /* fade-in animation */
}

/* FLOATING SHAPES */
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.2;
  z-index: 0;
  animation: float 6s ease-in-out infinite;
}

.shape-1 {
  width: 200px;
  height: 200px;
  background: #4a6cf7;
  top: -50px;
  left: -50px;
}

.shape-2 {
  width: 300px;
  height: 300px;
  background: #8aa4ff;
  bottom: -80px;
  right: -80px;
}

/* ANIMATIONS */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(50px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  0% { opacity: 0; transform: scale(0.8); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .hero-premium {
    flex-direction: column-reverse;
    text-align: center;
    padding: 60px 5%;
    gap: 30px;
  }

  .hero-image img {
    width: 100%;
    height: auto;
    margin-bottom: 30px;
  }
}

/* FEATURES SECTION */
.features-section {
  padding: 100px 8%;
  background: #f9faff;
  text-align: center;
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  color: #1c1c1c;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 50px;
}

.features-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.feature-card {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 20px;
  width: 300px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  transition: transform 0.5s, box-shadow 0.5s;
  opacity: 0; /* For animation */
}

.feature-card img {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 22px;
  color: #4a6cf7;
  margin-bottom: 15px;
}

.feature-card p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

/* Hover effect */
.feature-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .features-grid {
    flex-direction: column;
    align-items: center;
  }
}
/* IMPACT / SPLIT SECTION */
.impact-section {
  padding: 100px 8%;
  background: linear-gradient(180deg, #f0f4ff, #e0ebff);
  position: relative;
  overflow: hidden;
}

/* SPLIT CONTAINER - IMAGE LEFT, TEXT RIGHT */
.split-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
  flex-direction: row; /* normal row: first element = left (image), second = right (text) */
}


.impact-text {
  flex: 1;
  max-width: 550px;
}

.impact-text h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #1c1c1c;
}

.impact-text p {
  font-size: 18px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

.impact-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  font-size: 18px;
  color: #4a6cf7;
}

.impact-list li {
  margin-bottom: 12px;
}

.impact-image {
  flex: 1;
  position: relative;
  max-width: 500px;
}

.impact-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* Floating circles */
.floating-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  animation: float 6s ease-in-out infinite;
}

.circle-1 {
  width: 100px;
  height: 100px;
  background: #4a6cf7;
  top: -30px;
  right: -30px;
}

.circle-2 {
  width: 150px;
  height: 150px;
  background: #8aa4ff;
  bottom: -40px;
  left: -40px;
}

/* CTA Button */
.impact-text .cta-btn {
  padding: 14px 36px;
  background: #4a6cf7;
  color: #fff;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  transition: 0.3s;
}

.impact-text .cta-btn:hover {
  background: #3551d4;
  transform: translateY(-2px);
}

/* ANIMATION */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .split-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .impact-image {
    margin-bottom: 30px;
  }
  
}

@media (max-width: 992px) {
  .split-container {
    flex-direction: column; /* stack on mobile */
    text-align: center;
  }

  .impact-image {
    margin-bottom: 30px;
  }
}

/* RESOURCES / TOOLS SECTION */
.resources-section {
  padding: 100px 8%;
  background: #eef4ff;
  text-align: center;
}

.resources-section .section-title {
  font-size: 36px;
  font-weight: 800;
  color: #1c1c1c;
  margin-bottom: 10px;
}

.resources-section .section-subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 50px;
}

/* Carousel / Horizontal Scroll */
.resources-carousel {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-behavior: smooth;
}

.resources-carousel::-webkit-scrollbar {
  height: 8px;
}

.resources-carousel::-webkit-scrollbar-thumb {
  background: #4a6cf7;
  border-radius: 4px;
}

.resource-card {
  flex: 0 0 280px;
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  transition: transform 0.4s, box-shadow 0.4s;
}

.resource-card img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 15px;
}

.resource-card h3 {
  font-size: 20px;
  color: #4a6cf7;
  margin-bottom: 10px;
}

.resource-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
}

/* Hover effect */
.resource-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .resources-carousel {
    gap: 20px;
  }

  .resource-card {
    flex: 0 0 250px;
  }
}

/* TESTIMONIALS SECTION - LIGHT & ELEGANT */
.testimonials-section {
  padding: 120px 8%;
  background: #f9faff; /* light background like hero */
  text-align: center;
  color: #1c1c1c;
}

.testimonials-section .section-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 10px;
}

.testimonials-section .section-subtitle {
  font-size: 18px;
  margin-bottom: 60px;
  color: #555;
}

/* Testimonials wrapper - vertical stack */
.testimonial-wrapper {
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: center;
}

/* Individual card */
.testimonial-card {
  max-width: 600px;
  background: #fff;
  border-radius: 25px;
  padding: 50px 30px;
  position: relative;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.testimonial-card .quote-icon {
  font-size: 50px;
  color: #4a6cf7;
  position: absolute;
  top: -25px;
  left: 20px;
}

.testimonial-card p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.user-info img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #4a6cf7;
}

.user-info h4 {
  font-size: 18px;
  font-weight: 700;
  color: #4a6cf7;
}

/* Responsive */
@media (max-width: 992px) {
  .testimonial-card {
    padding: 40px 20px;
  }

  .testimonial-card p {
    font-size: 16px;
  }

  .user-info img {
    width: 50px;
    height: 50px;
  }

  .user-info h4 {
    font-size: 16px;
  }
}
/* CTA SECTION - LIGHT VERSION */
.cta-section-light {
  position: relative;
  padding: 120px 8%;
  background: #ebecf1; /* light background similar to hero */
  color: #1c1c1c; /* dark text */
  text-align: center;
  overflow: hidden;
  border-radius: 30px;
  margin: 60px 0;
}

.cta-section-light h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 20px;
}

.cta-section-light p {
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.5;
}

.cta-btn-light {
  padding: 18px 50px;
  background: #4a6cf7; /* primary blue button */
  color: #fff;
  font-weight: 700;
  border-radius: 15px;
  text-decoration: none;
  transition: all 0.3s;
}

.cta-btn-light:hover {
  background: #3a55c2;
  transform: translateY(-3px);
}

/* Floating shapes */
.cta-floating {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.circle-1 {
  width: 150px;
  height: 150px;
  background: #4a6cf7;
  top: -50px;
  left: -50px;
}

.circle-2 {
  width: 200px;
  height: 200px;
  background: #4a6cf7;
  bottom: -70px;
  right: -70px;
}

/* Float animation */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .cta-section-light h2 {
    font-size: 32px;
  }

  .cta-section-light p {
    font-size: 16px;
  }

  .cta-btn-light {
    padding: 14px 36px;
  }
}

/* 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;
  }
}
