html {
  scroll-behavior: smooth;
}

:root {
  --primary: #0a67a9;
  --accent: #ed3237;
  --white: #ffffff;
  --ige-green: #159549;
  --ige-dark: #12592e;
  --ige-leaf: #90c745;
  --ige-light: #f4faef;
  --text: #0f172a;
  --muted: #64748b;
  --border: #e5e7eb;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #333;
}

/* =========================================
   PRODUCT CATEGORY SECTION
========================================= */
.product-category-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left,
      rgba(155, 197, 61, .10),
      transparent 30%),
    radial-gradient(circle at bottom right,
      rgba(13, 122, 47, .08),
      transparent 35%),
    linear-gradient(135deg,
      #f9fcf9 0%,
      #f3f8f5 45%,
      #f5f8fb 100%);
}

/* SECTION LEAFS */
.product-category-section::before,
.product-category-section::after {
  content: "";
  position: absolute;
  background: url('../images-opt/leaves.webp') no-repeat center;
  background-size: contain;
  pointer-events: none;
  z-index: 0;
  opacity: .05;
}

.product-category-section::before {
  top: 0;
  left: 0;
  width: 240px;
  height: 240px;
}

.product-category-section::after {
  right: -60px;
  bottom: -60px;
  width: 280px;
  height: 280px;
  transform: rotate(-20deg);
}

/* =========================================
   SECTION HEADING
========================================= */

.section-badge {
  position: relative;
  display: inline-block;
  padding-bottom: 22px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #082032;
  margin-bottom: 20px;
}

.section-badge::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100px;
  height: 2px;
  background: #9bc53d;
  transform: translateX(-50%);
}

.section-badge::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -13px;
  width: 28px;
  height: 28px;
  transform: translateX(-50%);
  background: url('../images-opt/icon-wheel.webp') no-repeat center;
  background-size: contain;
  animation: rotateBadge 8s linear infinite;
}

.section-heading h2 {
  font-size: 35px;
  font-weight: 700;
  color: #081c2f;
  margin-bottom: 10px;
}

.section-heading p {
  font-size: 17px;
  line-height: 1.8;
  color: #5b6470;
}

/* =========================================
   CATEGORY CARD
========================================= */
.category-card {
  position: relative;
  padding: 55px;
  margin-bottom: 50px;
  border-radius: 34px;
  background:
    linear-gradient(145deg,
      rgba(255, 255, 255, .92),
      rgba(255, 255, 255, .75));
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, .45);
  box-shadow:
    0 15px 40px rgba(0, 0, 0, .06),
    0 5px 15px rgba(13, 122, 47, .05);
  overflow: hidden;
  transition: .45s ease;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 25px 60px rgba(13, 122, 47, .10);
}

/* CARD LEAF */
.category-card::after {
  content: "";
  position: absolute;
  left: -30px;
  bottom: -30px;
  width: 180px;
  height: 180px;
  background: url('../images-opt/leaves.webp') no-repeat center;
  background-size: contain;
  opacity: .06;
  transform: rotate(-15deg);
  z-index: 0;
}

/* TOP LEAF */
.card-leaf {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 90px;
  height: 90px;
  background: url('../images-opt/leaves.webp') no-repeat center;
  background-size: contain;
  opacity: .9;
  z-index: 2;
  animation: floatingLeaf 6s ease-in-out infinite;
}

/* NUMBER */
.category-number {
  position: absolute;
  left: 20px;
  top: 16%;
  transform: translateY(-50%);
  font-size: 120px;
  font-weight: 800;
  color: rgba(13, 122, 47, .06);
  z-index: 0;
}

/* =========================================
   IMAGE
========================================= */
.category-image {
  position: relative;
  text-align: center;
  z-index: 2;
}

.image-glow {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background:
    radial-gradient(circle,
      rgba(155, 197, 61, .20),
      transparent 70%);
  filter: blur(25px);
  z-index: 0;
}

.category-image img {
  max-width: 100%;
  max-height: 320px;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter:
    drop-shadow(0 25px 35px rgba(0, 0, 0, .20));
  transition: .5s ease;
  animation: floatingPump 5s ease-in-out infinite;
}

.category-card:hover .category-image img {
  transform:
    scale(1.05) translateY(-8px);
}

/* =========================================
   CONTENT
========================================= */
.category-content {
  position: relative;
  z-index: 2;
}

.category-content h3 {
  font-size: 38px;
  font-weight: 700;
  color: #081c2f;
  margin-bottom: 18px;
}

.category-content p {
  font-size: 16px;
  line-height: 1.9;
  color: #5b6470;
  margin-bottom: 30px;
}

/* FEATURES */
.category-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 16px;
  color: #1d2430;
}

.category-features li i {
  color: #159549;
}

/* =========================================
   MINI PRODUCT GRID
========================================= */
.product-mini-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.mini-product-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(13, 122, 47, .08);
  text-decoration: none;
  color: #082032;
  font-size: 15px;
  font-weight: 600;
  transition: .35s ease;
  box-shadow:
    0 6px 15px rgba(0, 0, 0, .04);
}

.mini-product-card:hover {
  background:
    linear-gradient(135deg,
      #159549,
      #15a34a);
  color: #fff;
  transform: translateX(5px);
}

/* =========================================
   BUTTONS
========================================= */
.category-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {
  flex: 1;
  padding: 14px 20px;
  border-radius: 14px;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  transition: .35s ease;
}

.primary-btn {
  background:
    linear-gradient(135deg,
      #159549,
      #18a94c);
  color: #fff;
  box-shadow:
    0 10px 25px rgba(13, 122, 47, .18);
}

.primary-btn:hover {
  transform: translateY(-3px);
  color: #fff;
}

.secondary-btn {
  background: rgba(255, 255, 255, .7);
  border: 1px solid rgba(13, 122, 47, .18);
  color: #159549;
}

.secondary-btn:hover {
  background: #159549;
  color: #fff;
}

/* =========================================
   ANIMATIONS
========================================= */
@keyframes floatingPump {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes rotateBadge {
  0% {
    transform: translateX(-50%) rotate(0deg);
  }

  100% {
    transform: translateX(-50%) rotate(360deg);
  }
}

@keyframes floatingLeaf {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-8px) rotate(3deg);
  }

  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

/* =========================================
   MOBILE
========================================= */
@media(max-width:992px) {
  .product-category-section {
    padding: 70px 0;
  }

  .category-card {
    padding: 35px 25px;
  }

  .category-number {
    display: none;
  }

  .category-image {
    margin-bottom: 20px;
  }

  .category-content {
    margin-bottom: 30px;
  }

  .category-content h3 {
    font-size: 30px;
  }

  .category-buttons {
    flex-direction: column;
  }
}

@media(max-width:768px) {
  .feature-list.col-cnt-3 {
    column-count: 1 !important;
  }
  .feature-list.col-cnt-2 {
    column-count: 1 !important;
  }

  .hero-image-box::after {
    width: 350px !important;
    height: 350px !important;
  }

  .hero-image-box {
    margin-top: 0px !important;
  }

  .hero-buttons,
  .hero-buttons a {
    display: none !important;
  }

  .navbar-nav .nav-item::after,
  .navbar-nav .nav-item:hover::before {
    display: none;
  }

  .hero-section {
    padding: 35px 0 !important;
  }

  .navbar-nav .nav-item.active:before,
  .navbar-nav .nav-item.active:active {
    display: none;
  }

  .section-heading h2 {
    font-size: 32px;
  }

  .section-badge {
    font-size: 15px;
  }
}

/* =========================================
   ABOUT SECTION
  ========================================= */
.about-section {
  padding: 100px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}

/* BACKGROUND EFFECT */
.about-section::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  background: rgba(13, 122, 47, 0.05);
  border-radius: 50%;
  top: -200px;
  right: -180px;
  filter: blur(60px);
}

.about-section::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(10, 103, 169, 0.05);
  border-radius: 50%;
  bottom: -180px;
  left: -180px;
  filter: blur(60px);
}

/* =========================================
   IMAGE SIDE
========================================= */
.about-image-wrapper {
  position: relative;
  z-index: 2;
}

/* MAIN IMAGE */
.about-main-image {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
}

.about-main-image img {
  width: 100%;
  border-radius: 30px;
  transition: .5s ease;
  box-shadow: 0 25px 60px rgba(0, 0, 0, .12);
}

.about-main-image:hover img {
  /* transform: scale(1.04); */
}

/* EXPERIENCE CARD */
.experience-card {
  position: absolute;
  right: -25px;
  top: -25px;
  background: #159549;
  color: #fff;
  padding: 20px 25px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(13, 122, 47, .25);
  z-index: 5;
  animation: floatingCard 4s ease-in-out infinite;
}

.experience-card h3 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 0;
  color: #fff;
}

.experience-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: #fff;
}

/* FLOATING SMALL CARD */
.floating-card {
  position: absolute;
  bottom: -50px;
  right: -20px;
  background: #fff;
  padding: 18px 22px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .10);
  z-index: 5;
  animation: floatingCard 5s ease-in-out infinite;
}

.floating-card i {
  width: 55px;
  height: 55px;
  background: rgba(13, 122, 47, .10);
  color: #159549;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.floating-card h5 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  color: #082032;
}

.floating-card span {
  font-size: 14px;
  color: #666;
}

/* FLOAT EFFECT */
@keyframes floatingCard {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* =========================================
   CONTENT SIDE
========================================= */
.about-content {
  position: relative;
  z-index: 2;
}

.about-content h2 {
  font-size: 48px;
  font-weight: 700;
  color: #082032;
  margin-bottom: 25px;
  line-height: 1.3;
}

.about-text {
  font-size: 16px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 18px;
}

/* FEATURES */
.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 35px;
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: #222;
}

.feature-item i {
  color: #159549;
  font-size: 18px;
}

/* =========================================
   COUNTER BOX
========================================= */
.about-counter-wrapper {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.counter-box {
  flex: 1;
  min-width: 150px;
  background: #f7fafc;
  padding: 15px;
  border-radius: 18px;
  text-align: center;
  transition: .3s ease;
  border: 1px solid #edf1f5;
}

.counter-box:hover {
  transform: translateY(-5px);
  background: #159549;
}

.counter-box:hover h3,
.counter-box:hover p {
  color: #fff;
}

.counter-box h3 {
  font-size: 34px;
  font-weight: 700;
  color: #082032;
  margin-bottom: 10px;
  transition: .3s ease;
}

.counter-box p {
  margin: 0;
  font-size: 15px;
  color: #666;
  transition: .3s ease;
}

/* =========================================
   BUTTONS
========================================= */
.about-btns {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

/* =========================================
   MOBILE
========================================= */
@media(max-width:992px) {
  .about-section {
    padding: 70px 0;
  }

  .about-content h2 {
    font-size: 34px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .about-counter-wrapper {
    flex-direction: column;
  }

  .experience-card {
    left: 10px;
    bottom: 10px;
    padding: 18px 22px;
  }

  .experience-card h3 {
    font-size: 30px;
  }

  .floating-card {
    right: 10px;
    bottom: 10px;
    padding: 14px 18px;
  }

  .about-btns {
    flex-direction: column;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
  }
}

/* ================= HERO SECTION ================= */
.hero-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(6, 30, 48, 0.90),
      rgba(6, 30, 48, 0.92));
  background-size: cover;
  background-position: center;
}

/* IMPORTANT */
.heroMainSlider {
  overflow: hidden;
  position: relative;
  padding-bottom: 40px;
}

/* ================= SLIDE ================= */
.heroMainSlider .swiper-slide {
  height: auto;
}

/* ================= CONTENT ================= */
.hero-content {
  color: #fff;
  position: relative;
  z-index: 5;
  padding-right: 40px;
}

.hero-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.10);
  color: #fff;
  padding: 10px 22px;
  border-radius: 40px;
  font-size: 14px;
  margin-top: 25px;
  margin-bottom: 25px;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 25px;
  font-weight: 500;
  color: #d8e8f7;
  margin-bottom: 20px;
}

.hero-text {
  font-size: 16px;
  line-height: 1.3;
  color: #dce7f2;
  max-width: 650px;
  margin-bottom: 30px;
}

/* ================= FEATURES ================= */
.hero-features {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
}

.hero-features li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 5px;
  font-size: 18px;
  color: #fff;
}

.hero-features li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 1px;
  color: #17d978;
}

/* ================= BUTTONS ================= */
.hero-buttons {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  position: relative;
  z-index: 10;
  margin-bottom: 30px;
}

.hero-btn {
  min-width: 190px;
  height: 62px;
  padding: 0 30px;
  border-radius: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  transition: .3s ease;
}

.primary-btn {
  background: #0d8a35;
  color: #fff;
}

.primary-btn:hover {
  background: #086827;
  color: #fff;
  transform: translateY(-4px);
}

.secondary-btn {
  background: #fff;
  color: #0d8a35;
}

.secondary-btn:hover {
  background: #0d8a35;
  color: #fff;
  transform: translateY(-4px);
}

/* ================= IMAGE SECTION ================= */
.hero-image-box {
  position: relative;
  text-align: center;
  z-index: 2;
}

/* WAVE BACKGROUND */
.hero-image-box::before,
.hero-image-box::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

/* FIRST WAVE */
.hero-image-box::before {
  width: 420px;
  height: 420px;
  background: rgba(255, 255, 255, 0.08);
  animation: wavePulse 4s linear infinite;
}

/* SECOND WAVE */
.hero-image-box::after {
  width: 520px;
  height: 520px;
  background: rgba(255, 255, 255, 0.04);
  animation: wavePulse 4s linear infinite 2s;
}

/* HERO IMAGE */
.hero-image-box img {
  max-height: 450px;
  object-fit: contain;
  border-radius: 30px;
  position: relative;
  z-index: 5;
  filter: drop-shadow(0 25px 50px rgba(255, 255, 255, 0.45));
}

/* FLOAT EFFECT */
@keyframes floatImage {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* WAVE EXPAND EFFECT */
@keyframes wavePulse {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.7;
  }

  70% {
    opacity: 0.15;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.15);
    opacity: 0;
  }
}

/* ================= TRIANGLE NAVIGATION ================= */
.hero-section .swiper-button-next,
.hero-section .swiper-button-prev {
  width: 0;
  height: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

/* REMOVE DEFAULT SWIPER ICON */
.hero-section .swiper-button-next::after,
.hero-section .swiper-button-prev::after {
  display: none;
}

/* NEXT BUTTON TRIANGLE */
.hero-section .swiper-button-next {
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
  border-left: 38px solid #fff;
  right: 20px;
  transition: .3s ease;
}

/* PREV BUTTON TRIANGLE */
.hero-section .swiper-button-prev {
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
  border-right: 38px solid #fff;
  left: 20px;
  transition: .3s ease;
}

/* HOVER */
.hero-section .swiper-button-next:hover {
  border-left-color: #0d8a35;
  transform: scale(1.05);
}

.hero-section .swiper-button-prev:hover {
  border-right-color: #0d8a35;
  transform: scale(1.05);
}

/* ================= PAGINATION ================= */
.heroMainSlider .swiper-pagination {
  position: absolute;
  bottom: 0;
  margin-bottom: 25px;
}

.heroMainSlider .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background: #fff;
  opacity: .4;
}

.heroMainSlider .swiper-pagination-bullet-active {
  opacity: 1;
  background: #17d978;
}

