* {
    margin: 0;
    padding: 0;
    font-family: "Alexandria", sans-serif;
        font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
  
}

.theNavbar{
   
    padding-top: 5px;
    padding-bottom: 5px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
   
    color: cyan;
    
    z-index: 1; 
    background-color: rgba(0, 0, 0, 0.5); 
    backdrop-filter: blur(1px); 
    
}


#navbarLinks a {
    color: white; 
    text-decoration: none;
    padding: 10px 20px; 
    display: inline-block; 
}

#navbarLinks a:hover {

    color: cyan;
    transition: background-color 0.3s ease;
    border-bottom: 1px solid cyan; 
    
  
  

}

.hero a:hover {
    text-decoration: none; 
    transition: color 0.3s ease;
    cursor: pointer;
}



.hero {
    position: relative;
    width: 100%;
   
    overflow: hidden;
    z-index: 0;
  }

  .hero img {
    width: 100%;
    height: 100vh;
    object-fit:cover; 
  }

  .hero-text {
    position: absolute;
    top: 60%;
    right: -20%;
    left: auto;
    max-width: 50%;
    text-align: right;
    color: cyan;
    animation: fadeIn 1s ease-in-out forwards;
    animation-delay: 0.5s;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(1px); 
    z-index: 5;
    font-size: 1rem;
    text-shadow: 5px2 5px 5px rgba(0, 0, 0, 1);
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translate(-50%, -40%); }
    to { opacity: 1; transform: translate(-50%, -50%); }
}

  .hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}



.cagliostro-regular {
    font-family: "Cagliostro", sans-serif;
    font-weight: 400;
    font-style: normal;
  }


  .values-section {
    text-align: right;
    padding: 3rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .values-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2a4365;
  }
  
  .values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
  
  .value-card {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2
    );
    transition: transform 0.3s ease;
  }
  
  .value-card:hover {
    transform: translateY(-5px);
  }
  
  .value-icon {
    width: 60px;
    height: 60px;
    margin-left: auto;
    margin-bottom: 1rem;
    background: #f0f9ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .value-icon svg {
    width: 30px;
    height: 30px;
    color: #2b6cb0;
  }
  
  .value-card h3 {
    color: #2b6cb0;
    margin-bottom: 0.8rem;
  }
  
  .value-card p {
    color: #4a5568;
    line-height: 1.6;
  }


  .goals-section {
    background-color: #f8fafc;
    padding: 4rem 1rem;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .section-title {
    font-size: 2rem;
    color: #1e40af;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
  }
  

.footer {
    background-color: #2d3748;
    color: white;
    padding: 2rem 0;
    text-align: center;
  }
  
  .footer p {
    margin: 0;
    font-size: 0.9rem;
  }
  
  .footer a {
    color: #63b3ed;
    text-decoration: none;
  }
  
  .footer a:hover {
    text-decoration: underline;
  }

  .member-card {
    transition: transform 0.3s;
    margin-bottom: 30px;
}
.member-card:hover {
    transform: translateY(-5px);
}
.member-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-top: -75px;
    background-color: #f8f9fa;
}
.card-body {
    padding-top: 80px;
}

  

  @media screen and (max-width: 768px) {

    .hero img {
      width: 100%;
      height: 70vh;
      object-fit: cover; 
    }
  
    .hero-text h1 {
      font-size: 1rem;
    }
  
    .hero-text p {
      font-size: 12px;
    }

    .hero-text a{
      font-size: 0.8rem;
    }
  
    
  }


  @media screen and (max-width: 480px) {
    .hero img {
      width: 100%;
      height: 60vh;
      object-fit: cover; 
    }
  
    .hero-text h1 {
      font-size: 0.7rem;
    }
  
    .hero-text p {
      font-size: 10px;
    }

    .hero-text a{
      font-size: 0.6rem;
    }
  

    .member-card {
      margin-bottom: 80px;
     
      max-height: auto;
    }

    .member-img {
      width: 100px;
      height: 100px;
      margin-top: -50px;
     
  }
  .card-body {
      padding-top: 60px;
  }
  }
  