@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
@import "https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css";
html {
  scroll-behavior: smooth;
}

* {
  scrollbar-width: thin;
  scrollbar-color: #7bc043 #f2f2f2;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #f2f2f2;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background-color: #7bc043;
  border-radius: 10px;
  border: 2px solid #f2f2f2;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #5da32c;
}

::-webkit-scrollbar-corner {
  background: transparent;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: #f9f9f9;
  overflow-x: hidden;
}

.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fafff7;
  padding: 18px 35px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  transition: all 0.35s ease;
  height: 90px;
}
.main-header .logo img {
  height: 60px;
  width: auto;
  transition: all 0.3s ease;
}
.main-header.shrink {
  height: 65px;
  padding: 10px 35px;
  background: rgba(250, 255, 247, 0.96);
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.12);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
}
.main-header.shrink .logo img {
  height: 45px;
}
.main-header .desktop-nav {
  display: none;
}
.main-header .menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1100;
}
.main-header .menu-toggle .bar {
  width: 28px;
  height: 3px;
  background: #0a3d62;
  border-radius: 2px;
  transition: 0.3s ease;
}
.main-header .menu-toggle.active .bar:nth-child(1) {
  transform: rotate(42deg) translateY(10px);
}
.main-header .menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}
.main-header .menu-toggle.active .bar:nth-child(3) {
  transform: rotate(-40deg) translateY(-11px);
}

.offcanvas {
  position: fixed;
  top: 0;
  left: -280px;
  width: 260px;
  height: 100%;
  background: #fafff7;
  transition: transform 0.35s ease;
  z-index: 1000;
  padding-top: 100px;
  overflow-y: auto;
  box-shadow: 3px 0 10px rgba(0, 0, 0, 0.1);
}
.offcanvas.active {
  transform: translateX(280px);
  left: -280px;
}
.offcanvas .menu-list {
  list-style: none;
}
.offcanvas .menu-list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  color: #0a3d62;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}
.offcanvas .menu-list li a:hover {
  background: #abca98;
  color: #fff;
}
.offcanvas .menu-list li.dropdown .dropdown-menu {
  display: flex;
  flex-direction: column;
  background: #c7e0b8;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.offcanvas .menu-list li.dropdown .dropdown-menu a {
  padding: 10px 25px;
  font-size: 0.9rem;
  color: #0a3d62;
}
.offcanvas .menu-list li.dropdown.open .dropdown-menu {
  max-height: 400px;
}
.offcanvas .menu-actions-mobile {
  display: flex;
  justify-content: center;
  gap: 15px;
  padding: 15px 0;
  border-top: solid 1px rgba(85, 85, 85, 0.3);
}
.offcanvas .menu-actions-mobile .icon-btn {
  background: none;
  border: none;
  color: #0a3d62;
  font-size: 1.2rem;
  cursor: pointer;
  transition: color 0.3s;
}
.offcanvas .menu-actions-mobile .icon-btn:hover {
  color: rgb(5.2777777778, 32.1944444444, 51.7222222222);
}
.offcanvas .menu-actions-mobile .login-btn {
  background: #d2f348;
  color: #0a3d62;
  font-weight: 700;
  border: none;
  border-radius: 25px;
  padding: 8px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.offcanvas .menu-actions-mobile .login-btn:hover {
  background: rgb(198.2307692308, 239.8615384615, 24.1384615385);
  transform: translateY(-1px);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 999;
}
.overlay.active {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 480px) {
  .main-header .logo img {
    height: 50px;
  }
}
@media (min-width: 1190px) {
  .main-header .desktop-nav {
    display: block;
    margin-left: auto;
  }
  .main-header .desktop-nav .menu-list {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
  }
  .main-header .desktop-nav .menu-list li {
    position: relative;
  }
  .main-header .desktop-nav .menu-list li a {
    color: #0a3d62;
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .main-header .desktop-nav .menu-list li a:hover {
    color: rgb(2.9166666667, 17.7916666667, 28.5833333333);
  }
  .main-header .desktop-nav .menu-list li .dropdown-menu {
    position: absolute;
    top: 120%;
    left: 0;
    width: 30vh;
    background: #fff;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    list-style: none;
  }
  .main-header .desktop-nav .menu-list li .dropdown-menu li a {
    display: block;
    padding: 10px 15px;
    color: #333;
  }
  .main-header .desktop-nav .menu-list li .dropdown-menu li a:hover {
    background: #f3f5f8;
    color: #0a3d62;
  }
  .main-header .desktop-nav .menu-list li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .main-header .desktop-nav .menu-list .menu-actions {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  .main-header .desktop-nav .menu-list .menu-actions .icon-btn {
    background: none;
    border: none;
    color: #0a3d62;
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s;
  }
  .main-header .desktop-nav .menu-list .menu-actions .icon-btn:hover {
    color: rgb(5.2777777778, 32.1944444444, 51.7222222222);
  }
  .main-header .desktop-nav .menu-list .menu-actions .login-btn {
    background: #d2f348;
    color: #0a3d62;
    font-weight: 700;
    border: none;
    border-radius: 25px;
    padding: 8px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .main-header .desktop-nav .menu-list .menu-actions .login-btn:hover {
    background: rgb(198.2307692308, 239.8615384615, 24.1384615385);
    transform: translateY(-1px);
  }
  .main-header .menu-toggle {
    display: none;
  }
  .offcanvas,
  .overlay {
    display: none;
  }
}
.ntitn {
  background: #cbd5e1 !important;
  padding: 5px;
  height: 35px;
  line-height: 30px;
  width: 35px;
  border-radius: 50%;
}

.hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  font-family: "Poppins", sans-serif;
  color: #fff;
}
.hero-section .hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}
.hero-section .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 20, 30, 0.55);
  z-index: 1;
}
.hero-section .hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  text-align: center;
}
.hero-section .hero-content .hero-text-box {
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  border-radius: 20px;
  padding: 40px 30px;
  max-width: 850px;
  margin-bottom: 50px;
  margin-top: 20vh;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}
.hero-section .hero-content .hero-text-box h1 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.hero-section .hero-content .hero-text-box h2 {
  font-size: 2rem;
  color: #ffd54f;
  margin-bottom: 20px;
}
.hero-section .hero-content .hero-text-box p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 25px;
}
.hero-section .hero-content .hero-text-box .hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-section .hero-content .hero-text-box .hero-buttons .btn {
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.hero-section .hero-content .hero-text-box .hero-buttons .btn.btn-left {
  background: #4caf50;
  color: #fff;
}
.hero-section .hero-content .hero-text-box .hero-buttons .btn.btn-left:hover {
  background: #3e8e41;
}
.hero-section .hero-content .hero-text-box .hero-buttons .btn.btn-right {
  background: rgba(255, 255, 255, 0);
  border: 1px solid white;
  color: #fff;
}
.hero-section .hero-content .hero-text-box .hero-buttons .btn.btn-right:hover {
  background: #e68900;
}
.hero-section .hero-content .hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 900px;
}
.hero-section .hero-content .hero-stats .stat-card {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  padding: 20px 10px;
  text-align: center;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}
.hero-section .hero-content .hero-stats .stat-card:hover {
  transform: translateY(-5px);
}
.hero-section .hero-content .hero-stats .stat-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffeb3b;
  margin-bottom: 5px;
}
.hero-section .hero-content .hero-stats .stat-card p {
  font-size: 0.95rem;
  color: #f5f5f5;
}
@media (max-width: 992px) {
  .hero-section .hero-content .hero-text-box h1 {
    font-size: 2.2rem;
  }
  .hero-section .hero-content .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .hero-section .hero-content .hero-text-box {
    padding: 25px 20px;
  }
  .hero-section .hero-content .hero-text-box h1 {
    font-size: 1.8rem;
  }
  .hero-section .hero-content .hero-text-box h2 {
    font-size: 1.4rem;
  }
  .hero-section .hero-content .hero-stats {
    grid-template-columns: 1fr;
  }
}

.product-categories {
  padding: 50px 5%;
  text-align: center;
  background: #f9fafb;
}
@media (max-width: 768px) {
  .product-categories {
    padding: 40px 6%;
  }
}
.product-categories .section-title {
  font-family: "Poppins", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
  background: linear-gradient(90deg, #0a3d62 0%, #76b852 50%, #8dc26f 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  transition: all 0.4s ease;
}
.product-categories .section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, #0a3d62, #8dc26f);
  transition: width 0.4s ease;
}
.product-categories .section-title:hover::after {
  width: 130px;
}
@media (max-width: 768px) {
  .product-categories .section-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
  .product-categories .section-title::after {
    width: 60px;
  }
}
.product-categories .categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
@media (max-width: 992px) {
  .product-categories .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .product-categories .categories-grid {
    grid-template-columns: 1fr;
  }
}
.product-categories .category-card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.product-categories .category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.product-categories .category-card:hover .overlay {
  opacity: 1;
  visibility: visible;
}
.product-categories .category-card:hover img {
  transform: scale(1.1);
}
.product-categories .category-card .image-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.product-categories .category-card .image-wrap img {
  width: 100%;
  height: 100%;
  max-height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 14px;
  transition: transform 0.5s ease;
  display: block;
}
.product-categories .category-card .image-wrap .overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 25px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0));
  transition: opacity 0.4s ease, visibility 0.4s ease;
  border-radius: 14px;
}
.product-categories .category-card .image-wrap .overlay h3 {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  background: rgba(0, 0, 0, 0.45);
  padding: 8px 15px;
  border-radius: 8px;
}
@media (max-width: 480px) {
  .product-categories .category-card .image-wrap .overlay h3 {
    font-size: 0.85rem;
  }
}
@media (max-width: 768px) {
  .product-categories .category-card .overlay {
    opacity: 1 !important;
    visibility: visible !important;
  }
  .product-categories .category-card img {
    transform: none !important;
  }
}

