/********** Template CSS **********/

:root {
  --primary: #7ab730;
  --secondary: #ffd33c;
  --light: #f3f3f3;
  --dark: #212121;
}

[class^="flaticon-"]:before,
[class*=" flaticon-"]:before,
[class^="flaticon-"]:after,
[class*=" flaticon-"]:after {
  font-size: inherit;
  margin-left: 0;
}

.btn {
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  transition: 0.5s;
}

.btn-primary {
  color: #ffffff;
}

.btn-square {
  width: 36px;
  height: 36px;
}

.btn-sm-square {
  width: 28px;
  height: 28px;
}

.btn-lg-square {
  width: 46px;
  height: 46px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 0;
  border-radius: 0;
  z-index: 99;
}

.navbar-light .navbar-nav .nav-link {
  font-family: "Roboto", sans-serif;
  position: relative;
  margin-left: 25px;
  padding: 26px 0;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--dark);
  outline: none;
  transition: 0.5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
  padding: 20px 0;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--primary);
}

.slider-bg {
  height: 600px;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  /* padding: 100px; */
  /* background-position: center; */
}

.carousel-overlay {
  height: 100%;
  width: 100%;
  /*background: rgba(0, 0, 0, 0.35);*/
  /* Slight dark overlay */
  /* display: flex; */
  /* align-items: center; */
  /* justify-content: center; */
}

.content-box {
  background: rgba(255, 255, 255, 0.85);
  padding: 30px 40px;
  border-radius: 10px;
  max-width: 600px;
  text-align: center;
}

@media (min-width: 992px) {
  .navbar-light .navbar-nav .nav-link::before {
    position: absolute;
    content: "";
    width: 0;
    height: 7px;
    top: -4px;
    left: 50%;
    background: var(--primary);
    transition: 0.5s;
  }

  .navbar-light .navbar-nav .nav-link:hover::before,
  .navbar-light .navbar-nav .nav-link.active::before {
    width: 100%;
    left: 0;
  }

  .navbar-light .navbar-nav .nav-link.nav-contact::before {
    width: 100%;
    height: 1px;
    top: -1px;
    left: 0;
  }
}

@media (max-width: 991.98px) {
  .navbar-light .navbar-nav .nav-link {
    margin-left: 0;
    padding: 10px 0;
  }
}

/*  MEGA MENU */
/* Mega dropdown position fix */
.mega-dropdown {
  position: static !important;
}

/* Mega menu box (exact width + centered) */
.mega-menu {
  width: 85%;
  /* <-- EXACT WIDTH */
  margin: 0 auto;
  /* <-- CENTER ALIGN */
  left: 0;
  right: 0;
  top: 100%;
  padding: 25px 40px;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.15);
}

/* Fix hover */
.mega-dropdown:hover .mega-menu {
  display: block;
}

/* Inner columns */
.mega-menu .col-lg-3 {
  padding-bottom: 10px;
}

/* Category heading */
.mega-menu h6 {
  font-weight: 600;
  color: #2d9c3c;
  /* green heading */
}

/* Items */
.mega-menu .dropdown-item {
  padding: 6px 0;
  color: #444;
  font-size: 15px;
}

.mega-menu .dropdown-item:hover {
  background: transparent;
  color: #000;
  font-weight: 500;
}

/* --- RESPONSIVE FIXES FOR MEGA MENU --- */

/* Tablet (≤ 991px) → 2 columns */
@media (max-width: 991px) {
  .mega-menu {
    width: 95%;
    padding: 20px;
  }

  .mega-menu .col-lg-3 {
    width: 50%;
    float: left;
    margin-bottom: 15px;
  }
}

/* Mobile (≤ 767px) → single column dropdown */
@media (max-width: 767px) {
  .mega-menu {
    width: 100%;
    padding: 15px;
    box-shadow: none;
  }

  .mega-menu .col-lg-3 {
    width: 100%;
    float: none;
  }

  .mega-dropdown {
    position: relative !important;
  }

  .mega-dropdown .dropdown-menu {
    position: static !important;
    transform: none !important;
  }
}

.hero-header {
  background: url(../img/banner.png) top right no-repeat;
  background-size: cover;
  height: 550px;
}

