
    :root {
      --navy: #0A1931;
      --orange: #FF6B35;
      --white: #FFFFFF;
      --black: #000000;
      --light-gray: #F8F9FA;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Poppins', sans-serif;
      overflow-x: hidden;
      color: var(--navy);
    }

    /* Navbar */
    .navbar {
      background: rgba(10, 25, 49, 0.95) !important;
      backdrop-filter: blur(10px);
      padding: 20px 0;
      transition: all 0.4s ease;
      box-shadow: 0 2px 20px rgba(0,0,0,0.1);
      z-index: 1000;
    }

    .navbar-scrolled {
      padding: 10px 0;
      box-shadow: 0 5px 30px rgba(0,0,0,0.3);
      background: rgba(10, 25, 49, 1) !important;
    }

    .navbar-brand {
      font-size: 1.8rem;
      font-weight: 800;
      color: var(--white) !important;
      letter-spacing: 1px;
      transition: all 0.3s ease;
    }

    .navbar-brand span {
      color: var(--orange);
    }

    .nav-link {
      color: var(--white) !important;
      font-weight: 500;
      margin: 0 15px;
      position: relative;
      transition: all 0.3s ease;
      padding: 8px 0 !important;
    }

    .nav-link::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 3px;
      background: var(--orange);
      transition: width 0.3s ease;
    }

    .nav-link:hover::after,
    .nav-link.active::after {
      width: 100%;
    }

    .nav-link:hover {
      color: var(--orange) !important;
    }

    /* Page Header */
    .page-header {
      background: linear-gradient(135deg, rgba(10, 25, 49, 0.9), rgba(255, 107, 53, 0.7)),
                  url('https://images.unsplash.com/photo-1523240795612-9a054b0db644?w=1920&h=600&fit=crop&q=80') center/cover;
      height: 50vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: var(--white);
      margin-top: 76px;
    }

    .page-header h1 {
      font-size: 4rem;
      font-weight: 900;
      margin-bottom: 15px;
      text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    }

    .page-header p {
      font-size: 1.3rem;
      max-width: 700px;
      margin: 0 auto;
    }

    /* About Section */
    .about-section {
      padding: 100px 0;
      background: var(--white);
    }

    .section-title {
      font-size: 3rem;
      font-weight: 800;
      margin-bottom: 20px;
      position: relative;
      display: inline-block;
      color: var(--navy);
    }

    .section-title::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 0;
      width: 100px;
      height: 5px;
      background: var(--orange);
      border-radius: 3px;
    }

    .about-content {
      font-size: 1.1rem;
      line-height: 1.9;
      color: #555;
      margin-bottom: 20px;
    }

    .about-img {
      border-radius: 20px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.15);
      transition: all 0.4s ease;
    }

    .about-img:hover {
      transform: translateY(-10px);
      box-shadow: 0 30px 80px rgba(0,0,0,0.25);
    }

    /* Values Section */
    .values-section {
      padding: 100px 0;
      background: var(--light-gray);
    }

    .value-card {
      background: var(--white);
      border-radius: 20px;
      padding: 40px;
      text-align: center;
      transition: all 0.4s ease;
      height: 100%;
      box-shadow: 0 5px 30px rgba(0,0,0,0.08);
      border: 2px solid transparent;
    }

    .value-card:hover {
      transform: translateY(-15px);
      box-shadow: 0 20px 50px rgba(0,0,0,0.15);
      border-color: var(--orange);
    }

    .value-icon {
      width: 80px;
      height: 80px;
      background: linear-gradient(135deg, var(--orange), #ff8c5a);
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 25px;
      transition: all 0.3s ease;
    }

    .value-card:hover .value-icon {
      transform: scale(1.1);
    }

    .value-icon i {
      font-size: 2.5rem;
      color: var(--white);
    }

    .value-card h4 {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 15px;
      color: var(--navy);
    }

    .value-card p {
      color: #666;
      font-size: 1rem;
      line-height: 1.7;
    }

    /* Mission/Vision Section */
    .mission-section {
      padding: 100px 0;
      background: linear-gradient(135deg, var(--navy) 0%, #1a3a5c 100%);
      color: var(--white);
      position: relative;
      overflow: hidden;
    }

    .mission-section::before {
      content: '';
      position: absolute;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(255, 107, 53, 0.15), transparent);
      border-radius: 50%;
      top: -200px;
      right: -200px;
      animation: pulse 8s infinite;
    }

    @keyframes pulse {
      0%, 100% { transform: scale(1); opacity: 0.5; }
      50% { transform: scale(1.1); opacity: 0.8; }
    }

    .mission-card {
      background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(15px);
      border-radius: 25px;
      padding: 50px;
      margin: 20px 0;
      transition: all 0.4s ease;
      border: 2px solid rgba(255, 255, 255, 0.1);
      position: relative;
      z-index: 1;
    }

    .mission-card:hover {
      background: rgba(255, 255, 255, 0.12);
      transform: translateX(15px);
      border-color: var(--orange);
    }

    .mission-icon {
      font-size: 4rem;
      color: var(--orange);
      margin-bottom: 25px;
    }

    .mission-card h3 {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 20px;
    }

    .mission-card p {
      font-size: 1.1rem;
      line-height: 1.8;
      opacity: 0.9;
    }

    /* Team Section */
    .team-section {
      padding: 100px 0;
      background: var(--white);
    }

    .team-card {
      text-align: center;
      transition: all 0.4s ease;
      padding: 20px;
    }

    .team-img-wrapper {
      position: relative;
      display: inline-block;
      margin-bottom: 25px;
    }

    .team-img {
      width: 220px;
      height: 220px;
      border-radius: 50%;
      overflow: hidden;
      transition: all 0.4s ease;
      border: 5px solid var(--orange);
      box-shadow: 0 10px 40px rgba(255, 107, 53, 0.3);
    }

    .team-card:hover .team-img {
      transform: scale(1.08);
      border-color: var(--navy);
    }

    .team-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: all 0.4s ease;
    }

    .team-card:hover .team-img img {
      transform: scale(1.15);
    }

    .team-name {
      font-size: 1.6rem;
      font-weight: 800;
      color: var(--navy);
      margin: 15px 0 8px;
    }

    .team-position {
      color: var(--orange);
      font-weight: 700;
      font-size: 1.1rem;
      margin-bottom: 10px;
    }

    /* Footer */
    .footer {
      background: var(--navy);
      color: var(--white);
      padding: 70px 0 30px;
      position: relative;
    }

    .footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 5px;
      background: linear-gradient(90deg, var(--orange), var(--navy), var(--orange));
    }

    .footer-title {
      color: var(--orange);
      font-weight: 800;
      margin-bottom: 25px;
      font-size: 1.4rem;
    }

    .footer-link {
      color: rgba(255, 255, 255, 0.8);
      text-decoration: none;
      display: block;
      margin: 12px 0;
      transition: all 0.3s ease;
    }

    .footer-link:hover {
      color: var(--orange);
      padding-left: 12px;
    }

    .social-icons {
      margin-top: 25px;
    }

    .social-icon {
      width: 45px;
      height: 45px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin: 0 8px;
      transition: all 0.4s ease;
      border: 2px solid transparent;
    }

    .social-icon:hover {
      background: var(--orange);
      border-color: var(--white);
    }

    .social-icon i {
      color: var(--white);
      font-size: 1.2rem;
    }

    .footer-bottom {
      margin-top: 50px;
      padding-top: 30px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      text-align: center;
    }

    .animate-on-scroll {
      opacity: 0;
      transform: translateY(50px);
      transition: all 0.8s ease;
    }

    .animate-on-scroll.animated {
      opacity: 1;
      transform: translateY(0);
    }

    @media (max-width: 768px) {
      .page-header h1 {
        font-size: 2.5rem;
      }
      
      .section-title {
        font-size: 2rem;
      }
    }
