.page{
    background-color: #f1f1f1;
}
.page h1{
    font-size: 24px !important;
}

.who-we-are img{
    border-radius: 50%;    
}
.who-we-are .content h4{
    font-size: 28px;
}
.divider{
    margin: 20px 0;
    width: 25%;
    height: 2px;
    background-color: #3A7D98;
}
.who-we-are p{
    font-size: 14px;
    color:  #6c757d;
    padding-right: 10px;
    line-height: 1.5;
}
.who-we-are ul{
    list-style: none;
    padding: 0;
    font-size: 14px;
    color: #444;
}
.who-we-are li{
    position: relative;
    padding-left: 25px;
    padding-bottom: 5px;
}
.who-we-are li::after{
    content: '\f00c';
    font-family: "Font Awesome 6 Free";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 16px;
    color: #3A7D98;
    font-weight: 900;
}
.btn-main{
    margin-top: 10px;
    padding: 7px 20px;
    background: #3A7D98;
    color: #fff;
    border-radius: 20px;
    transition: background-color 0.5s ease;
}
.btn-main:hover{
    background-color: #fff;
    border: 2px solid #3A7D98;
    color: #000;
}



/* why-choose-us */
.why-choose-us{
    width: 100%;
    height: 500px;
    background-image: url(../01/image-10.jpg);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}



.why-choose-us{
    position: relative;
    height: 575px;
    z-index: 1;
    padding: 40px 0;
    color: #fff;
    overflow: hidden; /* To avoid content spilling out during scroll */
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../01/image-10.jpg');
    background-attachment: fixed; /* This enables parallax effect */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    filter: brightness(55%); /* Reduces brightness of the background */
    z-index: -1;
}
.why-choose-us .header-box,.why-choose-us .content{
    text-align: center;
}
.why-choose-us .header-box h4{
    font-size: 32px;
    font-weight: 600;
    padding-bottom: 20px;
    position: relative;
    display: inline-block;
}
.why-choose-us .header-box h4::after{
    content: '';
    position: absolute;
    width: 30%;
    height: 2px;
    background-color: #3A7D98;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}
.why-choose-us .content i{
font-size: 64px;    
border: 1px solid #fff;
padding: 30px;
border-radius: 50%;
}
.icon-counter .header-icon{
    font-size: 28px;
    position: relative;
}

.icon-counter .header-icon::after{
    content: '';
    position: absolute;
    width: 10%;
    height: 2px;
    background-color: #3A7D98;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}
.icon-counter .content-icon{
    margin-top: 40px;
    font-size: 16px;
}





/* service */
.service{
    background-color: #f7f7f7;
}
.head-service{
    text-align: center;
}
.head-service h4{
  font-size: 32px;
  font-weight: 900;
}

.service-card {
    background: #fff;
    border: 1px solid #fff;
    padding: 20px;
    text-align: center;
    transition: box-shadow 0.3s ease;
  }

  .service-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  .service-icon {
    font-size: 40px;
    color: #3A7D98;
    margin-bottom: 15px;
  }
.service-icon i{
    padding: 10px 20px;
    border: #f1f1f1 1px solid;
    border-radius: 50%;
}


  .service-title {
    margin: 15px 0 10px;
  }

  .service-divider {
    display: inline-block;
    width: 40px;
    height: 2px;
    background-color: #3A7D98;
    margin-bottom: 15px;
  }
  .service-card p{
    color: #6c757d;
    font-size: 14px;
  }

  /* mission */
  .accordion-button {
    background-color: transparent;
    color: #000;
    font-weight: bold;
    border: none;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
  }
  .accordion-button:focus, .accordion-button:active{
    outline: none !important;
    box-shadow: none !important;
  }
  .accordion-button::after {
    font-weight: 900;
    font-size: 1.2rem;
    color: #3A7D98; 
  }

  .accordion-item {
    border: none;
    border-bottom: 1px solid #ddd;
  }

  .accordion-button:not(.collapsed) {
    background-color: #3A7D98;
    color: #fff;
  }

  .accordion-button:not(.collapsed)::after {
    color: #fff;
  }

  .accordion-body {
    padding: 15px 20px;
    background-color: #f9f9f9;
    border-left: 5px solid #3A7D98;
  }

  .mission .headers{
    font-size: 32px;
    font-weight: 100;
    position: relative;
    display: inline-block;
  }
  .mission .headers::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40% ;
    height: 2px;
    background-color: #3A7D98;
  }
  .mission p{
    color: #6c757d;
    font-size: 14px;
  }


  @media (max-width: 759px) {
    .why-choose-us{
      height: 1200px;
    }
  }