/* ================= RESPONSIVE ================= */
@media(max-width:1200px) {
  .hero-title {
    font-size: 40px;
  }

  .hero-subtitle {
    font-size: 20px;
  }

  .hero-text {
    font-size: 15px;
  }

  .hero-image-box img {
    max-height: 500px;
  }
}

@media(max-width:992px) {
  .hero-section {
    padding: 30px 0;
  }

  .hero-content {
    padding-right: 0;
    text-align: center;
  }

  .hero-title {
    font-size: 42px;
  }

  .hero-subtitle {
    font-size: 22px;
  }

  .hero-text {
    font-size: 16px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-features li {
    font-size: 16px;
    text-align: left;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image-box {
    margin-top: 30px;
  }

  .hero-image-box img {
    max-height: 380px;
  }

  .hero-image-box::before {
    width: 380px;
    height: 380px;
  }

  .heroMainSlider .swiper-button-next,
  .heroMainSlider .swiper-button-prev {
    display: none;
  }
}

@media(max-width:576px) {
  .hero-title {
    font-size: 34px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-btn {
    width: 100%;
    min-width: 100%;
    font-size: 17px;
  }
}

/* ================= BUTTONS SECTION ================= */
/* ================= BASE BUTTON ================= */
.c-vignette-block-button-blue,
.c-vignette-block-button-white,
.c-vignette-block-button-blue-fill {
  margin-top: 2rem;
}

.c-vignette-block-button-blue a,
.c-vignette-block-button-white a,
.c-vignette-block-button-blue-fill a {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 2rem;
  padding: .9rem 1.6rem;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: color .3s ease;
  z-index: 1;
}

.c-vignette-block-button-blue a::after,
.c-vignette-block-button-white a::after,
.c-vignette-block-button-blue-fill a::after {
  content: "";
  position: absolute;
  width: 160%;
  height: 160%;
  border-radius: 50%;
  left: -30%;
  transition: transform .45s ease;
  z-index: -1;
}

/* blue */
.c-vignette-block-button-blue a {
  border: 1px solid #2f6de1;
  color: #2f6de1;
}

.c-vignette-block-button-blue a::after {
  background: linear-gradient(135deg, #2f6de1, #00a2ff);
  top: -170%;
  transform: translateY(0);
}

.c-vignette-block-button-blue a:hover::after {
  transform: translateY(100%);
}

.c-vignette-block-button-blue a:hover {
  color: #fff;
}

/* white */
.c-vignette-block-button-white a {
  border: 1px solid #fff;
  color: #fff;
}

.c-vignette-block-button-white a::after {
  background: linear-gradient(135deg, #fff, #eee);
  top: -170%;
  transform: translateY(0);
}

.c-vignette-block-button-white a:hover::after {
  transform: translateY(100%);
}

.c-vignette-block-button-white a:hover {
  color: #000;
}

/* blue fill */
.c-vignette-block-button-blue-fill a {
  border: 1px solid #2f6de1;
  color: #fff;
}

.c-vignette-block-button-blue-fill a::after {
  background: linear-gradient(135deg, #2f6de1, #00a2ff);
  top: -30%;
  transform: translateY(0);
}

.c-vignette-block-button-blue-fill a:hover::after {
  transform: translateY(160%);
}

.c-vignette-block-button-blue-fill a:hover {
  color: #2f6de1;
  border-color: #2f6de1;
}

.c-vignette-block-button-blue-fill.hover-white a:hover {
  color: #fff;
  border-color: #fff;
}

@media(max-width:768px) {

  .hero-section .swiper-button-next,
  .hero-section .swiper-button-prev {
    display: none;
  }

  .floating-card,
  .experience-card {
    display: none;
  }

  .section-padding {
    padding: 60px 0;
  }
}

/* ================= FOOTER ================= */
/* =========================================
FOOTER
========================================= */
.main-footer {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg,
      #081c2f 0%,
      #0b2338 40%,
      #102c45 100%);
  color: rgba(255, 255, 255, .85);
}

/* TOP */
.footer-top {
  padding: 90px 0 60px;
  position: relative;
  z-index: 2;
}

/* LEAF DECORATION */
.main-footer::before,
.main-footer::after {
  content: "";
  position: absolute;
  background:
    url('../images-opt/leaves.webp') no-repeat center;
  background-size: contain;
  opacity: .04;
  pointer-events: none;
}

.main-footer::before {
  width: 260px;
  height: 260px;
  top: -40px;
  left: -40px;
  transform: rotate(-20deg);
}

.main-footer::after {
  width: 320px;
  height: 320px;
  right: -80px;
  bottom: -80px;
  transform: rotate(20deg);
  z-index: 9;
}

/* LOGO */
.footer-logo {
  max-width: 180px;
  margin-bottom: 25px;
}

/* ABOUT */
.footer-about p {
  font-size: 15px;
  line-height: 1.9;
  color: rgba(255, 255, 255, .70);
  margin-bottom: 28px;
}

/* WIDGET */
.footer-widget h4 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 28px;
  position: relative;
}

/* UNDERLINE */
.footer-widget h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 55px;
  height: 3px;
  border-radius: 50px;
  background:
    linear-gradient(90deg,
      #9bc53d,
      #159549);
}

/* LINKS */
.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 16px;
}

/* LINK */
.footer-links a {
  color: rgba(255, 255, 255, .72);
  text-decoration: none;
  transition: .3s ease;
  position: relative;
}

.footer-links a:hover {
  color: #9bc53d;
  padding-left: 6px;
}

/* CONTACT */
.footer-contact li {
  display: flex;
  gap: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, .72);
}

.footer-contact li i {
  color: #9bc53d;
  margin-top: 5px;
}

.footer-contact li i.fa-phone-alt {
  transform: scaleX(-1);
}

/* SOCIAL */
.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background:
    rgba(255, 255, 255, .08);
  color: #fff;
  text-decoration: none;
  transition: .35s ease;
}

.footer-social a:hover {
  background:
    linear-gradient(135deg,
      #159549,
      #18a94c);
  transform: translateY(-4px);
}

/* =========================================
BOTTOM
========================================= */
.footer-bottom {
  border-top:
    1px solid rgba(255, 255, 255, .08);
  padding: 22px 0;
}

.footer-bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

/* TEXT */
.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, .65);
}

/* BOTTOM LINKS */
.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, .65);
  text-decoration: none;
  transition: .3s ease;
}

.footer-bottom-links a:hover {
  color: #9bc53d;
}

.gslide-image img {
  background: #fff;
}

/* ==========================
     SOCIAL ICONS
  ========================== */

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all .3s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-social a i {
  font-size: 22px;
  transition: all .3s ease;
}

/* Facebook */
.footer-social a:nth-child(1) i {
  color: #1877F2;
}

.footer-social a:nth-child(1):hover {
  background: #1877F2;
  border-color: #1877F2;
}

/* Instagram */
.footer-social a:nth-child(2) i {
  color: #E4405F;
}

.footer-social a:nth-child(2):hover {
  background: #E4405F;
  border-color: #E4405F;
}

/* LinkedIn */
.footer-social a:nth-child(3) i {
  color: #0A66C2;
}

.footer-social a:nth-child(3):hover {
  background: #0A66C2;
  border-color: #0A66C2;
}

/* YouTube */
.footer-social a:nth-child(4) i {
  color: #FF0000;
}

.footer-social a:nth-child(4):hover {
  background: #FF0000;
  border-color: #FF0000;
}

/* Common Hover */
.footer-social a:hover {
  transform: translateY(-4px);
}

.footer-social a:hover i {
  color: #fff;
}

/* =========================================
MOBILE
========================================= */
@media(max-width:768px) {
  .footer-top {
    padding: 70px 0 40px;
  }

  .footer-widget {
    margin-bottom: 15px;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
}

/* =========================
   FOOTER MAIN
========================= */
.footer-main {
  font-size: 14px;
  line-height: 1.7;
  font-family: inherit;
}

/* =========================
   TOP FOOTER
========================= */
.footer-top {
  background: #2d323a;
  color: #fff;
  padding: 50px 0 30px;
}

/* headings */
.footer-heading {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .8px;
  text-transform: uppercase;
  margin-bottom: 22px;
  position: relative;
}

/* underline */
.footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background: #ff3b3b;
}

/* lists */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 9px;
}

.footer-links li a {
  color: #e6edf8;
  text-decoration: none;
  font-size: 14px;
  transition: .25s;
  transition: .3s;
}

.footer-links li a::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f105";
  margin-right: 8px;
  color: #159549;
  font-size: 12px;
}

.footer-links li a:hover {
  color: #90c745;
  padding-left: 0px;
}

/* column spacing */
.footer-top .col-lg-3 {
  padding-right: 35px;
}

/* mobile */
@media (max-width:768px) {
  .footer-top {
    padding: 60px 0;
  }

  .footer-top .col-lg-3 {
    margin-bottom: 30px;
  }
}

.footer-links a:hover::before {
  display: none;
}

/* =====================
MODERN FOOTER BOTTOM
===================== */
.footer-bottom-modern {
  background: #1a1a1a;
  color: #cfcfcf;
  padding: 40px 0 10px;
  text-align: center;
}

/* contact info */
.footer-contact-info {
  margin-bottom: 15px;
  font-size: 14px;
}

.footer-contact-info p {
  margin-bottom: 6px;
}

.footer-contact-info p a {
  color: #fff;
  text-decoration: none;
}

.footer-contact-info p a:hover {
  color: #00a2ff;
}

.footer-contact-info i {
  color: #ff3b3b;
  margin-right: 6px;
}

/* footer menu */
.footer-menu {
  list-style: none;
  padding: 0;
  margin: 15px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.footer-menu li {
  display: flex;
  align-items: center;
}

.footer-menu li:not(:last-child)::after {
  content: "|";
  margin: 0 18px;
  color: rgba(255, 255, 255, 0.20);
}

.footer-menu li a {
  color: #d9d9d9;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: .8px;
  text-transform: uppercase;
  transition: .3s;
}

.footer-menu li a:hover {
  color: #ff3b3b;
}

/* social icons */
.footer-social-modern {
  margin: 25px 0;
}

.footer-social-modern a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #444;
  color: #fff;
  margin: 0 6px;
  font-size: 14px;
  transition: .3s;
  text-decoration: none;
}

.footer-social-modern a:hover {
  background: #ff3b3b;
  border-color: #ff3b3b;
}

/* copyright */
.footer-copyright-modern {
  margin-top: 25px;
  font-size: 13px;
  color: #9b9b9b;
}

.footer-copyright-modern a {
  color: #ffffff;
  text-decoration: underline;
}

.footer-copyright-modern a:hover {
  text-decoration: underline;
}

.footer-bottom-modern {
  background: #1a1a1a;
  color: #cfcfcf;
  padding: 40px 0 20px;
  text-align: center;
  position: relative;
}

/* footer logo */
.footer-brand-logo {
  position: absolute;
  left: 0px;
  bottom: 0px;
  max-width: 150px;
  opacity: 0.2;
  transition: .3s;
}

.footer-brand-logo:hover {
  opacity: 0.6;
}

@media (max-width:768px) {
  .footer-brand-logo {
    position: absolute;
    display: block;
    margin: 25px auto 0;
    opacity: 0.1;
  }
}

/* ================= WHATSAPP FLOAT ================= */
.whatsapp-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  background: #25D366;
  color: #fff;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 26px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .25);
  z-index: 999;
  transition: .3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  background: #1ebe5d;
}

/* ================= back-to-top FLOAT ================= */
/* ================= BACK TO TOP ================= */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #90c745;
  color: #000;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 999;
  /* Hidden by default */
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

/* Show on scroll */
.back-to-top.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Hover */
.back-to-top:hover {
  background: #159549;
  transform: translateY(-5px) scale(1.05);
}

/* Optional pulse animation */
.back-to-top::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(13, 110, 253, 0.4);
  animation: pulse 2s infinite;
  z-index: -1;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: .6;
  }

  70% {
    transform: scale(1.6);
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

/* Counter Section */
.section-counter h3 {
  font-size: 35px;
  font-weight: 600;
  color: #f2353d;
  margin-bottom: 10px;
}

.section-counter p {
  font-size: 15px;
  color: #555;
}

.section-counter .row>div {
  border-right: 1px solid #e5e5e5;
}

.feature-block .row>div {
  border-right: none;
}

.section-counter .row>div:last-child {
  border-right: none;
}

/* ================= RESPONSIVE ================= */
@media (max-width:992px) {
  .hero-title {
    font-size: 36px;
  }
}

@media (max-width:768px) {
  .hero-title {
    font-size: 28px;
  }

  .hero-text,
  .hero-features {
    display: none;
  }

  .hero-section {
    min-height: 60vh;
    text-align: center;
  }
}

.section-padding {
  padding: 90px 0;
}

.industry-card {
  position: relative;
  overflow: hidden;
}

.industry-card {
  height: 100%;
  padding: 30px 25px;
}

@media (min-width:992px) {
  .industries-section .col-lg-3 {
    width: 20%;
  }
}

.industry-card img {
  width: 100%;
  display: block;
}

.industry-title {
  margin-top: 15px;
  font-size: 15px;
}

.industry-info {
  position: absolute;
  bottom: 5px;
  right: 10px;
  background: rgba(0, 0, 0, .6);
  color: #fff;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
  cursor: pointer;
}

.industry-overlay {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, .8);
  color: #fff;
  padding: 15px;
  transform: translateY(100%);
  transition: .3s;
}

.industry-card:hover .industry-overlay {
  transform: translateY(0);
  bottom: 40px;
}

.industry-overlay h5 {
  font-size: 16px;
  margin-bottom: 5px;
}

.industry-overlay p {
  font-size: 13px;
  margin: 0;
}

.section-title {
  font-weight: 600;
  margin-bottom: 15px;
}

/* CARD BASE */
.product-slider .product-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(10, 103, 169, 0) 0%, rgba(64, 135, 186, 0.85) 100%);
  padding: 20px 10px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
  transition: .3s;
}

/* GRADIENT OVERLAY */
.product-slider .product-card::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0%;
  /* start from bottom */
  background: linear-gradient(180deg, rgba(10, 103, 169, 0) 0%, rgba(15, 15, 15, 0.9) 100%);
  transition: height 0.4s ease;
  z-index: 1;
}

/* HOVER EFFECT */
.product-slider .product-card:hover::before {
  height: 100%;
  /* fill from bottom to top */
}

/* KEEP CONTENT ABOVE GRADIENT */
.product-slider .product-card * {
  position: relative;
  z-index: 2;
}

.product-slider .product-card:hover h5 a {
  color: #ffffff;
}

.product-slider .product-card i {
  font-size: 35px;
  color: var(--primary);
  margin-bottom: 10px;
}

.product-slider .product-card:hover {
  transform: translateY(-6px);
}

.product-slider .product-card h5 {
  font-size: 16px;
  font-weight: 500;
  color: #1f3b63;
  line-height: 1.4;
}

.product-slider .product-card h5 a {
  color: #111111;
  font-family: "Roboto", sans-serif;
  text-decoration: none;
}

.product-slider .swiper-pagination {
  position: relative;
  margin-top: 35px;
}

.product-slider .swiper-button-next,
.product-slider .swiper-button-prev {
  width: 45px;
  height: 45px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 6px 15px rgba(0, 0, 0, .15);
  color: #0a67a9;
  margin-top: -60px;
}

.product-slider .swiper-button-prev {
  left: -17px;
}

