@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap');

:root {
  /* color theme */
  --theme-color-primary: #2C4001;      /* Premium Deep Forest Green */
  --theme-color-secondary: #592B02;    /* Rich Chocolate Bronze Brown */
  --theme-color-accent: #465902;       /* Vibrant Olive Green */
  --theme-color-accent-dark: #2C4001;  /* Deep Leaf Green */
  --text-dark: #0D0D0D;                /* Off-black for premium readability */
  --text-light: #ffffff;               /* Crisp White */
  --text-black: #000000;               /* Pure Black */
  --bg-light: #f9f9f9;
  --transition-speed: 0.3s;
}

/* Base Styles */
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  color: var(--text-dark);
}

a {
  text-decoration: none;
  transition: all var(--transition-speed) ease-in-out;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Header & Topbar */
.site-header {
  position: fixed; /* Changed from sticky to fixed for stable transform calculations */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), box-shadow var(--transition-speed) ease;
}

.site-header.nav-sticky {
  /* Shifts only the topbar out of view smoothly */
  transform: translateY(-40px); 
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.site-header.nav-hidden {
  /* Pulls the entire element completely clear of the viewport */
  transform: translateY(-100%); 
  box-shadow: none;
}

@media (max-width: 991px) {
  .site-header.nav-sticky {
    /* Keeps navigation fully visible on mobile if topbar doesn't shift */
    transform: translateY(0); 
  }
}

/* IMPORTANT: Because fixed headers don't take up space in the document flow, 
   add padding to your body or main wrapper to prevent content from slipping under it initially. */
body {
  padding-top: 110px; /* Adjust this value to match the total height of topbar + mainNav */
}
@media (max-width: 991px) {
  body {
    padding-top: 70px; /* Adjust for mobile view height if topbar changes size or hides */
  }
}

.rmm_topBar {
  background-color: var(--theme-color-secondary);
  color: var(--text-light);
  padding: 8px 0;
  font-size: .9rem;
}

.topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.topbar-link {
  color: #99ff33;
  padding-left: 10px;
}

.topbar-contact {
  color: #fff;
}

.topbar-link:hover,
.topbar-contact:hover {
  color: #fff;
  text-decoration: underline;
}

/* Main Navigation */
.rmm_mainNav {
  background-color: #ffffff;
  height: 100%;
  position: relative;
  z-index: 1050;
}

.site-header.nav-sticky .main-logo {
  max-height: 70px;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%
}

/* .logo-area {
  position: relative;
  height: 100%;
  width: 150px;
}

.logo-area a {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #ffffff;
  padding: 10px;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
  z-index: 1100;
  display: flex;
  justify-content: center;
  align-items: center;
} */

.main-logo {
  max-height: 100px;
  width: auto;
  transition: transform var(--transition-speed) ease;
}

.main-logo:hover {
  transform: scale(1.05);
}

.nav-menu-area {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-grow: 1;
}

.nav-links {
  display: flex;
  gap: 10px;
  margin-left: auto;
  margin-right: 0;
}

.nav-item {
  color: var(--text-dark);
  font-weight: 700;
  font-size: 1rem;
  position: relative;
  padding: 8px 25px;
  border-radius: 20px 0 20px 0;
}

/* Hover and Active Animation */
.nav-item:hover,
.nav-item.active {
  color: #ffffff;
  background-color: var(--theme-color-primary);
}

.btn-primary {
  background-color: var(--theme-color-primary);
  color: var(--text-light);
  padding: 10px 30px;
  border-radius: 30px 0 30px 0;
  font-weight: 700;
  font-size: 1rem;
  display: inline-block;
  border: 2px solid var(--theme-color-primary);
  transition: all var(--transition-speed) ease;
}

.btn-primary:hover {
  background-color: #ffffff;
  color: var(--theme-color-primary);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(59, 92, 42, 0.3);
}

/* Mobile Social Icons */
.mobile-social-icons {
  display: none;
  gap: 15px;
  margin-top: 30px;
}

.mobile-social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--theme-color-primary);
  color: #fff;
  border-radius: 50%;
  font-size: 18px;
  transition: all var(--transition-speed) ease;
}

.mobile-social-icons a:hover {
  background-color: var(--theme-color-secondary);
  transform: translateY(-3px);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle .bar {
  width: 25px;
  height: 3px;
  background-color: var(--theme-color-primary);
  transition: all var(--transition-speed) ease;
}

/* Responsive */
@media (max-width: 991px) {
  .rmm_topBar {
    display: none;
  }

  .mobile-social-icons {
    display: flex;
  }

  .main-logo {
    max-height: 90px;
  }

  .topbar-content {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .menu-toggle {
    display: flex;
    z-index: 1001;
  }

  .nav-menu-area {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background-color: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 20px 20px 20px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.4s ease-in-out;
    z-index: 1000;
  }

  .nav-menu-area.active {
    right: 0;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    gap: 15px;
  }

  .nav-item {
    display: block;
    width: 100%;
  }

  .nav-action {
    margin-top: 20px;
    width: 100%;
  }

  .menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

/* =========================================================
   Internal Page Header (Breadcrumb)
========================================================= */
.page-header-area {
  background-color: #fafafa;
  background-image: radial-gradient(#d3d3d3 1.5px, transparent 1.5px);
  background-size: 15px 25px;
  padding-top: 25px !important;
  padding-bottom: 10px !important;
  border-bottom: 1px solid #eaeaea;
}

.page-title {
  color: #4a3320;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.1;
}

.page-subtitle {
  font-size: 1.25rem;
  max-width: 800px;
  color: #555;
}

/* Breadcrumb Trail */
.breadcrumb-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
}

.breadcrumb-link {
  color: var(--theme-color-primary);
  text-decoration: none;
  transition: color 0.25s ease;
}

.breadcrumb-link:hover {
  color: var(--theme-color-accent);
  text-decoration: underline;
}

.breadcrumb-separator {
  color: #bbb;
  font-weight: 300;
}

.breadcrumb-current {
  color: var(--theme-color-secondary);
  font-weight: 600;
}

/* Banner Styles */
.banner-area {
  position: relative;
  width: 100%;
}

.banner-swiper img {
  width: 100%;
  height: 80vh;
  min-height: 500px;
  max-height: 800px;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1);
  transition: transform 6s ease-out;
}

.banner-swiper .swiper-slide-active img {
  transform: scale(1.08);
}

.banner-swiper .swiper-slide {
  position: relative;
  overflow: hidden;
}

/* Staggered text animations inside slides */
.banner-swiper .swiper-slide .badge-premium,
.banner-swiper .swiper-slide h2,
.banner-swiper .swiper-slide .lead,
.banner-swiper .swiper-slide .banner-btn-group {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.banner-swiper .swiper-slide .badge-premium {
  transition-delay: 0.15s;
}
.banner-swiper .swiper-slide h2 {
  transition-delay: 0.35s;
}
.banner-swiper .swiper-slide .lead {
  transition-delay: 0.55s;
}
.banner-swiper .swiper-slide .banner-btn-group {
  transition-delay: 0.75s;
}

.banner-swiper .swiper-slide-active .badge-premium,
.banner-swiper .swiper-slide-active h2,
.banner-swiper .swiper-slide-active .lead,
.banner-swiper .swiper-slide-active .banner-btn-group {
  opacity: 1;
  transform: translateY(0);
}

.banner-overlay-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Beautiful soft vignette: dark on the left to read text easily, fully transparent on the right */
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0) 100%) !important;
  display: flex;
  align-items: center;
  z-index: 5;
  text-align: left !important;
}

.banner-text-content {
  max-width: 720px;
  width: 100%;
  text-align: left !important;
  display: block;
}

/* Premium Banner Button Smaller Compact Styling */
.banner-area .btn-premium-green {
  background-color: #ffffff !important;
  color: var(--theme-color-primary) !important;
  border: 2px solid #ffffff !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  font-size: 0.9rem !important; /* Smaller text size */
  padding: 14px 24px !important; /* Smaller size padding */
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.banner-area .btn-premium-green:hover {
  background-color: var(--theme-color-primary) !important;
  color: #ffffff !important;
  border-color: var(--theme-color-primary) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35) !important;
}

.banner-area .btn-premium-green i {
  transition: transform 0.3s ease;
}

.banner-area .btn-premium-green:hover i {
  transform: translateX(5px);
}