.highlights-carousel {
  padding: 50px 6%;
  background: linear-gradient(180deg, #c7e0b8 0%, #fff 100%);
  font-family: "Poppins", sans-serif;
  text-align: center;
}
@media (max-width: 768px) {
  .highlights-carousel {
    padding: 40px 6%;
  }
}
.highlights-carousel .section-title {
  font-family: "Poppins", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
  background: linear-gradient(90deg, #0a3d62 0%, #76b852 50%, #8dc26f 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.4s ease;
}
.highlights-carousel .section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, #0a3d62, #8dc26f);
  transition: width 0.4s ease;
}
.highlights-carousel .section-title:hover::after {
  width: 130px;
}
@media (max-width: 768px) {
  .highlights-carousel .section-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
  .highlights-carousel .section-title::after {
    width: 60px;
  }
}
.highlights-carousel .carousel-container {
  position: relative;
  overflow: hidden;
}
.highlights-carousel .carousel-track {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease-in-out;
  align-items: stretch;
}
.highlights-carousel .highlight-card {
  flex: 0 0 calc(50% - 15px);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: left;
  overflow: hidden;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}
.highlights-carousel .highlight-card:hover {
  transform: translateY(-5px);
}
.highlights-carousel .highlight-card img {
  width: 100%;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
}
.highlights-carousel .highlight-card .card-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
  padding: 20px 25px;
}
.highlights-carousel .highlight-card .card-content .meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.highlights-carousel .highlight-card .card-content .meta .tag {
  background: #c0eba6;
  color: #444444;
  font-size: 0.8rem;
  padding: 4px 10px;
  border-radius: 12px;
}
.highlights-carousel .highlight-card .card-content .meta .read-time {
  font-size: 0.8rem;
  color: #666;
}
.highlights-carousel .highlight-card .card-content .title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 10px;
}
.highlights-carousel .highlight-card .card-content .desc {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}
.highlights-carousel .highlight-card .card-content .read-btn {
  background: #274321;
  border-radius: 10px;
  padding: 10px 16px;
  border: none;
  font-weight: 600;
  color: #ffffff;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease, transform 0.3s ease;
  align-self: flex-start;
}
.highlights-carousel .highlight-card .card-content .read-btn .arrow {
  transition: transform 0.3s ease;
}
.highlights-carousel .highlight-card .card-content .read-btn:hover {
  color: rgba(0, 0, 0, 0.7333333333);
}
.highlights-carousel .highlight-card .card-content .read-btn:hover .arrow {
  transform: translateX(4px);
}
.highlights-carousel .highlight-card hr {
  border: none;
  border-top: 1px solid #eee;
  margin: 10px 0 0;
}
.highlights-carousel .carousel-controls {
  margin-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.highlights-carousel .carousel-controls .counter {
  font-size: 1rem;
  color: #555;
  font-weight: 500;
}
.highlights-carousel .carousel-controls .buttons {
  display: flex;
  gap: 12px;
}
.highlights-carousel .carousel-controls .buttons button {
  background: #1b4602;
  border: none;
  color: #fff;
  height: 45px;
  width: 45px;
  font-size: 1.2rem;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}
.highlights-carousel .carousel-controls .buttons button:hover {
  background: #76b852;
}
.highlights-carousel .carousel-controls .buttons button:disabled {
  background: #ccc;
  cursor: not-allowed;
}
@media (max-width: 992px) {
  .highlights-carousel .highlight-card {
    flex: 0 0 100%;
  }
}
@media (max-width: 576px) {
  .highlights-carousel .highlight-card {
    flex: 0 0 100%;
  }
  .highlights-carousel .card-content {
    padding: 15px 18px;
  }
  .highlights-carousel .read-btn {
    font-size: 0.9rem;
  }
}

.testimonials-section {
  background-color: linear-gradient(180deg, #f2f8ec 0%, #ffffff 100%);
  padding: 3rem 1rem;
  text-align: center;
  position: relative;
  /* Video Popup */
}
.testimonials-section .section-title {
  font-family: "Poppins", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
  background: linear-gradient(90deg, #0a3d62 0%, #76b852 50%, #8dc26f 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.4s ease;
}
.testimonials-section .section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, #0a3d62, #8dc26f);
  transition: width 0.4s ease;
}
.testimonials-section .section-title:hover::after {
  width: 130px;
}
@media (max-width: 768px) {
  .testimonials-section .section-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
  .testimonials-section .section-title::after {
    width: 60px;
  }
}
.testimonials-section .carousel-container {
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  margin: auto;
}
.testimonials-section .carousel-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}
.testimonials-section .carousel-slide {
  flex: 0 0 100%;
  padding: 1rem;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .testimonials-section .carousel-slide {
    flex: 0 0 50%;
  }
}
.testimonials-section .testimonial-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 2.2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.testimonials-section .testimonial-content {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .testimonials-section .testimonial-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
  }
}
.testimonials-section .testimonial-content .left {
  flex: 1;
  text-align: left;
}
.testimonials-section .testimonial-content .left .description {
  color: #333;
  font-size: 1rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}
.testimonials-section .testimonial-content .left .stars {
  color: gold;
  font-size: 1.2rem;
}
.testimonials-section .testimonial-content .right {
  flex: 0 0 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1rem;
  transition: background 0.3s ease;
  padding: 10px;
}
.testimonials-section .testimonial-content .right:hover {
  background: #f3f3f3;
  border-radius: 10px;
}
.testimonials-section .testimonial-content .right .person-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 3px solid rgb(39, 67, 33);
  margin-bottom: 0.8rem;
}
.testimonials-section .testimonial-content .right .name {
  color: rgb(39, 67, 33);
  font-weight: 600;
  margin: 0;
}
.testimonials-section .testimonial-content .right .place {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.testimonials-section .testimonial-content .right .video-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  background: #f4f4f4;
  color: #333;
  border: none;
  border-radius: 50px;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.3s ease;
}
.testimonials-section .testimonial-content .right .video-btn:hover {
  background: rgb(129.34, 187.02, 116.98);
}
.testimonials-section .nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgb(39, 67, 33);
  color: #fff;
  border: none;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  z-index: 2;
}
.testimonials-section .nav-btn.prev {
  left: 1.2rem;
}
.testimonials-section .nav-btn.next {
  right: 1.2rem;
}
.testimonials-section .video-popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 1001;
}
.testimonials-section .video-popup .popup-content {
  position: relative;
  width: 90%;
  max-width: 600px;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
}
.testimonials-section .video-popup .popup-content iframe {
  width: 100%;
  height: 340px;
}
.testimonials-section .video-popup .popup-content .close-popup {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}

.image-gallery {
  padding: 60px 6%;
  background: linear-gradient(180deg, #f2f8ec 0%, #ffffff 100%);
  font-family: "Poppins", sans-serif;
  text-align: center;
}
@media (max-width: 768px) {
  .image-gallery {
    padding: 40px 6%;
  }
}
.image-gallery .section-title {
  font-family: "Poppins", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
  background: linear-gradient(90deg, #0a3d62 0%, #76b852 50%, #8dc26f 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  transition: all 0.4s ease;
}
.image-gallery .section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, #0a3d62, #8dc26f);
  transition: width 0.4s ease;
}
.image-gallery .section-title:hover::after {
  width: 130px;
}
@media (max-width: 768px) {
  .image-gallery .section-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
  .image-gallery .section-title::after {
    width: 60px;
  }
}
.image-gallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}
@media (max-width: 992px) {
  .image-gallery .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .image-gallery .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .image-gallery .gallery-grid {
    grid-template-columns: 1fr;
  }
}
.image-gallery .gallery-grid .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.image-gallery .gallery-grid .gallery-item img {
  width: 100%;
  height: 100%;
  max-height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.image-gallery .gallery-grid .gallery-item:hover img {
  transform: scale(1.05);
}
.image-gallery .explore-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #274321;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 30px;
  margin-top: 25px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(47, 158, 68, 0.4);
}
.image-gallery .explore-btn:hover {
  background: #37b24d;
  box-shadow: 0 6px 14px rgba(47, 158, 68, 0.5);
  transform: translateY(-3px);
}
.image-gallery .lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.image-gallery .lightbox.active {
  display: flex;
}
.image-gallery .lightbox .lightbox-inner {
  position: relative;
  width: 85%;
  max-height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.image-gallery .lightbox .lightbox-image {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 10px;
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.4s ease;
}
.image-gallery .lightbox .lightbox-image.show {
  opacity: 1;
  transform: scale(1);
}
.image-gallery .lightbox .close {
  position: absolute;
  top: 25px;
  right: 40px;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  z-index: 10;
  transition: color 0.3s ease;
}
.image-gallery .lightbox .close:hover {
  color: #fbc531;
}
.image-gallery .lightbox .nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  padding: 8px 20px;
  border-radius: 50%;
  z-index: 10;
  transition: background 0.3s ease;
}
.image-gallery .lightbox .nav:hover {
  background: rgba(255, 255, 255, 0.35);
}
.image-gallery .lightbox .nav.prev {
  left: 40px;
}
.image-gallery .lightbox .nav.next {
  right: 40px;
}

.faq-section {
  padding: 60px 6%;
  background: linear-gradient(180deg, #f2f8ec 0%, #ffffff 100%);
  font-family: "Poppins", sans-serif;
  text-align: center;
}
@media (max-width: 768px) {
  .faq-section {
    padding: 40px 6%;
  }
}
.faq-section .section-title {
  font-family: "Poppins", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
  background: linear-gradient(90deg, #0a3d62 0%, #76b852 50%, #8dc26f 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  transition: all 0.4s ease;
}
.faq-section .section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, #0a3d62, #8dc26f);
  transition: width 0.4s ease;
}
.faq-section .section-title:hover::after {
  width: 130px;
}
@media (max-width: 768px) {
  .faq-section .section-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
  .faq-section .section-title::after {
    width: 60px;
  }
}
.faq-section .faq-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  text-align: left;
}
.faq-section .faq-column {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.faq-section .faq-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-section .faq-item.active .faq-question {
  background: #d5f0d0;
}
.faq-section .faq-item.active .faq-question .icon {
  transform: rotate(0deg);
  color: #2e7d32;
}
.faq-section .faq-question {
  width: 100%;
  background: rgb(254, 251, 230);
  border: none;
  outline: none;
  padding: 18px 22px;
  text-align: left;
  font-size: 1rem;
  font-weight: 500;
  color: #222;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}
.faq-section .faq-question .icon {
  font-size: 1.4rem;
  font-weight: 700;
  color: rgb(22, 163, 74);
  transition: transform 0.3s ease, color 0.3s ease;
}
.faq-section .faq-question:hover {
  background: #c8e6c9;
}
.faq-section .faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 22px;
  background: #fff;
  transition: all 0.4s ease;
}
.faq-section .faq-answer p {
  margin: 15px 0;
  color: #444;
  line-height: 1.6;
  font-size: 1rem;
}
.faq-section .faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 18px;
}
@media (max-width: 768px) {
  .faq-section .faq-container {
    flex-direction: column;
  }
  .faq-section .faq-column {
    flex: 1 1 100%;
  }
}

.connect-section-p {
  padding: 35px 6%;
}

