/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: #fff;
  color: #212529;
  scroll-behavior: smooth;
}

/* Navbar Styles */
.navbar {
  width: 100%;
  height: 70px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 36px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.10);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-left {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 65px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-right a {
  color: #2270db;
  text-decoration: none;
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 0.3px;
  transition: color 0.2s, transform 0.2s;
  position: relative;
  padding: 2px 0;
}

.nav-right a:hover,
.nav-right a:focus {
  color: #39e2eb;
  text-shadow: 0 0 8px #39e2eb33;
  transform: translateY(-1px);
}

.nav-right a.active {
  color: #ff6b00;
  font-weight: 600;
}

/* ABOUT SECTION */
.about-section {
  width: 100%;
  padding: 80px 6%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  gap: 60px;
  flex-wrap: wrap;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-tag {
  display: inline-block;
  background-color: #eaf1ff;
  color: #1e5eff;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.about-title {
  font-size: 2rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 16px;
}

.about-desc {
  font-size: 1rem;
  color: #4f4f4f;
  line-height: 1.7;
  margin-bottom: 36px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 60px;
}

.stat-item h3 {
  font-size: 1.8rem;
  color: #1e5eff;
  font-weight: 700;
  margin-bottom: 6px;
}

.stat-item p {
  font-size: 0.95rem;
  color: #555;
}

.about-image {
  flex: 1;
  min-width: 320px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.image-frame::before {
  content: "";
  position: absolute;
  left: -20px;
  bottom: -20px;
  width: 80px;
  height: 80px;
  background-color: #ff6b00;
  border-radius: 12px;
  z-index: 0;
}

.image-frame img {
  width: 100%;
  border-radius: 16px;
  z-index: 2;
}

/* VISION & MISSION */
.vision-section {
  background-color: #f9fbff;
  padding: 90px 6%;
  text-align: center;
}

.vision-tag {
  display: inline-block;
  background-color: #eaf1ff;
  color: #1e5eff;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.vision-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 50px;
}

.vision-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.vision-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  padding: 40px 30px;
  flex: 1 1 420px;
  max-width: 500px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vision-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.vision-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 28px;
}

.vision-blue { background-color: #eaf1ff; color: #1e5eff; }
.vision-orange { background-color: #fff3e4; color: #ff6b00; }

/* WHY CHOOSE US */
.why-section {
  background: #f9fbff;
  padding: 100px 6%;
  text-align: center;
}

.why-tag {
  display: inline-block;
  background-color: #eaf1ff;
  color: #1e5eff;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.why-title {
  font-size: 2rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 60px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px 30px;
  justify-content: center;
}

.why-card {
  background: #fff;
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.why-icon {
  background-color: #eaf1ff;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: 0 auto 18px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #1e5eff;
}

/* CTA SECTION */
.cta-section {
  background: #1e5eff;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-container {
  text-align: center;
  color: #fff;
  max-width: 600px;
  background: #1e5eff;
  border-radius: 14px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  padding: 50px 20px;
}

.cta-container h2 {
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.cta-container p {
  font-size: 1rem;
  opacity: 0.95;
  margin-bottom: 25px;
}

.cta-btn {
  display: inline-block;
  background: #ff6b00;
  color: #fff;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: #ffa24d;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .vision-card,
  .why-card {
    text-align: center;
  }

  .nav-right {
    gap: 20px;
  }

  .navbar {
    padding: 0 20px;
  }
}