.banner-overlay-content h2 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: #ffffff !important;
  /* Double-layer shadow to ensure pristine contrast on complex image backgrounds */
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.85), 0 2px 4px rgba(0, 0, 0, 0.5) !important;
}

.banner-overlay-content .text-light-green {
  color: #bef32c !important; /* Radiant high-contrast lime green/yellow-green */
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6) !important;
}

.banner-overlay-content .lead {
  font-size: 1.25rem;
  line-height: 1.6;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95) !important;
  /* Deep text shadow for perfect legibility without a full dark overlay */
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.9), 0 1px 3px rgba(0, 0, 0, 0.6) !important;
}

.banner-overlay-content .badge-premium {
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  background: rgba(0, 112, 42, 0.95);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(0, 112, 42, 0.35);
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 50px;
  display: inline-block;
  text-transform: uppercase;
  font-weight: 700;
}

@media (max-width: 991px) {
  .banner-overlay-content {
    text-align: left;
}
  .banner-overlay-content h2 {
    font-size: 2.6rem;
    text-align: left;
  }
  .banner-overlay-content .lead {
    font-size: 1.1rem;
    text-align: left;
  }
  .banner-overlay-content {
    background: transparent !important;
  }
  .banner-text-content {
    background: rgba(0, 0, 0, 0.45) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    padding: 30px 25px !important;
    max-width: 100% !important;
    border-radius: 16px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
  }
  .banner-btn-group,
  .banner-overlay-content .badge-premium {
    text-align: left;
  }
}

@media (max-width: 576px) {
  .banner-overlay-content h2 {
    text-align: left;
    font-size: 2rem;
  }
  .banner-overlay-content .lead {
    font-size: 1rem;
  }
  .btn-outline-premium-light {
    padding: 10px 25px;
  }
  .banner-btn-group,
  .banner-overlay-content .badge-premium {
    text-align: left;
  }
  .py-5 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
}

.banner-controls {
  position: absolute;
  bottom: 0;
  right: 5%;
  display: flex;
  gap: 15px;
  z-index: 10;
  transform: translateY(50%);
}

.banner-nav-prev,
.banner-nav-next {
  position: static;
  width: 55px;
  height: 55px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  color: var(--text-dark);
  margin: 0;
  transition: all var(--transition-speed) ease;
}

.banner-nav-prev::after,
.banner-nav-next::after {
  display: none;
}

.banner-nav-prev i,
.banner-nav-next i {
  font-size: 20px;
  color: var(--text-dark);
}

.banner-nav-prev:hover,
.banner-nav-next:hover {
  background-color: var(--theme-color-primary);
}

.banner-nav-prev:hover i,
.banner-nav-next:hover i {
  color: #fff;
}

/* =========================================================
   About Section
========================================================= */
.about-area {
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}
.about-area .container {
  position: relative;
  z-index: 2;
}

/* Floating Background Illustrations */
.about-floating-el {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    opacity: 0.85;
    transition: all 0.5s ease;
}
.about-floating-el svg,
.about-floating-el img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.el-leaf {
    width: 180px;
    height: 180px;
    top: 5%;
    left: -40px;
    transform: rotate(-15deg);
    animation: floatLeaf 8s ease-in-out infinite alternate;
}
.el-coconut {
    width: 230px;
    height: 230px;
    bottom: 2%;
    left: 45%;
    /* transform: rotate(0); */
    /* animation: floatCoconut 10s ease-in-out infinite alternate; */
}
.el-shell {
    width: 140px;
    height: 140px;
    top: 25%;
    right: -30px;
    transform: rotate(35deg);
    animation: floatShell 9s ease-in-out infinite alternate;
}
.opacity-5 {
  opacity: .5;
}
/* Floating Animations */
@keyframes floatLeaf {
    0% {
        transform: translateY(0) rotate(-15deg);
    }
    100% {
        transform: translateY(-15px) rotate(-8deg);
    }
}
@keyframes floatCoconut {
    0% {
        transform: translateY(0) rotate(10deg) scale(1);
    }
    100% {
        transform: translateY(-20px) rotate(20deg) scale(1.03);
    }
}
@keyframes floatShell {
    0% {
        transform: translateY(0) rotate(35deg);
    }
    100% {
        transform: translateY(-12px) rotate(25deg);
    }
}

@media (max-width: 991px) {
    .el-leaf {
        width: 120px;
        height: 120px;
        left: -30px;
    }
    .el-coconut {
        display: none;
    }
    .el-shell {
        width: 100px;
        height: 100px;
        right: -20px;
    }
}
.about-area .main-heading {
    line-height: 1.2;
}
.about-area .about-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #000000;
    margin-bottom: 2rem;
}
.about-grid-points {
  margin-top: 25px;
}

.about-point-item {
  gap: 15px;
  display: flex;
  align-items: center;
}

.about-point-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1.5px solid #c2e2b8; /* Soft green outline */
  background-color: #fafdf9; /* Clean, very light organic green bg */
  color: var(--theme-color-primary); /* Primary organic green */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.about-point-item:hover .about-point-icon-wrap {
  background-color: var(--theme-color-primary);
  border-color: var(--theme-color-primary);
  color: #ffffff;
  transform: scale(1.06);
}