.connect-section {
  padding: 60px 6%;
  background: linear-gradient(180deg, #f2f8ec 0%, #ffffff 100%);
  font-family: "Poppins", sans-serif;
}
@media (max-width: 768px) {
  .connect-section {
    padding: 40px 6%;
  }
}
.connect-section .container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}
.connect-section .section-title {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 50px;
  position: relative;
  background: linear-gradient(90deg, #0a3d62 0%, #76b852 50%, #8dc26f 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  transition: all 0.4s ease;
}
.connect-section .section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, #0a3d62, #8dc26f);
  transition: width 0.4s ease;
}
.connect-section .section-title:hover::after {
  width: 130px;
}
@media (max-width: 768px) {
  .connect-section .section-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
  .connect-section .section-title::after {
    width: 60px;
  }
}
.connect-section .connect-left {
  flex: 1 1 25%;
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}
@media (max-width: 992px) {
  .connect-section .connect-left {
    width: 100%;
  }
}
.connect-section .connect-left form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.connect-section .connect-left form .form-group {
  position: relative;
}
.connect-section .connect-left form .form-group input,
.connect-section .connect-left form .form-group textarea {
  width: 100%;
  padding: 14px 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  background: transparent;
  outline: none;
  transition: border-color 0.3s ease;
}
.connect-section .connect-left form .form-group label {
  position: absolute;
  top: 14px;
  left: 14px;
  color: #777;
  font-size: 1rem;
  pointer-events: none;
  transition: 0.3s ease all;
  background: #fff;
  padding: 0 6px;
}
.connect-section .connect-left form .form-group input:not(:-moz-placeholder) + label, .connect-section .connect-left form .form-group textarea:not(:-moz-placeholder) + label {
  top: -8px;
  left: 10px;
  font-size: 0.8rem;
  color: #4caf50;
}
.connect-section .connect-left form .form-group input:focus + label,
.connect-section .connect-left form .form-group textarea:focus + label,
.connect-section .connect-left form .form-group input:not(:placeholder-shown) + label,
.connect-section .connect-left form .form-group textarea:not(:placeholder-shown) + label {
  top: -8px;
  left: 10px;
  font-size: 0.8rem;
  color: #4caf50;
}
.connect-section .connect-left form .form-group input:focus,
.connect-section .connect-left form .form-group textarea:focus {
  border-color: #4caf50;
  box-shadow: 0 0 5px rgba(76, 175, 80, 0.3);
}
.connect-section .connect-left form .submit-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #c0eba6;
  color: #222;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 30px;
  margin-top: 5px;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(47, 158, 68, 0.4);
}
.connect-section .connect-left form .submit-btn:hover {
  background: #37b24d;
  box-shadow: 0 6px 14px rgba(47, 158, 68, 0.5);
  transform: translateY(-3px);
}
.connect-section .connect-right {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media (max-width: 992px) {
  .connect-section .connect-right {
    width: 100%;
  }
}
.connect-section .connect-right .map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}
.connect-section .connect-right .contact-info {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  background: #ffffff;
  padding: 0;
  border-radius: 12px;
  gap: 10px;
}
.connect-section .connect-right .contact-info .info-left {
  flex: 1 1 50%;
  background: #c0eba6;
  border-radius: 12px;
  padding: 10px;
  display: flex;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}
.connect-section .connect-right .contact-info .info-left p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  padding-left: 10px;
}
.connect-section .connect-right .contact-info .info-left p strong {
  color: #4caf50;
}
.connect-section .connect-right .contact-info .info-right {
  flex: 1 1 40%;
  display: flex;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  background: #c0eba6;
  padding: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}
.connect-section .connect-right .contact-info .info-right .social-icons {
  display: flex;
  gap: 12px;
}
.connect-section .connect-right .contact-info .info-right .social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #4caf50;
  color: #fff;
  display: flex;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}
.connect-section .connect-right .contact-info .info-right .social-icons a:hover {
  background: #43a047;
  transform: translateY(-3px);
}
@media (max-width: 992px) {
  .connect-section .container {
    flex-direction: column;
  }
  .connect-section .connect-right .contact-info {
    align-items: flex-start;
  }
  .connect-section .connect-right .contact-info .info-right {
    justify-content: center;
    margin-top: 15px;
  }
}

.site-footer {
  background: rgb(192, 235, 166);
  color: #250000;
  font-family: "Poppins", sans-serif;
  padding: 60px 6% 30px;
  position: relative;
}
@media (max-width: 768px) {
  .site-footer {
    padding: 40px 6%;
  }
}
.site-footer .footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
@media (max-width: 992px) {
  .site-footer .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .site-footer .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.site-footer .footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-weight: 600;
  color: rgb(55, 65, 81);
  text-transform: uppercase;
}
.site-footer .footer-col p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgb(55, 65, 81);
}
.site-footer .footer-col ul {
  list-style: none;
  padding: 0;
}
.site-footer .footer-col ul li {
  margin-bottom: 10px;
}
.site-footer .footer-col ul li a {
  color: rgb(55, 65, 81);
  text-decoration: none;
  transition: 0.3s;
}
.site-footer .footer-col ul li a:hover {
  color: #003742;
}
.site-footer .footer-brand .footer-logo {
  max-width: 160px;
  margin-bottom: 15px;
}
.site-footer .footer-social {
  margin-top: 20px;
}
.site-footer .footer-social a {
  display: inline-flex;
  width: 38px;
  height: 38px;
  background: #1b263b;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: #ebebeb;
  text-decoration: none;
  margin-right: 10px;
  font-size: 16px;
  transition: all 0.3s ease;
}
.site-footer .footer-social a:hover {
  background: rgb(52, 85, 31);
  transform: translateY(-4px);
}
@media (max-width: 600px) {
  .site-footer .footer-social {
    justify-content: center;
  }
}
.site-footer .newsletter .newsletter-form {
  display: flex;
  margin-top: 15px;
  background: #000000;
  border-radius: 50px;
  overflow: hidden;
}
.site-footer .newsletter .newsletter-form input {
  flex: 1;
  border: none;
  outline: none;
  padding: 12px 16px;
  background: transparent;
  color: #ebebeb;
  font-size: 0.95rem;
}
.site-footer .newsletter .newsletter-form input::-moz-placeholder {
  color: #ebebeb;
}
.site-footer .newsletter .newsletter-form input::placeholder {
  color: #ebebeb;
}
.site-footer .newsletter .newsletter-form button {
  background: #d2f348;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #149237;
  cursor: pointer;
  margin: 7px;
  transition: 0.3s ease;
  margin-right: 8px;
}
.site-footer .newsletter .newsletter-form button:hover {
  background: #d2f348;
}
.site-footer .newsletter .newsletter-form button i {
  font-size: 16px;
}
.site-footer hr {
  margin: 40px 0 20px;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.3);
}
.site-footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: rgb(55, 65, 81);
}
@media (max-width: 600px) {
  .site-footer .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}
.site-footer .footer-bottom .footer-bottom-links a {
  color: rgb(55, 65, 81);
  margin-left: 15px;
  text-decoration: none;
  transition: 0.3s;
}
.site-footer .footer-bottom .footer-bottom-links a:hover {
  color: #003742;
}

.back-to-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(145deg, #2e7d32, #388e3c);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(46, 125, 50, 0.3);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all 0.35s ease;
  z-index: 1000;
}
.back-to-top:hover {
  background: linear-gradient(145deg, #43a047, #2e7d32);
  transform: translateY(-3px) rotate(-3deg);
  box-shadow: 0 8px 20px rgba(46, 125, 50, 0.4);
}
.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top svg {
  width: 26px;
  height: 26px;
  transition: transform 0.4s ease;
}

@keyframes gearRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.gear-rotating {
  animation: gearRotate 4s linear infinite;
}

@media (max-width: 768px) {
  .back-to-top {
    width: 48px;
    height: 48px;
    bottom: 20px;
    right: 20px;
  }
}
@media (max-width: 480px) {
  .back-to-top {
    width: 42px;
    height: 42px;
    bottom: 15px;
    right: 15px;
  }
}
.about-us-section {
  position: relative;
  width: 95%;
  margin: 120px auto;
  margin-bottom: 30px;
  border-radius: 50px;
  overflow: hidden;
  height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("../images/about/heroImage.webp") center/cover no-repeat;
  font-family: "Poppins", sans-serif;
  color: #fff;
}
.about-us-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}
.about-us-section .about-content {
  position: relative;
  z-index: 2;
  text-align: justify;
  padding: 30px 50px;
}
.about-us-section .about-content h2 {
  font-size: 2.6rem;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
  opacity: 1;
  transform: translateY(40px);
  transition: all 0.8s ease;
}
.about-us-section .about-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  opacity: 1;
  transform: translateY(40px);
  transition: all 0.8s ease 0.2s;
}
.about-us-section .about-content.active h2, .about-us-section .about-content.active p {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 768px) {
  .about-us-section {
    height: auto;
    border-radius: 25px;
    margin: 40px auto;
    margin-top: 17vh;
  }
  .about-us-section .about-content {
    padding: 70px 30px;
  }
  .about-us-section .about-content h2 {
    font-size: 1.3rem;
  }
  .about-us-section .about-content p {
    font-size: 0.8rem;
  }
}

.box-layout {
  padding: 70px 6%;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(180deg, #f0faeb 0%, #fff 100%);
}
.box-layout .container {
  display: flex;
  gap: 25px;
  align-items: stretch;
  flex-wrap: wrap;
}
.box-layout .left-side {
  display: flex;
  flex-direction: column;
  flex: 2;
  gap: 22px;
}
.box-layout .left-side .row {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.box-layout .box {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  color: #fff;
  cursor: pointer;
  transition: all 0.4s ease;
  min-height: 220px;
}
.box-layout .box:hover {
  transform: scale(1.04);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  border: 2px solid rgba(166, 193, 59, 0.9);
}
.box-layout .box::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.25) 50%, #c0eba6 100%);
}
.box-layout .box .content {
  position: absolute;
  top: 20px;
  left: 15px;
  right: 15px;
  z-index: 2;
  animation: fadeUp 0.8s ease forwards;
}
.box-layout .box .content h3 {
  font-size: 1.3rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.box-layout .box .content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
}
.box-layout .small {
  flex: 1;
  height: 240px;
}
.box-layout .big-horizontal {
  width: 100%;
  height: 290px;
}
.box-layout .right-side {
  flex: 1;
  display: flex;
  align-items: stretch;
}
.box-layout .right-side .vertical-big {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  min-height: 800px;
  position: relative;
  background-size: cover;
  background-position: center;
  border: none;
}
.box-layout .right-side .vertical-big::before {
  background: linear-gradient(to top, rgb(114, 176, 163) 0%, rgba(192, 235, 166, 0.3019607843) 60%, rgba(255, 0, 0, 0.17) 100%);
}
.box-layout .right-side .vertical-big .content {
  bottom: 20px;
  left: 20px;
}
.box-layout .right-side .vertical-big .content h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.box-layout .right-side .vertical-big .content p {
  font-size: 1rem;
}
.box-layout .box1 {
  background-image: url("../images/bentoGrid/image1.webp");
}
.box-layout .box2 {
  background-image: url("../images/bentoGrid/image2.webp");
}
.box-layout .box-big {
  background-image: url("../images/bentoGrid/image4.webp");
}
.box-layout .box3 {
  background-image: url("../images/bentoGrid/image5.webp");
}
.box-layout .box4 {
  background-image: url("../images/bentoGrid/image6.webp");
}
.box-layout .box-vertical {
  background-image: url("../images/bentoGrid/image3.webp");
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 1200px) {
  .box-layout .right-side .vertical-big {
    min-height: 650px;
  }
}
@media (max-width: 992px) {
  .box-layout .container {
    flex-direction: column;
    gap: 30px;
  }
  .box-layout .right-side {
    width: 100%;
  }
  .box-layout .right-side .vertical-big {
    min-height: 450px;
  }
}
@media (max-width: 768px) {
  .box-layout {
    padding: 40px 4%;
  }
  .box-layout .left-side,
  .box-layout .right-side {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .box-layout .left-side .row {
    flex-direction: column;
    gap: 20px;
  }
  .box-layout .box,
  .box-layout .small,
  .box-layout .big-horizontal,
  .box-layout .vertical-big {
    width: 100% !important;
    height: auto !important;
    min-height: 300px;
  }
  .box-layout .content {
    position: relative;
    padding: 20px;
    bottom: auto;
    left: auto;
    right: auto;
    text-align: left;
  }
  .box-layout .content h3 {
    font-size: 1.1rem;
  }
  .box-layout .content p {
    font-size: 0.9rem !important;
  }
}

.journey-section {
  padding: 50px 6%;
  background: #f9fff4;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.journey-section .section-title {
  font-family: "Poppins", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 50px;
  display: inline-block;
  background: linear-gradient(90deg, #0a3d62 0%, #76b852 50%, #8dc26f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.journey-section .section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, #0a3d62, #8dc26f);
}

.journey-section .year-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
  gap: 10px;
}

.journey-section .nav-btn {
  background: #78c257;
  color: #fff;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.journey-section .nav-btn:hover {
  background: #5da240;
}

.journey-section .year-list {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 12px;
  background: #fffbea;
  border-radius: 50px;
  padding: 10px 25px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.journey-section .year-list::-webkit-scrollbar {
  height: 8px;
}

.journey-section .year-list::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.08);
  border-radius: 999px;
}

