 :root {
      --black: #000814;
      --darkBlue: #001d3d;
      --lightBlue: #003566;
      --yellow: #ffc300;
      --fadedYellow: #ffd60a;
      --white: #ffffff;
      --gray: #b5b5b5;
    }

    /* ===== Global ===== */
    * {
      box-sizing: border-box;
    }

    body {
      font-family: "Poppins", "Segoe UI", sans-serif;
      background-color: var(--black);
      color: var(--white);
      margin: 0;
      padding: 0;
      line-height: 1.6;
      overflow-x: hidden;
    }

    h1, h2, h3 {
      font-weight: 700;
      margin: 0;
    }

    a {
      color: var(--yellow);
      text-decoration: none;
      transition: 0.3s ease;
    }

    a:hover {
      color: var(--fadedYellow);
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 60px 20px;
    }

    /* ===== Hero ===== */
    .hero {
      position: relative;
      background: linear-gradient(
          rgba(0, 0, 0, 0.6),
          rgba(0, 0, 0, 0.85)
        ),
        url('https://images.unsplash.com/photo-1517604931442-7e0c8ed2963c?auto=format&fit=crop&w=1200&q=80');
      background-size: cover;
      background-position: center;
      height: 90vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: var(--white);
      overflow: hidden;
    }

    .hero::after {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: radial-gradient(
        circle at center,
        rgba(255, 195, 0, 0.15),
        transparent 70%
      );
      z-index: 1;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      padding: 0 20px;
      animation: fadeInUp 1s ease-in-out;
    }

    .hero h1 {
      font-size: 3.5rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-bottom: 10px;
    }

    .hero .highlight {
      color: var(--yellow);
      text-shadow: 0 0 20px rgba(255, 195, 0, 0.5);
    }

    .hero .tagline {
      font-size: 1.4rem;
      color: #f5f5f5;
      margin-bottom: 10px;
    }

    .hero .subtext {
      font-size: 1.1rem;
      color: #ccc;
      margin-bottom: 30px;
    }

    .hero-btn {
      display: inline-block;
      background: var(--yellow);
      color: var(--black);
      font-weight: 700;
      padding: 14px 38px;
      border-radius: 30px;
      text-transform: uppercase;
      letter-spacing: 1px;
      transition: all 0.3s ease;
      box-shadow: 0 6px 20px rgba(255, 195, 0, 0.4);
    }

    .hero-btn:hover {
      background: var(--fadedYellow);
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(255, 214, 10, 0.5);
      color: rgb(62, 62, 62);
    }

    @keyframes fadeInUp {
      0% { opacity: 0; transform: translateY(40px); }
      100% { opacity: 1; transform: translateY(0); }
    }

    /* ===== Section Headings ===== */
    .section-title {
      font-size: 2.2rem;
      text-align: center;
      margin-bottom: 15px;
      color: var(--yellow);
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    .section-subtitle {
      text-align: center;
      color: var(--gray);
      margin-bottom: 50px;
      font-size: 1rem;
    }

    /* ===== Info Section ===== */
    .info-section {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 35px;
      margin-bottom: 80px;
    }

    .info-box {
      background: linear-gradient(145deg, var(--lightBlue), var(--darkBlue));
      border-radius: 16px;
      padding: 35px;
      border-left: 4px solid var(--yellow);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .info-box::before {
      content: "";
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(255, 195, 0, 0.1), transparent 70%);
      transform: scale(0);
      transition: 0.5s;
      z-index: 0;
    }

    .info-box:hover::before {
      transform: scale(1);
    }

    .info-box:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 35px rgba(255, 195, 0, 0.2);
    }

    .info-box h3 {
      color: var(--fadedYellow);
      margin-bottom: 15px;
      position: relative;
      z-index: 1;
    }

    .info-box p {
      color: #eaeaea;
      font-size: 1rem;
      position: relative;
      z-index: 1;
    }

    /* ===== Team Section ===== */
    .team-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 35px;
    }

    .team-card {
      background: linear-gradient(160deg, var(--darkBlue), var(--lightBlue));
      border-radius: 16px;
      overflow: hidden;
      text-align: center;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
      transition: all 0.3s ease;
      position: relative;
    }

    .team-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 40px rgba(255, 195, 0, 0.2);
    }

    .team-card img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      filter: brightness(0.85);
    }

    .team-info {
      padding: 25px 20px;
    }

    .team-info h3 {
      font-size: 1.3rem;
      color: var(--white);
      margin-bottom: 8px;
    }

    .team-info .role {
      font-size: 0.95rem;
      color: var(--yellow);
      margin-bottom: 10px;
      font-weight: 600;
    }

    .team-info .desc {
      font-size: 0.9rem;
      color: #dcdcdc;
    }

    /* ===== Call to Action ===== */
    .cta {
      text-align: center;
      background: linear-gradient(180deg, var(--lightBlue), var(--darkBlue));
      padding: 80px 20px;
      margin-top: 100px;
      border-top: 3px solid var(--yellow);
      box-shadow: 0 -4px 30px rgba(255, 195, 0, 0.1);
    }

    .cta h2 {
      color: var(--yellow);
      font-size: 2rem;
      margin-bottom: 25px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .cta a {
      display: inline-block;
      padding: 14px 40px;
      background: var(--yellow);
      color: var(--black);
      border-radius: 30px;
      font-weight: 700;
      transition: all 0.3s ease;
      box-shadow: 0 6px 20px rgba(255, 195, 0, 0.4);
    }

    .cta a:hover {
      background: var(--fadedYellow);
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(255, 214, 10, 0.5);
    }

    /* ===== Responsive ===== */
    @media (max-width: 768px) {
      .hero h1 { font-size: 2.5rem; }
      .hero .tagline { font-size: 1.1rem; }
      .hero .subtext { font-size: 1rem; }
    }