.product-slider .swiper-button-next {
  right: -17px;
}

.product-slider .swiper-button-next:after,
.product-slider .swiper-button-prev:after {
  font-size: 16px;
  font-weight: bold;
}

.product-slider .swiper-button-next:hover,
.product-slider .swiper-button-prev:hover {
  background: #0a67a9;
  color: #fff;
}

.product-slider .slider-title {
  color: #fff;
  font-weight: 600;
  margin-bottom: 20px;
}

/* VIEW ALL BUTTON */
.view-all-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #0a67a9;
  color: #fff;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all .3s ease;
}

.view-all-btn i {
  margin-left: 8px;
  transition: transform .3s ease;
}

.view-all-btn:hover {
  background: #0a67a9;
  color: #fff;
}

.view-all-btn:hover i {
  transform: translateX(5px);
}

.view-all-btn {
  background: transparent;
  color: #0a67a9;
  border: 2px solid #0a67a9;
}

.view-all-btn:hover {
  background: #0a67a9;
  color: #fff;
}

.industry-box {
  background: #fff;
  padding: 20px;
  border-radius: 6px;
  font-weight: 500;
  box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
}

/* SERVICES SECTION */
.services-section img {
  border-radius: 12px;
  /* box-shadow: 0 10px 25px rgba(0, 0, 0, 0.10); */
  object-fit: cover;
  width: 100%;
}

/* FIX GRID SPACING (Bootstrap override properly) */
.services-section .row.g-4 {
  --bs-gutter-x: 24px;
  --bs-gutter-y: 28px;
}

/* SERVICE CARD */
.services-section .service-card {
  background: #fff;
  padding: 26px 22px;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transition: all .35s ease;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* ICON */
.services-section .service-card i {
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: #f1f6fb;
  border-radius: 50%;
  text-align: center;
  font-size: 20px;
  color: #0a67a9;
  margin-bottom: 14px;
  display: inline-block;
  transition: all .3s ease;
}

/* TITLE */
.services-section .service-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #1e3a5f;
  line-height: 1.3;
}

/* TEXT */
.services-section .service-card p {
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

/* HOVER */
.services-section .service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.10);
}

.services-section .service-card:hover i {
  background: #0a67a9;
  color: #fff;
}

/* LEFT BORDER EFFECT */
.services-section .service-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  height: calc(100% - 40px);
  /* balanced vertical spacing */
  width: 3px;
  background: #0a67a9;
  opacity: 0;
  transition: .3s;
  border-radius: 4px;
}

.services-section .service-card:hover::before {
  opacity: 1;
}

/* DIVIDER */
.section-divider {
  margin: 28px auto 22px;
  width: 70px;
  border-top: 3px solid #0a67a9;
  opacity: 1;
}

/* RESPONSIVE */
@media (max-width:768px) {
  .services-section .row.g-4 {
    --bs-gutter-x: 16px;
    --bs-gutter-y: 22px;
  }

  .services-section img {
    margin-bottom: 20px;
  }
}

/* VIEW ALL SERVICES BUTTON */
.view-all-services-btn {
  display: inline-block;
  padding: 11px 26px;
  background: #0a67a9;
  color: #fff;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all .3s ease;
}

.view-all-services-btn i {
  margin-left: 8px;
  transition: transform .3s ease;
}

/* Hover */
.view-all-services-btn:hover {
  background: #084f82;
  color: #fff;
}

.view-all-services-btn:hover i {
  transform: translateX(5px);
}

.section-title {
  font-weight: 600;
  font-size: 38px;
  color: #0a67a9;
}

.section-subtitle {
  max-width: 750px;
  margin: auto;
  color: #555;
  font-size: 16px;
}

/* Responsive */
@media(max-width:768px) {
  .section-title {
    font-size: 26px;
  }
}

/* MISSION VISION SECTION */
.mission-vision {
  background: #f7f9fc;
}

/* card */
.mv-card {
  background: #fff;
  padding: 40px 35px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
  position: relative;
  transition: .35s;
  height: 100%;
}

/* icon */
.mv-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}

/* mission color */
.mission-card {
  border-top: 4px solid #0a67a9;
}

.mission-card .mv-icon {
  background: #eef5fb;
  color: #0a67a9;
}

/* vision color */
.vision-card {
  border-top: 4px solid #ef3239;
}

.vision-card .mv-icon {
  background: #fdeced;
  color: #ef3239;
}

/* title */
.mv-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}

/* text */
.mv-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

/* hover */
.mv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .12);
}

/* responsive */
@media(max-width:768px) {
  .mv-card {
    padding: 30px 25px;
  }

  .mv-card h3 {
    font-size: 20px;
  }
}

.team-image img {
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
}

.team-name {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #0a67a9;
}

.team-designation {
  font-size: 16px;
  font-weight: 500;
  color: #ef3239;
  display: block;
  margin-bottom: 15px;
}

.team-section p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

.team-expertise {
  margin-top: 20px;
}

.team-expertise h5 {
  font-size: 18px;
  margin-bottom: 10px;
}

.team-expertise ul {
  padding-left: 18px;
}

.team-expertise li {
  font-size: 14.5px;
  margin-bottom: 6px;
  color: #444;
}

.team-social a {
  font-size: 18px;
  margin-right: 10px;
  color: #0a67a9;
}

.team-social a:hover {
  color: #ef3239;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1f3b63;
  margin-bottom: 10px;
}

.section-title p {
  font-size: 15px;
  color: #6c757d;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 400;
}

.certificate-card {
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
  transition: .3s;
  height: 100%;
}

.certificate-img {
  width: 100%;
  aspect-ratio: 3/4;
  /* keeps same card proportion */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #fff;
  border-radius: 6px;
}

.certificate-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.certificate-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, .12);
}

.media-card {
  background: #fff;
  padding: 12px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
  transition: .3s;
  height: 100%;
}

.media-img {
  width: 100%;
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #fff;
  border-radius: 6px;
}

.media-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: .3s;
}

.media-card:hover img {
  transform: scale(1.05);
}

.media-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, .12);
}

/* PRODUCT / SERVICE IMAGE STYLING */
.product-card {
  background: #fff;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 5px 18px rgba(0, 0, 0, .07);
  transition: .3s;
  height: 100%;
}

.product-img {
  width: 100%;
  aspect-ratio: 1/1;
  /* square for catalog look */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #fff;
  border-radius: 6px;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* IMPORTANT: fills space (no white gaps) */
  transition: .35s ease;
}

/* Hover Effects */
.product-card:hover img {
  transform: scale(1.08);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, .10);
}

.fancybox__image {
  width: 100%;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #fff;
  border-radius: 6px;
}

.fancybox__thumbs .carousel__slide {
  background: #fff;
}

/* ===============================
HEAT EXCHANGERS PAGE
================================*/
/* SECTION SPACING */
.section-padding {
  padding: 80px 0;
}

/* SECTION TITLES */
.section-title {
  font-size: 32px;
  font-weight: 700;
  color: #1f3b63;
  margin-bottom: 15px;
}

.section-title.text-center {
  text-align: center;
}

/* PAGE TITLE */
.page-title {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #1f3b63;
}

/* PARAGRAPHS */
.product-intro p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 15px;
}

/* ===============================
ADVANTAGES CARDS
================================*/
.product-sec .feature-card {
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
  transition: .3s;
  height: 100%;
  text-align: center;
}

.product-sec .feature-card i {
  font-size: 30px;
  color: #0a67a9;
  margin-bottom: 15px;
  width: 80px;
  height: 80px;
  margin: auto;
  margin-bottom: auto;
  margin-bottom: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f6fb;
  transition: .35s;
}

.product-sec .feature-card h5,
.product-sec .feature-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #1f3b63;
}

.product-sec .feature-card p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.product-sec .feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, .12);
}

/* ===============================
TECHNICAL SPECIFICATIONS
================================*/
.spec-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.spec-list li {
  font-size: 15px;
  margin-bottom: 12px;
  color: #444;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.spec-list i {
  color: #0a67a9;
  margin-top: 4px;
}

/* ===============================
PRODUCT LINKS SECTION
================================*/
.heat-exchanger-systems a {
  display: block;
  padding: 15px 18px;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, .05);
  text-decoration: none;
  font-size: 15px;
  color: #333;
  transition: .3s;
}

.heat-exchanger-systems a:hover {
  background: #0a67a9;
  color: #fff;
  transform: translateY(-3px);
}

/* ===============================
INDUSTRIES GRID
================================*/
.applications-section i {
  font-size: 28px;
  color: #0a67a9;
  margin-bottom: 8px;
}

.applications-section p {
  font-size: 15px;
  font-weight: 500;
  color: #333;
  margin: 0;
}

/* ===============================
FAQ SECTION
================================*/
.faq-item {
  background: #fff;
  padding: 20px;
  border-radius: 6px;
  margin-bottom: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .05);
}

.faq-item h5 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1f3b63;
}

.faq-item p {
  font-size: 15px;
  color: #555;
  margin: 0;
}

/* ===============================
IMAGES
================================*/
.product-intro img {
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
}

/* ===============================
RESPONSIVE
================================*/
@media(max-width:992px) {
  .section-padding {
    padding: 60px 0;
  }

  .page-title {
    font-size: 28px;
  }

  .section-title {
    font-size: 26px;
  }

  .feature-card {
    padding: 20px;
  }
}

/* ===============================
PRODUCT SOLUTION GRID
================================*/
.product-sec .solution-card {
  display: block;
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .08);
  text-decoration: none;
  color: #333;
  height: 100%;
  transition: .3s;
}

.product-sec .solution-card img {
  max-width: 100%;
  height: 140px;
  object-fit: contain;
  margin-bottom: 12px;
  transition: .3s;
}

.product-sec .solution-card span,
.product-sec .solution-card h3 {
  display: block;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
}

.product-sec .solution-card:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, .15);
}

.product-sec .industries-section {
  background: #f8fafc;
}

.product-sec .industry-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid #e5e5e5;
  transition: all .3s ease;
  height: 100%;
}

.product-sec .industry-card i {
  font-size: 35px;
  color: #0967a9;
  margin-bottom: 15px;
}

.product-sec .industry-card h6,
.product-sec .industry-card h3 {
  font-weight: 600;
  font-size: 15px;
}

.product-sec .industry-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.faq-section {
  background: #f8fafc;
}

.faq-container {
  max-width: 800px;
  margin: auto;
}

.faq-card {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all .3s ease;
}

.faq-question {
  padding: 18px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 16px;
}

.faq-question i {
  color: #0d6efd;
  transition: 0.3s;
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  font-size: 14px;
  line-height: 1.6;
  transition: max-height .4s ease;
}

.faq-card.active .faq-answer {
  padding: 15px 20px 20px;
  max-height: 200px;
}

.faq-card.active .faq-question i {
  transform: rotate(45deg);
}

.product-image {
  margin: 0;
  text-align: center;
  background-color: transparent;
}

.product-image figcaption {
  font-size: 13px;
  color: #666;
  margin-top: 6px;
}

/* PRODUCT GRID (ALL PRODUCTS) */
.product-sec .product-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px 15px;
  text-align: center;
  transition: all .3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #f1f1f1;
}

/* IMAGE */
.product-sec .product-card figure {
  margin: 0 0 15px 0;
}

.product-sec .product-card img {
  max-height: 200px;
  width: auto;
  margin: auto;
  display: block;
  object-fit: contain;
  transition: transform .3s ease;
}

/* TITLE */
.product-sec .product-card h2,
.product-sec .product-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: #1f4c8f;
  margin-top: 10px;
  line-height: 1.4;
}

/* LINK RESET */
.product-sec a {
  text-decoration: none;
  color: inherit;
}

/* HOVER EFFECT */
.product-sec .product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.product-sec .product-card:hover img {
  transform: scale(1.05);
}

/* TITLE HOVER */
.product-sec .product-card:hover h5 {
  text-decoration: underline;
}

/* RESPONSIVE SPACING */
@media (max-width:768px) {
  .product-sec .product-card {
    padding: 15px;
  }

  .product-sec .product-card img {
    max-height: 160px;
  }
}

/* FORM CONTAINER */
.form-container {
  padding: 10px 0;
}

/* INPUT FIELDS */
.input-field {
  width: 100%;
  padding: 10px 14px;
  margin-bottom: 10px;
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  font-size: 14px;
  transition: all .2s ease;
}

/* FOCUS STYLE */
.input-field:focus {
  border-color: #1f4c8f;
  outline: none;
  box-shadow: 0 0 0 2px rgba(31, 76, 143, 0.1);
}

/* SELECT FIELD */
.select-field {
  appearance: none;
  background: #fff;
}

/* TEXTAREA */
textarea.input-field {
  min-height: 120px;
  resize: vertical;
}

/* FILE + CAPTCHA GROUP */
.file-captcha-group {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  align-items: flex-start;
}

input[type="file"].input-field {
  padding: 0;
  border: none;
  background: none;
  box-shadow: none;
  margin: 0;
}

/* CAPTCHA AREA */
.captcha-wrapper {
  display: flex;
  gap: 10px;
  align-items: center;
}

.captcha-image {
  height: 42px;
  border-radius: 4px;
}

/* BUTTON GROUP */
.button-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* BUTTON STYLE */
.submit-button {
  padding: 10px 24px;
  border: none;
  border-radius: 6px;
  background: #1f4c8f;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  transition: .2s ease;
}

.submit-button:hover {
  background: #16386a;
}

/* RESET BUTTON */
.submit-button[type="reset"] {
  background: #6c757d;
}

.submit-button[type="reset"]:hover {
  background: #545b62;
}

.enquiry-points p {
  margin-bottom: 10px;
  font-size: 14px;
}

.enquiry-points i {
  color: #1f4c8f;
  margin-right: 8px;
}

/* LOADING INDICATOR */
#loadingIndicator {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /*change these sizes to fit into your project*/
  width: 100px;
  height: 100px;
}

#loadingIndicator hr {
  border: 0;
  margin: 0;
  width: 40%;
  height: 40%;
  position: absolute;
  border-radius: 50%;
  animation: spin 2s ease infinite
}

#loadingIndicator :first-child {
  background: #19A68C;
  animation-delay: -1.5s
}

#loadingIndicator :nth-child(2) {
  background: #F63D3A;
  animation-delay: -1s
}

#loadingIndicator :nth-child(3) {
  background: #FDA543;
  animation-delay: -0.5s
}

#loadingIndicator :last-child {
  background: #193B48
}

@keyframes spin {

  0%,
  100% {
    transform: translate(0)
  }

  25% {
    transform: translate(160%)
  }

  50% {
    transform: translate(160%, 160%)
  }

  75% {
    transform: translate(0, 160%)
  }
}

/* SECTION BACKGROUND */
.contact-section {
  background: #f8fafc;
}

/* TAG */
.contact-tag {
  display: inline-block;
  font-size: 14px;
  color: #0d6efd;
  font-weight: 600;
  margin-bottom: 10px;
}

/* TITLE */
.contact-title {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 15px;
}

/* DESCRIPTION */
.contact-desc {
  color: #555;
  margin-bottom: 25px;
  line-height: 1.7;
}

/* INFO BOX */
.contact-info .info-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  padding: 15px 18px;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.contact-info .info-box i {
  font-size: 18px;
  color: #0d6efd;
  margin-top: 4px;
}

.contact-info .info-box p {
  margin: 0;
  font-size: 15px;
}

.contact-info .info-box a {
  color: #0d6efd;
  text-decoration: none;
}