.journey-section .year-list {
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.08) transparent;
}

.journey-section .year-item {
  padding: 10px 20px;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
  color: #222;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.journey-section .year-item:hover {
  background: #b2e08f;
  color: #124014;
}

.journey-section .year-item.active {
  background: #78c257;
  color: #fff;
  box-shadow: 0 6px 18px rgba(120, 194, 87, 0.22);
  transform: translateY(-3px);
}

.journey-section .journey-gallery {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  height: 420px;
  perspective: 1200px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.journey-section .gallery-card {
  position: absolute;
  width: 70%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
  transition: transform 0.9s cubic-bezier(0.2, 0.9, 0.19, 1), opacity 0.7s ease;
  transform-origin: center center;
  opacity: 0;
  background: #000;
}

.journey-section .gallery-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.journey-section .gallery-card .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 50%, rgba(0, 0, 0, 0.85) 100%);
  color: #fff;
  padding: 20px;
  text-align: left;
}

.journey-section .gallery-card .caption h3 {
  margin-bottom: 8px;
  font-size: 1.3rem;
}

.journey-section .gallery-card .caption p {
  font-size: 0.95rem;
  line-height: 1.35;
}

.journey-section .gallery-card.active {
  opacity: 1;
  z-index: 10;
  transform: translateX(0%) scale(1) translateZ(0);
}

.journey-section .gallery-card.prev {
  opacity: 0.7;
  z-index: 5;
  transform: translateX(-45%) scale(0.88) rotateY(12deg);
  filter: blur(0.5px) brightness(0.9);
}

.journey-section .gallery-card.next {
  opacity: 0.7;
  z-index: 5;
  transform: translateX(45%) scale(0.88) rotateY(-12deg);
  filter: blur(0.5px) brightness(0.9);
}

.journey-section .gallery-card:not(.active):not(.prev):not(.next) {
  opacity: 0;
  transform: translateX(0) scale(0.7) translateZ(-400px);
}

@media (max-width: 900px) {
  .journey-section .journey-gallery {
    height: 320px;
  }
  .journey-section .gallery-card {
    width: 85%;
  }
  .journey-section .section-title {
    font-size: 1.3rem;
  }
}
@media (max-width: 640px) {
  .journey-section .nav-btn {
    width: 150px;
  }
}
.awards-section {
  background: #f7f7f7;
  padding: 80px 5%;
  font-family: "Poppins", sans-serif;
}
.awards-section .awards-container {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.awards-section .awards-container .left-image {
  flex: 1;
  min-width: 280px;
}
.awards-section .awards-container .left-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 25px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.15);
}
.awards-section .awards-container .right-carousel {
  flex: 2;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.awards-section .awards-container .right-carousel .carousel-slides {
  position: relative;
  width: 100%;
  min-height: 450px;
}
.awards-section .awards-container .right-carousel .carousel-slide {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease-in-out;
}
.awards-section .awards-container .right-carousel .carousel-slide.active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}
.awards-section .awards-container .right-carousel .carousel-slide .award-card {
  background: #fff;
  border-radius: 20px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.awards-section .awards-container .right-carousel .carousel-slide .award-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}
.awards-section .awards-container .right-carousel .carousel-slide .award-card h3 {
  font-size: 1.1rem;
  color: #1d3b1d;
  margin-bottom: 8px;
}
.awards-section .awards-container .right-carousel .carousel-slide .award-card p {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 12px;
}
.awards-section .awards-container .right-carousel .carousel-slide .award-card img {
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto;
}
.awards-section .awards-container .right-carousel .carousel-controls {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}
.awards-section .awards-container .right-carousel .carousel-controls button {
  background: #000;
  color: #fff;
  border: none;
  height: 6vh;
  width: 6vh;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}
.awards-section .awards-container .right-carousel .carousel-controls button:hover {
  background: #008000;
  transform: scale(1.05);
}
@media (max-width: 992px) {
  .awards-section .awards-container {
    flex-direction: column;
  }
  .awards-section .awards-container .left-image {
    order: 1;
  }
  .awards-section .awards-container .right-carousel {
    order: 2;
  }
  .awards-section .awards-container .right-carousel .carousel-slide {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .awards-section {
    padding: 40px 4%;
  }
  .awards-section .right-carousel .carousel-slide {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .awards-section .right-carousel .carousel-slide .award-card {
    padding: 18px;
  }
  .awards-section .right-carousel .carousel-slide .award-card h3 {
    font-size: 1rem;
  }
  .awards-section .right-carousel .carousel-slide .award-card p {
    font-size: 0.85rem;
  }
  .awards-section .right-carousel .carousel-slide .award-card img {
    width: 45px;
    height: 45px;
  }
}

.facilities-section {
  padding: 40px 5%;
  background: #f5f5f5;
  font-family: "Poppins", sans-serif;
  text-align: center;
}
.facilities-section .section-title {
  font-family: "Poppins", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
  background: linear-gradient(90deg, #0a3d62 0%, #76b852 50%, #8dc26f 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  transition: all 0.4s ease;
}
.facilities-section .section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, #0a3d62, #8dc26f);
  transition: width 0.4s ease;
}
.facilities-section .section-title:hover::after {
  width: 130px;
}
@media (max-width: 768px) {
  .facilities-section .section-title {
    font-size: 1.3rem;
    margin-bottom: 2rem;
  }
  .facilities-section .section-title::after {
    width: 60px;
  }
}
.facilities-section .facilities-swiper {
  position: relative;
  padding-bottom: 60px;
}
.facilities-section .facilities-swiper .facility-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.facilities-section .facilities-swiper .facility-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.facilities-section .facilities-swiper .facility-card img {
  width: 100%;
  height: 230px;
  -o-object-fit: cover;
     object-fit: cover;
}
.facilities-section .facilities-swiper .facility-card h3 {
  font-size: 1.25rem;
  color: #009688;
  margin: 15px 20px 10px;
  font-weight: 600;
}
.facilities-section .facilities-swiper .facility-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin: 0 20px 20px;
}
.facilities-section .facilities-swiper .swiper-button-prev,
.facilities-section .facilities-swiper .swiper-button-next {
  color: #fff;
  background: linear-gradient(90deg, #2e7d32 0%, #76b852 50%, #8dc26f 100%);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}
.facilities-section .facilities-swiper .swiper-button-prev:hover,
.facilities-section .facilities-swiper .swiper-button-next:hover {
  background: #00796b;
}
.facilities-section .facilities-swiper .swiper-button-prev::after,
.facilities-section .facilities-swiper .swiper-button-next::after {
  font-size: 1.4rem;
  font-weight: bold;
}
.facilities-section .facilities-swiper .swiper-pagination-bullet {
  background: linear-gradient(90deg, #0a3d62 0%, #76b852 50%, #8dc26f 100%);
  opacity: 0.6;
}
.facilities-section .facilities-swiper .swiper-pagination-bullet-active {
  opacity: 1;
  background: #00796b;
}

.board-section {
  padding: 80px 5%;
  background: #f9fafc;
  text-align: center;
  font-family: "Poppins", sans-serif;
}
.board-section .section-title {
  font-family: "Poppins", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
  background: linear-gradient(90deg, #0a3d62 0%, #76b852 50%, #8dc26f 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  transition: all 0.4s ease;
}
.board-section .section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, #0a3d62, #8dc26f);
  transition: width 0.4s ease;
}
.board-section .section-title:hover::after {
  width: 130px;
}
@media (max-width: 768px) {
  .board-section .section-title {
    font-size: 1.3rem;
    margin-bottom: 2rem;
  }
  .board-section .section-title::after {
    width: 60px;
  }
}
.board-section .board-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  justify-items: center;
}
@media (max-width: 992px) {
  .board-section .board-container {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 600px) {
  .board-section .board-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
.board-section .board-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  overflow: hidden;
  max-width: 250px;
  width: 100%;
  padding-bottom: 20px;
}
.board-section .board-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}
.board-section .board-card .image-box {
  position: relative;
  overflow: hidden;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.board-section .board-card .image-box img {
  width: 100%;
  height: 280px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease;
}
@media (max-width: 480px) {
  .board-section .board-card .image-box img {
    height: 230px;
  }
}
.board-section .board-card .image-box:hover img {
  transform: scale(1.1);
}
.board-section .board-card .name {
  font-size: 1.25rem;
  font-weight: 600;
  color: #222;
  margin-top: 20px;
}
.board-section .board-card .designation {
  color: #555;
  font-size: 1rem;
  margin-bottom: 15px;
}
.board-section .board-card .social-links {
  display: flex;
  justify-content: center;
  gap: 12px;
}
.board-section .board-card .social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eaf3f5;
  color: #0f8b8d;
  transition: background 0.3s ease, transform 0.3s ease;
}
.board-section .board-card .social-links a:hover {
  background: #0f8b8d;
  color: #fff;
  transform: scale(1.1);
}

.vertical-tabs-section {
  font-family: "Poppins", sans-serif;
  padding: 110px 5%;
  display: flex;
  justify-content: center;
}
.vertical-tabs-section .tabs-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1200px;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  background: #fff;
}
.vertical-tabs-section .tabs-list {
  flex: 1;
  min-width: 260px;
  background: linear-gradient(180deg, #fffbe6, #fffbe6);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow-y: auto;
  max-height: 520px;
}
.vertical-tabs-section .tabs-list .tab-btn {
  padding: 18px 20px;
  background: transparent;
  color: #00796b;
  border: none;
  outline: none;
  text-align: left;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
}
.vertical-tabs-section .tabs-list .tab-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}
.vertical-tabs-section .tabs-list .tab-btn.active {
  background: #00bfa5;
  color: #fff;
  position: relative;
}
.vertical-tabs-section .tab-content {
  flex: 3;
  padding: 40px;
  background: #fafafa;
  overflow: auto;
  max-height: 520px;
}
.vertical-tabs-section .tab-content .tab-pane {
  display: none;
  animation: fadeIn 0.4s ease-in-out;
}
.vertical-tabs-section .tab-content .tab-pane.active {
  display: block;
}
.vertical-tabs-section .tab-content .tab-pane h3 {
  margin-bottom: 15px;
  color: #00796b;
  font-weight: 600;
}
.vertical-tabs-section .tab-content .tab-pane p {
  color: #555;
  line-height: 1.6;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 992px) {
  .vertical-tabs-section .tabs-container {
    flex-direction: row;
  }
  .vertical-tabs-section .tabs-list {
    flex-direction: row;
    overflow-x: auto;
    min-width: 100%;
    max-height: none;
  }
  .vertical-tabs-section .tabs-list .tab-btn {
    flex: 1 0 auto;
    text-align: center;
    border-bottom: 2px solid transparent;
  }
  .vertical-tabs-section .tabs-list .tab-btn.active {
    border-bottom: 2px solid #4caf50;
    background: none;
    color: #005147;
  }
  .vertical-tabs-section .tab-content {
    padding: 25px;
  }
}
@media (max-width: 600px) {
  .vertical-tabs-section .tabs-list .tab-btn {
    font-size: 14px;
    padding: 12px;
  }
}

.policy-list-section {
  padding: 50px 0%;
  background: #f7f9fc;
}
.policy-list-section .policy-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.policy-list-section .policy-list li {
  background: #ffffff;
  padding: 16px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  transition: 0.25s ease;
}
.policy-list-section .policy-list li:hover {
  transform: translateX(6px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.1);
}
.policy-list-section .policy-list li a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  color: #01352f;
  display: block;
}
.policy-list-section .policy-list li a:hover {
  color: #00796b;
}

.small-paragraph-list {
  padding: 10px 0;
  display: block;
  justify-content: center;
  font-family: "Poppins", sans-serif;
}
.small-paragraph-list .sp-list {
  width: 100%;
  max-width: 1100px;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 5px;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .small-paragraph-list .sp-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .small-paragraph-list .sp-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 767px) {
  .small-paragraph-list .sp-list {
    grid-template-columns: 1fr;
  }
}
.small-paragraph-list .sp-list .sp-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #fffbe6;
  border-radius: 10px;
  padding: 14px;
  box-shadow: 0 6px 18px rgba(14, 30, 37, 0.06);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  margin-top: 2vh;
}
.small-paragraph-list .sp-list .sp-item:hover, .small-paragraph-list .sp-list .sp-item:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(14, 30, 37, 0.08);
}
.small-paragraph-list .sp-list .sp-item .sp-icon {
  flex: 0 0 20px;
  height: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #fffbe6;
  background: #179437;
  font-size: 14px;
}
.small-paragraph-list .sp-list .sp-item .sp-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.small-paragraph-list .sp-list .sp-item .sp-content .sp-title {
  margin: 0 0 6px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  color: #15202b;
}
.small-paragraph-list .sp-list .sp-item .sp-content .sp-text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.45;
  color: #6b6b6b;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 480px) {
  .small-paragraph-list .sp-list .sp-item .sp-content .sp-text {
    -webkit-line-clamp: 2;
  }
}
@media (min-width: 481px) and (max-width: 767px) {
  .small-paragraph-list .sp-list .sp-item .sp-content .sp-text {
    -webkit-line-clamp: 3;
  }
}
@media (min-width: 768px) {
  .small-paragraph-list .sp-list .sp-item .sp-content .sp-text {
    -webkit-line-clamp: 5;
  }
}
.small-paragraph-list .sp-list .sp-item .sp-content .sp-toggle {
  margin-top: 8px;
  align-self: flex-start;
  border: none;
  background: transparent;
  color: #179437;
  font-weight: 600;
  font-size: 0.86rem;
  padding: 4px 6px;
  cursor: pointer;
  transition: color 0.2s ease;
}
.small-paragraph-list .sp-list .sp-item .sp-content .sp-toggle:hover {
  color: rgb(16.1403508772, 103.8596491228, 38.5964912281);
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.table-section {
  padding: 2rem 1rem;
  font-family: "Poppins", sans-serif;
  color: #1f2937;
}
.table-section .table-title {
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  font-weight: 600;
  text-align: center;
}
.table-section .table-container {
  overflow-x: auto;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}
.table-section .modern-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
  border-radius: 12px;
  overflow: hidden;
}
.table-section .modern-table thead {
  background: linear-gradient(90deg, #fffbe6, #f7f3da);
  color: #011b2f;
}
.table-section .modern-table thead th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
}
.table-section .modern-table tbody tr {
  background: white;
  transition: background 0.3s ease;
}
.table-section .modern-table tbody tr:nth-child(even) {
  background: #f9fafb;
}
.table-section .modern-table tbody tr:hover {
  background: rgba(37, 99, 235, 0.08);
}
.table-section .modern-table tbody th[scope=row],
.table-section .modern-table tbody td {
  padding: 0.9rem 1rem;
  font-size: 0.95rem;
  border-bottom: 1px solid #e5e7eb;
}
.table-section .modern-table tbody th[scope=row] {
  font-weight: 600;
  color: #1f2937;
}
.table-section .modern-table tbody td {
  color: #6b7280;
}

