/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #f7f9fb;
  color: #222;
}


/* NAVBAR */
/* HEADER */
.header {
  width: 100%;
  padding: 15px 30px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e5e5e5;
  position: sticky;
  top: 0;
  z-index: 100;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 700;
  color: #333;
}

.logo img {
  width: 120px;
  height: 40px;
  object-fit: contain;
}

/* NAVIGATION */
.nav {
  display: flex;
  gap: 25px;
}

.nav-link {
  text-decoration: none;
  font-size: 16px;
  color: #333;
  font-weight: 500;
  transition: 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #4a6cf7;
}

/* MOBILE MENU ICON */
.menu-icon {
  font-size: 28px;
  cursor: pointer;
  display: none;
}

/* RESPONSIVE NAV MENU */
@media (max-width: 768px) {
  .nav {
    position: absolute;
    top: 70px;
    right: 0;
    background: #fff;
    flex-direction: column;
    width: 200px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    display: none;
  }

  .nav.show {
    display: flex;
  }

  .menu-icon {
    display: block;
  }
}




/* HERO */
/* .hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 7%;
  background: #e8ecff;
}

.hero-content {
  max-width: 50%;
}

.hero h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #2e2e88;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
}

.cta-btn {
  display: inline-block;
  padding: 12px 30px;
  background: #2e2e88;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: .3s;
}

.cta-btn:hover {
  opacity: .9;
}

.hero-img img {
  width: 500px;
  border-radius: 20px;
} */

/* PREMIUM HERO STYLING */
.hero {
  width: 100%;
  padding: 80px 8%;
  background: linear-gradient(135deg, #f3f5ff, #eef7ff);
  display: flex;
  justify-content: center;
}

.hero-inner {
  max-width: 1300px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 48px;
  line-height: 1.2;
  color: #1d1d1d;
  font-weight: 800;
  margin-bottom: 18px;
}

.hero-text p {
  font-size: 18px;
  color: #555;
  margin-bottom: 30px;
  max-width: 90%;
  line-height: 1.6;
}

.hero-btn {
  display: inline-block;
  padding: 14px 36px;
  background: #4a6cf7;
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0px 6px 20px rgba(74,108,247,0.25);
  transition: 0.3s ease;
}

.hero-btn:hover {
  background: #3753d1;
  transform: translateY(-3px);
}

/* IMAGE CARD */
.hero-image .img-card {
  width: 480px;
  height: 480px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0px 10px 35px rgba(0,0,0,0.15);
  border: 4px solid #fff;
  background: #ddd;
  display: flex;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-text p {
    margin: 0 auto 30px;
  }

  .hero-image .img-card {
    width: 100%;
    height: 350px;
  }
}

/* ABOUT */
/* PREMIUM ABOUT SECTION */
.about-premium {
  padding: 100px 8%;
  background: #f7f9ff;
  position: relative;
}

.about-container {
  max-width: 1300px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* TEXT AREA */
.about-info h2 {
  font-size: 40px;
  font-weight: 800;
  color: #1c1c1c;
  margin-bottom: 18px;
}

.about-info p {
  font-size: 18px;
  color: #555;
  line-height: 1.65;
  margin-bottom: 35px;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 35px;
}

.stat h3 {
  font-size: 32px;
  color: #4a6cf7;
  font-weight: 800;
  margin-bottom: 4px;
}

.stat span {
  font-size: 15px;
  color: #666;
}

/* BUTTON */
.primary-btn {
  display: inline-block;
  padding: 12px 30px;
  background: #4a6cf7;
  color: #fff;
  font-size: 16px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.primary-btn:hover {
  background: #3551d4;
  transform: translateY(-2px);
}

/* IMAGE CARD */
.about-visual {
  position: relative;
}

.about-visual .card {
  width: 460px;
  height: 460px;
  background: #fff;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* FLOATING SHAPES */
.floating-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.45;
  animation: float 6s ease-in-out infinite;
}

.shape1 {
  width: 90px;
  height: 90px;
  background: #4a6cf7;
  top: -30px;
  right: -30px;
}

.shape2 {
  width: 140px;
  height: 140px;
  background: #8aa4ff;
  bottom: -40px;
  left: -40px;
  animation-duration: 7s;
}

/* FLOAT ANIMATION */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* SCROLL ANIMATIONS */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.7s forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MOBILE */
@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-stats {
    justify-content: center;
  }

  .about-visual .card {
    width: 100%;
    height: 350px;
  }
}



/* FEATURES */
.features {
  padding: 80px 7%;
  text-align: center;
}

.features h2 {
  font-size: 36px;
  margin-bottom: 50px;
  color: #2e2e88;
}

.feature-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.feature-card {
  width: 250px;
  background: white;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  text-align: center;
  transition: .3s;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card img {
  width: 60px;
  margin-bottom: 15px;
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #2e2e88;
}


/* BENEFITS */
.benefits {
  padding: 80px 7%;
  background: #f0f4ff;
}

.benefits h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  color: #2e2e88;
}

.benefit-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.benefit-card {
  width: 280px;
  background: white;
  padding: 40px 25px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.benefit-card:hover {
  transform: translateY(-10px);
}

.gradient-card {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
}

.icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 30px;
}




/* TESTIMONIALS */
.testimonials {
  padding: 80px 7%;
  background: #f7f9fb;
  text-align: center;
}

.testimonials h2 {
  font-size: 36px;
  margin-bottom: 50px;
  color: #2e2e88;
}

.testimonial-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.testimonial-card {
  width: 320px;
  padding: 35px;
  border-radius: 20px;
  text-align: center;
  background: white;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-8px);
}

.glass-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.testimonial-card p {
  font-style: italic;
  font-size: 17px;
  margin-bottom: 20px;
  line-height: 1.6;
  color: #333;
}

.testimonial-card h4 {
  font-weight: 600;
  color: #2e2e88;
}



/* CTA */
.cta-section {
  padding: 80px 7%;
  text-align: center;
  background: #e8ecff;
}

.cta-section h2 {
  font-size: 36px;
  margin-bottom: 15px;
  color: #2e2e88;
}

.cta-section p {
  font-size: 18px;
  margin-bottom: 30px;
}


/* FOOTER */
.footer {
  padding: 30px;
  text-align: center;
  font-size: 15px;
  background: #fff;
  border-top: 1px solid #eee;
}



/* RESPONSIVE */
@media (max-width: 900px) {

  .hero, .about {
    flex-direction: column;
    text-align: center;
  }

  .hero-content, .about-text {
    max-width: 100%;
  }

  .hero-img img, .about-img img {
    width: 100%;
  }

  .testimonial-grid {
    flex-direction: column;
  }
}



