* {margin: 0; padding: 0; box-sizing: border-box;}
    body {font-family: Arial, sans-serif; line-height: 1.6; color: #333;}

    /* Navbar (same glass style as homepage) */
    .navbar {
      position: sticky;
      top: 0;
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 50px;
      background: rgba(255,255,255,0.2);
      backdrop-filter: blur(12px);
      z-index: 1000;
    }
    .navbar img { height: 50px; }
    .navbar ul { list-style: none; display: flex; }
    .navbar ul li { margin-left: 20px; }
    .navbar ul li a {
      text-decoration: none; color: #ff9800; font-weight: 500;
      transition: color 0.3s;
    }
    .navbar ul li a:hover { color: #ff9800; }

    /* Hero */
    .hero {
      height: 60vh;
      background: url('about-hero.jpg') center/cover no-repeat;
      display: flex; align-items: center; justify-content: center;
      text-align: center; color: #fff;
      position: relative;
    }
    .hero::after {
      content: "";
      position: absolute; top: 0; left: 0; width: 100%; height: 100%;
      background: rgba(0,0,0,0.4);
    }
    .hero-content {
      position: relative; z-index: 1;
    }
    .hero h1 { font-size: 3rem; margin-bottom: 10px; }
    .hero p { font-size: 1.2rem; }

    /* Sections */
    section { max-width: 1200px; margin: auto; padding: 60px 20px; }
    .section-title { text-align: center; margin-bottom: 40px; }
    .section-title h2 { font-size: 2rem; margin-bottom: 10px; color: #222; }
    .section-title p { color: #666; }

    /* Story */
    .about-story { text-align: center; }
    .about-story p { max-width: 800px; margin: auto; }

    /* Mission Vision */
    .mission-vision { display: flex; flex-wrap: wrap; gap: 30px; text-align: center; }
    .mv-box { flex: 1; min-width: 250px; background: #f7f7f7; padding: 30px; border-radius: 12px; }
    .mv-box h3 { margin-bottom: 15px; color: #ff9800; }

    /* What we offer */
    .offerings { display: grid; grid-template-columns: repeat(auto-fit,minmax(250px,1fr)); gap: 20px; text-align: center; }
    .offer-box { padding: 20px; border-radius: 12px; background: #fff; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
    .offer-box i { font-size: 30px; color: #ff9800; margin-bottom: 10px; }

    /* Why choose us */
    .why-us { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 20px; text-align: center; }
    .why-box { padding: 20px; border-radius: 12px; background: #fff; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
    .why-box i { font-size: 28px; color: #ff9800; margin-bottom: 10px; }

    /* CTA */
    .cta { text-align: center; padding: 60px 20px; background: linear-gradient(135deg,#ff9800,#ff5722); color: #fff; }
    .cta h2 { margin-bottom: 20px; font-size: 2rem; }
    .cta button {
      background: #fff; color: #ff5722;
      border: none; padding: 12px 25px;
      border-radius: 30px; font-size: 1rem; font-weight: bold;
      cursor: pointer; transition: 0.3s;
    }
    .cta button:hover { background: #222; color: #fff; }

    /* Footer */
    .footer {
      background: #111; color: #fff; padding: 50px 20px 20px;
    }
    .footer-container {
      display: grid; grid-template-columns: repeat(auto-fit,minmax(250px,1fr)); gap: 30px;
      max-width: 1200px; margin: auto;
    }
    .footer-logo { width: 150px; margin-bottom: 15px; }
    .footer-col h3 { margin-bottom: 15px; color: #ff9800; }
    .footer-col ul { list-style: none; padding: 0; }
    .footer-col ul li { margin-bottom: 10px; }
    .footer-col ul li a { text-decoration: none; color: #fff; transition: 0.3s; }
    .footer-col ul li a:hover { color: #ff9800; }
    .social-icons a { margin-right: 10px; font-size: 18px; color: #fff; }
    .social-icons a:hover { color: #ff9800; }
    .footer-bottom { text-align: center; margin-top: 30px; border-top: 1px solid rgba(255,255,255,0.2); padding-top: 15px; font-size: 0.9rem; }
    
    /* TEAM SECTION */
.team {
  padding: 80px 20px;
  background: url('team-bg.jpg') center/cover no-repeat;
  position: relative;
}

.team::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
}

.team-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  z-index: 1;
}

.team h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #222;
}

.team-subtitle {
  font-size: 1rem;
  margin-bottom: 50px;
  color: #444;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.team-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-10px);
}

.team-card img {
  width: 100%;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 4px solid #fff;
}

.team-card h3 {
  font-size: 1.3rem;
  margin-bottom: 5px;
  color: #111;
}

.team-card .role {
  font-size: 1rem;
  font-weight: bold;
  color: #ff9800;
  margin-bottom: 10px;
}

.team-card .bio {
  font-size: 0.9rem;
  color: #333;
}