@media (max-width: 600px) {
  .modern-table {
    border: 0;
    min-width: 0;
  }
  .modern-table thead {
    display: none;
  }
  .modern-table tbody tr {
    display: block;
    margin-bottom: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    overflow: hidden;
  }
  .modern-table tbody th[scope=row],
  .modern-table tbody td {
    display: grid;
    grid-template-columns: 40% 60%;
    padding: 0.6rem 0.9rem;
    border: none;
  }
  .modern-table tbody th[scope=row]:not(:last-child),
  .modern-table tbody td:not(:last-child) {
    border-bottom: 1px solid #e5e7eb;
    text-align: left;
  }
  .modern-table tbody th[scope=row]::before,
  .modern-table tbody td::before {
    content: attr(data-label);
    font-weight: 600;
    color: #1f2937;
  }
  .modern-table tbody th[scope=row] {
    grid-template-columns: 100%;
    font-size: 1.1rem;
    background: #eef2ff;
    padding: 0.9rem;
  }
}
.accordion-wrap {
  display: flex;
  justify-content: center;
}

.accordion {
  width: 100%;
  max-width: 800px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.accordion-title {
  text-align: left;
  font-size: 1.4rem;
  font-weight: 600;
  padding: 16px 20px;
  color: #111;
  border-bottom: 1px solid #eee;
}

.accordion-item {
  border-bottom: 1px solid #eee;
}

.accordion-btn {
  width: 100%;
  padding: 16px 20px;
  font-size: 1rem;
  font-weight: 500;
  color: #222;
  background: none;
  border: none;
  text-align: left;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  transition: background 0.3s;
}

.accordion-btn::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 1.3rem;
  transition: transform 0.3s;
}

.accordion-btn[aria-expanded=true] {
  background: #fffbe6;
}

.accordion-btn[aria-expanded=true]::after {
  transform: rotate(45deg);
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: #c0eba6;
}

.accordion-panel p {
  padding: 14px 20px;
  margin: 0;
  color: #444;
  line-height: 1.6;
  font-weight: 500;
  font-size: 0.95rem;
}
.accordion-panel p a {
  color: #011b2f;
  font-weight: 700;
}
.accordion-panel p a:hover {
  color: #00a854;
  text-decoration: none;
}

@media (max-width: 600px) {
  .accordion-title {
    font-size: 1.2rem;
  }
  .accordion-btn {
    font-size: 0.95rem;
    padding: 14px 16px;
  }
  .accordion-panel p {
    padding: 12px 16px;
  }
}
.product-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url("../images/products/Product_banner.webp") center/cover no-repeat;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 60px 6%;
  font-family: "Poppins", sans-serif;
  overflow: hidden;
  transition: background-position 0.1s ease-out;
}
.product-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.8));
  z-index: 1;
}
.product-hero .product-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  animation: fadeInUp 1s ease forwards;
}
.product-hero .product-hero-content .product-hero-title {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #fff;
}
.product-hero .product-hero-content .product-hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.85);
}
.product-hero .product-hero-content .product-hero-btn {
  background: #d2f348;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 500;
  color: #000;
  cursor: pointer;
  transition: 0.3s ease;
}
.product-hero .product-hero-content .product-hero-btn:hover {
  background: rgb(198.2307692308, 239.8615384615, 24.1384615385);
  transform: translateY(-3px);
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 992px) {
  .product-hero {
    padding: 50px 6%;
  }
  .product-hero .product-hero-content .product-hero-title {
    font-size: 2.4rem;
  }
  .product-hero .product-hero-content .product-hero-description {
    font-size: 1rem;
  }
}
@media (max-width: 576px) {
  .product-hero {
    height: 90vh;
    padding: 40px 5%;
    align-items: flex-end;
  }
  .product-hero .product-hero-content .product-hero-title {
    font-size: 1.8rem;
  }
  .product-hero .product-hero-content .product-hero-description {
    font-size: 0.95rem;
  }
  .product-hero .product-hero-content .product-hero-btn {
    font-size: 0.9rem;
    padding: 10px 24px;
  }
}
.products-section {
  padding: 60px 20px;
  background: #f8f8f8;
  font-family: "Poppins", sans-serif;
  /* ----------------------------
     CATEGORY GRID
  ---------------------------- */
  /* ----------------------------
     SEARCH AREA
  ---------------------------- */
  /* ----------------------------
     PRODUCT GRID
  ---------------------------- */
  /* ----------------------------
     ANIMATIONS
  ---------------------------- */
  /* ----------------------------
     RESPONSIVE
  ---------------------------- */
}
.products-section .section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 30px;
}
.products-section .category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
.products-section .category-grid .category-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 15px;
  border: 1px solid rgb(74, 222, 128);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
}
@media (max-width: 768px) {
  .products-section .category-grid .category-card {
    display: block;
    text-align: center;
  }
}
.products-section .category-grid .category-card img {
  width: 60px;
  height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}
.products-section .category-grid .category-card h3 {
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
  color: #333;
}
.products-section .category-grid .category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}
.products-section .category-grid .category-card.active {
  border: 2px solid #ffcc00;
  background: #fffbea;
  box-shadow: 0 0 10px rgba(255, 204, 0, 0.3);
}
.products-section .search-area {
  text-align: center;
  margin-bottom: 40px;
}
.products-section .search-area .search-wrapper {
  position: relative;
  display: inline-block;
  width: 80%;
  max-width: 600px;
}
.products-section .search-area .search-wrapper i {
  position: absolute;
  top: 50%;
  left: 18px;
  transform: translateY(-50%);
  color: #888;
  font-size: 1rem;
}
.products-section .search-area .search-wrapper input {
  width: 100%;
  padding: 12px 20px 12px 45px;
  border-radius: 25px;
  border: 1px solid #ccc;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
}
.products-section .search-area .search-wrapper input:focus {
  border-color: #ffcc00;
  box-shadow: 0 0 5px rgba(255, 204, 0, 0.4);
}
.products-section .product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  transition: all 0.3s ease;
  justify-content: start;
  /* Single item view */
  /* Few items view (2–3) */
}
.products-section .product-grid.single-item {
  grid-template-columns: repeat(1, 260px);
  justify-content: start;
}
.products-section .product-grid.few-items {
  grid-template-columns: repeat(auto-fit, 260px);
  justify-content: start;
  gap: 25px;
}
.products-section .product-grid .product-card {
  background: #fff;
  border-radius: 12px;
  text-align: center;
  padding: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid transparent;
  max-width: 260px;
  min-height: 280px;
}
.products-section .product-grid .product-card img {
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}
.products-section .product-grid .product-card h4 {
  font-size: 1rem;
  margin-top: 10px;
  font-weight: 500;
  color: #333;
}
.products-section .product-grid .product-card:hover {
  transform: translateY(-5px);
  border-color: #ffcc00;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}
.products-section .product-grid .product-card:hover img {
  transform: scale(1.05);
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .products-section .category-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }
  .products-section .category-card img {
    width: 50px;
    height: 50px;
  }
  .products-section .category-card h3 {
    font-size: 0.95rem;
  }
  .products-section .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }
  .products-section .product-grid.single-item, .products-section .product-grid.few-items {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    justify-content: start;
  }
  .products-section .product-grid .product-card {
    max-width: 100%;
    min-height: 250px;
  }
  .products-section .modal-content {
    flex-direction: column;
    max-height: 90vh;
    overflow-y: auto;
  }
  .products-section .modal-left img {
    max-height: 250px;
  }
}