.btn-play {
  position: relative;
  display: block;
  box-sizing: content-box;
  width: 16px;
  height: 26px;
  border-radius: 100%;
  border: none;
  outline: none !important;
  padding: 18px 20px 20px 28px;
  background: #ffffff;
}

.btn-play:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 60px;
  height: 60px;
  background: #ffffff;
  border-radius: 100%;
  animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 60px;
  height: 60px;
  background: #ffffff;
  border-radius: 100%;
  transition: all 200ms;
}

.btn-play span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  left: -1px;
  border-left: 16px solid var(--primary);
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
    opacity: 0;
  }
}

#videoModal .modal-dialog {
  position: relative;
  max-width: 800px;
  margin: 60px auto 0 auto;
}

#videoModal .modal-body {
  position: relative;
  padding: 0px;
}

#videoModal .close {
  position: absolute;
  width: 30px;
  height: 30px;
  right: 0px;
  top: -30px;
  z-index: 999;
  font-size: 30px;
  font-weight: normal;
  color: #ffffff;
  background: #000000;
  opacity: 1;
}

.service-item a i {
  position: relative;
  padding-left: 20px;
  transition: 0.3s;
}

.service-item a:hover i {
  padding-left: 50px;
}

.service-item a i::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 2px;
  top: 50%;
  left: 10px;
  margin-top: -1px;
  background: var(--primary);
  transition: 0.3s;
}

.service-item a:hover i::after {
  width: 50px;
}

.product-item {
  padding: 10px;
}

.product-item .btn-action {
  position: absolute;
  width: 100%;
  bottom: -40px;
  left: 0;
  opacity: 0;
  transition: 0.5s;
}

.product-item:hover .btn-action {
  bottom: -20px;
  opacity: 1;
}

.product-carousel .owl-nav {
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
}

.product-carousel .owl-nav .owl-prev,
.product-carousel .owl-nav .owl-next {
  position: relative;
  margin: 0 5px;
  width: 55px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--primary);
  font-size: 22px;
  transition: 0.5s;
}

.product-carousel .owl-nav .owl-prev:hover,
.product-carousel .owl-nav .owl-next:hover {
  color: var(--dark);
}

.bg-offer {
  background: url(../img/home/home-img.png) top right no-repeat;
  background-size: cover;
}

.price-carousel::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 50%;
  bottom: 0;
  left: 0;
  background: var(--primary);
  border-radius: 8px 8px 50% 50%;
  z-index: -1;
}

.price-carousel .owl-nav {
  margin-top: 35px;
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
}

.price-carousel .owl-nav .owl-prev,
.price-carousel .owl-nav .owl-next {
  position: relative;
  margin: 0 5px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: #ffffff;
  font-size: 22px;
  border-radius: 45px;
  transition: 0.5s;
}

.price-carousel .owl-nav .owl-prev:hover,
.price-carousel .owl-nav .owl-next:hover {
  color: var(--dark);
}

.team-carousel .owl-nav {
  position: absolute;
  width: 50px;
  height: 160px;
  top: calc(50% - 80px);
  right: 0;
  z-index: 1;
}

.team-carousel .owl-nav .owl-prev,
.team-carousel .owl-nav .owl-next {
  position: relative;
  width: 50px;
  height: 50px;
  margin: 15px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--primary);
  font-size: 22px;
  transition: 0.5s;
}

.team-carousel .owl-nav .owl-prev:hover,
.team-carousel .owl-nav .owl-next:hover {
  color: var(--dark);
}

.team-item img {
  transition: 0.5s;
}

.team-item:hover img {
  transform: scale(1.2);
}

.team-item .team-overlay {
  position: absolute;
  top: 45px;
  right: 45px;
  bottom: 45px;
  left: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(122, 183, 48, 0.8);
  transition: 0.5s;
  opacity: 0;
}

.team-item:hover .team-overlay {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 1;
}

.bg-testimonial {
  background: url(../img/home/home-img1.png) top left no-repeat;
  background-size: cover;
}

.testimonial-carousel .owl-nav {
  position: absolute;
  width: 100%;
  height: 46px;
  top: calc(50% - 23px);
  left: 0;
  display: flex;
  justify-content: space-between;
  z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  position: relative;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--primary);
  font-size: 22px;
  transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  color: var(--dark);
}

.testimonial-carousel .owl-item img {
  width: 100px;
  height: 100px;
}

