/* NAVBAR SAME AS SOLUTIONS */

.custom-navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 20px 10%;   /* SAME as solutions */
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.logo {
    font-weight: 700;
    font-size: 20px;
    color: #1e3a8a;
}

.home-btn {
    text-decoration: none;
    color: #2563eb;
    font-weight: 500;
}

.home-btn:hover {
    color: #1e3a8a;
}

/* PAGE HERO */
  .page-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 60%, #3b82f6 100%);
    color: white;
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .page-hero::before {
    content: "";
    position: absolute;
    width: 600px; height: 600px;
    background: rgba(99,102,241,0.15);
    border-radius: 50%;
    top: -200px; right: -150px;
  }
  .page-hero h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 15px;
  }
  .page-hero p {
    font-size: 18px;
    opacity: 0.85;
    max-width: 600px;
    margin: auto;
  }

  /* ABOUT INTRO */
  .about-intro {
    padding: 80px 0;
    background: #f9fbff;
  }
  .about-intro h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0072ff;
    margin-bottom: 20px;
  }
  .about-intro p {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
  }
  .about-img {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,114,255,0.15);
  }
  .about-img img {
    width: 100%;
    height: 380px;
    object-fit: cover;
  }

  /* STATS */
  .stats-section {
    background: linear-gradient(135deg, #1e2a78, #0072ff);
    padding: 60px 0;
    color: white;
    text-align: center;
  }
  .stat-box h3 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 5px;
  }
  .stat-box p {
    font-size: 15px;
    opacity: 0.85;
  }

  /* MISSION VISION */
  .mv-section {
    padding: 80px 0;
    background: #fff;
  }
  .mv-card {
    background: #f0f4ff;
    border-radius: 16px;
    padding: 40px 30px;
    height: 100%;
    border-left: 5px solid #0072ff;
    transition: 0.3s;
  }
  .mv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,114,255,0.1);
  }
  .mv-card .icon {
    font-size: 36px;
    color: #4f46e5;
    margin-bottom: 20px;
  }
  .mv-card h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1e2a78;
  }
  .mv-card p {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
  }

  /* CORE VALUES */
  .values-section {
    padding: 80px 0;
    background: #f9fbff;
  }
  .value-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
  }
  .value-icon {
    width: 50px; height: 50px;
    background: linear-gradient(135deg, #0072ff, #4f46e5);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    color: white;
    font-size: 20px;
  }
  .value-text h5 {
    font-weight: 700;
    color: #1e2a78;
    margin-bottom: 6px;
  }
  .value-text p {
    color: #666;
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
  }

  /* TEAM */
  .team-section {
    padding: 80px 0;
    background: #fff;
  }
  .team-card {
    background: #f9fbff;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: 0.3s;
    height: 100%;
  }
  .team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  }
  .team-avatar {
    width: 90px; height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px;
    display: block;
    border: 4px solid #0072ff;
  }
  .team-avatar-placeholder {
    width: 90px; height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0072ff, #4f46e5);
    margin: 0 auto 15px;
    display: flex; align-items: center; justify-content: center;
    color: white;
    font-size: 32px;
    font-weight: 700;
    border: 4px solid #e0e7ff;
  }
  .team-card h5 {
    font-weight: 700;
    color: #1e2a78;
    margin-bottom: 4px;
  }
  .team-card .role {
    color: #0072ff;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
  }
  .team-card p {
    color: #666;
    font-size: 13px;
    line-height: 1.6;
  }
/* FOOTER */
.footer {
    background: #0f172a;
    color: white;
    text-align: center;
    padding: 40px;
}