/*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*/

 /*Start Document Table*/
.sr-table-container {
      max-width: 900px;
      margin: auto;
      overflow-x: auto;
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(0,0,0,0.05);
    }

    .sr-table-table {
      width: 100%;
      border-collapse: collapse;
      border: 1px solid #e0e0e0;
    }

    .sr-table-table thead {
      background-color: #b24536;
    }

    .sr-table-table th, .sr-table-table td {
      padding: 16px;
      text-align: left;
      border-bottom: 1px solid #e0e0e0;
    }

    .sr-table-table th {
      text-align: center;
      font-size: 16px;
      color: #ffffff;
    }

    .sr-table-table td {
      text-align: center;
      font-size: 15px;
      color: #333;
    }

    .sr-table-icon {
      text-align: center;
    }

    .sr-table-icon img {
      width: 20px;
      height: 25px;
    }

    @media screen and (max-width: 600px) {
      .sr-table-table th, .sr-table-table td {
        padding: 12px 8px;
        font-size: 14px;
      }

      .sr-table-icon img {
        width: 18px;
        height: 22px;
      }
    }
  /*End Document Table*/


 /*Start inner Table*/
.pr-table-container {
      max-width: 900px;
      margin: auto;
      overflow-x: auto;
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(0,0,0,0.05);
    }

    .pr-table-table {
      width: 100%;
      border-collapse: collapse;
      border: 1px solid #e0e0e0;
    }

    .pr-table-table thead {
      background-color: #017850;
    }

    .pr-table-table th, .pr-table-table td {
      padding: 10px;
      text-align: left;
      border: 1px solid #e0e0e0;
    }

    .pr-table-table th {
      text-align: center;
      font-size: 16px;
      color: #ffffff;
    }

    .pr-table-table td {
      /* text-align: center; */
      font-size: 15px;
      color: #333;
    }

    .pr-table-icon {
      text-align: center;
    }

    .pr-table-icon img {
      width: 20px;
      height: 25px;
    }

    @media screen and (max-width: 600px) {
      .pr-table-table th, .pr-table-table td {
        padding: 12px 8px;
        font-size: 14px;
      }

      .pr-table-icon img {
        width: 18px;
        height: 22px;
      }
    }
  /*End inner Table*/