.about-point-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--theme-color-secondary); /* Brand brown */
  line-height: 1.45;
  text-align: left;
}
.about-sub-heading { color: #008000; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; font-size: 0.9rem; }
.about-main-heading { color: #4a3320; font-weight: 700; font-size: 2.5rem; line-height: 1.2; text-transform: uppercase; }
.about-text { color: #000000; font-size: 1.05rem; line-height: 1.6; }
.about-btn { background-color: #00702a; border-color: #00702a; padding: 12px 35px; border-radius: 30px 0 30px 0; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; transition: all 0.3s ease; color: #ffffff; }
.about-btn:hover { background-color: #005a22; border-color: #005a22; color: #ffffff; }
.about-image-grid { display: flex; gap: 15px; }
.about-image-grid .grid-col { flex: 1; display: flex; flex-direction: column; gap: 15px; }

/* Premium Green Button style */
.btn-premium-green {
    background-color: #00702a;
    color: #ffffff;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-block;
    border: 2px solid #00702a;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 15px rgba(0, 112, 42, 0.15);
}
.btn-premium-green:hover {
    background-color: #005a22;
    border-color: #005a22;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 112, 42, 0.35);
}

.abt-img {
  border-radius: 24px;
}

/* Frosted Badge */
.frosted-badge {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    max-width: 250px;
    z-index: 2;
    border-radius: 24px;
}

.about-image-grid .col-3-offset { padding-top: 15%; }
.about-image-grid img { border-radius: 15px; width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.about-image-grid img.rect-img { aspect-ratio: 3/4; }
.about-image-grid img.small-img { width: 80%; margin: 0 auto; }

/* Premium 8-Image Grid (3x3 with bottom-right empty) */
.about-premium-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.about-premium-grid .grid-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.about-premium-grid .grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.about-premium-grid .grid-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.16);
}
.about-premium-grid .grid-item:hover img {
    transform: scale(1.08);
}



@media (max-width: 576px) {
    .about-premium-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

/* About Mode 2 Styles */
.about-stats-area {
  background: url('../images/about/stats-bg.png') center/cover no-repeat;
  position: relative;
}

.overlay-dark {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(20, 30, 2, 0.92) 0%, rgba(45, 23, 1, 0.92) 100%);
}

.stats-text-light {
  opacity: 0.85;
  line-height: 1.75;
}

.stats-card {
  width: 100%;
  border-radius: 12px !important;
  padding: 2.2rem 2rem 1.8rem 2rem !important; /* Elegant compact padding giving more height! */
  transition: background-color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
              color 0.4s ease, 
              transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
              box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.stats-card:hover {
  background-color: var(--theme-color-primary) !important;
  color: var(--text-light) !important;
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(44, 64, 1, 0.3) !important;
}

.stats-card:hover .text-brown,
.stats-card:hover h4 {
  color: var(--text-light) !important;
}

.stats-card:hover .text-muted,
.stats-card:hover p {
  color: rgba(255, 255, 255, 0.85) !important;
}

.stats-card p {
  font-size: 0.85rem !important; /* Slightly smaller to prevent text disturbance */
  line-height: 1.6 !important;
  margin-bottom: 1.8rem !important; /* Generous separation from pulsing ripple */
}

/* Premium concentric ripple and rotating animations */
.stats-icon-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; /* Elegant smaller icon badge */
  height: 38px;
  border-radius: 50%;
  background-color: rgba(89, 43, 2, 0.08); /* subtle brown circle */
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: visible; /* Prevent ripple clipping! */
  margin-top: auto;
  z-index: 2;
}

.stats-card:hover .stats-icon-wrapper {
  background-color: rgba(255, 255, 255, 0.2); /* white circle on green bg */
}

.stats-icon {
  color: var(--theme-color-secondary) !important;
  font-size: 1.15rem; /* Balanced icon size */
  transition: color 0.4s ease, transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 3;
  display: inline-block;
  width: fit-content;
}

.stats-card:hover .stats-icon {
  color: #fff !important;
  transform: rotate(360deg) scale(1.15);
}

.stats-icon-wrapper::before,
.stats-icon-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  border: 1px solid var(--theme-color-secondary);
  opacity: 0;
  animation: stats-ripple 2.5s infinite cubic-bezier(0.1, 0.8, 0.3, 1);
  pointer-events: none;
  z-index: 1;
}

.stats-icon-wrapper::after {
  animation-delay: 1.25s;
}

.stats-card:hover .stats-icon-wrapper::before,
.stats-card:hover .stats-icon-wrapper::after {
  border-color: rgba(255, 255, 255, 0.6);
}

@keyframes stats-ripple {
  0% {
    transform: scale(1);
    opacity: 0.85;
  }
  50% {
    opacity: 0.4;
  }
  100% {
    transform: scale(1.85); /* Reduced scale to remain perfectly within card bounds */
    opacity: 0;
  }
}

/* Why Choose Us Box BG Illustrations */
.why-choose-box {
  position: relative;
  overflow: hidden;
  background-color: #f7faf4; /* Organic light tint */
  border: 1px solid rgba(44, 64, 1, 0.08);
  box-shadow: 0 15px 35px rgba(44, 64, 1, 0.04) !important;
  transition: all 0.5s ease;
}

.why-choose-box:hover {
  box-shadow: 0 20px 45px rgba(44, 64, 1, 0.08) !important;
}

.why-choose-bg-shape {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s ease;
}

.why-choose-bg-shape svg,
.why-choose-bg-shape img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.why-choose-bg-shape.shape-1 {
  width: 220px;
  height: 220px;
  bottom: -40px;
  left: -40px;
  transform: rotate(-10deg);
  opacity: 0.7;
}

.why-choose-bg-shape.shape-2 {
  width: 180px;
  height: 180px;
  top: -30px;
  right: 72%;
  transform: rotate(35deg);
  opacity: 0.7;
}

.why-choose-bg-shape.shape-3 {
  width: 160px;
  height: 160px;
  bottom: -30px;
  right: 18%;
  transform: rotate(15deg);
  opacity: 0.65;
}

/* Wobbly hand-drawn SVG animations */
.why-choose-box:hover .shape-1 {
  transform: scale(1.12) rotate(-5deg) translateY(-10px);
  opacity: 0.95;
}

.why-choose-box:hover .shape-2 {
  transform: scale(1.15) rotate(55deg) translateY(8px);
  opacity: 0.95;
}

.why-choose-box:hover .shape-3 {
  transform: scale(1.12) rotate(25deg) translateY(-8px);
  opacity: 0.9;
}

@media (max-width: 991px) {
  .stats-card {
    width: 100%;
  }
}

.text-brown {
  color: #4a3320;
}

.bg-theme-secondary {
  background-color: var(--theme-color-secondary);
}

.stats-text {
  line-height: 1.7;
}

.bg-light-gray {
  background-color: #fafafa;
}

/* Sketchy hand-drawn Cards */
.sketchy-card {
  background: #ffffff;
  border: 2px solid var(--theme-color-primary);
  /* Uneven wobbly sketchy border radius! */
  border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px;
  padding: 2.2rem 2rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.15);
  position: relative;
  box-shadow: 4px 4px 0 rgba(44, 64, 1, 0.08);
  overflow: hidden;
}

.sketchy-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  border: 1px solid rgba(89, 43, 2, 0.2);
  pointer-events: none;
  margin: 2px;
}

.sketchy-card:hover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: 12px 12px 0 rgba(44, 64, 1, 0.15);
  border-color: var(--theme-color-secondary);
}

.sketchy-card-icon-wrapper {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(44, 64, 1, 0.04);
  border-radius: 50%;
  transition: all 0.4s ease;
}

.sketchy-card:hover .sketchy-card-icon-wrapper {
  background-color: rgba(89, 43, 2, 0.08);
  transform: scale(1.1) rotate(5deg);
}

.sketchy-card-svg,
.sketchy-card-img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  transition: all 0.4s ease;
}

.sketchy-card:hover .sketchy-card-svg,
.sketchy-card:hover .sketchy-card-img {
  transform: scale(1.1);
}

/* Polaroid Sketchy Photo Frame */
.sketchy-polaroid-container {
  display: inline-block;
  position: relative;
  padding: 10px;
  z-index: 10;
}

.sketchy-polaroid {
  background: #ffffff;
  padding: 12px 12px 28px 12px;
  border: 2px solid #592b02; /* brown sketchy border */
  border-radius: 12px 255px 15px 255px / 255px 15px 255px 12px;
  box-shadow: 6px 10px 20px rgba(0,0,0,0.06);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.15);
  transform: rotate(2deg);
  width: 220px;
  margin: 0 auto;
}

.sketchy-polaroid img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border: 1.5px solid #eaeaea;
  border-radius: 6px;
}

.sketchy-polaroid-tape {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  width: 90px;
  height: 25px;
  background-color: rgba(220, 215, 185, 0.6); /* washi tape style */
  border-left: 2px dashed rgba(0,0,0,0.1);
  border-right: 2px dashed rgba(0,0,0,0.1);
  box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}

.font-handwritten {
  font-family: 'Outfit', 'Caveat', 'Segoe Print', cursive, sans-serif;
}

.sketchy-caption {
  margin-top: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--theme-color-secondary);
  text-align: center;
  letter-spacing: 0.5px;
}

.sketchy-polaroid-container:hover .sketchy-polaroid {
  transform: scale(1.06) rotate(-2deg) translateY(-8px);
  box-shadow: 12px 18px 30px rgba(89, 43, 2, 0.12);
  border-color: var(--theme-color-primary);
}

.why-choose-text {
  font-size: 1.1rem;
  line-height: 1.8;
}

.bottle-icon-img {
  max-width: 150px;
}

.bottle-text-badge {
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.7rem;
  font-weight: 700;
  color: #008000;
  text-align: left;
}