@media (min-width: 576px) {
  .blog-item .row {
    height: 300px;
  }
}

.blog-item a i {
  position: relative;
  padding-left: 20px;
  transition: 0.3s;
}

.blog-item a:hover i {
  padding-left: 50px;
}

.blog-item a i::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 2px;
  top: 50%;
  left: 10px;
  margin-top: -1px;
  background: var(--primary);
  transition: 0.3s;
}

.blog-item a:hover i::after {
  width: 50px;
}

.types-of-boxes {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 60px 0;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.section-title {
  font-size: 2.2rem;
  color: #2c3e50;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, #3498db, #2c3e50);
  border-radius: 2px;
}

.boxes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 42px;
}

.box-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.box-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.box-image {
  height: 280px;
  overflow: hidden;
}

.box-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.box-card:hover .box-image img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
  }
}

.btn-custom {
  display: inline-block;
  background: linear-gradient(135deg, #009b54, #009b54);
  color: #fff !important;
  padding: 12px 35px;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.btn-custom:hover {
  background: linear-gradient(135deg, #009b54, #009b54);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 123, 255, 0.45);
}

/* Additional Styles for About Us Page */

/* Features Section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background-color: white;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(26, 82, 118, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary);
  font-size: 28px;
}

.feature-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--dark);
}

.feature-card p {
  color: var(--gray);
}

/* Leadership Section */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.leader-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.leader-card:hover {
  transform: translateY(-10px);
}

.leader-image {
  height: 250px;
  overflow: hidden;
}

.leader-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.leader-card:hover .leader-image img {
  transform: scale(1.1);
}

.leader-info {
  padding: 25px;
  text-align: center;
}

.leader-info h3 {
  font-size: 22px;
  margin-bottom: 5px;
  color: var(--dark);
}

.leader-info p {
  font-weight: 600;
  margin-bottom: 15px;
}

.leader-info .description {
  font-size: 14px;
}

/* Offerings Section */
.offerings-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.offering-category {
  background-color: white;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.offering-category h3 {
  color: var(--primary);
  margin-bottom: 20px;
  font-size: 22px;
}

.offering-list {
  list-style-type: none;
}

.offering-list li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.offering-list li:before {
  content: "•";
  color: var(--secondary);
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Clients Section */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
}

.client-logo {
  background-color: white;
  border-radius: 8px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.client-logo:hover {
  transform: translateY(-5px);
}

.client-logo span {
  font-weight: 600;
  color: var(--dark);
}

/* Quality Section */
.quality-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.quality-feature {
  background-color: white;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.quality-feature i {
  color: var(--primary);
  font-size: 24px;
  margin-bottom: 15px;
}

/* Sectors Section */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 40px;
  text-align: center;
  justify-content: center;
}

.sector-item {
  background: #fff;
  padding: 20px 15px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  font-weight: 500;
  color: #333;
  min-width: 220px;
}

.sector-item:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Responsive Layout */
@media (max-width: 992px) {
  .sectors-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .sectors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .sectors-grid {
    grid-template-columns: 1fr;
  }
}

/* CTA Section */
.cta {
  background: linear-gradient(to right, var(--primary), #2c3e50);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.cta h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #fff;
}

.cta p {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 18px;
}

.btn-light {
  background-color: white;
  color: var(--primary);
}

.btn-light:hover {
  background-color: #f1f1f1;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .about-content {
    flex-direction: column;
  }

  .about-text,
  .about-image {
    flex: none;
    width: 100%;
  }

  .hero h2 {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    padding: 15px 0;
  }

  nav ul {
    margin-top: 15px;
  }

  nav ul li {
    margin: 0 10px;
  }

  .hero {
    padding: 80px 0;
  }

  .hero h2 {
    font-size: 32px;
  }

  .section-title h2 {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero h2 {
    font-size: 28px;
  }

  .hero p {
    font-size: 16px;
  }

  .section {
    padding: 60px 0;
  }
}

.mega-hover {
    gap: 45px;
}

/*.offerings{*/
/*    border: 1 px solid #fff;*/
/*    background: #fff;*/
/*}*/


.offerings {
   background-color: rgba(122, 183, 48, 0.65);
    position: relative;
    padding: 40px 40px;
}

/* text styling */
.offerings h1,
.offerings h6,
.offerings p {
    color: #ffffff;
}

/* heading thodi strong */
.offerings h1 {
    font-weight: 700;
}

/* border color */
.offerings .border-start {
    border-color: #ffffff !important;
}




.quality-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
  text-align: center;
}

.quality-feature {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.quality-feature i {
  font-size: 36px;
  color: var(--primary);
  margin-bottom: 15px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.quality-feature h3 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

.quality-feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  background: var(--light);
}

.quality-feature:hover i {
  color: var(--dark);
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 992px) {
  .quality-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .quality-features {
    grid-template-columns: 1fr;
  }
}

.section {
  padding: 80px 0;
}

.section-light {
  background-color: #f9f9f9;
}

.section-title {
  margin-bottom: 40px;
}

.about-content.full-width-text {
  display: block;
  width: 100%;
}

.about-text {
  max-width: 100%;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

.about-text p {
  margin-bottom: 20px;
  text-align: center;
}

/* Offerings Section */
.offerings-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 36px;
  color: #000;
  /* color: #009b54; */
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: "";
  position: absolute;
  width: 70px;
  height: 3px;
  background-color: var(--secondary);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.section-title p {
  color: var(--gray);
  /* max-width: 800px; */
  margin: 20px auto 0;
  font-size: 18px;
}

/* Main Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.product-category {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.product-category::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, var(--primary), var(--secondary));
}

.product-category:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.category-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.category-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(26, 82, 118, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: var(--primary);
  font-size: 24px;
}

.category-title {
  font-size: 22px;
  color: var(--dark);
  font-weight: 600;
}

.product-list {
  list-style-type: none;
}

.product-list li {
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
  color: #555;
}

.product-list li:before {
  content: "▸";
  color: var(--secondary);
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Features Section */
.features-section {
  padding: 80px 0;
  background-color: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.feature-card {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border-left: 4px solid var(--primary);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  background-color: white;
}

.feature-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(26, 82, 118, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary);
  font-size: 28px;
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--dark);
}

.feature-card p {
  color: var(--gray);
  font-size: 15px;
}

/* Additional Products Section */
.additional-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a5276 0%, #2c3e50 100%);
  color: white;
}

.additional-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  align-items: start;
}

.additional-products,
.additional-services {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  backdrop-filter: blur(10px);
}

.additional-title {
  font-size: 24px;
  margin-bottom: 25px;
  color: white;
  position: relative;
  padding-bottom: 10px;
}

.additional-title::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 3px;
  background-color: var(--secondary);
  bottom: 0;
  left: 0;
}

.additional-list {
  list-style-type: none;
}

.additional-list li {
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
  color: rgba(255, 255, 255, 0.9);
}

.additional-list li:before {
  content: "✓";
  color: var(--secondary);
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  text-align: center;
  background-color: white;
}

.cta-section h2 {
  font-size: 36px;
  color: #000;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 18px;
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto 30px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .offerings-section,
  .features-section,
  .additional-section,
  .cta-section {
    padding: 60px 0;
  }

  .section-title h2 {
    font-size: 30px;
  }

  .category-header {
    flex-direction: column;
    text-align: center;
  }

  .category-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

@media (max-width: 576px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .product-category {
    padding: 20px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .additional-container {
    grid-template-columns: 1fr;
  }

  .cta-section h2 {
    font-size: 28px;
  }
}

/* PRODUCT PAGE STYLING */

.product-main-img {
  width: 100%;
  height: 450px;
  /* object-fit: cover; */
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.thumb-img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s ease;
  border: 2px solid transparent;
}

.thumb-img:hover {
  transform: scale(1.08);
}

.thumb-img.active {
  border: 2px solid #007bff;
}

.product-title {
  font-size: 32px;
  font-weight: 700;
}

.product-description {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}

/* Inquiry Form */
.inquiry-box {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.inquiry-box input,
.inquiry-box textarea {
  border-radius: 8px;
  padding: 12px;
  border: 1px solid #ccc;
}

/* Related Products */
.related-card {
  border-radius: 12px;
  overflow: hidden;
  transition: 0.3s ease;
}

.related-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.15);
}

.related-img {
  height: 250px;
  width: 100%;
  /* object-fit: cover; */
}

#moreProducts {
  display: none;
}
