:root {
    --main-color: #991C22;
    --secondary-color: #FFD812;
  }
  .logo{
    width: 65px;
    height: auto;
    margin-right: 20px;
}
#homeHeroSection {
    display: flex;
    justify-content: center;
    align-items:start; 
    height: 50vh;
    background-image: url(/assets/About-us-heroImg.webp);
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: left;
}
.heroContentWrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start; 
}
.heroTitle{
    font-size: 10rem;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 0px;
    margin-top: 12%;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
  @media screen and (max-width: 768px) {
    #header {
      align-items:center;
      height: fit-content;
      padding: 15px 20px;
    }
    .topnav {
      width: 100%;
      flex-direction: column;
      align-items: flex-start;
    }
    .topnav .icon {
      display: block;
      align-self: flex-end;
      margin-bottom: 10px;
      margin: auto 0;
    }
    .topnav .nav-links {
      display: none;
      flex-direction: column;
      width: 100%;
      background-color: #991C22;
      padding: 10px 0;
    }
    .topnav .nav-links.show {
      display: flex;
    }
    .topnav .nav-links a {
      padding: 12px 20px;
      width: 100%;
      text-align: left;
      border-top: 1px solid rgba(255, 255, 255, 0.2);
    }
    nav a:hover span{
      opacity: 0 !important;
    }
  }
  @media screen and (max-width: 992px) {
    #homeHeroSection{
      height: 40vh;
    }
    .heroTitle {
        font-size: 7rem;
        margin-top: 10%;
        text-align: center;
    }
    .heroContentWrapper {
        width: 100%;
        align-items: center;
        text-align: center;
    }
    .heroTitle img {
        max-width: 400px;
    }
    .cards-container{
      gap: 2.5rem !important;
    }
  }
.features-section {
    margin: 0 auto;
    padding: 2rem 1rem;
    text-align: center;
  }
  .label {
    font-size: 19px;
    font-weight: 600;
    color: var(--secondary-color);
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
  }
  .heading {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--main-color);
    margin-bottom: 3rem;
  }
  .cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
  .card {
    background: white;
    border-radius: 1.5rem;
    box-shadow: 3px 4px 10px rgba(11, 11, 11, 0.266);
    padding: 1.5rem;
    max-width: 320px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 11px;
    color: #4b5563;
  }
  .quote-icon {
    position: absolute;
    top: -30px;
    background: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    color: var(--main-color);
  }
  .quote-icon i {
    color: var();
    font-size: 22px;
  }
  .card-text {
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }
  .stars {
    color: var(--main-color);
    margin-bottom: 0.5rem;
  }
  .role {
    font-size: 9px;
    color: #9ca3af;
  }
  .fa-star.fa-half-star{
    font-size: 12px;
  }
.aboutUsImage{
  margin-top: 10%;
}