/* Global Styles */
:root {
  --primary-color: #147235;
  --secondary-color: #f0fc93;
  --dark-color: #2c3e50;
  --light-color: #f9f9f9;
  --transition: all 0.3s ease;
}

body {
  font-family: "Poppins", sans-serif;
  color: #333;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

/* Loader spinner */
.spinner {
  width: 60px;
  height: 60px;
  border: 6px solid #1b5602;
  border-top: 6px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Loader hidden effect */
.loader-hidden {
  opacity: 0;
  visibility: hidden;
}

/* Spinner animation */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.btn-stand {
  background: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 10px 25px;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  color: white;
  z-index: 1;
  transition: var(--transition), transform 0.3s ease-in-out;
}

/* Before Hover Effect */
.btn-stand::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #1e8701; /* Change to the red color you want */
  transition: left 0.4s ease-in-out;
  z-index: -1;
}

/* Hover Effect */
.btn-stand:hover::before {
  left: 0;
}

.btn-stand:hover {
  color: white;
  transform: translateY(-2px);
  border-color: #f0fc93;
}

/* Top Bar */
.top-bar {
  font-size: 14px;
  background-color: #147235;
}

.top-bar a {
  text-decoration: none;
  transition: var(--transition);
}

.top-bar a:hover {
  color:#f6d604 !important;
}

.top-bar .social-icons a {
  margin-left: 15px;
}

/* Navigation */
.navbar {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
  max-height: 60px;
}

.nav-link {
  color: var(--dark-color) !important;
  font-weight: 500;
  padding: 20px 15px !important;
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--primary-color) !important;
}

.dropdown-menu {
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.dropdown-item:hover {
  background-color: var(--primary-color);
  color: white;
}

/* Banner Section */
/* .banner-section {
    position: relative;
   height: 700px;
}

.banner-item {
   height: 700px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.banner-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

.banner-content {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    padding: 0 15px;
    max-width: 800px;
    margin: 0 auto;
    padding-top: 200px;
}

.banner-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.banner-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.swiper-button-next,
.swiper-button-prev {
    color: white !important;
}

.swiper-pagination-bullet {
    background: white !important;
} */

/* Banner Section */
.banner-section {
  position: relative;
  height: 700px;
}

/* Banner Item */
.banner-item {
  height: 700px;
  background-size: cover;
  background-position: center;
  position: relative;
  animation: zoomInOut 10s infinite alternate ease-in-out;
}

@keyframes zoomInOut {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

/* Overlay Effect */
.banner-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

/* Banner Content */
.banner-content {
  position: relative;
  z-index: 1;
  color: white;
  text-align: center;
  padding: 0 15px;
  max-width: 850px;
  margin: 0 auto;
  padding-top: 200px;
  animation: fadeInUp 1.5s ease-out forwards;
}

/* Fade In Up Animation */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Heading Animation (Typing Effect) */
.banner-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
  overflow: hidden;
  white-space: nowrap;
  display: inline-block;
  border-right: 3px solid white;
  animation: typing 2s steps(20, end) forwards, blink 0.5s infinite;
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}

/* Banner Paragraph */
.banner-content p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0;
  animation: fadeInUp 1.5s ease-out 0.5s forwards;
}

/* Button Styles */
.banner-content a {
  display: inline-block;
  padding: 12px 24px;
  font-size: 18px;
  background: #156f01;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  animation: fadeInUp 1.5s ease-out 0.8s forwards;
}

/* Button Hover Effect */
.banner-content a:hover {
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(255, 218, 34, 0.7);
}

/* Swiper Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
  color: white !important;
  height: 25px;
  width: 25px;
  transition: transform 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  transform: scale(1.1);
}

/* Swiper Pagination */
.swiper-pagination-bullet {
  background: white !important;
}