.btn-quote {
  display: inline-block;
  padding: 12px 30px;
  border: 2px solid var(--theme-color-primary);
  color: var(--theme-color-primary);
  border-radius: 30px 0 30px 0;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-quote:hover {
  background-color: var(--theme-color-primary);
  color: #fff;
}

.lh-lg {
  line-height: 1.8 !important;
}

/* =========================================================
   Products Section
========================================================= */
.products-area {
  background-color: #fcfaf8;
}

/* Products Mode 2 Styles */
.product-filter-btn {
  border: 2px solid var(--theme-color-primary);
  background-color: transparent;
  color: var(--theme-color-primary);
  border-radius: 30px;
  padding: 8px 24px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.product-filter-btn:hover,
.product-filter-btn.active {
  background-color: var(--theme-color-primary);
  color: #fff;
}

.product-card-vertical {
  transition: transform 0.3s ease;
}

.product-card-vertical:hover {
  transform: translateY(-5px);
}

.product-img-wrapper {
  height: 250px;
  overflow: hidden;
  background-color: #f8f9fa;
}

.product-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card-vertical:hover .product-img-wrapper img {
  transform: scale(1.05);
}

.btn-product-enquiry {
  background-color: var(--theme-color-secondary);
  color: #fff;
  padding: 12px 20px;
  border-radius: 30px 0 30px 0;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
}

.btn-product-enquiry:hover {
  background-color: var(--theme-color-primary);
  color: #fff;
}

.datasheets-box {
  border-radius: 24px;
  background-color: var(--theme-color-primary);
}

.btn-dark-brown {
  background-color: var(--theme-color-secondary);
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px 0 30px 0;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
}

.btn-dark-brown:hover {
  background-color: #28190f;
  color: #fff;
}



.products-area .text-muted {
  font-size: 1.05rem;
  color: #666 !important;
}

/* Premium Swiper Navigation Buttons */
.product-nav-prev,
.product-nav-next {
  position: static;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1.5px solid #4a3320;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: transparent;
  color: #4a3320;
  transition: all var(--transition-speed) ease;
}

.product-nav-next {
  margin-left: 10px;
}

.product-nav-prev::after,
.product-nav-next::after {
  display: none;
}

.product-nav-prev i,
.product-nav-next i {
  font-size: 16px;
}

.product-nav-prev:hover,
.product-nav-next:hover {
  background-color: #4a3320 !important;
  color: #fff !important;
}

/* Product Card - Swiper Slide */
.product-card {
  background: #ffffff;
  border-radius: 24px;
  display: flex;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(74, 51, 32, 0.04);
  height: 100%;
  border: none;
  transition: transform 0.3s ease;
}

.product-card-img-wrapper {
  flex: 0 0 42%;
  max-width: 42%;
  position: relative;
  overflow: hidden;
  background-color: #eaeaea;
}

.product-card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-top-left-radius: 24px;
  border-bottom-left-radius: 24px;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card-img-wrapper img {
  transform: scale(1.05);
}

.product-card-details {
  flex: 0 0 58%;
  max-width: 58%;
  padding: 22px 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

/* Badge styling */
.product-badge {
  background-color: #e6f4ea;
  color: #00702a;
  padding: 3px 10px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 8px;
}

.product-title {
  color: #4a3320;
  font-weight: 700;
  font-size: 1.45rem;
  margin: 0 0 8px 0;
  line-height: 1.25;
}

.product-desc {
  color: #666;
  font-size: 0.88rem;
  line-height: 1.5;
  margin-bottom: 16px;
}

/* Request a Quote Button */
.btn-request-quote {
  background-color: #4a3320;
  color: #ffffff !important;
  padding: 9px 22px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  display: inline-block;
  text-transform: uppercase;
  border: 1px solid #4a3320;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(74, 51, 32, 0.12);
}

.btn-request-quote:hover {
  background-color: #3b2819;
  border-color: #3b2819;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(74, 51, 32, 0.25);
}

/* View all products Button at bottom */
.btn-view-all-premium {
  background-color: #425c34;
  color: #ffffff !important;
  padding: 14px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  display: inline-block;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(66, 92, 52, 0.2);
}

.btn-view-all-premium:hover {
  background-color: #334828;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(66, 92, 52, 0.35);
}

/* Swiper Pagination dots styles */
.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #ccc;
  opacity: 1;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  width: 30px;
  border-radius: 5px;
  background: #4a3320 !important;
}

/* =========================================================
   Quality Standards Section
========================================================= */
.quality-area {
  background-color: #ffffff;
}



.quality-area .text-muted {
  max-width: 700px;
  font-size: 1.1rem;
}

.quality-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  grid-auto-rows: 320px;
  margin-top: 40px;
}

.bento-box {
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(0,0,0,0.03);
}

.bento-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(74, 51, 32, 0.12);
}

.bento-box-1 {
  grid-column: span 2;
  color: #ffffff;
}

.bento-box-1 .bento-bg-overlay {
  background: linear-gradient(to top, rgba(20, 35, 45, 0.9) 0%, rgba(20, 35, 45, 0.3) 100%);
}

.bento-box-title {
  font-weight: 700;
  font-size: 1.9rem;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.bento-box-text {
  opacity: 0.9;
  margin: 0;
  max-width: 550px;
  font-size: 1.05rem;
  line-height: 1.6;
}

.bento-box-2 {
  background-color: #218703;
  color: #ffffff;
  grid-column: span 1;
}

.bento-box-3 {
  background-color: #462c24;
  color: #ffffff;
  grid-column: span 1;
}

.bento-box-title-sm {
  font-weight: 700;
  font-size: 1.6rem;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.bento-box-text-sm {
  opacity: 0.85;
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.6;
}

.bento-icon-1 {
  font-size: 2.2rem;
  color: #81c784;
}

.bento-icon-2 {
  font-size: 2.2rem;
  color: #e8d8ce;
}

/* Combined Bento Box 4 & 5 */
.bento-box-4-5-combined {
  grid-column: span 2;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
}

.bento-cert-left {
  background-color: #f2fbf4;
  height: 100%;
}

.bento-cert-right {
  height: 100%;
  overflow: hidden;
}

.bento-combined-img {
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.bento-box-4-5-combined:hover .bento-combined-img {
  transform: scale(1.05);
}

.bento-box-title-md {
  color: #4a3320;
  font-weight: 700;
  font-size: 1.7rem;
  letter-spacing: -0.5px;
}

.bento-box-text-dark {
  color: #555555;
  font-size: 1rem;
  line-height: 1.6;
}

.bento-box-4-5-combined .badge-cert {
  background-color: #e6f4ea;
  color: #1b5e20;
  border: 1px solid #c8e6c9;
  padding: 6px 14px;
  font-weight: 700;
  font-size: 0.8rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 991px) {
  .quality-bento-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 20px;
  }

  .quality-bento-grid > div,
  .bento-box-1,
  .bento-box-2,
  .bento-box-3,
  .bento-box-4-5-combined {
    grid-column: span 1 !important;
    min-height: auto;
  }

  .bento-box-4-5-combined {
    height: auto;
  }

  .bento-cert-left {
    padding: 40px 30px !important;
  }

  .bento-cert-right {
    height: 250px;
  }

  .product-card {
    display: flex;
    flex-direction: column;
  }
  .product-card-img-wrapper,
  .product-card-details {
    max-width: 100%;
  }
  .product-card-img-wrapper img {
    height: 250px;
  }
  .bento-cert-left {
    height: auto;
  }
}

.faq-accordion {
  padding: 15px;
}

.product-card-img {
  object-fit: cover;
}

/* =========================================================
   Services Updates
========================================================= */
.bento-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  border-radius: 15px;
}

.bento-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(20, 40, 50, 0.9), rgba(20, 40, 50, 0.4));
  z-index: 0;
  border-radius: 15px;
}

.z-1 {
  z-index: 1;
}

.industries-area {
  background-color: #fafafa;
}

.ind-tab-pane {
  display: none;
}

.ind-tab-pane.active {
  display: block;
}

.tab-full-img {
  border-radius: 20px;
  object-fit: cover;
  max-height: 500px;
}

/* =========================================================
   Products Updates
========================================================= */
.product-card-desc {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.6;
  max-width: 90%;
}

.product-controls .product-nav-prev,
.product-controls .product-nav-next {
  width: 40px;
  height: 40px;
  border: 1px solid var(--theme-color-secondary);
}

.product-controls .product-nav-next {
  margin-left: 5px;
}

/* =========================================================
   Industries Tabs Section
========================================================= */
.industries-area {
  background-color: #fafafa;
}

.industries-tabs .tab-btn {
  background-color: #e6f4ea;
  color: #00702a;
  border: none;
  padding: 12px 25px;
  border-radius: 20px 0 20px 0;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 0.9rem;
  transition: all 0.3s;
}

.industries-tabs .tab-btn:hover {
  background-color: #d1f2d1;
}

.industries-tabs .tab-btn.active {
  background-color: #00702a;
  color: #fff;
}

.sub-heading-green {
  color: var(--theme-color-primary) !important; /* Premium Forest Green (#2C4001) */
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  font-size: 0.9rem !important;
  display: inline-block !important;
  margin-bottom: 12px !important;
}

.main-heading {
  color: var(--theme-color-secondary) !important; /* Rich Chocolate Bronze Brown (#592B02) */
  font-weight: 700 !important;
  font-size: 2.5rem !important;
  line-height: 1.2 !important;
  text-transform: uppercase !important;
  letter-spacing: -0.5px !important;
  margin-bottom: 20px !important;
}

@media (max-width: 767px) {
  .main-heading {
    font-size: 1.8rem !important;
  }
}

.tab-heading {
  color: #4a3320;
  font-weight: 700;
  font-size: 2.2rem;
}

.tab-desc {
  font-size: 1.05rem;
  line-height: 1.6;
}

/* =========================================================
   CTA Section
========================================================= */
.cta-area {
  background-color: #fafafa;
}

.cta-box {
  background-color: #00702a;
  border-radius: 30px;
  padding: 70px 30px;
  position: relative;
  overflow: hidden;
}

/* Background Blobs */
.cta-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #00702a;
  z-index: 2;
  opacity: .9;
  mix-blend-mode: multiply;
}

.cta-box::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url(../images/bg/bg.webp);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.9;
  z-index: 1;
}

