/*Start Slider*/
/* Basic Slider Styling */
.srs-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.srs-slider .slide {
  display: none;
}

.srs-slider .slider-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  /* Ensures full image without distortion */
}

/* Arrows Styling */
.srs-slider .slider-arrows button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 18px;
  z-index: 1000;
}

.srs-slider .slider-arrows .prev {
  left: 10px;
}

.srs-slider .slider-arrows .next {
  right: 10px;
}

/* Responsive Design */
@media screen and (max-width: 992px) {
  .why-us-counter .title {
    text-align: center;
    text-transform: uppercase;
    font-size: 20px;
    margin-top: 10px;
    margin-bottom: 25px;
    color: #fff;
  }
}

@media screen and (max-width: 768px) {
  .srs-slider .slider-img {
    object-position: center;
    /* Adjust for mobile and tablet views */
  }

  .why-us-counter .title {
    text-align: center;
    text-transform: uppercase;
    font-size: 20px;
    margin-top: 10px;
    margin-bottom: 25px;
    color: #fff;
  }
}

@media screen and (max-width: 576px) {
  .srs-slider .slider-arrows button {
    font-size: 16px;
    padding: 8px;
  }

  .why-us-counter .title {
    text-align: center;
    text-transform: uppercase;
    font-size: 20px;
    margin-top: 10px;
    margin-bottom: 25px;
    color: #fff;
  }
}

/* Add text alignment classes if needed for the images */
.tal {
  text-align: left;
}

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.archer-image {
  flex: 1 1 35%;
  padding: 20px;
  text-align: center;
}

.archer-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}


/*Start vision & mission*/
 .gmc-body {
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   gap: 30px;
   padding: 40px 20px;
   background: #fff;
 }

 .gmc-box {
   position: relative;
   width: 100%;
   max-width: 500px;
   border: 2px solid #000;
   padding: 60px 30px 30px;
   background: #fff;
   transition: 0.4s ease;
   opacity: 0;
   transform: translateY(30px);
 }

 .gmc-visible {
   opacity: 1;
   transform: translateY(0);
   transition: all 0.6s ease-in-out;
 }

 .gmc-box:hover {
   border: 2px solid #027950;
   box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
 }

 .gmc-icon {
   position: absolute;
   top: -43px;
   left: 24px;
   width: 90px;
   height: 90px;
   background: #fff;
   border-radius: 50%;
   overflow: hidden;
   transition: transform 0.3s ease;
 }

 .gmc-box:hover .gmc-icon {
   transform: scale(1.1) rotate(10deg);
 }

 .gmc-icon img {
   width: 100%;
   height: 100%;
   object-fit: contain;
 }

 .gmc-title {
   font-size: 22px;
   color: #b24535;
   font-weight: bold;
   margin-bottom: 15px;
 }

 .gmc-text {
   font-size: 16px;
   color: #555;
   line-height: 1.6;
   text-align: justify;
 }

 @media (max-width: 768px) {
   .gmc-body {
     flex-direction: column;
     align-items: center;
   }

   .gmc-box {
     width: 90%;
   }

   .gmc-icon {
     left: 20px;
     top: -30px;
   }
 }

 /*End vision & mission*/