/* Swiper Slide Transition */
.swiper-slide {
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.swiper-slide-active {
  opacity: 1;
  transform: scale(1);
}

/* .swiper-slide-next,
.swiper-slide-prev {
    opacity: 0.6;
    transform: scale(0.95);
} */

.about-section {
  background: #f9f9f9;
}
.about-images {
  position: relative;
}
.about-images img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
}
.experience-card {
  position: absolute;
  top: 0;
  left: 0%;

  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 15px 25px;
  text-align: center;
  border-radius: 10px;
  font-size: 1.2rem;
}
.experience-card h3 {
  font-size: 2rem;
  margin-bottom: 5px;
}
.about-features {
  list-style: none;
  padding: 0;
}
.about-features li {
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.about-features i {
  color: #28a745;
  margin-right: 10px;
  font-size: 1.3rem;
}

.about-features {
  list-style: none;
  padding: 0;
}

.about-features li {
  margin-bottom: 15px;
}

.about-features i {
  color: var(--primary-color);
  margin-right: 10px;
}

/* Counter Section */
.counter-box {
  padding: 30px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.counter-box:hover {
  transform: translateY(-10px);
}

.counter-box i {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.counter-box h3 {
  font-size: 36px;
  margin-bottom: 10px;
}

/* Services Section */
/* .service-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 30px;
}

.service-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: var(--transition);
}

.service-content {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  padding: 30px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  transition: var(--transition);
}

.service-card:hover .service-content {
  bottom: 0;
}

.service-card:hover img {
  transform: scale(1.1);
} */

/* Dignitaries Section */
.dignitaries-swiper .swiper-slide {
  text-align: center;
}

.dignitaries-swiper img {
  width: 300px;
  height: 300px;
  /* border-radius: 50%; */
  margin-bottom: 15px;
  object-fit: cover;
  transition: var(--transition);
}

.dignitaries-swiper img:hover {
  transform: scale(1.1);
}
.dignitaries-section h4 {
  color: white;
  text-decoration: underline;
}

/* Varieties Section */
.varieties-section .card {
  border: none;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.varieties-section .card:hover {
  transform: translateY(-10px);
}

.varieties-section .card img {
  height: 250px;
  object-fit: cover;
}

/* Gallery Section */
.gallery-section img {
  border-radius: 10px;
  transition: var(--transition);
}

.gallery-section img:hover {
  transform: scale(1.05);
}

/* Testimonials Section */
.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin: 20px;
}

.testimonial-content p {
  font-style: italic;
  margin-bottom: 20px;
}

/* Clients Section */
.clients-section img {
  max-width: 150px;
  opacity: 0.7;
  display: flex;
  height: 70px;
  align-items: center;
  margin: 0 auto;
  object-fit: contain;
  transition: var(--transition);
}

.clients-section img:hover {
  opacity: 1;
}

/* Footer Section */
.footer-section {
  background-color: #00311a;
  color: white;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links a {
  color: white;
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 10px;
}

.contact-info {
  list-style: none;
  padding: 0;
}

.contact-info li {
  margin-bottom: 15px;
}

.contact-info i {
  color: #e50690;
  margin-right: 10px;
}

.bottom-footer a {
  color: #e50690;
  text-decoration: none;
}

.social-icons a {
  color: white;
  font-size: 20px;
  margin-right: 15px;
  transition: var(--transition);
}

.social-icons a:hover {
  color: var(--primary-color);
  transform: translateY(-3px);
}

.map-container {
  border-radius: 10px;
  overflow: hidden;
}

.bottom-footer {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 20px 0;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .banner-content h1 {
    font-size: 40px;
  }
}

@media (max-width: 992px) {
  .navbar-nav {
    background: white;
    padding: 20px;
  }

  .about-images {
    height: 400px;
    margin-bottom: 30px;
  }

  .counter-box {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .banner-content h1 {
    font-size: 20px;
  }

  .banner-content p {
    font-size: 16px;
  }

  .about-images {
    height: 300px;
  }

  /* .service-content {
    position: relative;
    bottom: 0;
    background: var(--dark-color);
  } */

  .bottom-footer .row > div {
    text-align: center !important;
    margin-bottom: 10px;
  }
}

@media (max-width: 576px) {
  .top-bar .row > div {
    text-align: center !important;
    margin-bottom: 10px;
  }

  .banner-section {
    height: 60vh;
  }

  .banner-item {
    height: 55vh;
  }

  .banner-content {
    padding-top: 80px;
  }

  
}

/* Animation Classes */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.fade-up.active {
  opacity: 1;
  transform: translateY(0);
}

/* Fancy Box Customization */
.fancybox__backdrop {
  background: rgba(0, 0, 0, 0.9);
}

/* Swiper Customization */
.swiper-pagination-bullet-active {
  background: var(--primary-color) !important;
}

.testimonials-section {
  background-color: #f9f9f9;
}

.testimonial-card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: 0.3s ease-in-out;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.15);
}

.testimonial-image img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 4px solid #27ae60;
}

.testimonial-content p {
  font-size: 16px;
  color: #555;
  font-style: italic;
  position: relative;
  padding: 5px 15px;
}

.stars {
  font-size: 18px;
  color: #ffd700;
  margin: 10px 0;
}

.testimonial-content h4 {
  margin-top: 10px;
  font-size: 20px;
  color: #27ae60;
}

.designation {
  font-size: 14px;
  color: #888;
}

/* Swiper */
.swiper-pagination {
  margin-top: 20px;
}

.swiper-pagination-bullet {
  background: #27ae60 !important;
}

.footer-logo img {
  height: 50px;
}

.section-padding {
  padding: 70px 0;
}




/* General Section Styling */
.services-section {
  background: #f9f9f9;
  padding: 60px 0;
}

/* Service Card */
.service-card {
  background: #fff;
  border-radius: 10px;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.15);
}

/* Service Image */
.service-card img {
  width: 100%;
 height: 300px;
 object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease-in-out;
}

.service-card:hover img {
  transform: scale(1.05);
}

/* Service Content */
.service-content h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.service-content p {
  font-size: 16px;
  color: #666;
  margin-bottom: 10px;
}

.service-content ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.service-content ul li {
  font-size: 14px;
  color: #444;
  padding-left: 20px;
  position: relative;
  margin-bottom: 5px;
}

.service-content ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: bold;
}