.product-details {
  font-family: "Poppins", sans-serif;
  padding: 100px 80px 60px;
  background: linear-gradient(180deg, #fafff7, #fdfffc);
}
@media (max-width: 768px) {
  .product-details {
    padding: 100px 40px 20px;
  }
}
.product-details .product-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.product-details .product-info .left .product-title {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}
.product-details .product-info .left .variants {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.product-details .product-info .left .variants label {
  line-height: 40px;
  font-weight: 700;
}
.product-details .product-info .left .variants .variant-btn {
  padding: 10px 20px;
  border: 1px solid #ddd;
  border-radius: 30px;
  background: #fff;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.product-details .product-info .left .variants .variant-btn.active, .product-details .product-info .left .variants .variant-btn:hover {
  background: #166434;
  color: #fff;
  box-shadow: 0 4px 10px #166434;
}
.product-details .product-info .right {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.product-details .product-info .right .action-btn {
  padding: 12px 20px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}
.product-details .product-info .right .action-btn.contact {
  background: linear-gradient(90deg, #166434, #166434);
  color: #fff;
}
.product-details .product-info .right .action-btn.contact:hover {
  box-shadow: 0 0 15px rgba(33, 147, 176, 0.6);
  transform: scale(1.05);
}
.product-details .product-info .right .action-btn.enquire {
  background: #c0eba6;
  color: #333;
}
.product-details .product-info .right .action-btn.enquire:hover {
  box-shadow: 0 0 15px rgba(255, 81, 47, 0.6);
  transform: scale(1.05);
}
.product-details .product-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin-bottom: 40px;
}
.product-details .product-gallery .main-image {
  flex: 1 1 60%;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  cursor: zoom-in;
}
.product-details .product-gallery .main-image img {
  width: 100%;
  height: 60vh;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease, transform-origin 0.3s ease;
  will-change: transform, transform-origin;
}
@media (max-width: 1024px) {
  .product-details .product-gallery .main-image img {
    height: 43vh;
  }
}
.product-details .product-gallery .main-image:hover img {
  transition: transform 0.2s ease-in-out;
}
.product-details .product-gallery .thumbnails {
  flex: 1 1 35%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.product-details .product-gallery .thumbnails .thumb {
  width: 100%;
  height: 28vh;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.8;
}
@media (max-width: 580px) {
  .product-details .product-gallery .thumbnails .thumb {
    height: 15vh;
  }
}
@media (max-width: 580px) {
  .product-details .product-gallery .thumbnails .thumb {
    height: 18vh;
  }
}
@media (max-width: 1024px) {
  .product-details .product-gallery .thumbnails .thumb {
    height: 21vh;
  }
}
.product-details .product-gallery .thumbnails .thumb:hover, .product-details .product-gallery .thumbnails .thumb.active {
  opacity: 1;
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.product-details .product-description hr {
  margin: 30px 0;
  border: none;
  border-top: 1px solid #ddd;
}
.product-details .product-description h2 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 15px;
}
.product-details .product-description ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
}
.product-details .product-description ul li {
  background: #fff;
  border: 1px solid #eee;
  padding: 12px 15px;
  border-radius: 10px;
  transition: all 0.3s ease;
  list-style: none;
}
.product-details .product-description ul li:hover {
  background: #fef8e7;
  transform: translateY(-4px);
}
.product-details .product-description .delivery {
  text-align: left;
  color: #333;
  padding: 0px;
  border-radius: 12px;
}
@media (max-width: 768px) {
  .product-details .product-info {
    flex-direction: column;
    align-items: flex-start;
  }
  .product-details .product-info .right {
    flex-direction: row;
    gap: 10px;
    margin-top: 15px;
  }
  .product-details .product-gallery {
    flex-direction: column;
  }
  .product-details .product-gallery .main-image,
  .product-details .product-gallery .thumbnails {
    width: 100%;
  }
  .product-details .product-gallery .main-image img {
    height: 35vh;
  }
  .product-details .product-description ul {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}

.vertical-tabs {
  display: flex;
  background: #f8fbf8;
  font-family: "Poppins", sans-serif;
  min-height: 100vh;
  transition: all 0.3s ease;
}
.vertical-tabs .mobile-dropdown {
  display: none;
  width: 100%;
  border-bottom: 2px solid #c0eba6;
  text-align: center;
  padding: 15px 20px;
}
.vertical-tabs .mobile-dropdown select {
  width: 100%;
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #b0dba6;
  background: #fff;
  font-size: 1rem;
  font-weight: 500;
  color: #166434;
  outline: none;
  transition: 0.3s;
}
.vertical-tabs .mobile-dropdown select:focus {
  border-color: #4caf50;
  box-shadow: 0 0 5px rgba(76, 175, 80, 0.3);
}
.vertical-tabs .tabs-menu {
  flex: 0 0 350px;
  background: #f1f4f9;
  border-right: 2px solid #e0e4e8;
  display: flex;
  flex-direction: column;
  padding: 20px;
  padding-top: 20vh;
  gap: 10px;
}
@media (max-width: 992px) {
  .vertical-tabs .tabs-menu {
    display: none;
  }
}
.vertical-tabs .tabs-menu .tab-btn {
  background: #fff;
  border: none;
  text-align: left;
  padding: 15px 18px;
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.vertical-tabs .tabs-menu .tab-btn .arrow {
  font-size: 1.2rem;
  color: #555;
  transition: transform 0.3s ease, color 0.3s ease;
}
.vertical-tabs .tabs-menu .tab-btn:hover {
  background: #e8f0fe;
}
.vertical-tabs .tabs-menu .tab-btn:hover .arrow {
  transform: translateX(5px);
  color: #2e7d32;
}
.vertical-tabs .tabs-menu .tab-btn.active {
  background: #c0eba6;
  color: #003366;
  border-left: 4px solid #4caf50;
}
.vertical-tabs .tabs-menu .tab-btn.active .arrow {
  transform: translateX(8px);
  color: #166434;
}
.vertical-tabs .tab-content-area {
  flex: 1;
  padding: 40px;
  padding-top: 20vh;
}
.vertical-tabs .tab-content-area .tab-content {
  display: none;
  animation: fadeIn 0.4s ease-in-out;
}
.vertical-tabs .tab-content-area .tab-content.active {
  display: block;
}
.vertical-tabs .tab-content-area .tab-content img {
  width: 100%;
  height: 380px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}
.vertical-tabs .tab-content-area .tab-content h2 {
  font-size: 1.8rem;
  color: #166434;
  margin-bottom: 15px;
  text-align: left;
}
.vertical-tabs .tab-content-area .tab-content h3 {
  font-size: 1.1rem;
  color: #0a3d62;
  margin-bottom: 15px;
  text-align: left;
}
.vertical-tabs .tab-content-area .tab-content p {
  color: #444;
  line-height: 1.7;
  max-width: 800px;
  font-size: 1rem;
  text-align: left;
  margin-bottom: 15px;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 992px) {
  .vertical-tabs {
    flex-direction: column;
  }
  .vertical-tabs .mobile-dropdown {
    display: block;
    margin-top: 15vh;
  }
  .vertical-tabs .tab-content-area {
    padding: 20px;
  }
  .vertical-tabs .tab-content-area .tab-content img {
    height: 300px;
  }
}
@media (max-width: 600px) {
  .vertical-tabs .tab-content-area {
    padding: 15px;
  }
  .vertical-tabs .tab-content-area .tab-content img {
    height: 220px;
  }
  .vertical-tabs .tab-content-area h2 {
    font-size: 1.4rem;
  }
  .vertical-tabs .tab-content-area p {
    font-size: 0.95rem;
  }
}

/* authorized-dealers page scss starts here*/
.authorized-dealers {
  background: #fafff7;
  padding: 110px 20px;
  font-family: "Poppins", sans-serif;
  text-align: center;
}
.authorized-dealers .container {
  max-width: 1200px;
  margin: 0 auto;
}
.authorized-dealers h2 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 35px;
  color: #1a1a1a;
  letter-spacing: 0.5px;
}
.authorized-dealers .section-title {
  font-family: "Poppins", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
  background: linear-gradient(90deg, #0a3d62 0%, #76b852 50%, #8dc26f 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  transition: all 0.4s ease;
}
.authorized-dealers .section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, #0a3d62, #8dc26f);
  transition: width 0.4s ease;
}
.authorized-dealers .section-title:hover::after {
  width: 130px;
}
@media (max-width: 768px) {
  .authorized-dealers .section-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
  .authorized-dealers .section-title::after {
    width: 60px;
  }
}
.authorized-dealers .dropdown-wrapper {
  margin-bottom: 50px;
  display: flex;
  justify-content: center;
  position: relative;
}
.authorized-dealers .dropdown-wrapper select {
  width: 320px;
  padding: 14px 20px;
  border-radius: 50px;
  border: none;
  background: linear-gradient(145deg, #ffffff, #e3f0dc);
  box-shadow: 6px 6px 12px #d2decf, -6px -6px 12px #ffffff;
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  outline: none;
  transition: all 0.3s ease;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' fill='%23007a3d' viewBox='0 0 24 24'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 18px;
}
.authorized-dealers .dropdown-wrapper select:hover {
  box-shadow: 3px 3px 6px #cfdac7, -3px -3px 6px #ffffff;
}
.authorized-dealers .dropdown-wrapper select:focus {
  box-shadow: inset 3px 3px 8px #d4e0cf, inset -3px -3px 8px #ffffff;
  color: #007a3d;
  font-weight: 600;
}
.authorized-dealers .dropdown-wrapper select option {
  background: #fff;
  color: #333;
}
.authorized-dealers .dealers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.authorized-dealers .dealer-card {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 360px;
}
.authorized-dealers .dealer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  background: rgb(22, 100, 52);
}
.authorized-dealers .dealer-card:hover p,
.authorized-dealers .dealer-card:hover h3 {
  color: rgb(255, 255, 255);
}
.authorized-dealers .dealer-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #045d2b;
}
.authorized-dealers .dealer-card p {
  font-size: 0.95rem;
  color: #001d0c;
  margin-bottom: 12px;
}
.authorized-dealers .dealer-card a {
  display: inline-block;
  color: rgb(148, 148, 148);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.authorized-dealers .dealer-card a i {
  margin-right: 8px;
  color: #f44336;
}
.authorized-dealers .dealer-card a:hover {
  color: #ffffff;
}
@media (max-width: 768px) {
  .authorized-dealers h2 {
    font-size: 1.8rem;
  }
  .authorized-dealers .dropdown-wrapper select {
    width: 260px;
    font-size: 0.95rem;
  }
}

/* authorized-dealers page scss end here*/
.kamco-login-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Poppins", sans-serif;
  overflow: hidden;
}
.kamco-login-section .bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
  animation: slowPan 25s linear infinite alternate;
}
.kamco-login-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.4), rgba(255, 0, 0, 0.2));
  z-index: 1;
  animation: moveOverlay 10s linear infinite alternate;
}
.kamco-login-section .login-content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  padding: 20px;
}
.kamco-login-section .login-content .welcome {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.kamco-login-section .login-content .welcome span {
  color: #00ff73;
}
.kamco-login-section .login-content .login-box {
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 35px 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}
.kamco-login-section .login-content .login-box h2 {
  color: #00ff73;
  margin-bottom: 15px;
}
.kamco-login-section .login-content .login-box .user-type {
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
  gap: 10px;
}
.kamco-login-section .login-content .login-box .user-type label {
  border: 1px solid rgb(8, 246, 113);
  border-radius: 8px;
  padding: 6px 12px;
  cursor: pointer;
  transition: 0.3s;
}
.kamco-login-section .login-content .login-box .user-type label input {
  display: none;
}
.kamco-login-section .login-content .login-box .user-type label:hover span {
  color: #00ff73;
}
.kamco-login-section .login-content .login-box .user-type label input:checked + span {
  color: #00ff73;
  font-weight: 600;
}
.kamco-login-section .login-content .login-box .input-group {
  position: relative;
  margin-bottom: 20px;
}
.kamco-login-section .login-content .login-box .input-group input {
  width: 100%;
  padding: 12px 10px;
  border: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  color: white;
  outline: none;
  font-size: 1rem;
  transition: 0.3s;
}
.kamco-login-section .login-content .login-box .input-group label {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.6);
  transition: 0.3s;
}
.kamco-login-section .login-content .login-box .input-group input:focus + label,
.kamco-login-section .login-content .login-box .input-group input:valid + label {
  top: -7px;
  font-size: 0.8rem;
  color: #00ff73;
}
.kamco-login-section .login-content .login-box .password-group .toggle-eye {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.kamco-login-section .login-content .login-box .btn-group {
  display: flex;
  justify-content: space-between;
}
.kamco-login-section .login-content .login-box .btn-group .btn {
  flex: 1;
  margin: 0 5px;
  padding: 10px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: 0.3s;
}
.kamco-login-section .login-content .login-box .btn-group .reset-btn {
  background: rgba(255, 255, 255, 0.3);
}
.kamco-login-section .login-content .login-box .btn-group .login-btn {
  background: linear-gradient(90deg, #007d2f, #00a13b);
}
.kamco-login-section .login-content .login-box .btn-group .login-btn:hover {
  box-shadow: 0 0 10px rgba(0, 255, 115, 0.6);
}
.kamco-login-section .login-content .login-box .links {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
}
.kamco-login-section .login-content .login-box .links a {
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  transition: 0.3s;
}
.kamco-login-section .login-content .login-box .links a:hover {
  color: #00ff73;
  font-weight: 600;
}
.kamco-login-section .popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99;
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
}
.kamco-login-section .popup.active {
  display: flex;
  animation: fadeIn 0.4s ease forwards;
}
.kamco-login-section .popup .popup-content {
  background: #fff;
  color: #333;
  border-radius: 12px;
  padding: 25px 35px;
  max-width: 750px;
  max-height: 600px;
  overflow: auto;
  width: 90%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  position: relative;
  animation: scaleIn 0.4s ease forwards;
}
.kamco-login-section .popup .popup-content .close-btn {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 1.8rem;
  cursor: pointer;
  color: #666;
}
.kamco-login-section .popup .popup-content .close-btn:hover {
  color: #007d2f;
}
.kamco-login-section .popup .popup-content h2 {
  color: #007d2f;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 600;
}
.kamco-login-section .popup .popup-content .popup-form {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 20px 25px;
}
.kamco-login-section .popup .popup-content .popup-form.active {
  display: grid;
}
@media (max-width: 780px) {
  .kamco-login-section .popup .popup-content .popup-form.active {
    display: block;
  }
}
.kamco-login-section .popup .popup-content .popup-form .form-group {
  position: relative;
}
@media (max-width: 780px) {
  .kamco-login-section .popup .popup-content .popup-form .form-group {
    margin-top: 13px;
  }
}
.kamco-login-section .popup .popup-content .popup-form .form-group input,
.kamco-login-section .popup .popup-content .popup-form .form-group textarea {
  width: 100%;
  padding: 12px 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  outline: none;
  color: #333;
}
.kamco-login-section .popup .popup-content .popup-form .form-group label {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #fff;
  color: #777;
  font-size: 0.9rem;
  transition: 0.3s;
  padding: 0 5px;
}
.kamco-login-section .popup .popup-content .popup-form .form-group input:focus + label,
.kamco-login-section .popup .popup-content .popup-form .form-group input:valid + label,
.kamco-login-section .popup .popup-content .popup-form .form-group textarea:focus + label,
.kamco-login-section .popup .popup-content .popup-form .form-group textarea:valid + label {
  top: -7px;
  left: 10px;
  font-size: 0.75rem;
  color: #007d2f;
}
.kamco-login-section .popup .popup-content .popup-form .form-group.full {
  grid-column: 1/span 2;
}
.kamco-login-section .popup .popup-content .popup-form .popup-btns {
  grid-column: 1/span 2;
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}
.kamco-login-section .popup .popup-content .popup-form .popup-btns button {
  flex: 1;
  margin: 0 5px;
  padding: 10px;
  border: none;
  border-radius: 6px;
  color: #fff;
  cursor: pointer;
}
.kamco-login-section .popup .popup-content .popup-form .popup-btns button[type=reset] {
  background: #9e9e9e;
}
.kamco-login-section .popup .popup-content .popup-form .popup-btns button[type=submit] {
  background: #007d2f;
}
.kamco-login-section .popup .popup-content .popup-form .popup-btns button[type=submit]:hover {
  background: #00b84a;
  box-shadow: 0 0 10px rgba(0, 255, 115, 0.6);
}
@media (max-width: 600px) {
  .kamco-login-section .popup .popup-content .popup-form {
    grid-template-columns: 1fr;
  }
}
@keyframes moveOverlay {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(20px, -20px);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes scaleIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes slowPan {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.1) translate(-20px, -20px);
  }
}
.kamco-login-section .captcha-container {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}
.kamco-login-section .captcha-container canvas {
  border: 1px solid #ccc;
  border-radius: 6px;
  background: #f5f5f5;
}
.kamco-login-section .captcha-container .refresh-btn {
  background: none;
  border: none;
  color: #007d2f;
  font-size: 18px;
  cursor: pointer;
  transition: transform 0.3s;
}
.kamco-login-section .captcha-container .refresh-btn:hover {
  transform: rotate(180deg);
}
.kamco-login-section .captcha-container input {
  flex: 1;
  padding: 8px;
  border-radius: 6px;
  border: 1px solid #ccc;
  outline: none;
  font-size: 0.9rem;
}