.cta-content-inner {
  position: relative;
  z-index: 2;
}

.cta-box-title {
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #fff;
}

.cta-box-text {
  max-width: 600px;
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 40px;
  color: #fff;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta-btn-group {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.cta-box .btn {
  padding: 14px 40px;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  border: none;
}

.cta-btn-primary {
  background-color: var(--theme-color-secondary);
  color: #fff;
  border-radius: 30px 0 30px 0;
}
.cta-btn-primary.bg-light {
  background-color: #fff;
  color: var(--theme-color-secondary);
  padding: 15px 40px;
  border-radius: 30px 0 30px 0;
}

.cta-btn-outline {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff !important;
  border-radius: 30px 0 30px 0;
}

.cta-box .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.cta-btn-primary:hover {
  background-color: #3b2819;
  color: #fff;
}
.cta-btn-primary.bg-light:hover {
  color: #000000;
}

.cta-btn-outline:hover {
  background-color: #fff;
  color: #00702a;
  border-color: #fff !important;
}

/* =========================================================
   Contact Page Styles
========================================================= */
.contact-option-card {
  background-color: #ffffff;
  border: 1px solid rgba(89, 43, 2, 0.06);
  border-radius: 16px;
  padding: 30px;
  text-align: left;
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
}

.contact-option-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(89, 43, 2, 0.08) !important;
}

.contact-option-card .icon-badge-box {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.25rem;
}

.contact-option-card .badge-peach {
  background-color: #fff4f2;
  color: #ff6f61;
}

.contact-option-card .badge-green {
  background-color: #eef7eb;
  color: var(--theme-color-primary);
}

.contact-option-card .badge-slate {
  background-color: #f0f4f8;
  color: #4a5568;
}

.contact-option-card h5 {
  font-weight: 700;
  color: var(--theme-color-secondary);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.contact-option-card p {
  color: #6c757d;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.contact-option-card .card-cta-link {
  color: var(--theme-color-secondary);
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.25s ease, gap 0.25s ease;
  text-decoration: none;
}

.contact-option-card .card-cta-link:hover {
  color: var(--theme-color-primary);
  gap: 10px;
}

/* Contact Inputs styling override */
.contact-input {
  background-color: #f8f9fa !important;
  border: 1px solid #e9ecef !important;
  border-radius: 10px !important;
  padding: 14px 18px !important;
  font-size: 0.95rem !important;
  color: #333333 !important;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.contact-input::placeholder {
  color: #a0aec0 !important;
}

.contact-input:focus {
  background-color: #ffffff !important;
  border-color: var(--theme-color-primary) !important;
  box-shadow: 0 0 0 4px rgba(59, 92, 42, 0.1) !important;
  outline: none !important;
}

/* Form Submit Button Override */
.btn-submit-form {
  background-color: var(--theme-color-secondary) !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 12px !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  padding: 16px 28px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
}

.btn-submit-form:hover {
  background-color: var(--theme-color-primary) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(59, 92, 42, 0.2);
}

/* Global Headquarters Column */
.hq-section-title {
  font-weight: 700;
  color: var(--theme-color-secondary);
  font-size: 1.6rem;
  margin-bottom: 25px;
}

.key-point-card {
  background-color: #ffffff;
  border: 1px solid rgba(89, 43, 2, 0.05);
  border-radius: 16px;
  padding: 24px;
  text-align: left;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.key-point-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(89, 43, 2, 0.06) !important;
}

.key-point-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background-color: #eef7eb;
  color: var(--theme-color-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.key-point-card h6 {
  font-weight: 700;
  color: var(--theme-color-secondary);
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.key-point-card p {
  color: #718096;
  font-size: 0.8rem;
  line-height: 1.5;
  margin-bottom: 0;
}

/* Direct Support Card */
.direct-support-card {
  background-color: var(--theme-color-secondary); /* Solid brand brown */
  color: #ffffff;
  border-radius: 50px 0 50px 0;
  padding: 35px;
  box-shadow: 0 10px 30px rgba(89, 43, 2, 0.08);
}

.direct-support-card h4 {
  font-weight: 700;
  color: #ffffff;
  font-size: 1.4rem;
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 15px;
}

.support-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 22px;
}

.support-item:last-child {
  margin-bottom: 0;
}

.support-icon {
  font-size: 1.2rem;
  color: #f7faf6; /* very soft green/white */
  opacity: 0.9;
  margin-top: 3px;
  flex-shrink: 0;
}

.support-details {
  display: flex;
  flex-direction: column;
}

.support-details span {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.7;
  margin-bottom: 3px;
}

.support-details p,
.support-details a {
  color: #ffffff !important;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 0;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.support-details a:hover {
  opacity: 0.8;
}

/* Bottom Hub Section */
.contact-hub-section {
  background-color: #faf9f7;
}

.hub-container {
  background: #f1efeb;
  border: 1px solid rgba(89, 43, 2, 0.05);
}

.hub-card {
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03) !important;
}

.hub-card h4 {
  font-weight: 700;
  color: var(--theme-color-secondary);
}

.hub-directions-btn {
  color: var(--theme-color-secondary);
  font-size: 0.85rem;
  letter-spacing: 1px;
  transition: color 0.25s ease;
}

.hub-directions-btn:hover {
  color: var(--theme-color-primary);
}

.hub-map-wrapper {
  background: #ffffff;
  padding: 6px;
  border-radius: 20px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.hub-map-wrapper iframe {
  border-radius: 14px;
  border: 0 !important;
}

/* ==========================================================================
   Facilities Redesign & Premium Tab Styles
   ========================================================================== */
.industries-area {
  background-color: #ffffff;
}

.industries-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.industries-tabs .tab-btn {
  background-color: #f2f7f1 !important;
  color: var(--theme-color-primary) !important;
  border-radius: 8px !important;
  padding: 12px 24px !important;
  font-weight: 700 !important;
  font-size: 0.9rem !important;
  border: none !important;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  box-shadow: none !important;
}

.industries-tabs .tab-btn:hover {
  background-color: #e2ede0 !important;
  transform: translateY(-1px);
}

.industries-tabs .tab-btn.active {
  background-color: var(--theme-color-primary) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(59, 92, 42, 0.15) !important;
}

.ind-tab-pane {
  display: none;
}

.ind-tab-pane.active {
  display: block;
  animation: tabFadeIn 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes tabFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tab-heading {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.2;
}

.tab-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #666666;
}

.tab-img-wrapper {
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.tab-main-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.tab-img-wrapper:hover .tab-main-img {
  transform: scale(1.02);
}

/* ==========================================================================
   Interactive FAQ Accordion Premium Styles
   ========================================================================== */
.faq-accordion {
  margin-top: 20px;
}

.faq-item {
  border: 1px solid #e5ebd9;
  margin-bottom: 16px;
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  background-color: #ffffff;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.faq-item:hover {
  box-shadow: 0 10px 25px rgba(59, 92, 42, 0.06);
  border-color: #c2e2b8;
  transform: translateY(-2px);
}

.faq-item.active {
  border-color: #c2e2b8;
  background-color: #fcfdfb;
  box-shadow: 0 10px 30px rgba(59, 92, 42, 0.08);
}

.faq-question {
  cursor: pointer;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
  user-select: none;
}

.faq-item.active .faq-question {
  background-color: #f7faf6;
}

.faq-question h5 {
  color: #4a3320;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
  transition: color 0.3s ease;
}

.faq-item.active .faq-question h5 {
  color: var(--theme-color-primary);
}

.faq-arrow {
  font-size: 1.1rem;
  color: var(--theme-color-primary);
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  min-height: 0;
  color: #000000;
  font-size: 1.1rem;
  /* font-weight: 700; */
  line-height: 1.7;
  padding: 24px;
  border-top: 1px solid #f0f4eb;
}

/* Product catalog filter utilities - no inline CSS */
.product-item-hidden {
  display: none !important;
}

.products-page-desc {
  max-width: 700px;
  line-height: 1.8;
}

.datasheets-desc {
  opacity: 0.9;
}

/* ==============================
   Our Process – Timeline Section
   ============================== */

/* Section wrapper */
.process-area {
  background: linear-gradient(175deg, #f5f0eb 0%, #f9f9f9 40%, #eef5e8 100%);
  overflow: hidden;
}

/* Floating decorative elements */
.process-floating-element {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
}

.floating-coconut-1 {
  top: 5%;
  left: -2%;
  width: 180px;
  animation: processFloat 8s ease-in-out infinite;
}

.floating-shell-1 {
  bottom: 8%;
  right: -1%;
  width: 140px;
  animation: processFloat 10s ease-in-out 2s infinite;
}

.floating-tree-1 {
  top: 10%;
  right: 4%;
  width: 120px;
  color: var(--theme-color-primary);
  animation: processFloat 12s ease-in-out 4s infinite;
}

@keyframes processFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-18px) rotate(2deg);
  }
  50% {
    transform: translateY(-8px) rotate(-1deg);
  }
  75% {
    transform: translateY(-22px) rotate(1.5deg);
  }
}

/* Timeline wrapper */
.process-timeline-wrapper {
  position: relative;
  z-index: 1;
}

/* Horizontal timeline line (desktop) */
.timeline-line {
  position: absolute;
  top: 72px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--theme-color-primary) 15%,
    var(--theme-color-secondary) 50%,
    var(--theme-color-primary) 85%,
    transparent 100%);
  border-radius: 2px;
  opacity: 0.25;
}