/* Responsive Adjustments */
@media (max-width: 768px) {
  .service-card {
    text-align: center;
    padding: 20px;
  }

  .service-content h3 {
    font-size: 20px;
  }

  .service-content p {
    font-size: 15px;
  }
}




/* .new-varieties-section {
    
  
} */
.new-varieties-slider {
    position: relative;
}
.variety-card {
    text-align: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.512);
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
.variety-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}
.variety-title {
    margin-top: 10px;
    font-weight: bold;
    font-size: 18px;
    color: #333;
}


.gallery-section .img-fluid {
  height: 200px;
  width: 100%;
  object-fit: cover;
}


.ext-section img{
  height: 375px;
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  transition: box-shadow 0.3s ease;
}



.ext-section img:hover {
  box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.6);
}


@keyframes zoomInOut {
  0% {
      transform: scale(1);
  }
  50% {
      transform: scale(1.1);
  }
  100% {
      transform: scale(1);
  }
}

.zooming-img {
  animation: zoomInOut 5s infinite ease-in-out;
  display: flex;
  margin: 0 auto;
  width: 90%;
  object-fit: cover;
  height: 350px;
 
  
}





/* Overlay Background */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    visibility: hidden;
    overflow-x: hidden;
    opacity: 0;
    transition: opacity 0.3s ease-in-out, visibility 0.3s;
}

/* Popup Container */
.popup-content {
    position: relative;
    max-width: 700px;
    width: 90%;
}