/* HOVER EFFECT */
.contact-info .info-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* MAP BOX */
.map-box {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
}

/* SEARCH RESULT CARDS */
.search-results .product-card {
  text-align: center;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  transition: all .25s ease;
  height: 100%;
}

.search-results .product-card figure {
  margin-bottom: 15px;
}

.search-results .product-card img {
  max-height: 220px;
  width: auto;
  object-fit: contain;
  margin: auto;
  display: block;
}

.search-results .product-card h5,
.search-results .product-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-top: 10px;
}

.search-results .product-card h5 a,
.search-results .product-card h3 a {
  color: #1f4c8f;
  text-decoration: none;
}

.search-results .product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.search-results .product-card:hover h5 a,
.search-results .product-card:hover h3 a {
  text-decoration: underline;
}

.experience-highlight {
  text-align: left;
  margin-bottom: 10px;
}

.exp-number {
  font-size: 42px;
  font-weight: 700;
  color: #ed3237;
  display: inline-block;
}

.exp-text {
  font-size: 16px;
  font-weight: 600;
  margin-left: 5px;
}

.exp-subtext {
  font-size: 14px;
  margin: 5px 0 0;
  color: #555;
}

/* optional separator */
.specialization-box hr {
  margin: 12px 0;
  opacity: 0.2;
}

.specialization-box {
  position: absolute;
  bottom: -20px;
  right: 20px;
  max-width: 50%;
  background: #ffffff;
  padding: 5px 15px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-left: 4px solid #ed3237;
  animation: fadeUp 1s ease-in-out;
}

.specialization-box h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.specialization-box ul {
  padding-left: 18px;
  margin: 0;
}

.specialization-box li {
  font-size: 14px;
  margin-bottom: 6px;
  line-height: 1.5;
}

/* Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .specialization-box {
    position: static;
    margin-top: 15px;
  }
}

.reveal-text {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.reveal-text.active {
  opacity: 1;
  transform: translateY(0);
}

/* optional stagger feel */
.reveal-text:nth-child(1) {
  transition-delay: 0.2s;
}

.reveal-text:nth-child(2) {
  transition-delay: 0.4s;
}

.reveal-text:nth-child(3) {
  transition-delay: 0.6s;
}

/* FILTER BUTTONS */
.gallery-filter {
  margin-bottom: 30px;
}

.filter-btn {
  border: 1px solid #ddd;
  background: #fff;
  padding: 8px 18px;
  margin: 5px;
  border-radius: 30px;
  font-size: 14px;
  cursor: pointer;
  transition: .3s;
}

.filter-btn:hover,
.filter-btn.active {
  background: #c52b2b;
  color: #fff;
  border-color: #c52b2b;
}

/* GALLERY CARD */
.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e2e2;
}

.gallery-card img {
  width: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

/* ZOOM IMAGE */
.gallery-card:hover img {
  transform: scale(1.08);
}

/* OVERLAY */
.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  opacity: 0;
  transition: .3s;
  padding: 15px;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

/* ZOOM ICON */
.zoom-icon {
  font-size: 26px;
  margin-bottom: 10px;
}

/* PRODUCT NAME */
.gallery-overlay h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #ffffff;
  color: #fff;
  padding: 10px 15px;
  z-index: 1000;
  text-decoration: none;
}

.skip-link:focus,
.skip-link:focus-visible {
  top: 10px;
  left: 10px;
}

/* Button Container */
.about-one__btn-box {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 20px;
}

/* Button */
.thm-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #1863aa;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  padding: 5px 15px 5px 15px;
  border-radius: 3px;
  overflow: hidden;
  text-decoration: none;
  transition: .4s;
  z-index: 1;
}

/* Arrow box */
.thm-btn span {
  height: 42px;
  width: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #c30030;
  color: #fff;
  border-radius: 3px;
  transition: .4s;
}

/* Hover arrow */
.thm-btn:hover span {
  background: #fff;
  color: #1863aa;
}

/* Hover background */
.thm-btn::before,
.thm-btn::after {
  position: absolute;
  content: "";
  width: 50%;
  height: 0;
  background: #c30030;
  opacity: 0;
  z-index: -1;
  transition: .4s;
}

.thm-btn::before {
  top: 0;
  left: 0;
}

.thm-btn::after {
  bottom: 0;
  right: 0;
}

.thm-btn:hover::before,
.thm-btn:hover::after {
  width: 100%;
  height: 100%;
  opacity: 1;
}

.thm-btn:hover {
  color: #fff;
}

/* Tablet */
@media (max-width:991px) {
  .thm-btn {
    font-size: 15px;
    padding: 5px 15px 5px 15px;
  }
}

/* Mobile */
@media (max-width:576px) {
  .thm-btn {
    width: 65%;
    justify-content: space-between;
  }
}














.industries-section {
  padding: 70px 0;
}

/* =========================================
CTA STRIP
========================================= */
.cta-strip {
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

/* WRAPPER */
.cta-strip-wrapper {
  position: relative;
  padding: 60px;
  border-radius: 35px;
  overflow: hidden;
  background:
    linear-gradient(135deg,
      #0d8a35,
      #0b5e25);
  box-shadow:
    0 20px 50px rgba(13, 138, 53, .18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* LEAF BG */
.cta-strip-wrapper::before,
.cta-strip-wrapper::after {
  content: "";
  position: absolute;
  background:
    url('../images-opt/leaves.webp') no-repeat center;
  background-size: contain;
  opacity: .08;
  pointer-events: none;
}

.cta-strip-wrapper::before {
  width: 220px;
  height: 220px;
  top: -40px;
  left: -40px;
  transform: rotate(-20deg);
}

.cta-strip-wrapper::after {
  width: 260px;
  height: 260px;
  right: -60px;
  bottom: -60px;
  transform: rotate(20deg);
}

/* CONTENT */
.cta-strip-content {
  max-width: 700px;
  position: relative;
  z-index: 2;
}

/* BADGE */
.cta-badge {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 50px;
  background:
    rgba(255, 255, 255, .12);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* TITLE */
.cta-strip-content h2 {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
}

/* TEXT */
.cta-strip-content p {
  font-size: 17px;
  line-height: 1.9;
  color: rgba(255, 255, 255, .85);
  margin: 0;
}

/* BUTTON */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 34px;
  border-radius: 60px;
  background: #fff;
  color: #0d8a35;
  font-weight: 700;
  text-decoration: none;
  transition: .35s ease;
  position: relative;
  z-index: 2;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, .15);
}

/* HOVER */
.cta-btn:hover {
  transform: translateY(-4px);
  color: #0d8a35;
}












/* ==========================================
   INDUSTRIES PAGE
========================================== */

.industries-section {
  background: var(--ige-light);
}

.industries-section .section-title {
  margin-bottom: 50px;
}

.industries-section .section-title p {
  max-width: 800px;
  margin: 15px auto 0;
  color: var(--muted);
  line-height: 1.8;
}

/* ================= INDUSTRY CARD ================= */

.industry-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  background: var(--white);
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  border: 1px solid rgba(21, 149, 73, 0.08);
  border-top: 4px solid transparent;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.industry-card:hover {
  transform: translateY(0);
  border-top-color: var(--ige-green);
  box-shadow:
    0 15px 40px rgba(21, 149, 73, 0.12),
    0 5px 15px rgba(0, 0, 0, 0.08);
}

/* ================= ICON ================= */

.industry-icon {
  width: 85px;
  height: 85px;
  margin: 0 auto 25px;
  border-radius: 50%;
  background: var(--ige-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.industry-card:hover .industry-icon {
  background: var(--ige-green);
}

.industry-icon i {
  font-size: 34px;
  color: var(--ige-green);
  transition: all 0.4s ease;
}

.industry-card:hover .industry-icon i {
  color: var(--white);
}

/* ================= CONTENT ================= */

.industry-card h4 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 15px;
}

.industry-card p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 25px;
}

/* ================= LINK ================= */
.industry-link {
  text-decoration: none;
  color: inherit;
  display: block;
  height: auto;
}

.industry-link .industry-card {
  height: 100%;
  transition: all .35s ease;
}

.industry-link:hover .industry-card {
  transform: translateY(-8px);
}

.industry-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ige-green);
  transition: all 0.3s ease;
  padding: 15px 15px;
  margin-top: 10px;
}

.industry-link i {
  transition: transform 0.3s ease;
}

.industry-card:hover .industry-link {
  color: var(--accent);
}

.industry-card:hover .industry-link i {
  transform: translateX(5px);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {

  .industry-card {
    padding: 30px 20px;
  }

  .industry-card h4 {
    font-size: 20px;
  }

  .industry-icon {
    width: 75px;
    height: 75px;
  }

  .industry-icon i {
    font-size: 30px;
  }
}

@media (max-width: 767px) {

  .industries-section .section-title {
    margin-bottom: 40px;
  }

  .industry-card h4 {
    font-size: 18px;
  }

  .industry-card p {
    font-size: 15px;
  }
}






/* ==========================================
   INDUSTRY DETAILS PAGE
========================================== */

.industry-overview {
  background: var(--white);
}

.industry-image img {
  width: 100%;
  border-radius: 20px;
}

.industry-tag {
  display: inline-block;
  background: var(--ige-light);
  color: var(--ige-green);
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
  font-weight: 600;
}

.industry-content h2 {
  color: var(--text);
  margin-bottom: 20px;
}

.industry-content p {
  color: var(--muted);
  line-height: 1.9;
}

.industry-content ul {
  margin-top: 20px;
  padding-left: 20px;
}

.industry-content li {
  margin-bottom: 10px;
  color: var(--text);
}

.industry-applications,
.industry-solutions {
  background: var(--ige-light);
}


.industry-cta {
  padding: 90px 0;
  text-align: center;
  background: linear-gradient(135deg,
      var(--ige-dark),
      var(--ige-green));
  color: var(--white);
}

.industry-cta h2 {
  margin-bottom: 15px;
}

.industry-cta p {
  max-width: 700px;
  margin: 0 auto 30px;
}

.theme-btn {
  display: inline-block;
  padding: 14px 35px;
  background: var(--white);
  color: var(--ige-green);
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
}








/* ===== PAGE TITLE AREA ===== */
.page-header {
  background: #f4f5f7;
  padding: 40px 0;
}

.page-header-content {
  text-align: left;
}

.page-header-content h1 {
  margin: 0;
  font-size: 30px;
  font-weight: 600;
  color: #111827;
}

/* ===== BREADCRUMB ===== */

.page-breadcrumb {
  background: #e8ebef;
  padding: 18px 0;
}

.breadcrumb-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
}

.breadcrumb-list li {
  display: flex;
  align-items: center;
  font-size: 16px;
}

.breadcrumb-list li:not(:last-child)::after {
  content: "›";
  margin-left: 12px;
  color: #7b8794;
}

.breadcrumb-list a {
  color: #56657a;
  text-decoration: none;
  transition: .3s;
}

.breadcrumb-list a:hover {
  color: #000;
}

.breadcrumb-list .active {
  color: #111827;
  font-weight: 600;
}

/* ===== RESPONSIVE ===== */

@media(max-width:768px) {

  .page-header {
    padding: 60px 0;
  }

  .page-header-content h1 {
    font-size: 32px;
  }

  .breadcrumb-list {
    flex-wrap: wrap;
  }

  .breadcrumb-list li {
    font-size: 14px;
  }
}





/* ==========================================
  INDUSTRIES PAGE
========================================== */

.industries-intro {
  background: var(--white);
}

.industries-intro p {
  max-width: 850px;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.9;
  font-size: 17px;
}

/* ================= INDUSTRIES ================= */

.industries-section {
  background: var(--ige-light);
}

.industry-card {
  background: var(--white);
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  height: 100%;
  border: 1px solid rgba(21, 149, 73, .08);
  transition: all .4s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, .05);
}

.industry-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 15px 40px rgba(21, 149, 73, .12),
    0 5px 15px rgba(0, 0, 0, .08);
}

.industry-icon {
  width: 85px;
  height: 85px;
  margin: 0 auto 25px;
  border-radius: 50%;
  background: var(--ige-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .4s ease;
}

.industry-card:hover .industry-icon {
  background: var(--ige-green);
}

.industry-icon i {
  font-size: 34px;
  color: var(--ige-green);
  transition: .4s ease;
}

.industry-card:hover .industry-icon i {
  color: var(--white);
}

.industry-card h4 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 15px;
  line-height: 1.4;
}

.industry-card p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 0;
}

/* ================= WHY INDUSTRIES ================= */

.why-industries {
  background: var(--white);
}

.feature-box {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  height: 100%;
  border-top: 4px solid var(--ige-green);
  box-shadow: 0 8px 25px rgba(0, 0, 0, .06);
  transition: all .4s ease;
}

.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .10);
}

.feature-box i {
  font-size: 50px;
  color: var(--ige-green);
  margin-bottom: 20px;
}

.feature-box h4 {
  color: var(--text);
  margin-bottom: 15px;
  font-weight: 700;
}

.feature-box p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 0;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {

  .industry-card h4 {
    font-size: 20px;
  }

  .industry-icon {
    width: 75px;
    height: 75px;
  }

  .industry-icon i {
    font-size: 30px;
  }
}

@media (max-width: 767px) {

  .industries-intro p {
    font-size: 16px;
  }

  .industry-card {
    padding: 30px 20px;
  }

  .feature-box {
    padding: 30px 20px;
  }

  .feature-box i {
    font-size: 42px;
  }
}

@media (max-width: 575px) {

  .industry-card h4 {
    font-size: 18px;
  }

  .industry-icon {
    width: 70px;
    height: 70px;
  }

  .industry-icon i {
    font-size: 28px;
  }
}






/* ==========================================
   INDUSTRY DETAILS PAGE
========================================== */

/* Fix anchor scroll position for sticky header */

#overview,
#applications,
#challenges,
#solutions,
#why-us,
#benefits,
#faq {
  scroll-margin-top: 140px;
}

.industries-sec {
  padding: 80px 0 40px;
  background: #f8fafc;
}

/* ==========================================
   SIDEBAR
========================================== */
.sidebar-heading {
  padding: 25px;
  background: linear-gradient(135deg,
      var(--ige-dark),
      var(--ige-green));
  text-align: center;
}

.sidebar-heading span {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255, 255, 255, .15);
  color: var(--white);
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.industry-sidebar {
  position: sticky;
  top: 120px;
}

.sidebar-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
  border: 1px solid rgba(21, 149, 73, .08);
}

.industry-nav {
  list-style: none;
  margin: 0;
  padding: 15px;
}

.industry-nav li {
  margin-bottom: 12px;
}

.industry-nav li:last-child {
  margin-bottom: 0;
}

.industry-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  background: var(--ige-light);
  color: var(--text);
  padding: 10px 15px;
  border-radius: 12px;
  transition: all .3s ease;
  font-weight: 500;
  border-left: 4px solid transparent;
  border: 1px solid rgba(21, 149, 73, .08);
}

.industry-nav a:hover {
  background: var(--ige-green);
  color: var(--white);
  border-left-color: var(--ige-leaf);
}

.industry-nav a i {
  font-size: 14px;
  transition: .3s ease;
}

.industry-nav a:hover i {
  transform: translateX(4px);
}

/* ==========================================
   SIDEBAR CONTACT
========================================== */