/* Step column */
.timeline-step-col {
  display: flex;
  justify-content: center;
}

/* Process step card */
.process-step-card {
  position: relative;
  background: #ffffff;
  border-radius: 18px;
  padding: 40px 24px 28px;
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 4px 20px rgba(59, 92, 42, 0.06);
  border: 1px solid rgba(59, 92, 42, 0.08);
  max-width: 280px;
  width: 100%;
}

.process-step-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 18px 40px rgba(59, 92, 42, 0.14),
              0 4px 12px rgba(146, 107, 56, 0.08);
  border-color: rgba(59, 92, 42, 0.18);
}

/* Step number badge */
.step-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  line-height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--theme-color-primary), var(--theme-color-accent));
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 0 4px 14px rgba(59, 92, 42, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step-card:hover .step-badge {
  transform: translateX(-50%) scale(1.15);
  box-shadow: 0 6px 20px rgba(59, 92, 42, 0.4);
}

/* Icon wrapper */
.process-icon-wrap {
  width: 68px;
  height: 68px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #eef5e8, #f5f0eb);
  border: 2px solid rgba(59, 92, 42, 0.12);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.process-icon-wrap i {
  font-size: 1.6rem;
  color: var(--theme-color-primary);
  transition: color 0.3s ease, transform 0.3s ease;
}

.process-step-card:hover .process-icon-wrap {
  background: linear-gradient(145deg, var(--theme-color-primary), var(--theme-color-accent));
  border-color: var(--theme-color-primary);
  transform: scale(1.08);
}

.process-step-card:hover .process-icon-wrap i {
  color: #ffffff;
  transform: scale(1.1);
}

/* Step title */
.step-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

/* Step description */
.step-desc {
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 16px;
}

/* Step highlight chip */
.step-highlight {
  display: inline-block;
  padding: 5px 16px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(59, 92, 42, 0.08), rgba(108, 156, 76, 0.12));
  color: var(--theme-color-primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.process-step-card:hover .step-highlight {
  background: linear-gradient(135deg, var(--theme-color-primary), var(--theme-color-accent));
  color: #ffffff;
  transform: scale(1.05);
}

/* Responsive Overrides */
@media (max-width: 991px) {
  .tab-heading {
    font-size: 1.8rem;
  }
  .tab-main-img {
    height: 350px;
  }

  /* Process timeline – tablet: 2-col + 1-col stacked */
  .timeline-line {
    display: none;
  }
  .timeline-steps {
    flex-direction: column;
  }
  .timeline-steps .col-lg {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .process-step-card {
    max-width: 100%;
  }
  .floating-coconut-1,
  .floating-shell-1,
  .floating-tree-1 {
    display: none !important;
  }
}

@media (max-width: 576px) {
  .tab-heading {
    font-size: 1.5rem;
  }
  .tab-main-img {
    height: 250px;
  }
  .industries-tabs .tab-btn {
    padding: 10px 16px !important;
    font-size: 0.8rem !important;
    width: 100%;
    text-align: center;
  }

  /* Process timeline – mobile: single column */
  .timeline-steps .col-lg {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .process-step-card {
    padding: 36px 20px 24px;
  }
  .step-title {
    font-size: 1rem;
  }
  .step-desc {
    font-size: 0.84rem;
  }
}

/* =========================================================
   Quick Contact Widget & Back to Top Button
========================================================= */

/* Common Floating Utilities */
.quick-contact-widget,
.back-to-top {
  position: fixed;
  bottom: 30px;
  z-index: 999;
}

/* Quick Contact Widget - Left Side */
.quick-contact-widget {
  left: 30px;
}

/* FAB Trigger Button */
.quick-contact-trigger {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--theme-color-primary);
  border: none;
  color: var(--text-light);
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--transition-speed), transform var(--transition-speed), box-shadow var(--transition-speed);
  position: relative;
}

.quick-contact-trigger:hover {
  background-color: var(--theme-color-accent);
  transform: scale(1.08) rotate(5deg);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.quick-contact-trigger i {
  position: absolute;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
}
.quick-contact-trigger i:hover {
  color: var(--bg-light);
}

.quick-contact-trigger .icon-close {
  opacity: 0;
  transform: scale(0.5) rotate(-90deg);
}

/* Active State Trigger Toggle */
.quick-contact-widget.active .quick-contact-trigger {
  background-color: var(--theme-color-secondary);
}

.quick-contact-widget.active .quick-contact-trigger .icon-main {
  opacity: 0;
  transform: scale(0.5) rotate(90deg);
}

.quick-contact-widget.active .quick-contact-trigger .icon-close {
  opacity: 1;
  transform: scale(1) rotate(0);
}

/* Floating Actions Menu Container */
.quick-contact-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 15px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px) scale(0.85);
  transition: opacity 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  align-items: center;
}

.quick-contact-widget.active .quick-contact-links {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

/* Individual Action Buttons */
.quick-contact-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 1.3rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
  position: relative;
}

.quick-contact-btn:hover {
  color: var(--bg-light);
  transform: scale(1.12);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.22);
}

/* WhatsApp Brand Style */
.qc-whatsapp {
  background-color: #25D366; /* Standard WhatsApp Brand Color */
}
.qc-whatsapp:hover {
  background-color: #20ba5a;
}

/* Phone Style */
.qc-phone {
  background-color: #0078FF; /* Clean Messenger Blue */
}
.qc-phone:hover {
  background-color: #0066da;
}

/* Enquiry Style */
.qc-enquiry {
  background-color: var(--theme-color-secondary); /* Brand Bronze-Brown */
}
.qc-enquiry:hover {
  background-color: var(--theme-color-accent);
}

/* Premium Glassmorphic Tooltips */
.quick-contact-btn .tooltip-text {
  position: absolute;
  left: 65px;
  background: rgba(44, 64, 1, 0.9); /* Theme primary with opacity */
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-light);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.quick-contact-btn:hover .tooltip-text {
  opacity: 1;
  transform: translateX(0);
}

/* Back To Top Button - Right Side */
.back-to-top {
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--theme-color-primary);
  border: none;
  color: var(--text-light);
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease, background-color var(--transition-speed), box-shadow var(--transition-speed);
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background-color: var(--theme-color-secondary);
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* Pulse Animation for main Quick Contact trigger to grab user's attention */
@keyframes fab-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(44, 64, 1, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(44, 64, 1, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(44, 64, 1, 0);
  }
}

.quick-contact-trigger {
  animation: fab-pulse 2.5s infinite;
}

/* Micro-responsive safety margins to prevent collisions with mobile viewport bottom bar or overlays */
@media (max-width: 768px) {
  .quick-contact-widget,
  .back-to-top {
    bottom: 20px;
  }
  .quick-contact-widget {
    left: 20px;
  }
  .back-to-top {
    right: 20px;
  }
  
  .quick-contact-trigger {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
  
  .quick-contact-btn {
    width: 44px;
    height: 44px;
    font-size: 1.15rem;
  }
  
  .back-to-top {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }
  
  /* Hide tooltips on mobile to prevent layout clutter; let simple touch speak for itself */
  .quick-contact-btn .tooltip-text {
    display: none !important;
  }
}

/* =========================================================
   Premium Brand Footer Layout
========================================================= */
.site-footer {
  background: linear-gradient(rgba(44, 64, 1, 0.94), rgba(44, 64, 1, 0.94)), url('../images/bg/AG_Groups_bg.webp') no-repeat center center / cover;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  overflow: hidden;
  padding-top: 40px;
  font-size: 0.92rem;
  line-height: 1.7;
}

/* Beautiful curving transition wave on top */
.footer-top-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.footer-top-wave svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 40px;
}

/* Main Content Area */
.footer-main-content {
  padding: 0px;
  position: relative;
  z-index: 2;
}

/* .footer-col {
  margin-bottom: 40px;
} */

/* Brand Area */
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
}