/* Image inside Popup */
.popup-content img {
    width: 100%;
    display: block;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

/* Close Button */
.popup-close {
    position: absolute;
    top: 0px;
    right: 5px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.popup-close:hover {
    background: red;
}

/* Show Popup */
.show-popup {
    visibility: visible;
    opacity: 1;
}






.download-section h2 {
    font-size: 28px;
    color: #ffffff;
    margin-bottom: 10px;
}

.download-section p {
    font-size: 16px;
    color: #ffffff;
    text-align: justify;
    margin-bottom: 20px;
}




/* Mobile Header */
.mobile-header {
  background: #fff;
  padding: 10px 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 999;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

/* Offcanvas Menu Animation */
.offcanvas {
  transition: transform 0.4s ease-in-out;
}


@media (max-width: 991px) {
  [data-aos="fade-left"], 
  [data-aos="fade-right"] {
      opacity: 1 !important;
      transform: none !important;
      transition: none !important;
  }
}





  .breadcum {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    background-size: cover;
    background-position: center;
  }

  .breadcum::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* Black overlay */
  }

  .breadcum .content {
    position: relative;
    z-index: 1;
  }

  .breadcum h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
  }

  .breadcum p {
    font-size: 1.1rem;
  }

  .breadcum p a {
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
  }

  .breadcum p a:hover {
    opacity: 1;
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
    .breadcum {
      height: 200px;
    }

    .breadcum h1 {
      font-size: 2rem;
    }

    .breadcum p {
      font-size: 1rem;
    }
  }






  .team-section {
      text-align: center;
      padding: 60px 0;
  }
 
  .team-section p {
      color: #666;
      font-size: 1.1rem;
      margin-bottom: 40px;
  }
  .team-card {
      background: #fff;
      border-radius: 15px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      padding: 20px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .team-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  }
  .team-card img {
      width: 100%;
     height: 250px;
   object-position: top;
     object-fit: cover;
      border-radius: 10px;
  }

 
  .team-card h4 {
      margin-top: 15px;
      font-size: 1.3rem;
      font-weight: bold;
  }
  .team-card p {
      font-size: 1rem;
      color: #777;
      margin-bottom: 10px;
  }










  /* Common Card Styling */
  .vision-card,
  .mission-card,
  .goal-card {
    position: relative;
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    color: #df0a80;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: all 0.4s ease-in-out;
    perspective: 1000px;
    margin-bottom: 15px;
  }


  /* .vision-card {
    background-image: url('../images/ssv.jpg');
  }

  .mission-card {
    background-image: url('../images/ssm.jpg');
  }

  .goal-card {
    background-image: url('../images/ssg.jpg');
  } */


  .vision-card .overlay,
  .mission-card .overlay,
  .goal-card .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
  }

  /* Icon & Heading */
  .vision-card .content,
  .mission-card .content,
  .goal-card .content {
    position: relative;
    z-index: 2;
    transition: all 0.4s ease-in-out;
  }

  .vision-card i,
  .mission-card i,
  .goal-card i {
    font-size: 40px;
    margin-bottom: 10px;
  }

  .vision-card h3,
  .mission-card h3,
  .goal-card h3 {
    font-size: 24px;
    font-weight: bold;
    color: orange;
  }

  /* Hover Content */
  .vision-card .hover-content,
  .mission-card .hover-content,
  .goal-card .hover-content {
    position: absolute;
    inset: 0;
    background: #0a4f01;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    padding: 20px;
    color: #df0a80;
    transform: scale(0);
    transition: transform 0.6s ease-in-out;
    overflow-y: auto;
    max-height: 100%;
  }

  /* Hover Effect */
  .vision-card:hover .hover-content,
  .mission-card:hover .hover-content,
  .goal-card:hover .hover-content {
    transform: scale(1);
  }

  /* Hide Content on Hover */
  .vision-card:hover .content,
  .mission-card:hover .content,
  .goal-card:hover .content {
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease-in-out;
  }

  /* Scrollable Content */
  .vision-card .hover-content p,
  .mission-card .hover-content p,
  .goal-card .hover-content p {
    text-align: left;
    color: #fff;
    padding: 0 10px;
    font-size: 16px;
    line-height: 1.5;
    max-height: 80%;
    overflow-y: auto;
  }


  .vision-card .hover-content,
  .mission-card .hover-content,
  .goal-card .hover-content {
    overflow-y: auto !important;
    max-height: 100%;
    padding-right: 10px;
    scrollbar-width: thin !important;
    /* Firefox */
    scrollbar-color: rgba(255, 255, 255, 0.5) transparent !important;
  }

  /* ✅ WebKit Scrollbar */
  .vision-card .hover-content::-webkit-scrollbar,
  .mission-card .hover-content::-webkit-scrollbar,
  .goal-card .hover-content::-webkit-scrollbar {
    width: 2px !important;
    /* Ultra-thin scrollbar */
    background: transparent !important;
  }

  .vision-card .hover-content::-webkit-scrollbar-track,
  .mission-card .hover-content::-webkit-scrollbar-track,
  .goal-card .hover-content::-webkit-scrollbar-track {
    background: transparent !important;
    /* No background */
  }

  .vision-card .hover-content::-webkit-scrollbar-thumb,
  .mission-card .hover-content::-webkit-scrollbar-thumb,
  .goal-card .hover-content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.4) !important;
    /* Light white scrollbar */
    border-radius: 10px !important;
    transition: background 0.3s ease-in-out !important;
  }

  .vision-card .hover-content::-webkit-scrollbar-thumb:hover,
  .mission-card .hover-content::-webkit-scrollbar-thumb:hover,
  .goal-card .hover-content::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.7) !important;
    /* Slightly brighter on hover */
  }


  .vision-card .hover-content,
  .mission-card .hover-content,
  .goal-card .hover-content {
    scrollbar-gutter: stable both-edges !important;
    -webkit-overflow-scrolling: touch !important;
  }



  .serv-inn .carousel img {
    width: 100%;
    object-fit: cover;
    height: 425px;
  }