.media-section {
  font-family: "Poppins", sans-serif;
  text-align: center;
  color: #fff;
  background: #fafff7;
  padding: 110px 60px 20px;
  /* Tabs */
  /* Gallery Grid */
  /* Pagination */
}
.media-section .section-title {
  font-family: "Poppins", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
  background: linear-gradient(90deg, #0a3d62 0%, #76b852 50%, #8dc26f 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.4s ease;
}
.media-section .section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, #0a3d62, #8dc26f);
  transition: width 0.4s ease;
}
.media-section .section-title:hover::after {
  width: 130px;
}
@media (max-width: 768px) {
  .media-section .section-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
  .media-section .section-title::after {
    width: 60px;
  }
}
.media-section .media-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
}
.media-section .media-tabs .tab-btn {
  background: rgba(255, 255, 255, 0);
  border: none;
  padding: 10px 25px;
  font-size: 1.3rem;
  border-bottom: 1px solid rgb(175, 175, 175);
  color: #000000;
  cursor: pointer;
  font-weight: 500;
  transition: 0.3s ease;
}
.media-section .media-tabs .tab-btn.active {
  background: linear-gradient(90deg, #f4fff8, #e7ffd9);
  border-bottom: 3px solid rgb(0, 0, 0);
  color: #000000;
  font-weight: 600;
}
.media-section .media-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
  margin-bottom: 25px;
}
.media-section .media-gallery .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s ease;
  /* 🌈 Colorful Overlay */
  /* 📸 Vibrant Gradient Icon */
}
.media-section .media-gallery .gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease;
  border-radius: inherit;
}
.media-section .media-gallery .gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 255, 179, 0.45), rgba(0, 128, 255, 0.45), rgba(141, 194, 111, 0.45));
  opacity: 0;
  transition: opacity 0.6s ease;
  border-radius: inherit;
}
.media-section .media-gallery .gallery-item:hover::before {
  opacity: 1;
}
.media-section .media-gallery .gallery-item:hover img {
  transform: scale(1.12);
  filter: brightness(0.45);
}
.media-section .media-gallery .gallery-item::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  transform: translate(-50%, -50%) scale(0.3);
  opacity: 0;
  transition: all 0.5s ease;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3ClinearGradient id='gradCam' x1='0%25' y1='0%25' x2='100%25' y2='100%25'%3E%3Cstop offset='0%25' stop-color='%23ff7eb3'/%3E%3Cstop offset='100%25' stop-color='%2385ffbd'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M4 7a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2h-2.172a2 2 0 0 1-1.414-.586L14.586 5H9.414L7.586 6.414A2 2 0 0 1 6.172 7H4zm8 3a4 4 0 1 1 0 8 4 4 0 0 1 0-8z' fill='url(%23gradCam)'/%3E%3Ccircle cx='16.5' cy='8.5' r='1.5' fill='%23fff'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.7));
  pointer-events: none;
}
.media-section .media-gallery .gallery-item:hover::after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  filter: drop-shadow(0 0 15px rgba(0, 255, 200, 0.8));
}
.media-section .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  color: #166434;
}
.media-section .pagination .page-btn {
  background: #166434;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  padding: 8px 15px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s ease;
}
.media-section .pagination .page-btn:hover {
  background: #00ffb3;
  color: #000;
}
.media-section .pagination .page-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.media-section .lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1001;
}
.media-section .lightbox img {
  max-width: 80%;
  max-height: 80%;
  border-radius: 10px;
  box-shadow: 0 0 20px #4caf50;
  transition: opacity 0.4s ease;
}
.media-section .lightbox .close-lightbox {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 2.5rem;
  color: #fff;
  cursor: pointer;
  transition: 0.3s ease;
}
.media-section .lightbox .close-lightbox:hover {
  color: #00ffb3;
}
.media-section .lightbox .nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s ease;
}
.media-section .lightbox .nav-btn:hover {
  background: #76b852;
  color: #fff;
}
.media-section .lightbox .prev {
  left: 40px;
}
.media-section .lightbox .next {
  right: 40px;
}
@media (max-width: 768px) {
  .media-section .section-title {
    font-size: 1.6rem;
  }
  .media-section .media-gallery {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }
  .media-section .lightbox img {
    max-width: 90%;
    max-height: 70%;
  }
  .media-section .nav-btn {
    font-size: 1.5rem;
    padding: 8px 12px;
  }
}