.footer-logo {
  height: 100px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1); /* Forces logo to be solid white on deep green background */
  transition: transform var(--transition-speed) ease;
}

.footer-brand-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.5px;
}

.footer-about-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 25px;
}

/* Footer Social Icons Grid */
.footer-social-links {
  display: flex;
  gap: 12px;
}

.footer-social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.95rem;
  transition: background-color var(--transition-speed), border-color var(--transition-speed), transform var(--transition-speed), color var(--transition-speed);
}

.footer-social-links a:hover {
  background-color: var(--theme-color-secondary); /* bronze chocolate accent */
  border-color: var(--theme-color-secondary);
  color: var(--text-light);
  transform: translateY(-4px);
}

/* Column Titles */
.footer-col-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
  letter-spacing: 0.5px;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--theme-color-secondary);
  border-radius: 2px;
  transition: width var(--transition-speed) ease;
}

.footer-col:hover .footer-col-title::after {
  width: 60px;
}

/* Navigation & Product Lists */
.footer-links-list li {
  margin-bottom: 12px;
}

.footer-links-two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 15px;
}

.footer-links-two-col li {
  margin-bottom: 0;
}

.footer-links-list a {
  color: rgba(255, 255, 255, 0.75);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  transition: color var(--transition-speed) ease, transform var(--transition-speed) ease;
}

.footer-links-list a i {
  font-size: 0.7rem;
  opacity: 0.6;
  transition: transform var(--transition-speed) ease;
}

.footer-links-list a:hover {
  color: var(--text-light);
  transform: translateX(5px);
}

.footer-links-list a:hover i {
  transform: translateX(2px);
  color: var(--theme-color-secondary);
  opacity: 1;
}

/* Contact Information Block */
.footer-contact-info li {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-contact-info .contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  /* color: var(--theme-color-secondary); */
  font-size: 1rem;
  flex-shrink: 0;
  transition: background-color var(--transition-speed), transform var(--transition-speed);
}

.footer-contact-info li:hover .contact-icon {
  background-color: var(--theme-color-secondary);
  color: var(--text-light);
  transform: scale(1.08) rotate(5deg);
}

.footer-contact-info .contact-details span {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2px;
}

.footer-contact-info .contact-details p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-light);
}

.footer-contact-info .contact-details a {
  color: var(--text-light);
  transition: color var(--transition-speed);
}

.footer-contact-info .contact-details a:hover {
  color: var(--theme-color-secondary);
}

/* Copyright Bottom Bar */
.footer-bottom-bar {
  background-color: rgba(0, 0, 0, 0.15);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 5px 0;
  position: relative;
  z-index: 2;
}