.sidebar-contact {
  padding: 25px;
  border-top: 1px solid rgba(0, 0, 0, .06);
  background: linear-gradient(135deg,
      rgba(144, 199, 69, .08),
      rgba(21, 149, 73, .08));
}

.sidebar-contact h5 {
  color: var(--text);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.sidebar-contact p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.sidebar-btn {
  display: block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  background: var(--ige-green);
  color: var(--white);
  padding: 14px 20px;
  border-radius: 10px;
  font-weight: 600;
  transition: .3s ease;
}

.sidebar-btn:hover {
  background: var(--accent);
  color: var(--white);
}

/* ==========================================
   CONTENT BOX
========================================== */

.content-box {
  background: var(--white);
  border-radius: 20px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .05);
  border: 1px solid rgba(21, 149, 73, .08);
}

.content-box:last-child {
  margin-bottom: 0;
}

/* ==========================================
   SECTION TITLE
========================================== */

.content-box .section-title {
  margin-bottom: 25px;
}

.content-box .section-title span {
  display: inline-block;
  color: var(--ige-green);
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.content-box .section-title h2 {
  margin-bottom: 0;
  color: var(--text);
}

/* ==========================================
   IMAGES
========================================== */

.content-box figure {
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: 25px;
}

.content-box figure img {
  width: 75%;
  transition: .5s ease;
}

/* ==========================================
   CONTENT
========================================== */

.content-box p {
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 15px;
}

.industry-list {
  padding-left: 20px;
  margin-bottom: 20px;
}

.industry-list li {
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.8;
}

/* ==========================================
   APPLICATION CARD
========================================== */

.application-card,
.solution-card,
.feature-card {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  height: 100%;
  border: 1px solid rgba(21, 149, 73, .08);
  transition: all .3s ease;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
}

.application-card:hover,
.solution-card:hover,
.feature-card:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, .38);
}

.application-card h4,
.solution-card h4,
.feature-card h4 {
  color: var(--text);
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 700;
}

.application-card p,
.solution-card p,
.feature-card p {
  margin-bottom: 0;
}

/* ==========================================
   BENEFITS
========================================== */

.benefit-box {
  background: var(--ige-light);
  border-radius: 12px;
  padding: 18px;
  text-align: center;
  font-weight: 600;
  color: var(--text);
  transition: .3s ease;
  border: 1px solid rgba(21, 149, 73, .08);
}

.benefit-box:hover {
  background: var(--ige-green);
  color: var(--white);
  transform: translateY(-3px);
}

/* ==========================================
   FAQ
========================================== */

.accordion-item {
  border: none;
  margin-bottom: 15px;
  border-radius: 15px !important;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, .05);
}

.accordion-button {
  padding: 18px 22px;
  font-weight: 600;
  color: var(--text);
}

.accordion-button:not(.collapsed) {
  background: var(--ige-green);
  color: var(--white);
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-body {
  color: var(--muted);
  line-height: 1.8;
}

/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 991px) {

  .industry-sidebar {
    position: relative;
    top: auto;
    margin-bottom: 30px;
  }

  .content-box {
    padding: 30px;
  }
}

@media (max-width: 767px) {

  .industries-sec {
    padding: 60px 0;
  }

  .content-box {
    padding: 25px;
  }

  .industry-nav {
    padding: 20px;
  }

  .industry-nav a {
    font-size: 14px;
    padding: 12px 15px;
  }

  .content-box .section-title h2 {
    font-size: 28px;
  }

  .application-card,
  .solution-card,
  .feature-card {
    padding: 20px;
  }
}











/* ================= PRODUCT PAGE ================= */

.product-detail-section {
  background: #fff;
}

.breadcrumb-wrap {
  font-size: 14px;
}

.breadcrumb-wrap a {
  color: #666;
  text-decoration: none;
}

.breadcrumb-wrap span {
  color: #0f172a;
  font-weight: 600;
}

/* ================= PRODUCT HERO ================= */

.product-image-box {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  border: 1px solid #e8edf5;
  box-shadow: 0 5px 20px rgba(0, 0, 0, .04);
}

.product-image-box img {
  width: 100%;
}

.product-category {
  display: inline-block;
  background: #eef3ff;
  color: #1e40af;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 15px;
  letter-spacing: .5px;
}

.product-detail-section h1 {
  font-size: 30px;
  line-height: 1.1;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 20px;
}

.product-detail-section p {
  color: #64748b;
  line-height: 1.8;
}

/* ================= FEATURE TAGS ================= */

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 25px 0;
}

.feature-tags span {
  background: #fff;
  border: 1px solid #dbe3ef;
  padding: 8px 14px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
}

/* ================= BUTTONS ================= */

.product-actions {
  display: flex;
  gap: 15px;
}

.btn-primary {
  background: #1e3a8a;
  border: none;
  padding: 12px 24px;
  border-radius: 40px;
}

.btn-outline-primary {
  border: 2px solid #1e3a8a;
  color: #1e3a8a;
  padding: 12px 24px;
  border-radius: 40px;
}

/* ================= QUICK SPECS ================= */

.spec-box {
  background: #fff;
  padding: 18px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
}

.spec-box small {
  display: block;
  color: #64748b;
  margin-bottom: 6px;
  text-transform: uppercase;
  font-size: 11px;
}

.spec-box strong {
  font-size: 18px;
  color: #0f172a;
}

/* ================= SECTION TITLE ================= */

.section-heading {
  margin-bottom: 25px;
}

.section-heading h2 {
  font-size: 34px;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
}

/* ================= FEATURES ================= */

.feature-card {
  background: #fff;
  border: 1px solid #e4e9f2;
  padding: 18px 20px;
  border-radius: 12px;
  font-weight: 600;
  transition: .3s;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
}

/* ================= ENQUIRY FORM ================= */

.enquiry-form {
  background: #fff;
  padding: 30px;
  border-radius: 18px;
  border: 1px solid #e6ebf4;
  box-shadow: 0 5px 20px rgba(0, 0, 0, .04);
  position: sticky;
  top: 120px;
}

.enquiry-form h4 {
  margin-bottom: 20px;
  font-weight: 700;
}

.enquiry-form .form-control {
  border-radius: 10px;
  min-height: 48px;
  border: 1px solid #d9e0ea;
}

.enquiry-form textarea {
  min-height: 120px;
}

/* ================= APPLICATION TAGS ================= */

.application-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.application-tags span {
  background: #fff;
  padding: 12px 18px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  font-weight: 600;
}

/* ================= TABLES ================= */

.table {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, .04);
}

.table th {
  background: #f1f5f9;
  font-weight: 700;
}

.table td,
.table th {
  padding: 16px;
  vertical-align: middle;
}

/* ================= OPERATING DATA ================= */

.data-card {
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  border: 1px solid #e5e7eb;
  min-height: 120px;
}

.data-card small {
  display: block;
  text-transform: uppercase;
  font-size: 11px;
  color: #64748b;
  margin-bottom: 8px;
}

.data-card strong {
  font-size: 22px;
  color: #0f172a;
}

/* ================= CONSTRUCTION ================= */

.construction-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  padding: 25px;
  border-radius: 14px;
  text-align: center;
  height: 100%;
}

.construction-card strong {
  display: block;
  margin-top: 10px;
  color: #1e3a8a;
  font-size: 18px;
}

/* ================= DOWNLOADS ================= */

.download-card {
  display: block;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 22px;
  text-align: center;
  text-decoration: none;
  color: #0f172a;
  font-weight: 700;
  transition: .3s;
}

.download-card:hover {
  background: #1e3a8a;
  color: #fff;
  transform: translateY(-4px);
}

/* ================= RELATED PRODUCT ================= */

.related-product-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  transition: .3s;
}

.related-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}

.related-product-card img {
  width: 100%;
}

.related-product-card-content {
  padding: 20px;
}

/* ================= CTA ================= */

.product-cta {
  background: linear-gradient(135deg, #0f172a, #1e3a8a);
  color: #fff;
  padding: 60px;
  border-radius: 24px;
  text-align: center;
}

.product-cta h2 {
  color: #fff;
  font-size: 42px;
  font-weight: 800;
}

.product-cta p {
  color: rgba(255, 255, 255, .8);
  margin: 15px auto 30px;
  max-width: 700px;
}

/* ================= MOBILE ================= */

@media(max-width:991px) {

  .product-detail-section h1 {
    font-size: 34px;
  }

  .section-heading h2 {
    font-size: 28px;
  }

  .enquiry-form {
    position: relative;
    top: auto;
    margin-top: 40px;
  }

  .product-actions {
    flex-direction: column;
  }

  .product-cta {
    padding: 40px 25px;
  }

  .product-cta h2 {
    font-size: 30px;
  }
}

@media(max-width:767px) {

  .feature-tags {
    gap: 8px;
  }

  .feature-tags span {
    font-size: 11px;
  }

  .application-tags {
    gap: 8px;
  }

  .application-tags span {
    width: 100%;
    text-align: center;
  }
}









/* ================= STICKY CATALOGUE BUTTON ================= */

.catalogue-btn {
  position: fixed;
  left: 25px;
  bottom: 25px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #0d6efd9c, #0047b3a1);
  color: #fff;
  text-decoration: none;
  padding: 14px 22px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(13, 110, 253, .35);
  transition: all .3s ease;
}

.catalogue-btn:hover {
  background: linear-gradient(135deg, #0d6efd, #0047b3);
}

.catalogue-btn::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50px;
  background: rgba(13, 110, 253, .25);
  animation: pulse 2s infinite;
  z-index: -1;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: .8;
  }

  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

.catalogue-btn:hover {
  transform: translateY(-4px);
  color: #fff;
  box-shadow: 0 15px 35px rgba(13, 110, 253, .45);
}

.catalogue-btn i {
  font-size: 18px;
}

/* Floating Animation */
@keyframes floatBtn {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

.catalogue-btn {
  animation: floatBtn 2.5s ease-in-out infinite;
}

/* Mobile */
@media(max-width:768px) {

  .catalogue-btn {
    right: 15px;
    bottom: 15px;
    padding: 12px 18px;
  }

  .catalogue-btn span {
    display: none;
  }

  .catalogue-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    justify-content: center;
  }

  .catalogue-btn i {
    font-size: 20px;
  }
}















/* ================= ENGINEERING SECTION ================= */
/* ================= PRODUCT TITLE ================= */

.product-title-wrap {
  margin-bottom: 40px;
  text-align: center;
}

.product-title {
  font-size: 72px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
  color: #8bc53f;
  margin: 0 0 15px;
  letter-spacing: 1px;
}

.product-subtitle {
  font-size: 28px;
  line-height: 1.3;
  font-weight: 700;
  text-transform: uppercase;
  color: #17356c;
  margin: 0;
}

.title-divider {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.green-line {
  width: 150px;
  height: 5px;
  background: #8bc53f;
  border-radius: 30px;
}

.gray-line {
  width: 180px;
  height: 2px;
  background: #7f7f7f;
}

/* Responsive */

@media(max-width:991px) {

  .product-title {
    font-size: 54px;
  }

  .product-subtitle {
    font-size: 22px;
  }

}

@media(max-width:767px) {

  .product-title {
    font-size: 38px;
  }

  .product-subtitle {
    font-size: 18px;
  }

  .green-line {
    width: 100px;
  }

  .gray-line {
    width: 100px;
  }

}

.product-engineering-section {
  padding: 40px 0;
}

.engineering-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .04);
}

.engineering-title {
  background: #15356b;
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .5px;
  text-align: center;
  padding: 14px;
}

.spec-table {
  margin: 0;
}

.spec-table td {
  padding: 12px 16px;
  font-size: 14px;
  border-color: #e5e7eb;
}

.spec-table td:first-child {
  font-weight: 600;
  color: #444;
  width: 35%;
}

.pump-preview {
  background: #f8fafc;
  border-radius: 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  border: 1px solid #e5e7eb;
}

.pump-preview img {
  max-height: 450px;
  object-fit: contain;
}

.engineering-card img {
  width: 100%;
  display: block;
}

@media(max-width:991px) {

  .pump-preview img {
    max-height: 350px;
  }

}

.feature-list {
  list-style: none;
  margin: 0;
  padding: 15px 20px;
  background: #f4faf2;
  border: 1px solid #d8ead3;
  border-radius: 10px;
}

.feature-list.col-cnt-3 {
  column-count: 3;
}

.feature-list.col-cnt-2 {
  column-count: 2;
}

.feature-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 16px;
  line-height: 1.8;
  color: #444;
  font-size: 15px;
}

.feature-list li:last-child {
  margin-bottom: 0;
}

.feature-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #58b947;
  position: absolute;
  left: 0;
  top: 4px;
  font-size: 14px;
}

.feature-list:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

/* ================= KEY FEATURES ================= */
.key-features-section {
  padding: 30px 0;
}

.section-heading {
  /*! display: flex; */
  align-items: center;
  gap: 25px;
  margin-bottom: 30px;
}

.section-heading h2 {
  margin: 0;
  font-size: 35px;
  font-weight: 800;
  color: #17356c;
  text-transform: uppercase;
}

.heading-line {
  width: 150px;
  height: 5px;
  background: #8bc53f;
  border-radius: 30px;
}

.feature-card {
  height: 100%;
}

.feature-top {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 12px;
}

.feature-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  background: #17356c;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon i {
  color: #8bc53f;
  font-size: 20px;
}

.feature-top h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.05;
  font-weight: 700;
  color: #17356c;
  text-transform: uppercase;
}

.feature-divider {
  width: 190px;
  height: 2px;
  background: #8bc53f;
  margin: 15px 0;
}

.feature-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: #666;
  font-weight: 400;
}

@media(max-width:991px) {

  .section-heading h2 {
    font-size: 34px;
  }

  .feature-top h3 {
    font-size: 24px;
  }

  .feature-card p {
    font-size: 16px;
  }
}

@media(max-width:767px) {

  .section-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .section-heading h2 {
    font-size: 28px;
  }

  .feature-divider {
    width: 100%;
  }
}

/* ================= INDUSTRIAL APPLICATIONS ================= */

.industrial-applications {
  padding: 70px 0;
}

.section-title {
  margin-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 800;
  text-transform: uppercase;
  color: #163567;
  margin-bottom: 10px;
}

.title-line {
  display: flex;
  align-items: center;
}

.title-line .green {
  width: 80px;
  height: 5px;
  background: #8cc63f;
  border-radius: 50px;
}

.title-line .gray {
  width: 50px;
  height: 2px;
  background: #999;
}

.applications-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.app-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
  transition: .3s;
}

.app-item i {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border: 2px solid #163567;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8cc63f;
  font-size: 14px;
}

.app-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}

@media(max-width:991px) {
  .applications-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:767px) {
  .applications-grid {
    grid-template-columns: 1fr;
  }
}



.product-highlights .spec-box {
  padding: 15px;
}

.product-highlights .spec-box img {
  max-width: 85px;
  height: auto;
  margin-bottom: 20px;
  transition: .3s;
}

.product-highlights .spec-box:hover img {
  transform: translateY(-5px);
}

.product-highlights .spec-box h4 {
  font-size: 24px;
  font-weight: 700;
  color: #16315f;
  margin-bottom: 5px;
  text-transform: uppercase;
  line-height: 1.2;
}

.product-highlights .spec-box span {
  display: block;
  font-size: 20px;
  color: #555;
  line-height: 1.4;
  font-weight: 500;
}










/* =====================================
   ABOUT INTRO
===================================== */
.about-intro {
  font-size: 16px;
  line-height: 1.6;
  color: #4b5563;
  margin-top: 20px;
}

