/* Targeting the entire scrollbar */
::-webkit-scrollbar {
  width: 9px; /* Width of the scrollbar */
}

/* Track of the scrollbar */
::-webkit-scrollbar-track {
  background: #ffffff; /* Background color of the track */ /* Rounded corners for the track */
  width: 1.3rem;
}

/* Thumb of the scrollbar */
::-webkit-scrollbar-thumb {
  background: #2D4B99; /* Color of the scrollbar thumb */
}

/* Hover effect on the thumb */
::-webkit-scrollbar-thumb:hover {
  background: #002b56; /* Darker color for hover effect */
}

/* Active state when clicking the scrollbar */
::-webkit-scrollbar-thumb:active {
  background: #002b56; /* Even darker color for active state */
}




.slider-container{
  margin-top: 5vh;
  width: 100%;
  height: 80vh;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-header p{
  color: #2D4B99;
  font-size: 50px;
  text-align: center;
  font-weight: 600;
}


.slider-images{
  display: flex;
  align-items: center;
  gap: 21px;
}

.slider-images img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-img{
  width: 100px;
  cursor: pointer;
  position: relative;
  transition: 0.7s ease;
}

.slider-images .slider-img:first-child, .slider-images .slider-img:last-child{
  height: 280px;
}

.slider-images .slider-img:nth-child(2), .slider-images .slider-img:nth-child(6){
  height: 340px;
}

.slider-images .slider-img:nth-child(3), .slider-images .slider-img:nth-child(4), .slider-images .slider-img:nth-child(5){
  height: 380px;
}

/* 
h1{
  font-family: "Jost", sans-serif;
  font-size: 40px;
  font-weight: 700;
  text-align: left;
  text-transform: uppercase;
  color: #fff;
  position: absolute;
  top: 50%;
  left: -20%;
  transform: rotate(270deg);
  transition: 0.7s ease;
}
*/

.details{
  position: absolute;
  bottom: 43px;
  left: 43px;
}

.details h2{
  font-family: "Jost", sans-serif;
  font-size: 26px;
  font-weight: 700;
  text-align: left;
  line-height: 44px;
  text-align: left;
  color: #fff;
  text-transform: uppercase;
  transition: 0.7s ease;
  display: none;
}

.details p{
  font-family: "Jost", sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-align: left;
  line-height: 33px;
  text-align: left;
  color: #fff;
  text-transform: uppercase;
  transition: 0.7s ease;
  display: none;
}

.slider-img.active{
  width: 430px !important;
  height: 430px !important;
}

.slider-img.active h1{
   display: none;
}

.slider-img.active .details p, .slider-img.active .details h2{
  display: block;
}



/*Trainers*/
#experts {
  margin-top: 30px;
  padding: 8px 8px 0 8px;
  text-align: center;
  padding-left: 80px;
  padding-right: 80px;
}

#experts .expert-box {
  padding: 0px 30px 0px 30px;
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-auto-rows: 200px;
  grid-auto-flow: dense;
  margin-bottom: 50px;
}

.expert-profile{
  width: 100%;
}

.expert-profile img {
  width: 100px;
  height: 100px;
  border: 2px solid black;
}

.team-header p{
  color: #2D4B99;
  font-size: 50px;
  text-align: center;
  font-weight: 600;
  margin-bottom: 50px;
}


.team-links i{
  display: inline-block;
  color: black;
  font-size: 20px;
  margin: 0 8px;
  transition: all .38s ease;

}

.team-links i:hover{
  transform: scale(1.2);
}

.location {
  margin-top: 50px;
  margin-bottom: 50px;
}

.location-header p{
  color: #2D4B99;
  font-size: 50px;
  text-align: center;
  font-weight: 600;
  margin-bottom: 50px;
}

.locaion-content {
  display: flex;
  align-items: center;
  justify-content: center;

}

.about-section {
  padding: 50px 0;
}


.about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-bottom: 50px;
  justify-content: center;
}

.overlay-logo{
  background-color: #6CA8EB;
  border-radius: 50%;
  color: black;
  font-size: 20px;
  width: 50px;
  height: 50px;
  justify-content: center;
  align-items: center;
  display: flex;
  margin-top: 5%;
  margin-bottom: 10%;
}

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: white;
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.card-content {
  padding: 20px;
  color: black;
  align-items: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.card-content h2 {
  font-size: 50px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #2D4B99;
}

.card-content p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  color: black;
}


.card-content ul {
  list-style: none;
  padding: 0;
  color: white;
  
}

.card-content ul li {
  margin-bottom: 10px;
  
}

.card-content ul li strong {
  font-weight: 600;
}

/* Footer Styles */
footer {
  background-color: #d6e2ff;
  padding: 50px 0;
  color: #333;
  box-shadow: 0px -2px 5px rgba(0, 0, 0, 0.1);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-left {
  flex: 1;
  padding-right: 40px;
}

.footer-right {
  flex: 2;
  display: flex;
  justify-content: space-between;
}

.footer-brand {
  font-size: 2.5em;
  font-weight: 600;
  color: #2d4b99;
  margin-bottom: 10px;
}

.footer-description {
  font-size: 1.1em;
  color: #777;
  margin-bottom: 20px;
}

.footer-social-icons a {
  margin: 0 12px;
  color: #2d4b99;
  font-size: 1.7em;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-social-icons a:hover {
  color: #00000034;
  transform: translateY(-3px); /* Slight hover lift effect */
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-column a {
  font-size: 1.1em;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease, padding-left 0.3s ease;
  position: relative;
}

.footer-column a::before {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background-color: #2d4b99;
  bottom: 0;
  left: 0;
  transition: width 0.3s ease;
}

.footer-column a:hover::before {
  width: 100%;
}

.footer-column a:hover {
  color: #2d4b99;
  padding-left: 10px;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 0.9em;
  color: #000000;
  border-top: 1px solid #eee;
  padding-top: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-container {
      flex-direction: column;
      align-items: center;
  }

  .footer-left, .footer-right {
      text-align: center;
      margin-bottom: 20px;
  }

  .footer-right {
      display: block;
  }

  .footer-column {
      align-items: center;
  }
}


/* Media Queries */
@media screen and (max-width: 920px) {
  .res-menu {
    display: none;
  }

  .image-training-box {
    position: absolute;
  }

  .right-side-training {
    width: 100%;
    background-image: url(/images/projects/IMG-20240718-WA0011.jpg);
    background-color: rgba(0, 0, 0, 0);
    background-blend-mode: darken;
  }

  .right-side-training p {
    color: #fff;
  }

  .scroll {
    display: none;
  }

  .nav_right_side {
    display: none;
  }

  .nav-bar-items {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgb(255, 255, 255);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9;
  }

  .nav-links ul {
    flex-direction: column;
    padding: 0;
  }

  .nav-links li {
    margin: 20px 0;
  }

  .icon {
    display: block;
    margin-right: 20px;
    font-size: 1.8em;
    cursor: pointer;
  }

  .close-btn {
    display: block;
  }
}

@media (max-width: 520px) {
  .hero-container-right {
    display: none;
  }
   
}



