/* ======== GLOBAL ======== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background: url("./hp2\ aboutus.webp") no-repeat center/cover fixed;
    color: #222;
  }
  
  /* ======== HERO SECTION ======== */
  .hero {
    width: 100%;
    padding: 80px 20px;
    text-align: center;
    /* background: rgba(255,255,255,0.75); */
    backdrop-filter: blur(4px);
  }
  
  .hero .title {
    font-size: 38px;
    font-weight: 700;
    max-width: 900px;
    margin: auto;
  }
  
  .hero .subtitle {
    margin-top: 15px;
    font-size: 18px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  
  /* ======== MAIN GRID ======== */
  main {
    padding: 40px 20px;
  }
  
  .grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: auto;
  }
  
  /* ======== CARD STYLING ======== */
  .card {
    background: #ffffffcc;
    padding: 22px;
    border-radius: 14px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  }
  
  /* HEADINGS */
  .card h3 {
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: 700;
    color: #333;
  }
  
  /* ======== VALUES SECTION ======== */
  .values .value {
    margin-bottom: 12px;
  }
  
  .values .value strong {
    font-size: 18px;
    color: #111;
  }
  
  /* ======== TIMELINE SECTION ======== */
  .timeline {
    margin-top: 10px;
  }
  
  .milestone {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 15px;
  }
  
  .milestone strong {
    margin-right: 6px;
  }
  
  .dot {
    width: 10px;
    height: 10px;
    background: #6c63ff;
    border-radius: 50%;
    margin-right: 8px;
  }
  
  /* ======== TEAM SECTION ======== */
  .team-grid {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  
  .person {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #6c63ff;
  }
  
  .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .person strong {
    font-size: 17px;
  }
  
  /* ============================= */
  /*        RESPONSIVE AREA        */
  /* ============================= */
  
  /* ======= TABLET (max-width 992px) ======= */
  @media (max-width: 992px) {
  
    .grid {
      grid-template-columns: 1fr;
    }
  
    aside {
      margin-top: 20px;
    }
  
    .hero .title {
      font-size: 32px;
    }
  
    .hero .subtitle {
      font-size: 17px;
    }
  }
  
  /* ======= MOBILE (max-width 576px) ======= */
  @media (max-width: 576px) {
  
    .hero {
      padding: 60px 18px;
    }
  
    .hero .title {
      font-size: 26px;
    }
  
    .hero .subtitle {
      font-size: 15px;
    }
  
    main {
      padding: 20px;
    }
  
    .card {
      padding: 18px;
    }
  
    .person {
      gap: 10px;
    }
  
    .avatar {
      width: 48px;
      height: 48px;
    }
  
    .milestone {
      font-size: 14px;
    }
  }
  