.about-highlights {
  margin-top: 60px;
}

.highlight-box {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 25px;
  height: 100%;
  transition: .3s;
  text-align: center;
}

.highlight-box:hover {
  border-color: #159549;
  transform: translateY(-5px);
}

.highlight-box h4 {
  font-size: 20px;
  color: #12592e;
  margin-bottom: 10px;
  font-weight: 600;
}

.highlight-box p {
  margin: 0;
  color: #6b7280;
  font-size: 0.9rem;
}

/* =====================================
   SISTER CONCERN
===================================== */

.sister-concern-box {
  margin-top: 80px;
  padding: 50px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .04);
}

.sister-logo {
  text-align: center;
}

.sister-logo img {
  max-width: 350px;
  width: 100%;
  height: auto;
}

.sister-tag {
  display: inline-block;
  padding: 8px 18px;
  background: #eef8f1;
  color: #159549;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}

.sister-concern-box h3 {
  font-size: 34px;
  font-weight: 700;
  color: #12592e;
  margin-bottom: 20px;
}

.sister-concern-box p {
  color: #6b7280;
  line-height: 1.9;
  margin-bottom: 25px;
}

.sister-services {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sister-services span {
  padding: 10px 18px;
  border-radius: 30px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  transition: .3s;
}

.sister-services span:hover {
  background: #159549;
  color: #fff;
  border-color: #159549;
}

@media(max-width:991px) {

  .sister-concern-box {
    padding: 35px;
  }

  .sister-logo {
    margin-bottom: 30px;
  }

  .sister-concern-box h3 {
    font-size: 28px;
  }
}

@media(max-width:576px) {

  .sister-concern-box {
    padding: 25px;
  }

  .sister-services {
    gap: 8px;
  }

  .sister-services span {
    font-size: 13px;
    padding: 8px 14px;
  }
}

.about-page-hero {
  padding: 90px 0;
  background: #fff;
  text-align: center;
}

.about-hero-content {
  max-width: 900px;
  margin: auto;
}

.section-tag {
  display: inline-block;
  color: var(--ige-green);
  background: rgba(21, 149, 73, .08);
  padding: 10px 22px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 25px;
}

.about-hero-content h1 {
  font-size: 58px;
  line-height: 1.15;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 25px;
}

.about-hero-content h1 span {
  color: var(--ige-green);
}

.about-hero-content p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--muted);
  margin: 0;
}

/* =====================================
   COMMON SECTIONS
===================================== */

.about-story-section,
.mission-vision-section,
.why-ige-section,
.industries-section,
.core-values-section {
  padding: 50px 0;
}

.about-story-section,
.industries-section {
  background: #f8fafc;
}

.mission-vision-section,
.why-ige-section,
.core-values-section {
  background: #fff;
}

/* =====================================
   SECTION HEADINGS
===================================== */

.section-heading {
  margin-bottom: 25px;
}

.section-heading.center {
  text-align: center;
  margin-bottom: 60px;
}

.section-heading span {
  display: block;
  color: var(--ige-green);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.section-heading h2 {
  font-size: 44px;
  font-weight: 700;
  color: var(--text);
  margin: 0;
  line-height: 1.2;
}

/* =====================================
   STORY CONTENT
===================================== */

.about-story-content p {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.9;
  margin-bottom: 25px;
}

.about-story-content p:not(:last-child) {
  margin-bottom: 20px;
}

/* =====================================
   MISSION / VISION
===================================== */

.mission-vision-section {
  background: #f8fafc;
}

.mv-card {
  background: #f4faef;
  padding: 25px;
  border-radius: 24px;
  border: 1px solid #e5e7eb;
  height: 100%;
  transition: .35s ease;
  position: relative;
  overflow: hidden;
}

.mv-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: #159549;
}

.mv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
}

.mv-card.vision {
  background: linear-gradient(135deg,
      #159549,
      #12592e);
  color: #fff;
  border: none;
}

.mv-card.vision::before {
  background: #90c745;
}

/* Label */

.mv-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #159549;
  margin-bottom: 12px;
}

.mv-card.vision .mv-label {
  color: #d9f99d;
}

/* Icon */

.mv-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #cef6da;
  color: #159549;
  font-size: 32px;
  margin-bottom: 25px;
  position: relative;
}

.mv-card.vision .mv-icon {
  background: rgba(255, 255, 255, .12);
  color: #fff;
}

/* Pulse Animation */

.pulse-effect {
  animation: pulse-effect 2s infinite;
}

@keyframes pulse-effect {

  0% {
    box-shadow: 0 0 0 0 rgba(21, 149, 73, .4);
  }

  70% {
    box-shadow: 0 0 0 18px rgba(21, 149, 73, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(21, 149, 73, 0);
  }
}

.mv-card.vision .pulse-effect {
  animation: vision-pulse 2s infinite;
}

@keyframes vision-pulse {

  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, .35);
  }

  70% {
    box-shadow: 0 0 0 18px rgba(255, 255, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

/* Content */

.mv-card h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.value-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.value-header h4 {
  margin: 0;
  font-weight: 600;
  color: var(--text);
  font-size: 20px;
}

.mv-card p {
  margin-bottom: 0;
  text-align: left;
}

.mv-card .mv-icon {
  flex-shrink: 0;
}

.mv-card p {
  margin: 0;
  line-height: 1.9;
  color: #353940;
}

.mv-card.vision p {
  color: rgba(255, 255, 255, .9);
}

/* Responsive */

@media(max-width:991px) {

  .mv-card {
    padding: 40px;
  }

  .mv-card h3 {
    font-size: 26px;
  }
}

@media(max-width:576px) {

  .mv-card {
    padding: 30px;
  }

  .mv-icon {
    width: 70px;
    height: 70px;
    font-size: 28px;
  }

  .mv-card h3 {
    font-size: 22px;
  }
}

/* =====================================
   WHY CHOOSE US
===================================== */

.why-ige-section {
  background: #fff;
}

.why-card {
  position: relative;
  height: 100%;
  padding: 35px 30px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  transition: all .35s ease;
  overflow: hidden;
}

.why-number {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 48px;
  font-weight: 800;
  color: #15954921;
  line-height: 1;
}

.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: #159549;
  transition: .35s;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
  border-color: #159549;
}

.why-card:hover::before {
  width: 100%;
  opacity: .04;
}

.why-card i {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #eef8f1;
  color: #159549;
  font-size: 30px;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}

.why-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.why-card p {
  color: #6b7280;
  line-height: 1.8;
  font-size: 14px;
  margin: 0;
  position: relative;
  z-index: 2;
}

/* =====================================
   INDUSTRIES
===================================== */

.industry-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.industry-box {
  padding: 14px 24px;
  border-radius: 50px;
  background: #fff;
  border: 1px solid var(--border);
  font-size: 15px;
  font-weight: 500;
  transition: .3s;
}

.industry-box:hover {
  background: var(--ige-green);
  color: #fff;
  border-color: var(--ige-green);
}

/* =====================================
   OUR VALUES
===================================== */

.core-values-section {
  background: #f8fafc;
  position: relative;
}

.value-card {
  position: relative;
  height: 100%;
  padding: 40px 30px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  overflow: hidden;
  transition: all .35s ease;
}

.value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: #159549;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, .08);
  border-color: #159549;
}

/* Logo Leaf Watermark */

.value-number {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 90px;
  height: 90px;
  background: url("../images-opt/leaves.webp") center center no-repeat;
  background-size: contain;
  opacity: .06;
  z-index: 1;

  /* Hide Number Text */
  font-size: 0;
  line-height: 0;
  color: transparent;
  pointer-events: none;

  transition: .35s ease;
}

.value-card:hover .value-number {
  opacity: .12;
  transform: scale(1.08);
}

/* Icon */

.value-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eef8f1;
  color: #159549;
  border-radius: 16px;
  margin-bottom: 25px;
  font-size: 28px;
  position: relative;
  z-index: 2;
  transition: .35s ease;
}

.value-card:hover .value-icon {
  background: #159549;
  color: #fff;
  transform: translateY(-3px);
}

/* Content */

.value-card h4 {
  font-size: 24px;
  font-weight: 700;
  color: #12592e;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.value-card p {
  color: #6b7280;
  line-height: 1.8;
  margin: 0;
  position: relative;
  z-index: 2;
}

/* Responsive */

@media(max-width:991px) {

  .value-card {
    padding: 35px 25px;
  }

  .value-number {
    width: 75px;
    height: 75px;
  }
}

@media(max-width:576px) {

  .value-card {
    padding: 30px 25px;
  }

  .value-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .value-card h4 {
    font-size: 22px;
  }

  .value-number {
    width: 65px;
    height: 65px;
    top: 15px;
    right: 15px;
  }
}

/* =====================================
   CTA STRIP
===================================== */

.cta-strip {
  padding: 80px 0;
}

.cta-strip-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.cta-strip-content h2 {
  color: #fff;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-strip-content p {
  color: rgba(255, 255, 255, .85);
  margin: 0;
}

.cta-badge {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(255, 255, 255, .15);
  color: #fff;
  border-radius: 30px;
  margin-bottom: 15px;
  font-size: 14px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 34px;
  background: #fff;
  color: var(--ige-green);
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  transition: .3s;
}

.cta-btn:hover {
  transform: translateY(-3px);
  background: #f3f4f6;
}

/* =====================================
   RESPONSIVE
===================================== */

@media (max-width:991px) {

  .page-header-content h1 {
    font-size: 40px;
  }

  .about-hero-content h1 {
    font-size: 46px;
  }

  .section-heading h2 {
    font-size: 36px;
  }

  .cta-strip-wrapper {
    flex-direction: column;
    text-align: center;
    padding: 30px;
  }
}

@media (max-width:767px) {
  .page-header-content h1 {
    font-size: 20px;
  }

  .page-header {
    padding: 40px 0;
  }

  .about-page-hero {
    padding: 70px 0;
  }

  .about-story-section,
  .mission-vision-section,
  .why-ige-section,
  .industries-section,
  .core-values-section {
    padding: 70px 0;
  }

  .about-hero-content h1 {
    font-size: 34px;
  }

  .section-heading h2 {
    font-size: 30px;
  }

  .mv-card,
  .why-card,
  .value-card {
    padding: 30px;
  }

  .cta-strip-content h2 {
    font-size: 30px;
  }

  .industry-box {
    width: 100%;
    text-align: center;
  }
}













/* ==========================================
   TEAM MANAGEMENT PAGE
========================================== */
.py-80 {
  padding: 80px 0;
}

.pb-80 {
  padding-bottom: 80px;
}

.section-title {
  margin-bottom: 50px;
}

.section-title span {
  display: inline-block;
  position: relative;
  color: var(--ige-green);
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}


.section-title h2 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 0;
}

/* ================= PAGE BANNER ================= */

.page-banner {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  text-align: center;
  color: var(--white);
  background: linear-gradient(135deg,
      var(--ige-dark) 0%,
      var(--ige-green) 60%,
      var(--ige-leaf) 100%);
}

.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right,
      rgba(255, 255, 255, .15),
      transparent 40%);
}

.page-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 40px 40px;
}

.page-banner .container {
  position: relative;
  z-index: 2;
}

.page-banner h1 {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 15px;
}

.page-banner p {
  max-width: 750px;
  margin: 0 auto;
  font-size: 18px;
  opacity: .95;
  line-height: 1.8;
}

/* ================= INTRO ================= */

.team-intro {
  background: var(--white);
}

.team-intro p {
  font-size: 17px;
  line-height: 1.9;
  color: var(--muted);
}

/* ================= TEAM SECTION ================= */

.team-section {
  padding: 80px 0;
  background: var(--ige-light);
}

.team-card {
  position: relative;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  border: 1px solid rgba(21, 149, 73, .08);
  transition: all .4s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, .06);
}

.team-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background: var(--ige-green);
  transform: scaleX(0);
  transform-origin: center;
  transition: .4s ease;
}

.team-card:hover::after {
  transform: scaleX(1);
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 15px 40px rgba(21, 149, 73, .12),
    0 5px 15px rgba(0, 0, 0, .08);
}

.team-image {
  overflow: hidden;
}

.team-image img {
  width: 100%;
  /* aspect-ratio: 1 / 1; */
  object-fit: cover;
  transition: .5s ease;
}

.team-card:hover .team-image img {
  transform: scale(1.08);
}

.team-content {
  padding: 25px;
  text-align: center;
}

.team-content h4 {
  color: var(--text);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.team-content span {
  display: block;
  color: var(--ige-green);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 18px;
  transition: .3s ease;
}

.team-card:hover .team-content span {
  color: var(--accent);
}

/* ================= SOCIAL ================= */

.team-social {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.team-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ige-light);
  color: var(--ige-green);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all .3s ease;
}

.team-social a:hover {
  background: var(--ige-green);
  color: var(--white);
  transform: translateY(-3px);
}

/* ================= WHY TEAM ================= */

.why-team-section {
  background: var(--white);
}

.feature-box {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  height: 100%;
  border: 1px solid rgba(21, 149, 73, .08);
  border-top: 4px solid var(--ige-green);
  transition: all .4s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, .06);
}

.feature-box:hover {
  transform: translateY(-8px);
  border-color: var(--ige-green);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .10);
}

.feature-box i {
  font-size: 50px;
  color: var(--ige-green);
  margin-bottom: 20px;
}

.feature-box h4 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 15px;
}

.feature-box p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 0;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {

  .page-banner {
    padding: 90px 0;
  }

  .page-banner h1 {
    font-size: 42px;
  }

  .section-title h2 {
    font-size: 34px;
  }
}

@media (max-width: 767px) {

  .py-80 {
    padding: 60px 0;
  }

  .pb-80 {
    padding-bottom: 60px;
  }

  .team-section {
    padding: 60px 0;
  }

  .page-banner {
    padding: 80px 0;
  }

  .page-banner h1 {
    font-size: 34px;
  }

  .page-banner p {
    font-size: 16px;
  }

  .section-title {
    margin-bottom: 40px;
  }

  .section-title h2 {
    font-size: 30px;
  }

  .team-content {
    padding: 20px;
  }

  .team-content h4 {
    font-size: 20px;
  }

  .feature-box {
    padding: 30px 20px;
  }
}

@media (max-width: 575px) {

  .page-banner {
    padding: 70px 0;
  }

  .page-banner h1 {
    font-size: 28px;
  }

  .section-title h2 {
    font-size: 24px;
  }

  .feature-box h4 {
    font-size: 20px;
  }

  .feature-box i {
    font-size: 40px;
  }
}