.tender-section {
  padding: 100px 60px 60px;
  background: #fff;
  font-family: "Poppins", sans-serif;
  color: #333;
}
.tender-section .container {
  max-width: 1200px;
  margin: 0 auto;
}
.tender-section .section-title {
  font-family: "Poppins", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 50px;
  position: relative;
  display: block;
  background: linear-gradient(90deg, #0a3d62 0%, #76b852 50%, #8dc26f 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  transition: all 0.4s ease;
}
.tender-section .section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, #0a3d62, #8dc26f);
  transition: width 0.4s ease;
}
.tender-section .section-title:hover::after {
  width: 130px;
}
@media (max-width: 768px) {
  .tender-section .section-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
  .tender-section .section-title::after {
    width: 60px;
  }
}
.tender-section .table-wrapper {
  overflow-x: auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}
.tender-section .tender-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
  background: #fff;
  text-align: center;
}
.tender-section .tender-table th,
.tender-section .tender-table td {
  padding: 18px 20px;
  border-bottom: 1px solid #eee;
  border-right: 1px solid #eee;
  vertical-align: middle;
}
.tender-section .tender-table th {
  background: #f9f9f9;
  font-weight: 600;
  text-transform: uppercase;
  color: #00a651;
  font-size: 14px;
  white-space: nowrap;
}
.tender-section .tender-table td {
  font-size: 14px;
  line-height: 1.5;
  color: #333;
}
.tender-section .tender-table td:first-child {
  color: #00a651;
  font-weight: 900;
}
.tender-section .tender-table td a {
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}
.tender-section .tender-table td a:hover {
  color: #0056b3;
  text-decoration: underline;
}
.tender-section .tender-table tr:hover {
  background-color: #f6fff8;
  transition: 0.3s ease;
}
@media (max-width: 768px) {
  .tender-section .page-title {
    font-size: 22px;
  }
  .tender-section .tender-table th,
  .tender-section .tender-table td {
    padding: 14px 10px;
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  .tender-section .tender-table {
    min-width: 100%;
  }
  .tender-section .tender-table th,
  .tender-section .tender-table td {
    padding: 10px;
    font-size: 12px;
  }
}

.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(90deg, #fafff7 50%, #e5ffe5 100%);
  color: white;
  padding: 12px 50px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  flex-wrap: nowrap;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .top-bar {
    padding: 12px 30px;
  }
}
.top-bar .logo img {
  height: 45px;
  transition: 0.3s;
}
@media (max-width: 480px) {
  .top-bar .logo img {
    height: 28px;
  }
}
.top-bar .user-info {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  text-align: right;
}
.top-bar .user-info span {
  color: #2e7d32;
  white-space: nowrap;
}
.top-bar .user-info b {
  color: #166434;
}
.top-bar .user-info .user-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #166434;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  cursor: pointer;
}
.top-bar .user-info .user-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-bar .user-info .user-avatar:hover {
  transform: scale(1.1);
  box-shadow: 0 0 10px rgba(22, 100, 52, 0.4);
}
@media (max-width: 768px) {
  .top-bar .user-info {
    font-size: 13px;
    width: 100%;
    justify-content: flex-end;
    gap: 8px;
    padding-left: 1.2rem;
  }
  .top-bar .user-info .user-avatar {
    width: 35px;
    height: 35px;
  }
}

.nav-bar {
  position: fixed;
  top: 75px;
  left: 0;
  width: 100%;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(90deg, #166434, #4caf50);
  color: white;
  padding: 10px 50px;
  flex-wrap: nowrap;
  gap: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .nav-bar {
    top: 77px;
  }
}
@media (max-width: 480px) {
  .nav-bar {
    top: 60px;
  }
}
.nav-bar a,
.nav-bar select {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.nav-bar a {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-bar a i {
  font-size: 16px;
}
.nav-bar a:hover {
  color: #ffda44;
  transform: translateY(-2px);
}
.nav-bar a h5 {
  margin: 0;
  font-size: 15px;
}
@media (max-width: 480px) {
  .nav-bar a h5 {
    font-size: 13px;
  }
}
.nav-bar .menu-dropdown {
  background: rgba(255, 255, 255, 0.9);
  color: #166434;
  border-radius: 8px;
  border: none;
  max-width: 30rem;
  width: 100%;
  padding: 8px 12px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.nav-bar .menu-dropdown:hover, .nav-bar .menu-dropdown:focus {
  background: #e8ffe8;
  transform: scale(1.05);
  outline: none;
  box-shadow: 0 0 10px rgba(22, 100, 52, 0.4);
}
.nav-bar .menu-dropdown option {
  background: #fff;
  color: #166434;
  font-weight: 500;
}
@media (max-width: 480px) {
  .nav-bar .menu-dropdown {
    padding: 6px 8px;
    font-size: 13px;
  }
}
.nav-bar .logout-link {
  white-space: nowrap;
  justify-content: end;
}
@media (max-width: 768px) {
  .nav-bar {
    justify-content: space-around;
    padding: 8px 30px;
    gap: 65px;
  }
}
@media (max-width: 480px) {
  .nav-bar h5 {
    display: none;
  }
}

.links-section {
  background: rgb(238, 238, 238);
  text-align: left;
  padding: 15px 50px;
  font-weight: 500;
  margin-top: 128px;
}
@media (max-width: 480px) {
  .links-section {
    margin-top: 105px;
  }
}
.links-section a {
  color: #159334;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 4px;
  transition: 0.3s;
}
.links-section a.link-active {
  background: #159334;
  color: white;
}
.links-section a:hover {
  background: #8dc26f;
  color: white;
}
@media (max-width: 480px) {
  .links-section a {
    font-size: 12px;
  }
}

.content {
  flex: 1;
  padding: 25px 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.content h2 {
  text-align: center;
  color: #166434;
  text-transform: uppercase;
  margin-bottom: 25px;
  font-size: 22px;
}
.content .index-form {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.content .index-form .form-group {
  display: flex;
  flex-direction: column;
  position: relative;
}
.content .index-form .form-group label {
  font-weight: 600;
  color: #166434;
  margin-bottom: 6px;
}
.content .index-form .form-group input,
.content .index-form .form-group select,
.content .index-form .form-group textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  transition: all 0.3s;
  width: 100%;
}
.content .index-form .form-group input:focus,
.content .index-form .form-group select:focus,
.content .index-form .form-group textarea:focus {
  outline: none;
  border-color: #0073e6;
  box-shadow: 0 0 6px #166434;
}
.content .index-form .form-group textarea {
  resize: none;
  height: 80px;
}
.content .index-form .form-group.full-width {
  grid-column: 1/-1;
}
.content .index-form .date-picker-container {
  position: relative;
}
.content .index-form .date-picker-container .calendar-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #166434;
  cursor: pointer;
}
.content .index-form .date-picker-container #calendarPopup {
  position: absolute;
  top: 45px;
  right: 0;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  padding: 10px;
  display: none;
  z-index: 20;
  animation: fadeIn 0.2s ease-in-out;
}
.content .index-form .date-picker-container #calendarPopup .calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #166434;
  font-weight: 600;
  margin-bottom: 10px;
}
.content .index-form .date-picker-container #calendarPopup .calendar-header button {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #166434;
}
.content .index-form .date-picker-container #calendarPopup .calendar-header button:hover {
  color: #0b5526;
}
.content .index-form .date-picker-container #calendarPopup .calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}
.content .index-form .date-picker-container #calendarPopup .calendar-grid div {
  text-align: center;
  padding: 6px 0;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.2s;
  font-size: 14px;
}
.content .index-form .date-picker-container #calendarPopup .calendar-grid div.day-header {
  font-weight: 600;
  color: #166434;
}
.content .index-form .date-picker-container #calendarPopup .calendar-grid div:hover {
  background: #e6f2ff;
}
.content .index-form .date-picker-container #calendarPopup .calendar-grid div.active {
  background: #166434;
  color: white;
}
.content .index-form .date-picker-container .calendar-popup {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: none;
  z-index: 10;
  width: 280px;
  animation: fadeIn 0.3s ease;
}
.content .index-form .date-picker-container .calendar-popup .calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 16px;
  color: #166434;
}
.content .index-form .date-picker-container .calendar-popup .calendar-header button {
  background: none;
  border: none;
  color: #166434;
  font-size: 20px;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.content .index-form .date-picker-container .calendar-popup .calendar-header button:hover {
  transform: scale(1.2);
}
.content .index-form .date-picker-container .calendar-popup .calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
  text-align: center;
}
.content .index-form .date-picker-container .calendar-popup .calendar-grid div {
  padding: 8px 0;
  border-radius: 6px;
  transition: all 0.2s ease;
}
.content .index-form .date-picker-container .calendar-popup .calendar-grid .day-header {
  font-weight: 600;
  color: #333;
  background: #e8f5e9;
}
.content .index-form .date-picker-container .calendar-popup .calendar-grid .active {
  background: #166434;
  color: white;
  font-weight: 600;
  border-radius: 50%;
}
.content .index-form .date-picker-container .calendar-popup .calendar-grid div:not(.day-header):hover {
  background: #c8e6c9;
  cursor: pointer;
}
.content .index-form .date-picker-container .calendar-popup .calendar-grid .empty-cell {
  background: transparent;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.content .index-form .form-buttons {
  grid-column: 1/-1;
  text-align: center;
  margin-top: 15px;
}
.content .index-form .form-buttons .btn {
  padding: 10px 20px;
  border-radius: 6px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0 8px;
}
.content .index-form .form-buttons .btn.submit {
  background: #4caf50;
  color: white;
}
.content .index-form .form-buttons .btn.submit:hover {
  background: #166434;
}
.content .index-form .form-buttons .btn.reset {
  background: #ccc;
}
.content .index-form .form-buttons .btn.reset:hover {
  background: #aaa;
}
@media (max-width: 768px) {
  .content {
    padding: 20px;
  }
  .content h2 {
    font-size: 18px;
  }
}

.footer {
  background: #8dc26f;
  color: white;
  padding: 12px 50px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 14px;
}
.footer a {
  color: #166434;
  text-decoration: none;
  margin: 0 4px;
}
.footer a:hover {
  text-decoration: underline;
}
.footer b {
  color: #166434;
}
@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    text-align: center;
    padding: 15px;
    gap: 6px;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}/*# sourceMappingURL=style.css.map */