/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #f5f9ff;
  color: #333;
  line-height: 1.6;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background: white;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-size: 22px;
  font-weight: 600;
}

.logo-blue {
  color: #1565c0;
}

.logo-green {
  color: #2e7d32;
}

.navbar nav a {
  margin-left: 25px;
  text-decoration: none;
  color: #444;
  font-weight: 500;
  transition: 0.3s;
}

.navbar nav a:hover {
  color: #1565c0;
}

/* BUTTON */
.btn {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  background: #1565c0;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  background: #0d47a1;
  transform: translateY(-2px);
}

.btn.secondary {
  background: #e3f2fd;
  color: #1565c0;
}

/* HERO */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px 60px;
  animation: fadeUp 1s ease;
}

.hero-left h1 {
  font-size: 42px;
  color: #0d47a1;
  margin-bottom: 20px;
}

.hero-left p {
  margin-bottom: 25px;
  color: #555;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.hero-right img {
  width: 450px;
  animation: float 3s ease-in-out infinite;
}

/* SPLIT SECTIONS */
.split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px;
  gap: 40px;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-img img {
  width: 400px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.split-text h2 {
  color: #0d47a1;
  margin-bottom: 15px;
}

/* TESTIMONIAL */
.testimonial {
  padding: 60px;
  text-align: center;
}

.test-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.test-card {
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  max-width: 300px;
}

/* STATS */
.stats {
  display: flex;
  justify-content: space-around;
  padding: 60px;
  background: #e3f2fd;
  text-align: center;
}

.stats h1 {
  color: #1565c0;
}

/* CTA */
.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px;
  background: #1565c0;
  color: white;
}

.cta img {
  width: 300px;
}

.cta .btn {
  margin-top: 20px;
  background: white;
  color: #1565c0;
}

/* FOOTER */
footer {
  background: #0d47a1;
  color: white;
  text-align: center;
  padding: 30px;
}

/* ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

/* RESPONSIVE */

/* TABLET */
@media (max-width: 1024px) {
  .hero, .split, .cta {
    flex-direction: column;
    text-align: center;
  }

  .hero-right img,
  .split-img img,
  .cta img {
    width: 80%;
  }

  .stats {
    flex-direction: column;
    gap: 20px;
  }
}

/* MOBILE */
@media (max-width: 768px) {

  .navbar {
    padding: 15px 20px;
  }

  .navbar nav {
    display: none;
  }

  .hero {
    padding: 40px 20px;
  }

  .hero-left h1 {
    font-size: 28px;
  }

  .split {
    padding: 40px 20px;
  }

  .testimonial {
    padding: 40px 20px;
  }

  .test-grid {
    flex-direction: column;
    align-items: center;
  }

  .stats {
    padding: 40px 20px;
  }

  .cta {
    padding: 40px 20px;
  }

}
/* ABOUT HERO (centered) */
.hero {
  text-align: center;
}

.hero h1 {
  font-size: 38px;
  color: #0d47a1;
  margin-bottom: 15px;
}

.hero p {
  color: #555;
  max-width: 600px;
  margin: auto;
}

/* SPLIT TEXT IMPROVEMENT */
.split-text {
  max-width: 500px;
}

.split-text h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.split-text p {
  color: #555;
  line-height: 1.7;
}

/* TEAM SECTION */
.team {
  text-align: center;
  padding: 80px 60px;
}

.team h1 {
  font-size: 32px;
  color: #0d47a1;
  margin-bottom: 10px;
}

.team p {
  color: #666;
  margin-bottom: 30px;
}

/* TEAM CARDS (reuse testimonial style but improved) */
.test-card {
  transition: 0.3s;
}

.test-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* CTA TEXT FIX */
.cta-text h1 {
  font-size: 32px;
}

.cta-text p {
  margin-top: 10px;
}

/* IMAGE RESPONSIVE FIX */
.split-img img {
  max-width: 100%;
}

/* MOBILE IMPROVEMENTS */
@media (max-width: 768px) {

  .hero h1 {
    font-size: 26px;
  }

  .split-text h2 {
    font-size: 22px;
  }

  .team {
    padding: 40px 20px;
  }

}
/* FEATURES SECTION */
.features-section {
  padding: 60px;
}

/* GRID */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.feature-card {
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.feature-card h3 {
  color: #1565c0;
  margin-bottom: 10px;
}

.feature-card p {
  color: #555;
  font-size: 14px;
}

/* HOVER EFFECT */
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .features-section {
    padding: 40px 20px;
  }
}
/* CONTACT SECTION */
.contact-section {
  padding: 60px;
}

/* BOX */
.contact-box {
  display: flex;
  gap: 40px;
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* LEFT SIDE */
.contact-info {
  flex: 1;
}

.contact-info h2 {
  color: #0d47a1;
  margin-bottom: 15px;
}

.contact-info p {
  margin-bottom: 10px;
  color: #555;
}

/* RIGHT SIDE */
.contact-form-box {
  flex: 1;
}

/* FORM */
.contact-form-box form {
  display: flex;
  flex-direction: column;
}

.contact-form-box input,
.contact-form-box textarea {
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.contact-form-box textarea {
  height: 120px;
  resize: none;
}

/* SUCCESS */
.success-icon {
  font-size: 40px;
  margin-bottom: 10px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-box {
    flex-direction: column;
    padding: 20px;
  }

  .contact-section {
    padding: 40px 20px;
  }
}
/* PRICING */
.pricing {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 60px;
  flex-wrap: wrap;
}

.pricing-card {
  background: white;
  padding: 30px;
  border-radius: 20px;
  width: 280px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.pricing-card h2 {
  color: #0d47a1;
  margin-bottom: 10px;
}

.pricing-card h1 {
  font-size: 36px;
  color: #1565c0;
}

.pricing-card p {
  color: #666;
  margin-bottom: 20px;
}

.pricing-card ul {
  list-style: none;
  margin-bottom: 20px;
}

.pricing-card ul li {
  margin-bottom: 10px;
  color: #555;
}

/* HIGHLIGHT PLAN */
.pricing-card.highlight {
  transform: scale(1.05);
  border: 2px solid #1565c0;
}

/* HOVER */
.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .pricing {
    padding: 40px 20px;
  }
}
/* HAMBURGER */
.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* MOBILE NAV */
@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  #nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: white;
    display: none;
    flex-direction: column;
    text-align: center;
    padding: 20px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }

  #nav-links a {
    display: block;
    margin: 15px 0;
  }

  #nav-links.active {
    display: flex;
  }
}