/* =========================================
   HEADER
========================================= */
.main-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  overflow: visible;
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-right {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* =========================================
   TOP HEADER
========================================= */
.header-top {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 40px;
  padding: 10px 0;
}

/* =========================================
   HEADER SEARCH
========================================= */
.header-search {
  position: relative;
  width: 400px;
  transition: all .3s ease;
}

.header-search form {
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 50px;
  background: #fff;
  border: 1px solid #e5e5e5;
  box-shadow: 0 5px 20px rgba(0, 0, 0, .05);
  transition: all .3s ease;
}

.header-search form:focus-within {
  border-color: #159549;
  box-shadow: 0 10px 30px rgba(13, 122, 47, .15);
}

.header-search input {
  width: 100%;
  border: none;
  outline: none;
  padding: 12px 18px;
  font-size: 14px;
  color: #222;
  background: transparent;
}

.header-search input::placeholder {
  color: #888;
}

.header-search button {
  width: 52px;
  height: 52px;
  border: none;
  background: #159549;
  color: #fff;
  flex-shrink: 0;
  transition: .3s ease;
}

.header-search button:hover {
  background: #084f83;
}

/* =========================================
   SEARCH SUGGESTIONS
========================================= */
.search-suggestions {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 100%;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
  z-index: 9999;
  display: none;
}

.search-suggestions.show {
  display: block;
}

.search-suggestions a {
  display: block;
  padding: 14px 18px;
  text-decoration: none;
  color: #222;
  font-size: 14px;
  border-bottom: 1px solid #f1f1f1;
  transition: .3s;
}

.search-suggestions a:last-child {
  border-bottom: none;
}

.search-suggestions a:hover {
  background: #f5f8fb;
  color: #159549;
  padding-left: 24px;
}

/* =========================================
   MOBILE SEARCH
========================================= */
.mobile-search-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #159549;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* MOBILE */
@media(max-width:991px) {
  .header-search {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 15px;
    display: none;
    z-index: 99999;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .12);
    border-radius: 0 0 20px 20px;
  }

  /* .header-search.active {
    display: block;
    animation: slideSearch .3s ease;
  } */
  @keyframes slideSearch {
    from {
      opacity: 0;
      transform: translateY(-15px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .header-search form {
    width: 100%;
  }
}

/* =========================================
   PHONE
========================================= */
.header-phone span {
  font-size: 12px;
  color: #000;
  display: block;
  font-family: "Roboto", sans-serif;
}

.header-phone a {
  font-weight: 500;
  color: #333;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
}

.header-phone a i {
  color: #159549;
}

/* =========================================
   MOBILE DROPDOWN FIX
========================================= */
@media (max-width:991px) {

  /* Main menu */
  .navbar-nav {
    align-items: stretch;
  }

  .navbar-nav .nav-item {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .navbar-nav .nav-link {
    padding: 14px 16px;
    border-bottom: 1px solid #f1f1f1;
    transition: .3s;
  }

  /* Level 1 dropdown */
  .navbar-nav .dropdown-menu {
    background: #f8f8f8;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
  }

  /* All submenus hidden initially */
  .dropdown-submenu .submenu {
    display: none;
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    box-shadow: none;
    background: #ffffff;
    border-left: 3px solid #159549;
    margin: 0;
    padding: 0;
  }

  /* Open state */
  .dropdown-submenu.open>.submenu {
    display: block;
  }

  /* Level spacing */
  /* .dropdown-submenu > .dropdown-item{
    padding:12px 15px;
    font-size:14px;
    display:flex;
    justify-content:space-between;
    align-items:center;
  } */
  .dropdown-submenu>.dropdown-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
  }

  .dropdown-submenu>.dropdown-item::after {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-left: auto;
    flex-shrink: 0;
  }

  .dropdown-submenu>.dropdown-item {
    position: relative;
    padding-right: 35px;
  }

  .dropdown-submenu>.dropdown-item::after {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
  }

  .submenu .dropdown-item {
    padding-left: 25px;
  }

  .submenu .submenu .dropdown-item {
    padding-left: 40px;
  }

  .submenu .submenu .submenu .dropdown-item {
    padding-left: 55px;
  }

  /* Arrow */
  .dropdown-submenu>.dropdown-item::after {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-left: auto;
    transition: .3s;
  }

  .dropdown-submenu.open>.dropdown-item::after {
    transform: rotate(180deg);
  }

  /* Remove desktop hover */
  .dropdown-submenu:hover>.submenu {
    display: none;
  }

  .dropdown-submenu.open:hover>.submenu {
    display: block;
  }

  /* Quote button */
  .nav-link.contact-btn {
    margin: 15px;
    border-radius: 4px;
    padding: 12px 20px !important;
  }

  /* Logo */
  .logo img {
    width: 170px;
    height: auto;
  }

  /* Search */
  .header-search {
    width: 100%;
  }
}

@media (max-width:991px) {

  .navbar-nav .nav-item::before,
  .navbar-nav .nav-item::after {
    display: none !important;
  }

  .navbar-nav .nav-link {
    position: relative;
    z-index: 2;
  }
}

.dropdown-toggle::after {
  display: none !important;
}

/* =========================================
   NAVBAR
========================================= */
.main-nav {
  padding: 0;
  margin: 0;
}

.main-nav,
.navbar-collapse,
.navbar-nav {
  overflow: visible;
  padding: 0 0 0 0;
}

.navbar-nav {
  align-items: center;
}

.main-nav .nav-item {
  padding: 5px 1px;
  margin: 0;
  position: relative;
}

.navbar-expand-lg .navbar-nav .nav-link {
  margin: 0;
  font-size: 15px;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  line-height: 27px;
  font-weight: 500;
  color: #333;
  transition: .3s;
}

.navbar-expand-lg .navbar-nav .nav-link:hover {
  color: #159549;
}

/* =========================================
   CONTACT BUTTON
========================================= */
.nav-link.contact-btn {
  position: relative;
  overflow: hidden;
  background: #159549;
  color: #fff !important;
  padding: 8px 22px !important;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all .3s ease;
  border: 2px solid #36a55a;
}

/* ICON */
.nav-link.contact-btn i {
  padding-left: 10px;
}

/* SHINE EFFECT */
.nav-link.contact-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, .45),
      transparent);
  transform: skewX(-25deg);
  transition: all .8s ease;
  z-index: 1;
}

/* KEEP TEXT ABOVE SHINE */
.nav-link.contact-btn span,
.nav-link.contact-btn i {
  position: relative;
  z-index: 2;
}

/* KEEP FULL BUTTON CONTENT ABOVE SHINE */
.nav-link.contact-btn {
  z-index: 1;
}

.nav-link.contact-btn * {
  position: relative;
  z-index: 2;
}

/* HOVER */
.nav-link.contact-btn:hover {
  background: #90c745;
  color: #fff !important;
  box-shadow: 0 12px 25px rgba(13, 122, 47, .18);
}

/* MOVE SHINE */
.nav-link.contact-btn:hover::before {
  left: 130%;
}

/* SPACING */
.navbar-nav .nav-item:last-child {
  margin-left: 10px;
}

/* =========================================
   DROPDOWN MENU
========================================= */
.dropdown-menu {
  border: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
}

.navbar-nav .dropdown-item {
  padding: 10px 18px;
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  color: #333;
  transition: .3s;
  position: relative;
  white-space: normal;
  line-height: 1.5;
  /*! display: flex; */
}

.navbar-nav .cat {
  padding: 10px 18px;
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  color: #333;
  transition: .3s;
  position: relative;
  white-space: normal;
  line-height: 1.5;
  /*! display: flex; */
  text-decoration: underline;
  color: #159549;
}

.navbar-nav .dropdown-item:hover {
  background-color: #159549;
  color: #fff;
}

.dropdown-item.active,
.dropdown-item:active {
  color: #fff;
  background: #159549;
}

.dropdown-menu .dropdown-item::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f105";
  margin-right: 8px;
  color: #159549;
  font-size: 12px;
}

.dropdown-menu .dropdown-item:hover::before {
  color: #fff;
}

/* =========================================
   NAVBAR HOVER / ACTIVE ICON EFFECT
========================================= */
.navbar-nav .nav-item {
  position: relative;
}

/* ICON BELOW MENU */
.navbar-nav .nav-item::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 22px;
  height: 22px;
  transform: translateX(-50%) rotate(0deg);
  opacity: 0;
  background: url('../images-opt/icon-wheel.webp') no-repeat center;
  background-size: contain;
  transition: all 0.8s ease;
  z-index: 2;
  /* animation: rotateBadge 8s linear infinite; */
}

.navbar-nav .nav-item::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 11px;
  width: 0;
  height: 2px;
  background: #91c616;
  transition: .4s;
  transform: translateX(-50%);
}

.navbar-nav .nav-item:hover::after,
.navbar-nav .nav-item.active::after {
  width: 100%;
}

.navbar-nav .nav-item:has(.contact-btn)::before,
.navbar-nav .nav-item:has(.contact-btn)::after {
  display: none !important;
}

/* HOVER EFFECT */
.navbar-nav .nav-item:hover::before {
  opacity: 1;
  transform: translateX(-50%) rotate(720deg);
}

/* ACTIVE MENU */
.navbar-nav .nav-item.active::before,
.navbar-nav .nav-item.current::before,
.navbar-nav .nav-item .nav-link.active+ ::before {
  opacity: 1;
}

/* OPTIONAL ACTIVE LINK COLOR */
.navbar-nav .nav-item:hover .nav-link,
.navbar-nav .nav-item .nav-link.active {
  color: #159549 !important;
}

/* =========================================
   BETTER SPACING
========================================= */
.navbar-nav .nav-item {
  padding-bottom: 15px;
  margin: 0 5px;
}

/* =========================================
   DESKTOP DROPDOWN
========================================= */
@media (min-width:992px) {
  .dropdown-menu {
    min-width: 320px;
  }

  .dropdown-item {
    padding: 12px 18px;
  }
}

@media (min-width: 992px) {
  .dropdown-menu {
    min-width: 300px;
  }

  .submenu {
    min-width: 350px;
  }

  .submenu .submenu {
    min-width: 150px;
  }

  .navbar-nav .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    /* min-width: 280px; */
    background: #fff;
    display: none;
    z-index: 999;
  }

  .navbar-nav .dropdown:hover>.dropdown-menu {
    display: block;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }

  /* SUBMENU */
  .dropdown-submenu {
    position: relative;
  }

  .dropdown-submenu .submenu {
    position: absolute;
    top: 0;
    left: 100%;
    /* min-width: 280px; */
    background: #fff;
    display: none;
    border-radius: 10px;
    padding: 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }

  .dropdown-submenu:hover>.submenu {
    display: block;
  }

  .dropdown-submenu>.dropdown-item::after {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    float: right;
    font-size: 12px;
    margin-top: 2px;
    border: none !important;
  }
}

/* =========================================
   MOBILE ICONS
========================================= */
.mobile-icons {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.mobile-icons button {
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.mobile-search-btn {
  background: #159549;
  color: #fff;
}

.mobile-menu-btn {
  background: #0a411b;
  color: #fff;
}

@media (max-width:768px) {
  .navbar-nav .nav-item:last-child {
    padding: 10px 10px 10px;
    margin-left: 0;
  }
}

@media (max-width:991px) {
  .header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo {
    flex: 0 0 auto;
  }

  .logo img {
    width: 180px;
    height: auto;
    display: block;
  }

  .header-right {
    flex: 0;
    width: auto;
  }

  .mobile-icons {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
  }
}

/* =========================================
   MOBILE MENU
========================================= */
@media (max-width: 991px) {
  .header-wrapper {
    position: relative;
    padding: 5px 0;
  }

  .header-top {
    display: none;
  }

  .header-right {
    flex: 0 0 auto;
    width: auto;
    overflow: visible;
    margin-left: 0;
    position: static;
  }

  .header-wrapper {
    display: flex;
    align-items: center;
  }

  .logo {
    margin-right: auto;
  }

  .mobile-icons {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 12px;
    order: 3;
  }

  .header-right .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 999;
  }

  .main-nav .navbar-collapse {
    background: #fff;
    margin-top: 0;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .navbar-nav .nav-item {
    margin: 0;
    border-bottom: 1px solid #eaeaea;
  }

  .main-nav .nav-link:hover {
    background: #f8f8f8;
  }

  .main-nav .nav-link.active {
    background: none;
    color: #159549 !important;
  }

  .navbar-nav {
    width: 100%;
    gap: 0;
    padding: 0;
  }

  .main-nav .nav-link {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    padding: 10px 15px;
    border-radius: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all .3s ease;
  }

  .main-nav .nav-link:hover {
    background: #f1f6fb;
    color: #159549;
  }

  .main-nav .nav-link.active {
    background: #159549;
    color: #fff !important;
  }

  .navbar-nav .dropdown-menu {
    position: relative;
    width: 100%;
    box-shadow: none;
    border-radius: 8px;
    padding-left: 10px;
    max-height: 250px;
    overflow-y: auto;
    background: #f8fbff;
  }

  .dropdown-submenu .submenu {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    /* display: block; */
    background: #f8fbff;
    margin-top: 5px;
    padding-left: 10px;
    border-left: 2px solid #159549;
  }

  .dropdown-submenu>.dropdown-item::after {
    content: "";
  }

  .main-nav .dropdown-item {
    font-size: 14px;
    padding: 8px 15px;
    border-radius: 6px;
    color: #444;
    padding: 6px 0 6px 15px;
    font-size: 13px;
  }

  .main-nav .dropdown-item:hover {
    background: transparent;
    color: #000;
    padding-left: 6px;
  }

  .nav-link.contact-btn {
    background: #159549;
    color: #fff !important;
    text-align: center;
    justify-content: center;
    border-radius: 8px;
    margin-top: 8px;
  }

  /* MOBILE SEARCH */
  .header-search {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 10px 15px;
    display: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 9999;
  }

  .header-search.show-search {
    display: block;
  }

  .header-search form {
    width: 100%;
  }

  .header-search input {
    font-size: 13px;
    padding: 8px 12px;
  }

  .header-search button {
    padding: 12px;
  }
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 1400px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    font-size: 13px;
  }
}

@media (max-width: 1200px) {
  .main-nav .nav-item {
    padding: 0 0px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    font-size: 14px !important;
  }

  .nav-link.contact-btn {
    padding: 8px 16px !important;
  }

  .header-phone a {
    font-size: 13px !important;
  }
}

/* HEADER CONTACT */
.header-contact {
  display: flex;
  align-items: center;
  gap: 25px;
}

/* SOCIAL */
.header-social {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Social base */
.header-social a {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f2f6fb;
  color: #159549;
  font-size: 14px;
  transition: .3s;
}

/* Facebook */
.header-social a.facebook:hover {
  background: #1877F2;
  color: #fff;
}

/* LinkedIn */
.header-social a.linkedin:hover {
  background: #0A66C2;
  color: #fff;
}

/* X (Twitter) */
.header-social a.twitter:hover {
  background: #000;
  color: #fff;
}

/* Instagram */
.header-social a.instagram:hover {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
  color: #fff;
}

.nav-link.active {
  color: #159549 !important;
  font-weight: 600;
}

/* =========================================
   PRODUCTS MEGA MENU
========================================= */
.mega-dropdown {
  position: relative;
}

.mega-dropdown>.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
}

.mega-dropdown>.nav-link i {
  font-size: 12px;
}

.dropdown-toggle i,
.mega-dropdown>.nav-link i {
  font-size: 12px;
  transition: .3s;
}

.mega-dropdown>.nav-link i {
  transition: .3s;
}

@media(max-width:991px) {

  .dropdown-toggle[aria-expanded="true"] i,
  .mega-dropdown.mobile-open>.nav-link i {
    transform: rotate(180deg);
  }
}

.mega-dropdown.mobile-open>.nav-link i {
  transform: rotate(180deg);
}

.mega-menu .mega-column {
  background: #f8fbff;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #eee;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 1200px;
  max-width: 95vw;
  background: #fff;
  padding: 10px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
  opacity: 0;
  visibility: hidden;
  transition: .25s ease;
  z-index: 9999;
}

.mega-dropdown:hover .mega-menu {
  opacity: 1;
  visibility: visible;
}

.mega-column a::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f105";
  margin-right: 8px;
  color: #159549;
  font-size: 12px;
}