/* Show dropdown menu on hover */
.nav-item.dropdown:hover .dropdown-menu {
  display: block;
}








/* Pagination Styling */
.pagination-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.pagination {
  display: flex;
  list-style: none;
  padding: 0;
}

.pagination .page-item {
  margin: 0 5px;
}

.pagination .page-link {
  color: #ffffff;
  background-color: #28a745; /* Green theme */
  border: 1px solid #28a745;
  padding: 8px 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

/* Hover effect */
.pagination .page-link:hover {
  background-color: #218838; /* Darker green */
  border-color: #218838;
  color: white;
}

/* Active Page */
.pagination .page-item.active .page-link {
  background-color: #155724;
  border-color: #155724;
  color: white;
}

/* Disabled Page */
.pagination .page-item.disabled .page-link {
  background-color: #ccc;
  border-color: #ccc;
  color: #666;
  cursor: not-allowed;
}


.var-img img{
  height: 400px;
  border-radius: 10px;
  object-fit: cover;
  width: 100%;
}





.img-card {
  position: relative;
  width: 100%;
  height: 400px;
  padding: 20px 30px;
  margin-top: 30px;
  border-radius: 16px;
  /* Adjust height as needed */
  /* background-image: url("../images/sss-1.jpg"); */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 16px;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.content {
  position: relative;
  z-index: 2;
}

.spicon {
  width: 80px;
  min-width: 80px;
  max-width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  background-color: #0f6003;
  align-items: center;
  justify-content: center;
}

.spicon i {
  font-size: 40px;
}

/* Button Styling */
.related-services-card .btn {
  margin: 5px;
}

.related-list {
  list-style: none;
  padding: 0;
}

.related-services {
  border: 1px solid rgba(21, 11, 51, 0.1) !important;
  padding: 2rem;
  border-radius: 10px;
}

.related-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  padding: 10px 15px;
  margin-bottom: 10px;
  border-radius: 16px;
  border: 1px solid #ddd;
}

.related-list li:hover {
  background-color: #147235;
  color: white !important;
}

.related-list li.active {
  background-color: #147235 !important;
  color: white !important;
}

/* .related-list li:active {
  background-color: #147235 !important;
  color: white !important;
} */

.related-list li:hover a {
  color: white !important;
}

.related-list li:hover i {
  color: white !important;
}

.related-list li a {
  text-decoration: none;
  color: #333;
  font-size: 16px;
  flex-grow: 1;
}

.related-list li i {
  color: rgb(66, 65, 65);
  margin-left: auto;
  font-size: 18px;
}


.video-thumbnail {
  position: relative;
  display: inline-block;
}

.videos-section img {
  height: 250px;
  width: 300px;
  object-fit: cover;
 
  border: 5px solid #1472354a;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(238, 20, 20, 0.796);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  transition: 0.3s ease-in-out;
}

.video-thumbnail:hover .play-button {
  background: rgba(255, 0, 0, 0.986);
}




.photos-section {
  background: linear-gradient(to right, #f9f9f9, #e9ecef);
  padding: 70px 0;
}

.photo-card {
  text-align: center;
  border-radius: 12px;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.image-container {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease-in-out;
}

.image-container img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease-in-out;
}

.image-container .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  border-radius: 12px;
}

/* Hover Effects */
.image-container:hover img {
  transform: scale(1.1);
}

.image-container:hover .overlay {
  opacity: 1;
}

/* Title Styling */
.photo-card h5 {
  margin-top: 15px;
  font-size: 20px;
  font-weight: bold;
  color: #333;
  transition: color 0.3s ease-in-out;
}

.photo-card h5:hover {
  color: #103f03;
}

/* Responsive Design */
@media (max-width: 768px) {
  .photo-card h5 {
    font-size: 18px;
  }
}


a{
  text-decoration: none !important;
}




.videos-section {
  background: linear-gradient(to right, #f9f9f9, #e9ecef);
  padding: 70px 0;
}

.video-card {
  text-align: center;
}

.video-thumbnail {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease-in-out;
}

.video-thumbnail img {
  width: 100%;
  width: 300px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease-in-out;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(217, 3, 3, 0.8);
  color: #fff;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 20px;
  transition: background 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.video-thumbnail:hover .play-button {
  background: rgba(255, 0, 0, 0.988);
  transform: translate(-50%, -50%) scale(1.1);
}

.video-card h5 {
  margin-top: 10px;
  font-size: 18px;
  font-weight: bold;
  color: #333;
  transition: color 0.3s ease-in-out;
}

.video-card h5:hover {
  color: #028109;
}

/* Responsive Design */
@media (max-width: 768px) {
  .video-card h5 {
    font-size: 16px;
  }
}













.tp-contact-form__subtitle {
  color: #147235;
  font-weight: 700;
  display: inline-block;
  padding-bottom: 10px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-contact-form__left-box {
    padding-bottom: 50px;
  }
}
.tp-contact-form__left-box p {
  margin-bottom: 0;
  padding-bottom: 45px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-contact-form__left-box p {
    font-size: 14px;
  }
  .tp-contact-form__left-box p br {
    display: none;
  }
}
.tp-contact-form__social-box a {
  font-size: 17px;
  height: 40px;
  line-height: 38px;
  text-align: center;
  width: 40px;
  color: rgb(2, 96, 22);
  border-radius: 50%;
  border: 1px solid #0ca027;
  display: inline-block;
  transition: all 500ms ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.tp-contact-form__social-box a:not(:last-child) {
  margin-right: 10px;
}
.tp-contact-form__social-box a::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-color: rgb(255, 255, 255);
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.4s;
  transition-property: all;
  opacity: 1;
  transform-origin: top;
  transform-style: preserve-3d;
  transform: scaleY(0);
  z-index: -1;
}
.tp-contact-form__social-box a:hover {
  color: rgb(1, 59, 10);
  border: 1px solid transparent;
}
.tp-contact-form__social-box a:hover::after {
  opacity: 1;
  transform: scaleY(1);
}
.tp-contact-form__form-box {
  background-color: yellowgreen;
  padding: 60px 50px;
}
@media (max-width: 767px) {
  .tp-contact-form__form-box {
    padding: 30px 15px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-contact-form__form-box {
    padding: 50px 25px;
  }
}
.tp-contact-form__input-box input {
  color: var(--tp-common-black);
  border: 1px solid transparent;
  transition: 0.3s;
}
.tp-contact-form__input-box input:focus {
  border: 1px solid var(--tp-common-orange);
}
.tp-contact-form__textarea-box textarea {
  height: 150px;
  resize: none;
  border: none;
  padding: 30px;
  padding-top: 25px;
  font-size: 14px;
  width: 100%;
  color: blue;
  transition: 0.3s;
  border: 1px solid transparent;
}
.tp-contact-form__textarea-box textarea:focus {
  border: 1px solid pink;
}
.tp-contact-form__button {
  line-height: 0;
}

.tp-contact__bg {
  background-color: #147235;
  padding: 50px 55px;
  color: white !important;
  padding-bottom: 20px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-contact__bg {
    padding: 50px 20px;
    padding-bottom: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-contact__bg {
    padding: 50px 25px;
    padding-bottom: 20px;
  }
}
.tp-contact__item {
  margin-bottom: 30px;
}
.tp-contact__item:hover .tp-contact__icon span {
  background-color: var(--tp-common-orange);
  color: var(--tp-common-white);
}
.tp-contact__icon span {
  margin-right: 25px;
  font-size: 40px;
  height: 80px;
  width: 80px;
  border-radius: 50%;
  line-height: 91px;
  text-align: center;
  display: inline-block;
  background-color: rgba(16, 11, 11, 0);
  color: rgb(190, 14, 14);
  transition: 0.3s;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-contact__icon span {
    font-size: 34px;
    height: 70px;
    width: 70px;
    line-height: 81px;
    margin-right: 20px;
  }
}
@media (max-width: 767px) {
  .tp-contact__icon span {
    font-size: 20px;
    height: 50px;
    width: 50px;
    line-height: 55px;
    margin-right: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-contact__icon span {
    font-size: 30px;
    height: 70px;
    width: 70px;
    line-height: 81px;
    margin-right: 30px;
  }
}
.tp-contact__text a {
  color: var(--tp-common-white);
  display: block;
  padding-bottom: 10px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-contact__text a {
    font-size: 15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-contact__text a {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .tp-contact__text a {
    font-size: 14px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-contact__text a {
    font-size: 15px;
  }
}
.tp-contact__text a:last-child {
  padding-bottom: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-contact__wrapper {
    flex-wrap: wrap;
  }
}

.tp-location__info-box {
  line-height: 0;
}
.tp-location__info-box iframe {
  width: 100%;
}

.tp-contact-form__form-box {
  background-color: #1987542b;
  padding: 60px 50px;
}


input[type=text], input[type=email], input[type=tel], input[type=number], input[type=password], input[type=url] {
  outline: none;
  background-color: #fff;
  height: 60px;
  width: 100%;
  line-height: 60px;
  font-size: 14px;
  color: var(--tp-common-black);
  padding-left: 30px;
  padding-right: 30px;
  border: 0;
}

.mb-30 {
  margin-bottom: 30px;
}



.tp-contact__icon img {
  height: 50px;
  width: 50px;
  line-height: 50px;
  margin-bottom: 15px;
  transition: all 0.3s ease-in-out;
}

.tp-contact__icon img:hover  {
  filter: grayscale(100%) brightness(0%);
}



.tp-contact__icon span {
  margin-right: 7px;
  font-size: 40px;
  height: 80px;
  width: 80px;
  border-radius: 50%;
  line-height: 91px;
  text-align: center;
  display: inline-block;
  background-color: rgba(66, 174, 16, 0.9);
  color: rgb(190, 14, 14);
  transition: 0.3s;
}



.tp-contact__item:hover .tp-contact__icon span {
  background-color: rgb(255, 255, 255);
  color: var(--tp-common-white);
}

.tp-contact__item:hover  span  img{
  filter: grayscale(100%) brightness(0%);
  
}





  .awards .swiper {
    width: 100%;
   height: 375px;
   max-width: 700px;
    
  }

  .awards .swiper-slide {
    background: #027c1b;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.8s ease-in-out;
    /* Smooth transition */
  }

  .awards .swiper-slide img {
  
    height: 350px;
    width: 700px;
    object-fit: cover;
  }

  .awards .swiper-slide-prev,
  .awards .swiper-slide-next {
    opacity: 0.6;
    
    transform: scale(0.85);
   
  }

  .awards .swiper-slide-active {
    transform: scale(1);
    
    opacity: 1;
  }

  .awards .swiper-pagination {
    position: absolute;
    bottom: 50px !important;
  }




  .award-title {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 10px;
    color: #ffffff;
    padding-bottom: 20px;
  }
 


  .btnicon-whatsapp {
    width: 40px;
    height: 40px;
    color: white !important;
    border-radius: 100%;
    background-color: #2ac902;
    left: 10px;
    position: fixed;
    bottom: 70px;
    margin-left: 10px;
    font-size: 27px;
    line-height: 40px;
    text-align: center;
    z-index: 9;
}

.btnicon-call {
  width: 40px;
  height: 40px;
  color: white !important;
  left: 20px;
  border-radius: 100%;
  background-color: #326694;
  position: fixed;
  bottom: 10px;
  font-size: 25px;
  line-height: 40px;
  text-align: center;
  z-index: 9;
}


.swiper-pagination {
  position: relative !important; 
  margin-top: 20px; 
  text-align: center; 
}


.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: white; 
  opacity: 0.4;
  margin: 5px;
  transition: opacity 0.3s ease;
}


.swiper-pagination-bullet-active {
  background-color: #cd6606 !important; 
  opacity: 1;
}
.img-card {
  position: relative;
  width: 100%;
  height: 400px;
  padding: 20px 30px;
  margin-top: 30px;
  border-radius: 16px;
  /* background-image: url(../images/sss-1.jpg); */
  background-size: cover;
  background-position: center;
  display: flex
;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