.footer-bottom-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom-wrapper p {
  margin: 0;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-wrapper .highlight {
  color: var(--text-light);
  font-weight: 700;
}

.footer-bottom-wrapper a {
  color: var(--text-light);
  font-weight: 700;
  transition: color var(--transition-speed);
}

.footer-bottom-wrapper a:hover {
  color: var(--theme-color-secondary);
  text-decoration: underline;
}

/* Responsive Scaling */
@media (max-width: 991px) {
  .footer-main-content {
    padding: 40px 0 20px;
  }
  .footer-col {
    margin-bottom: 30px;
  }
}


@media (max-width: 768px) {
  .footer-bottom-wrapper {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
}

/* =========================================================
   AS Groups Premium Enquiry Modal
========================================================= */
.as-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 18, 5, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.as-modal-overlay.active {
  opacity: 1;
}

.as-modal-container {
  background: #ffffff;
  border-radius: 24px;
  width: 92%;
  max-width: 960px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  position: relative;
  transform: scale(0.85);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  max-height: 90vh;
}

.as-modal-overlay.active .as-modal-container {
  transform: scale(1);
}

.as-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.8);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.as-modal-close:hover {
  background: #fff;
  transform: rotate(90deg) scale(1.1);
  color: var(--theme-color-secondary);
}

.as-modal-row {
  display: flex;
  width: 100%;
  height: 100%;
}

.as-modal-form-col {
  flex: 0 0 60%;
  max-width: 60%;
  padding: 40px;
  overflow-y: auto;
}

.as-modal-info-col {
  flex: 0 0 40%;
  max-width: 40%;
  background: linear-gradient(135deg, rgba(30, 48, 2, 0.95) 0%, rgba(13, 22, 1, 0.95) 100%), url('../images/bg/AG_Groups_bg.webp') no-repeat center center;
  background-size: cover;
  color: #ffffff;
  padding: 45px 35px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

/* Background Leaf Illustration in Sidebar */
.as-modal-info-col::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* Form Styles */
.as-modal-title {
  color: var(--theme-color-primary);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.as-modal-subtitle {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 25px;
}

.as-modal-form .form-group {
  margin-bottom: 18px;
}

.as-modal-form input[type="text"],
.as-modal-form input[type="email"],
.as-modal-form input[type="tel"],
.as-modal-form select,
.as-modal-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  font-size: 0.9rem;
  color: #333;
  background: #fdfdfd;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.as-modal-form input[type="text"]:focus,
.as-modal-form input[type="email"]:focus,
.as-modal-form input[type="tel"]:focus,
.as-modal-form select:focus,
.as-modal-form textarea:focus {
  outline: none;
  border-color: var(--theme-color-accent);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(70, 89, 2, 0.1);
}

.as-modal-form textarea {
  resize: none;
  height: 95px;
}

.as-modal-submit-btn {
  background-color: var(--theme-color-secondary);
  color: #ffffff !important;
  border: none;
  width: 100%;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 12px rgba(89, 43, 2, 0.2);
  transition: all 0.3s ease;
}

.as-modal-submit-btn:hover {
  background-color: #432001;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(89, 43, 2, 0.3);
}

.as-modal-submit-btn:active {
  transform: translateY(0);
}

.as-modal-submit-btn svg {
  transition: transform 0.3s ease;
}

.as-modal-submit-btn:hover svg {
  transform: translate(3px, -3px);
}

/* Sidebar Branding & Info */
.as-modal-brand {
  margin-bottom: 30px;
}

.as-modal-brand-logo {
  max-width: 250px;
  height: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 12px;
}

.as-modal-brand-tagline {
  font-size: 0.8rem;
  opacity: 0.8;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.as-modal-info-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

.as-modal-info-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--theme-color-accent);
}

.as-modal-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.as-modal-info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.as-modal-info-icon {
  background: rgba(255, 255, 255, 0.1);
  min-width: 36px;
  max-width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.95rem;
}

.as-modal-info-text {
  font-size: 0.9rem;
  line-height: 1.45;
}

.as-modal-info-text a {
  color: #ffffff;
  transition: opacity 0.2s;
}

.as-modal-info-text a:hover {
  opacity: 0.85;
  text-decoration: underline;
}

/* Response messaging */
#success1,
#error1,
.as-form-message {
  display: none;
  padding: 12px;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 15px;
}

.as-form-message.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.as-form-message.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Responsive Media Queries */
@media (max-width: 768px) {
  .as-modal-container {
    flex-direction: column;
    max-height: 95vh;
    overflow-y: auto;
  }
  .as-modal-info-col {
    display: none;
  }
  
  .as-modal-row {
    flex-direction: column;
  }
  
  .as-modal-form-col,
  .as-modal-info-col {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .as-modal-form-col {
    padding: 30px 24px;
    order: 1;
  }
  
  .as-modal-info-col {
    padding: 35px 24px;
    order: 2;
  }
}

/* Modal Social Icons */
.as-modal-socials {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.as-modal-socials-title {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.8);
}

.as-modal-socials-list {
  display: flex;
  gap: 12px;
}

.as-modal-socials-list a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff !important;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.as-modal-socials-list a:hover {
  background: var(--theme-color-accent);
  color: #ffffff !important;
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* =========================================================
   Premium Preloader (White BG)
========================================================= */
.rmm-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  transition: opacity 0.6s cubic-bezier(0.77, 0, 0.175, 1), visibility 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  overflow: hidden;
}

.rmm-preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Spinner Logo Design */
.preloader-spinner {
  position: relative;
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.preloader-spinner img {
  max-height: 120px;
  width: auto;
  animation: logoPulse 2s ease-in-out infinite;
}

@keyframes logoPulse {
  0% {
    transform: scale(0.96);
    opacity: 0.85;
  }
  50% {
    transform: scale(1.04);
    opacity: 1;
  }
  100% {
    transform: scale(0.96);
    opacity: 0.85;
  }
}

/* Text glowing letter animation on White BG */
.preloader-text {
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 6px;
  color: var(--theme-color-secondary); /* Elegant brown */
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.preloader-text .letter {
  display: inline-block;
  opacity: 0.3;
  animation: waveFadeWhite 1.6s ease-in-out infinite;
}

/* Stagger animations for each letter */
.preloader-text .letter:nth-child(1) { animation-delay: 0.1s; }
.preloader-text .letter:nth-child(2) { animation-delay: 0.2s; }
.preloader-text .letter:nth-child(3) { animation-delay: 0.3s; }
.preloader-text .letter:nth-child(4) { animation-delay: 0.4s; }
.preloader-text .letter:nth-child(5) { animation-delay: 0.5s; }
.preloader-text .letter:nth-child(6) { animation-delay: 0.6s; }
.preloader-text .letter:nth-child(7) { animation-delay: 0.7s; }
.preloader-text .letter:nth-child(8) { animation-delay: 0.8s; }
.preloader-text .letter:nth-child(9) { animation-delay: 0.9s; }

@keyframes waveFadeWhite {
  0%, 100% {
    opacity: 0.3;
    transform: translateY(0);
    color: var(--theme-color-secondary);
  }
  50% {
    opacity: 1;
    transform: translateY(-4px);
    color: var(--theme-color-primary); /* Transition to premium green */
  }
}

.preloader-sub {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(89, 43, 2, 0.6); /* Soft brown */
  text-transform: uppercase;
  animation: pulseSub 2s ease-in-out infinite alternate;
}

@keyframes pulseSub {
  0% { opacity: 0.5; }
  100% { opacity: 0.9; }
}

/* =========================================================
   Footer Newsletter Subscribe Form
========================================================= */
.footer-newsletter-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

.newsletter-input-group {
  position: relative;
  display: flex;
  width: 100%;
}

.newsletter-input {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 30px !important;
  padding: 14px 60px 14px 20px !important;
  color: #ffffff !important;
  font-size: 0.9rem !important;
  height: auto !important;
  width: 100% !important;
  transition: all 0.3s ease !important;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.4) !important;
}

.newsletter-input:focus {
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: var(--theme-color-primary) !important;
  box-shadow: 0 0 10px rgba(153, 255, 51, 0.15) !important;
  outline: none !important;
}

.newsletter-submit-btn {
  position: absolute;
  right: 4px;
  top: 4px;
  bottom: 4px;
  width: 46px;
  height: 46px;
  border-radius: 50% !important;
  background-color: var(--theme-color-primary) !important;
  border: none !important;
  color: #ffffff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem !important;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.newsletter-submit-btn:hover {
  background-color: #ffffff !important;
  color: var(--theme-color-primary) !important;
  transform: scale(1.05);
}
.contact-form-card {
  padding: 20px;
  border-radius: 24px;
}

.industrial-form h3 {
  font-weight: 800;
}
/* =========================================================
   Unified Premium Button Hover & Active Animations
========================================================= */
.btn-primary,
.btn-premium-green,
.btn-request-quote,
.btn-product-enquiry,
.btn-view-all-premium,
.btn-outline-premium-light {
  position: relative !important;
  background-color: transparent !important;
  color: var(--theme-color-primary) !important;
  border: 3px solid var(--theme-color-primary) !important;
  border-radius: 24px !important;
  z-index: 1 !important;
  overflow: hidden !important;
  transition: 0.3s ease all !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1.2 !important;
  gap: 10px !important;
}

.btn-primary:before,
.btn-premium-green:before,
.btn-request-quote:before,
.btn-product-enquiry:before,
.btn-view-all-premium:before,
.btn-outline-premium-light:before {
  transition: 0.5s all ease !important;
  position: absolute !important;
  top: 0 !important;
  left: 50% !important;
  right: 50% !important;
  bottom: 0 !important;
  opacity: 0 !important;
  content: '' !important;
  background-color: var(--theme-color-primary) !important;
  z-index: -1 !important;
}

.btn-primary:hover, .btn-primary:focus,
.btn-premium-green:hover, .btn-premium-green:focus,
.btn-request-quote:hover, .btn-request-quote:focus,
.btn-product-enquiry:hover, .btn-product-enquiry:focus,
.btn-view-all-premium:hover, .btn-view-all-premium:focus,
.btn-outline-premium-light:hover, .btn-outline-premium-light:focus {
  color: white !important;
}

.btn-primary:hover:before, .btn-primary:focus:before,
.btn-premium-green:hover:before, .btn-premium-green:focus:before,
.btn-request-quote:hover:before, .btn-request-quote:focus:before,
.btn-product-enquiry:hover:before, .btn-product-enquiry:focus:before,
.btn-view-all-premium:hover:before, .btn-view-all-premium:focus:before,
.btn-outline-premium-light:hover:before, .btn-outline-premium-light:focus:before {
  transition: 0.5s all ease !important;
  left: 0 !important;
  right: 0 !important;
  opacity: 1 !important;
}

.btn-primary:active,
.btn-premium-green:active,
.btn-request-quote:active,
.btn-product-enquiry:active,
.btn-view-all-premium:active,
.btn-outline-premium-light:active {
  transform: scale(0.9) !important;
}

/* Light / White outlined button styling override */
.btn-outline-premium-light {
  border-color: #ffffff !important;
  color: #ffffff !important;
}

.btn-outline-premium-light:before {
  background-color: #ffffff !important;
}

.btn-outline-premium-light:hover {
  color: var(--theme-color-primary) !important;
}

/* Ensure proper vertical alignment and icon spacing in all premium buttons */
.btn-primary i,
.btn-premium-green i,
.btn-request-quote i,
.btn-product-enquiry i,
.btn-view-all-premium i,
.btn-outline-premium-light i {
  margin-left: 8px !important;
  display: inline-block !important;
  vertical-align: middle !important;
}

#loading_msg {
  display: none;
}

.as-modal-footer-note {
  opacity: 0.8;
  font-size: 0.75rem;
  border-color: rgba(255, 255, 255, 0.1) !important;
}

/* ============================================================
   Premium 404 Error Page Styling
   ============================================================ */
.rmm-error-section {
  position: relative;
  padding: 140px 0 100px 0;
  background: linear-gradient(135deg, #fefefe 0%, #f4f6f1 100%);
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.rmm-error-wrapper {
  position: relative;
  z-index: 2;
  padding: 60px 40px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(44, 64, 1, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  max-width: 650px;
  margin: 0 auto;
}

/* Background floating sketchy image */
.error-sketch-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: 280px;
  opacity: 0.08;
  z-index: -1;
  pointer-events: none;
}

.error-sketch-bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Animations */
@keyframes breathingPulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.07;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.08);
    opacity: 0.11;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.07;
  }
}

.animate-breathing {
  animation: breathingPulse 6s ease-in-out infinite;
}

/* 404 Big Header styling with nice letter spacing and gradient-like theme text */
.text-404 {
  font-size: 8.5rem;
  font-weight: 900;
  line-height: 1;
  margin: 0 0 10px 0;
  color: var(--theme-color-primary);
  text-shadow: 4px 4px 0px rgba(89, 43, 2, 0.1);
  letter-spacing: -2px;
  display: block;
}

.text-message {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--theme-color-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.text-description {
  font-size: 1.1rem;
  color: #555555;
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto 35px auto;
}

.text-btn {
  display: inline-block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .rmm-error-section {
    padding: 100px 0 60px 0;
    min-height: 70vh;
  }
  
  .rmm-error-wrapper {
    padding: 40px 20px;
    border-radius: 16px;
  }
  
  .text-404 {
    font-size: 6rem;
  }
  
  .text-message {
    font-size: 1.8rem;
  }
  
  .text-description {
    font-size: 1rem;
    margin-bottom: 25px;
  }
  
  .error-sketch-bg {
    width: 200px;
    height: 200px;
  }
}