.mega-column a {
  display: block;
  color: #333;
  text-decoration: none;
  padding: 7px 0;
  font-size: 14px;
  line-height: 1.5;
  transition: .3s;
}

.mega-column a:hover {
  color: #159549;
  padding-left: 6px;
}

/* MOBILE */
/* MOBILE MEGA MENU */
@media(max-width:991px) {
  .mega-dropdown {
    width: 100%;
  }

  .mega-dropdown>.nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .mega-dropdown>.nav-link i {
    transition: .3s;
  }

  .mega-dropdown.mobile-open>.nav-link i {
    transform: rotate(180deg);
  }

  .mega-menu {
    position: relative;
    left: 0;
    top: 0;
    transform: none;
    width: 100%;
    max-width: 100%;
    padding: 10px 15px;
    grid-template-columns: 1fr;
    box-shadow: none;
    border-radius: 0;
    background: #f8fbff;
    display: none;
    opacity: 1;
    visibility: visible;
  }

  .mega-menu {
    display: grid;
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
    padding: 0;
  }

  .mega-dropdown.mobile-open .mega-menu {
    max-height: 420px;
    overflow-y: auto;
    padding: 15px;
  }

  .mega-column {
    margin-bottom: 15px;
  }

  .mega-column h5 {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .mega-column a {
    padding: 6px 0 6px 15px;
    font-size: 13px;
  }

  .mega-column a::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f105";
    margin-right: 8px;
    color: #159549;
    font-size: 12px;
  }
}

@media(max-width:991px) {
  .navbar-nav .nav-link {
    position: relative;
    overflow: hidden;
    transition: all .3s ease;
  }

  .navbar-nav .nav-link::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: #159549;
    transform: scaleY(0);
    transform-origin: top;
    transition: .3s ease;
  }

  .navbar-nav .nav-link:hover::before,
  .navbar-nav .nav-link.active::before {
    transform: scaleY(1);
  }
}

.mega-column h5 {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
  padding-bottom: 5px;
  border-bottom: 2px solid #e5e7eb;
}

.mega-category {
  margin-bottom: 15px;
}

.mega-category strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #159549;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 10px;
}

.mega-column a.norm::before {
  display: none;
}

.mega-category a.norm {
  font-size: 13px;
  font-weight: 700;
  color: #159549;
  text-transform: uppercase;
  letter-spacing: .5px;
  display: inline-block;
  padding: 0;
  margin: 0 6px 6px 0;
  background: #f5f7fb;
  border: none;
  border-radius: 0;
}

.mega-category a.norm:hover {
  background: none;
}

.mega-category a.norm strong:hover {
  color: #1e40af;
}

.mega-category a {
  display: inline-block;
  padding: 5px 12px;
  margin: 0 6px 6px 0;
  background: #f5f7fb;
  border: 1px solid #dbe3ef;
  border-radius: 20px;
  color: #333;
  font-size: 13px;
  text-decoration: none;
  transition: .3s;
}

.mega-category a:hover {
  background: #1e3a8a;
  color: #fff;
  border-color: #1e3a8a;
}










.search-page {
  padding: 80px 0;
  min-height: 100vh;
}

.search-box {
  max-width: 700px;
  margin: auto;
  margin-bottom: 50px;
}

.search-box form {
  display: flex;
  overflow: hidden;
  border-radius: 60px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.search-box input {
  width: 100%;
  border: none;
  padding: 18px 24px;
  outline: none;
  font-size: 16px;
}

.search-box button {
  width: 70px;
  border: none;
  background: #159549;
  color: #fff;
  font-size: 18px;
}

.search-title {
  text-align: center;
  margin-bottom: 35px;
}

.search-title h1 {
  font-size: 42px;
  font-weight: 700;
  color: #082032;
}

.search-result-card {
  background: #fff;
  padding: 25px;
  border-radius: 20px;
  margin-bottom: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .06);
  transition: .3s ease;
}

.search-result-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, .12);
}

.search-result-card a {
  text-decoration: none;
  color: #082032;
  font-size: 20px;
  font-weight: 600;
}

.search-result-card a:hover {
  color: #159549;
}

.no-results {
  text-align: center;
  padding: 60px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .05);
}

.no-results i {
  font-size: 60px;
  color: #159549;
  margin-bottom: 20px;
}

.no-results h3 {
  font-size: 28px;
  color: #082032;
}

@media(max-width:768px) {
  .search-title h1 {
    font-size: 30px;
  }

  .search-box form {
    border-radius: 18px;
  }

  .search-box input {
    padding: 14px 18px;
  }
}









/* ================= CONTACT PAGE ================= */

.contact-section {
  background: #f8fafc;
}

.section-subtitle {
  display: inline-block;
  color: #159549;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.section-title {
  font-size: 48px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 15px;
}

.section-tagline {
  max-width: 750px;
  margin: auto;
  font-size: 18px;
  color: #64748b;
  line-height: 1.8;
}

.contact-form-wrapper,
.contact-info-wrapper {
  background: #fff;
  padding: 15px;
  border-radius: 16px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, .06);
  height: 100%;
}

.contact-form-wrapper h3 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0f172a;
}

.contact-form-wrapper p {
  color: #64748b;
  margin-bottom: 25px;
}

.contact-form-wrapper .form-control {
  height: 55px;
  border-radius: 10px;
  border: 1px solid #dbe3ef;
  box-shadow: none;
}

.contact-form-wrapper textarea.form-control {
  height: auto;
}

.contact-form-wrapper .form-control:focus {
  border-color: #159549;
  box-shadow: none;
}

.contact-info-wrapper .contact-btn {
  background: #159549;
  color: #fff;
  padding: 14px 35px;
  border-radius: 8px;
  font-weight: 600;
  transition: .3s;
}

.contact-info-wrapper .contact-btn:hover {
  background: #0d7d3a;
  color: #fff;
}

.contact-info-wrapper .info-card {
  display: flex;
  gap: 18px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eef2f7;
}

.contact-info-wrapper .info-card:last-child {
  margin-bottom: 0;
  border-bottom: none;
  /*! padding-bottom: 0; */
}

.contact-info-wrapper .info-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  border-radius: 50%;
  background: #159549;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
}

.contact-info-wrapper .info-icon i.fa-phone-alt {
  transform: scaleX(-1);
}

.contact-info-wrapper .info-content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #0f172a;
  text-align: left;
}

.contact-info-wrapper .info-content p {
  margin: 0;
  color: #475569;
  line-height: 1.8;
}

.contact-info-wrapper .info-content a {
  color: #159549;
  text-decoration: none;
  font-weight: 600;
}

.contact-info-wrapper .info-content a:hover {
  color: #0f172a;
}

.contact-info-wrapper .map-wrapper {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, .08);
}

.contact-info-wrapper @media(max-width:991px) {

  .contact-info-wrapper .section-title {
    font-size: 36px;
  }

  .contact-form-wrapper,
  .contact-info-wrapper {
    padding: 25px;
  }

}





/* ===== MOC TABLE ===== */

.moc-table {
  width: 100%;
  margin-bottom: 0;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}

.moc-table thead th {
  background: #0d3b78;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 18px;
  border: none;
  vertical-align: middle;
}

.moc-table tbody td {
  padding: 12px 18px;
  vertical-align: middle;
  border-color: #ececec;
  font-size: 14px;
  color: #555;
}

.moc-table tbody tr:nth-child(even) {
  background: #f8fafc;
}

.moc-table tbody tr:hover {
  background: #eef6ff;
  transition: all .3s ease;
}

.moc-table tbody td:first-child {
  font-weight: 600;
  color: #0d3b78;
  width: 40%;
}

.table-responsive {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, .05);
}

.app-card {
  height: 100%;
  padding: 25px;
  background: #f8f9fa;
  border-radius: 12px;
  border-left: 4px solid #58b947;
}

.app-card h5 {
  color: #0d3b78;
  font-weight: 700;
  margin-bottom: 12px;
}

.app-card p {
  margin: 0;
  line-height: 1.7;
  color: #555;
}

.moc-table {
  border-radius: 10px;
  overflow: hidden;
}

.moc-table thead th {
  background: #58b947;
  color: #fff;
  border: none;
}

.moc-table tbody tr:nth-child(even) {
  background: #f8f9fa;
}

.product-overview h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0d3b78;
  margin-bottom: 20px;
}

.product-overview p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
}

.series-list {
  margin-top: 30px;
}

.series-list h5 {
  margin-bottom: 15px;
  font-weight: 600;
  color: #0d3b78;
}

.series-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.series-badges span {
  background: #0d3b78;
  color: #fff;
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
}

.feature-title {
  background: #58b947;
  padding: 15px 25px;
  border-radius: 8px;
  margin-bottom: 10px;
}

.feature-title h3 {
  margin: 0;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
}

.feature-list {
  background: #f4faf2;
  padding: 25px 30px;
  border-radius: 10px;
  height: 100%;
}

.feature-list li {
  margin-bottom: 18px;
  line-height: 1.8;
  color: #444;
}

.product-main-image img {
  width: 100%;
  background: #fff;
  padding: 15px;
  border: 1px solid #e5e5e5;
}

.category-products-section {
  background: #fff;
}

.product-card-link {
  text-decoration: none;
  display: block;
  height: 100%;
}

.product-category-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 15px;
  overflow: hidden;
  transition: all .3s ease;
  height: 100%;
}

.product-category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.product-card-img {
  height: 220px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
}

.product-card-img img {
  max-width: 100%;
  max-height: 180px;
  object-fit: contain;
}

.product-card-content {
  padding: 20px;
  text-align: center;
}

.product-card-content h4 {
  margin-bottom: 10px;
  color: #0d3b78;
  font-weight: 600;
  font-size: 18px;
}

.product-card-content span {
  color: #0d6efd;
  font-weight: 600;
}










/* =========================================
   ENQUIRY PAGE
========================================= */

.contact-section {
  background: #f8fafc;
}

.section-header {
  max-width: 800px;
  margin: 0 auto;
}

.section-subtitle {
  display: inline-block;
  color: #16a34a;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 15px;
}

.section-tagline {
  color: #6b7280;
  font-size: 17px;
  line-height: 1.8;
}

/* =========================================
   FORM BOX
========================================= */

.contact-form-wrapper {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.contact-form-wrapper h3 {
  font-size: 28px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 10px;
}

.contact-form-wrapper p {
  color: #6b7280;
  margin-bottom: 30px;
}

/* =========================================
   FORM FIELDS
========================================= */

.contact-form-wrapper .form-control {
  height: 48px;
  border: 1px solid #dbe3eb;
  border-radius: 8px;
  padding: 0 18px;
  font-size: 15px;
  transition: all .3s ease;
  box-shadow: none;
}

.contact-form-wrapper textarea.form-control {
  height: auto;
  min-height: 120px;
  padding-top: 15px;
  resize: none;
}

.contact-form-wrapper select.form-control {
  cursor: pointer;
}

.contact-form-wrapper .form-control:focus {
  border-color: #16a34a;
  box-shadow: 0 0 0 4px rgba(22, 163, 74, .12);
}

/* File Upload */

input[type="file"].form-control {
  padding: 12px;
  height: auto;
}

/* =========================================
   BUTTON
========================================= */

.contact-btn {
  background: #16a34a;
  color: #fff;
  border: none;
  padding: 16px 35px;
  border-radius: 12px;
  font-weight: 600;
  transition: .3s;
}

.contact-btn:hover {
  background: #15803d;
  color: #fff;
  transform: translateY(-2px);
}

/* =========================================
   RIGHT SIDE INFO
========================================= */

.deatails-info-wrapper {
  height: 100%;
}

.info-card {
  background: #fff;
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.info-card h4 {
  font-size: 22px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 25px;
}

/* ===============================
   TRUSTED STATS CARD
================================= */

.info-card {
  background: #fff;
  border-radius: 20px;
  /*! padding: 20px; */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid #eef2f7;
}

.info-card h4 {
  font-size: 24px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 30px;
  text-align: center;
}

/* Stats Grid */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* Stat Box */

.stat-box {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 15px 15px;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.stat-box h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 8px;
  line-height: 1;
}

.stat-box span {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #6b7280;
  line-height: 1.5;
}

/* Mobile */

@media (max-width: 576px) {

  .stats-grid {
    gap: 15px;
  }

  .stat-box {
    padding: 20px 10px;
  }

  .stat-box h3 {
    font-size: 26px;
  }

  .stat-box span {
    font-size: 13px;
  }

}

/* =========================================
   BENEFITS LIST
========================================= */

.enquiry-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}

.enquiry-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: #374151;
  font-weight: 500;
}

.enquiry-benefits li i {
  color: #16a34a;
  font-size: 18px;
}

/* =========================================
   CONTACT INFO
========================================= */

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.info-item i {
  width: 45px;
  height: 45px;
  background: #16a34a;
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.info-item span {
  color: #374151;
  line-height: 1.6;
  font-weight: 500;
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 991px) {

  .section-title {
    font-size: 32px;
  }

  .contact-form-wrapper,
  .info-card {
    padding: 25px;
  }

  .contact-form-wrapper .form-control {
    height: 54px;
  }
}

@media (max-width: 576px) {

  .section-title {
    font-size: 28px;
  }

  .contact-form-wrapper {
    padding: 20px;
  }

  .info-card {
    padding: 20px;
  }

  .contact-btn {
    width: 100%;
  }
}






.about-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-feature-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}

.about-feature-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: #0d6efd;
}

.feature-box {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 25px;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.feature-box h5 {
  font-size: 18px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 10px;
}

.feature-box p {
  margin-bottom: 0;
  color: #6b7280;
  line-height: 1.6;
}

.section-heading h3 {
  font-size: 30px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 15px;
  position: relative;
}

.section-heading h3::after {
  content: '';
  width: 60px;
  height: 3px;
  background: #0d6efd;
  display: block;
  margin-top: 10px;
  border-radius: 5px;
}

.about-story-content p {
  color: #555;
  line-height: 1.9;
  margin-bottom: 15px;
}

@media (max-width: 767px) {
  .section-heading h3 {
    font-size: 24px;
  }

  .feature-box {
    padding: 20px;
  }

  .about-feature-list li {
    font-size: 15px;
  }
}







.feature-accordion .accordion-item {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.feature-accordion .accordion-button {
  background: #f8f9fa;
  font-size: 20px;
  font-weight: 600;
  color: #0f172a;
  padding: 20px 25px;
}

.feature-accordion .accordion-button:not(.collapsed) {
  background: #0056b3;
  color: #fff;
  box-shadow: none;
}

.feature-accordion .accordion-button:focus {
  box-shadow: none;
  border: none;
}

.feature-accordion .accordion-body {
  padding: 25px;
  background: #fff;
}











.industry-products {
  background: #f8fafc;
}

.industry-product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
}

.industry-product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.product-image {
  overflow: hidden;
}

.product-image img {
  /*! width: 100%; */
  height: 250px;
  object-fit: cover;
  transition: 0.4s;
}

.industry-product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-content {
  padding: 25px;
}

.product-content h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1e293b;
}

.product-content p {
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 20px;
}

.product-content .theme-btn {
  display: inline-block;
}

@media (max-width: 768px) {
  .product-image img {
    height: 220px;
  }

  .product-content {
    padding: 20px;
  }

  .product-content h4 {
    font-size: 20px;
  }
}