/*
Theme Name: Aarya Health Solutions
Theme URI: https://aaryahealthsolutions.com/
Author: Antigravity AI
Description: A premium, modern, and SEO-friendly corporate B2B nutraceutical sourcing theme.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: aaryahealthsolutions
*/

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* --- Design System / Variables --- */
:root {
  --primary-green: #62A744;
  --primary-blue: #1F7CC1;
  --dark-grey: #444444;
  --light-grey: #666666;
  --light-bg: #F7FAF8;
  --white: #FFFFFF;
  --black: #111111;

  --primary-gradient: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-blue) 100%);
  --primary-gradient-hover: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-green) 100%);
  --light-gradient: linear-gradient(135deg, rgba(98, 167, 68, 0.05) 0%, rgba(31, 124, 193, 0.05) 100%);
  --card-gradient: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(247, 250, 248, 0.9) 100%);

  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  --shadow-sm: 0 4px 10px rgba(0, 0, 0, 0.02);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 30px 60px rgba(98, 167, 68, 0.12);
  --shadow-blue-hover: 0 30px 60px rgba(31, 124, 193, 0.12);

  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-no-transform: box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
}

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

html,
body {
  font-family: var(--font-body);
  color: var(--dark-grey);
  background-color: var(--white);
  line-height: 1.7;
  width: 100%;
  max-width: 100% !important;
  overflow-x: hidden !important;
  position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--black);
  font-weight: 600;
}

p {
  font-weight: 400;
  color: var(--light-grey);
}

a {
  text-decoration: none;
  transition: var(--transition-smooth);
}

/* --- Utilities & Typography --- */
.text-gradient {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.bg-light-custom {
  background-color: var(--light-bg);
}

main,
section,
footer,
.hero-section,
.section-padding {
  max-width: 100% !important;
  overflow-x: hidden;
}

@media (min-width: 992px) {
  header,
  .navbar-custom,
  .navbar-custom .navbar-collapse,
  .navbar-custom .dropdown-menu-custom,
  .navbar-custom .sub-menu {
    overflow: visible !important;
    max-height: none !important;
  }
}

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

@media (max-width: 768px) {
  .section-padding {
    padding: 70px 0;
  }
}

.section-subtitle {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-blue);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
}

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

/* --- Custom Buttons --- */
.btn-custom {
  padding: 12px 30px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 15px;
  transition: var(--transition-smooth);
  border: 2px solid transparent;
}

.btn-primary-gradient {
  background: var(--primary-gradient);
  color: var(--white);
  box-shadow: 0 10px 20px rgba(98, 167, 68, 0.2);
  position: relative;
  overflow: hidden;
}

.btn-primary-gradient::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 20%;
  height: 200%;
  background: rgba(255, 255, 255, 0.35);
  transform: rotate(30deg);
  transition: none;
  opacity: 0;
  pointer-events: none;
}

.btn-primary-gradient:hover::after {
  left: 120%;
  transition: all 0.8s ease-in-out;
  opacity: 1;
}

.btn-primary-gradient:hover {
  background: var(--primary-gradient-hover);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(31, 124, 193, 0.3);
}

.btn-secondary-outline {
  background: transparent;
  border-color: var(--primary-blue);
  color: var(--primary-blue);
}

.btn-secondary-outline:hover {
  background: var(--primary-gradient);
  color: var(--white);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(98, 167, 68, 0.2);
}

.btn-white {
  background: var(--white);
  color: var(--primary-blue);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  background: var(--primary-gradient);
  color: var(--white);
  transform: translateY(-3px);
}

/* --- Sticky Navbar --- */
.navbar-custom {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1050;
  padding: 20px 0;
  background: transparent;
  transition: var(--transition-smooth);
}

.navbar-custom.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.navbar-brand img {
  height: 110px;
  transition: var(--transition-smooth);
}

.navbar-custom.scrolled .navbar-brand img {
  height: 90px;
}

.navbar-custom .nav-link,
.navbar-custom .navbar-nav > .menu-item > a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 15px;
  color: var(--dark-grey);
  margin: 0 18px;
  padding: 6px 0;
  position: relative;
  text-decoration: none;
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active,
.navbar-custom .navbar-nav > .menu-item > a:hover,
.navbar-custom .navbar-nav > .current-menu-item > a,
.navbar-custom .navbar-nav > .current-page-ancestor > a,
.navbar-custom.scrolled .nav-link:hover,
.navbar-custom.scrolled .nav-link.active {
  color: var(--primary-green);
}

.navbar-custom.scrolled .nav-link,
.navbar-custom.scrolled .navbar-nav > .menu-item > a {
  color: var(--dark-grey);
}

/* Top-level Nav Underline Bar */
.navbar-custom .navbar-nav > .nav-item:not(.dropdown) > .nav-link::after,
.navbar-custom .navbar-nav > .menu-item:not(.menu-item-has-children):not(.dropdown) > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-gradient);
  transition: var(--transition-smooth);
}

.navbar-custom .navbar-nav > .nav-item:not(.dropdown) > .nav-link:hover::after,
.navbar-custom .navbar-nav > .nav-item:not(.dropdown) > .nav-link.active::after,
.navbar-custom .navbar-nav > .menu-item:not(.menu-item-has-children):hover > a::after,
.navbar-custom .navbar-nav > .current-menu-item:not(.menu-item-has-children) > a::after {
  width: 100%;
}

.navbar-custom .dropdown-toggle,
.navbar-custom .menu-item-has-children > a {
  display: inline-flex;
  align-items: center;
}

/* --- Header Submenu Dropdown --- */
.navbar-custom .dropdown-menu-custom,
.navbar-custom .sub-menu {
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--border-radius-md);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  padding: 8px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  min-width: 230px;
  margin-top: 10px;
  list-style: none;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.navbar-custom .dropdown-item,
.navbar-custom .sub-menu a {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  color: var(--dark-grey);
  padding: 10px 16px;
  border-radius: 8px;
  display: block;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

/* Bounded Underline Line on Sub-Menu Hover */
.navbar-custom .dropdown-item::after,
.navbar-custom .sub-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-gradient);
  transition: width 0.3s ease;
  display: block !important;
}

.navbar-custom .dropdown-item:hover::after,
.navbar-custom .dropdown-item:focus::after,
.navbar-custom .sub-menu a:hover::after,
.navbar-custom .sub-menu a:focus::after,
.navbar-custom .dropdown-item.active::after,
.navbar-custom .sub-menu .current-menu-item > a::after {
  width: 100%;
}

.navbar-custom .dropdown-item:hover,
.navbar-custom .dropdown-item:focus,
.navbar-custom .sub-menu a:hover,
.navbar-custom .sub-menu a:focus {
  background: rgba(98, 167, 68, 0.08);
  color: var(--primary-green);
}

.navbar-custom .dropdown-item.active,
.navbar-custom .dropdown-item:active,
.navbar-custom .sub-menu .current-menu-item > a {
  background: var(--primary-gradient);
  color: var(--white);
}

/* Modern Font Awesome Chevron Indicator */
.navbar-custom .dropdown-toggle::after,
.navbar-custom .menu-item-has-children > a::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 10px;
  margin-left: 6px;
  border: none !important;
  display: inline-block;
  vertical-align: middle;
  position: static;
  width: auto;
  height: auto;
  background: none;
  color: inherit;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), color 0.35s ease;
}

.navbar-custom .dropdown-toggle:hover::after,
.navbar-custom .nav-item.dropdown:hover .dropdown-toggle::after,
.navbar-custom .dropdown-toggle[aria-expanded="true"]::after,
.navbar-custom .menu-item-has-children:hover > a::after,
.navbar-custom .menu-item-has-children > a[aria-expanded="true"]::after {
  color: var(--primary-green);
  transform: rotate(180deg);
}

@media (min-width: 992px) {
  .navbar-custom .nav-item.dropdown:hover .dropdown-menu-custom,
  .navbar-custom .menu-item-has-children:hover > .sub-menu {
    display: block;
    margin-top: 0;
    opacity: 1;
    visibility: visible;
  }
}

.navbar-toggler {
  border: none;
  padding: 8px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon-custom {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--dark-grey);
  position: relative;
  transition: var(--transition-smooth);
}

.navbar-custom.scrolled .navbar-toggler-icon-custom {
  background-color: var(--dark-grey);
}

.navbar-toggler-icon-custom::before,
.navbar-toggler-icon-custom::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: inherit;
  left: 0;
  transition: var(--transition-smooth);
}

.navbar-toggler-icon-custom::before {
  top: -8px;
}

.navbar-toggler-icon-custom::after {
  top: 8px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon-custom {
  background-color: transparent !important;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon-custom::before {
  transform: rotate(45deg);
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon-custom::after {
  transform: rotate(-45deg);
  top: 0;
}

@media (max-width: 991px) {
  .navbar-custom {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-sm);
    padding: 15px 0;
  }

  .navbar-custom .nav-link {
    color: var(--dark-grey);
    padding: 10px 0;
    margin: 0;
  }

  .navbar-custom .navbar-toggler-icon-custom {
    background-color: var(--dark-grey);
  }

  .navbar-custom.scrolled {
    padding: 15px 0;
  }

  .navbar-brand img {
    height: 70px;
  }

  .navbar-custom.scrolled .navbar-brand img {
    height: 60px;
  }

  .footer-logo {
    height: 70px;
  }
}

/* --- Hero Section & Floating Blobs --- */
.hero-section {
  position: relative;
  padding: 180px 0 100px 0;
  background: radial-gradient(circle at 10% 20%, rgba(98, 167, 68, 0.04) 0%, rgba(31, 124, 193, 0.04) 90%), var(--white);
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(31, 124, 193, 0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.6;
  z-index: 2;
  pointer-events: none;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 1;
  opacity: 0.15;
  pointer-events: none;
}

.hero-blob-1 {
  width: 350px;
  height: 350px;
  background: var(--primary-green);
  top: -50px;
  right: 0px;
  animation: floatBlob1 15s ease-in-out infinite;
}

.hero-blob-2 {
  width: 450px;
  height: 450px;
  background: var(--primary-blue);
  bottom: -150px;
  left: -50px;
  animation: floatBlob2 18s ease-in-out infinite;
}

@keyframes floatBlob1 {
  0% {
    transform: translate(0px, 0px) scale(1);
  }

  50% {
    transform: translate(-30px, -40px) scale(1.05);
  }

  100% {
    transform: translate(0px, 0px) scale(1);
  }
}

@keyframes floatBlob2 {
  0% {
    transform: translate(0px, 0px) scale(1);
  }

  50% {
    transform: translate(-40px, 50px) scale(0.9);
  }

  100% {
    transform: translate(0px, 0px) scale(1);
  }
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero-title {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 24px;
  text-shadow: 0 0 40px rgba(98, 167, 68, 0.05);
  color: #1e293b;
}

.hero-title.text-dark {
  color: #1e293b !important;
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 40px;
  font-weight: 400;
}

@media (max-width: 991px) {
  .hero-section {
    padding: 140px 0 70px 0;
  }

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

  .hero-subtitle {
    font-size: 16px;
    margin-bottom: 30px;
  }
}

/* Hero Abstract Artwork */
.hero-image-container {
  position: relative;
  z-index: 10;
}

.hero-illustration {
  width: 100%;
  animation: floatIllustration 8s ease-in-out infinite alternate;
}

@media (min-width: 992px) {
  .hero-image-container {
    transform: translate(-10%, -10%);
  }

  .hero-illustration {
    width: 112%;
    max-width: none;
  }
}

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

  100% {
    transform: translateY(-12px) rotate(1deg);
  }
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 30px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 12;
}

.floating-card-1 {
  top: 35%;
  left: 10%;
  animation: floatUp 6s ease-in-out infinite alternate;
}

.floating-card-2 {
  top: 12%;
  right: 0px;
  animation: floatDown 6s ease-in-out infinite alternate;
}

.floating-card-3 {
  bottom: 22%;
  right: 0px;
  animation: floatUp 5s ease-in-out infinite alternate;
}


/* Subtitle badge */
.section-subtitle-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 50px;
  background: rgba(98, 167, 68, 0.05);
  border: 1px solid rgba(98, 167, 68, 0.15);
  color: var(--primary-green);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

/* Button circular icon */
.btn-icon-circle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--white);
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  transition: var(--transition-smooth);
}

.btn-primary-gradient .btn-icon-circle {
  background: var(--white);
  color: var(--primary-green);
}

.btn-secondary-outline {
  background: var(--white) !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  color: var(--dark-grey) !important;
  box-shadow: var(--shadow-sm);
}

.btn-secondary-outline:hover {
  background: rgba(0, 0, 0, 0.02) !important;
  border-color: rgba(0, 0, 0, 0.15) !important;
  color: var(--black) !important;
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.btn-secondary-outline .btn-icon-circle {
  background: rgba(0, 0, 0, 0.05);
  color: var(--light-grey);
}

.btn-custom:hover .btn-icon-circle {
  transform: scale(1.1);
}

/* Social Proof Avatars */
.hero-social-proof {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 20px;
  margin-top: 30px;
}

.avatar-group {
  display: flex;
  align-items: center;
}

.avatar-img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: var(--white);
  box-shadow: var(--shadow-sm);
  margin-right: -10px;
  transition: var(--transition-smooth);
}

.avatar-img:hover {
  transform: translateY(-5px);
  z-index: 10;
}

.avatar-green {
  background: linear-gradient(135deg, #62A744 0%, #a2d28f 100%);
}

.avatar-blue {
  background: linear-gradient(135deg, #1F7CC1 0%, #82b7de 100%);
}

.avatar-dark {
  background: linear-gradient(135deg, #333333 0%, #666666 100%);
}

.avatar-amber {
  background: linear-gradient(135deg, #f59e0b 0%, #fcd34d 100%);
}

/* Falling Leaves Overlay */
.leaf-overlay {
  position: absolute;
  color: rgba(98, 167, 68, 0.15);
  font-size: 24px;
  pointer-events: none;
  z-index: 2;
}

.leaf-1 {
  top: 15%;
  left: 5%;
  font-size: 32px;
  transform: rotate(25deg);
  animation: leafDrift1 12s ease-in-out infinite alternate;
}

.leaf-2 {
  top: 70%;
  left: 45%;
  font-size: 20px;
  transform: rotate(-15deg);
  animation: leafDrift2 15s ease-in-out infinite alternate;
}

.leaf-3 {
  top: 25%;
  right: 5%;
  font-size: 28px;
  transform: rotate(45deg);
  animation: leafDrift1 14s ease-in-out infinite alternate;
}

@keyframes leafDrift1 {
  0% {
    transform: translateY(0) rotate(25deg) translateX(0);
  }

  100% {
    transform: translateY(-20px) rotate(45deg) translateX(15px);
  }
}

@keyframes leafDrift2 {
  0% {
    transform: translateY(0) rotate(-15deg) translateX(0);
  }

  100% {
    transform: translateY(-15px) rotate(5deg) translateX(-10px);
  }
}

.floating-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

.floating-text h5 {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  color: var(--black);
  white-space: nowrap;
}

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

  100% {
    transform: translateY(-15px) rotate(2deg);
  }
}

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

  100% {
    transform: translateY(15px) rotate(-2deg);
  }
}

/* Labels under counter number */
.counter-label-title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 2px;
  line-height: 1.2;
}

.counter-label-desc {
  font-size: 11px;
  font-weight: 500;
  color: var(--light-grey);
  line-height: 1.2;
}

/* Counters section below hero */
.hero-counters {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: var(--border-radius-lg);
  box-shadow: 0 20px 50px rgba(31, 124, 193, 0.08);
  padding: 35px 25px;
  margin-top: -60px;
  position: relative;
  z-index: 20;
  border: 1px solid rgba(255, 255, 255, 0.6);
  transition: var(--transition-no-transform);
}

.hero-counters.animated-in {
  transition: var(--transition-smooth) !important;
}

.hero-counters:hover {
  box-shadow: 0 30px 60px rgba(98, 167, 68, 0.15);
  border-color: rgba(98, 167, 68, 0.2);
}

.counter-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 15px;
  transition: var(--transition-smooth);
  border-radius: var(--border-radius-md);
  height: 100%;
}

.counter-item:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: translateY(-5px);
}

.counter-icon-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--light-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
  font-size: 20px;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.counter-item:hover .counter-icon-wrapper {
  background: var(--primary-gradient);
  color: var(--white);
  transform: rotate(10deg);
}

.counter-text {
  flex: 1;
  text-align: left;
}

.counter-number {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  margin-bottom: 2px;
}

.counter-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--light-grey);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

@media (max-width: 991px) {
  .hero-counters {
    margin-top: 30px;
    padding: 30px 15px;
  }
}

@media (max-width: 576px) {
  .counter-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px 5px;
  }

  .counter-text {
    text-align: center;
  }

  .counter-number {
    font-size: 26px;
  }
}

/* --- Why Choose Us --- */
.feature-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.02);
  height: 100%;
  transition: var(--transition-no-transform);
  position: relative;
  overflow: hidden;
  z-index: 10;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary-gradient);
  opacity: 0;
  transition: var(--transition-smooth);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon-container {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: rgba(98, 167, 68, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  color: var(--primary-green);
  font-size: 24px;
  transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon-container {
  background: var(--primary-gradient);
  color: var(--white);
}

.feature-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}

.feature-card p {
  font-size: 14px;
  margin-bottom: 0;
}

/* --- About Preview --- */
.about-image-wrapper {
  position: relative;
}

.about-image {
  width: 100%;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}

.about-experience-badge {
  position: absolute;
  bottom: -30px;
  right: 20px;
  background: var(--primary-gradient);
  color: var(--white);
  padding: 30px;
  border-radius: var(--border-radius-md);
  box-shadow: 0 15px 30px rgba(31, 124, 193, 0.3);
  text-align: center;
  z-index: 10;
}

.about-experience-badge h3 {
  font-size: 38px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 5px;
}

.about-experience-badge p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
  font-weight: 600;
}

@media (max-width: 768px) {
  .about-experience-badge {
    bottom: -20px;
    right: 10px;
    padding: 20px;
  }

  .about-experience-badge h3 {
    font-size: 28px;
  }
}

.about-bullet-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.about-bullet-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-weight: 400;
  color: var(--black);
}

.about-bullet-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary-green);
  font-size: 16px;
}

/* --- Products Section --- */
.product-card {
  background: var(--white);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.02);
  overflow: hidden;
  height: 100%;
  transition: var(--transition-no-transform);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.product-image-container {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.product-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.product-card:hover .product-image-container img {
  transform: scale(1.08);
}

.product-category-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(5px);
  color: var(--primary-blue);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  z-index: 10;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-card-body {
  padding: 35px 30px;
}

.product-card-body h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.product-card-body p {
  font-size: 14px;
  margin-bottom: 25px;
}

.btn-readmore {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--primary-green);
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
}

.btn-readmore i {
  transition: var(--transition-smooth);
}

.btn-readmore:hover {
  color: var(--primary-blue);
}

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

/* --- Industries We Serve --- */
.industry-card {
  background: var(--white);
  padding: 35px 25px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.02);
  text-align: center;
  height: 100%;
  transition: var(--transition-no-transform);
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-blue-hover);
  border-color: rgba(31, 124, 193, 0.1);
}

.industry-icon-container {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(31, 124, 193, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  color: var(--primary-blue);
  font-size: 26px;
  transition: var(--transition-smooth);
}

.industry-card:hover .industry-icon-container {
  background: var(--primary-gradient);
  color: var(--white);
}

.industry-card h5 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 0;
  line-height: 1.4;
}

/* --- How We Work (Timeline) --- */
.timeline-section {
  position: relative;
}

.timeline-wrapper {
  position: relative;
  margin-top: 60px;
}

/* Desktop Horizontal Timeline Line */
.timeline-line {
  position: absolute;
  top: 45px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: rgba(98, 167, 68, 0.15);
  z-index: 1;
}

.timeline-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--primary-gradient);
  transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline-step {
  position: relative;
  z-index: 10;
  text-align: center;
}

.timeline-number-node {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--white);
  border: 4px solid rgba(98, 167, 68, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px auto;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-green);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.timeline-step:hover .timeline-number-node,
.timeline-step.active .timeline-number-node {
  border-color: transparent;
  background: var(--primary-gradient);
  color: var(--white);
  transform: scale(1.08);
  box-shadow: 0 10px 20px rgba(98, 167, 68, 0.2);
}

.timeline-content-card {
  background: var(--white);
  padding: 25px 20px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.02);
  transition: var(--transition-smooth);
}

@media (min-width: 992px) {
  .timeline-step {
    display: flex;
    flex-direction: column;
  }

  .timeline-content-card {
    flex-grow: 1;
  }
}

.timeline-step:hover .timeline-content-card {
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
}

.timeline-content-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.timeline-content-card p {
  font-size: 13px;
  margin-bottom: 0;
}

/* Vertical Timeline for Mobile */
@media (max-width: 991px) {
  .timeline-line {
    top: 10px;
    left: 45px;
    right: auto;
    width: 3px;
    height: calc(100% - 100px);
  }

  .timeline-step {
    text-align: left;
    margin-bottom: 40px;
  }

  .timeline-number-node {
    margin: 0;
    position: absolute;
    left: 0;
    top: 10px;
    width: 60px;
    height: 60px;
    font-size: 18px;
  }

  .timeline-content-card {
    margin-left: 90px;
  }
}

/* --- Global Presence --- */
.global-presence-section {
  background: radial-gradient(circle at 50% 50%, rgba(31, 124, 193, 0.03) 0%, rgba(255, 255, 255, 0.03) 80%), var(--white);
  position: relative;
  overflow: hidden;
}

.world-map-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  opacity: 0.06;
  pointer-events: none;
  z-index: 1;
}

.presence-info-card {
  position: relative;
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.market-highlight {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.market-flag {
  width: 32px;
  height: 24px;
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  display: inline-block;
  flex-shrink: 0;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.market-flag::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 6px;
  border: 2px solid var(--primary-green);
  animation: rippleFlag 2.5s infinite ease-out;
  pointer-events: none;
}

.market-highlight:nth-child(2) .market-flag::after {
  border-color: var(--primary-blue);
}

.market-highlight:nth-child(3) .market-flag::after {
  border-color: var(--primary-green);
}

@keyframes rippleFlag {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

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

.market-highlight h5 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

/* --- Quality Commitment --- */
.quality-stat-card {
  background: var(--white);
  padding: 25px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 15px;
  border-left: 5px solid var(--primary-green);
  margin-bottom: 20px;
}

.quality-stat-icon {
  font-size: 32px;
  color: var(--primary-green);
}

.quality-stat-content h5 {
  margin: 0 0 5px 0;
  font-size: 16px;
  font-weight: 700;
}

.quality-stat-content p {
  margin: 0;
  font-size: 13px;
}

/* --- Testimonials --- */
.testimonial-card {
  background: var(--white);
  padding: 45px 40px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.02);
  height: 100%;
  transition: var(--transition-no-transform);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.quote-icon {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: rgba(98, 167, 68, 0.06);
  pointer-events: none;
}

.stars-rating {
  color: #FFC107;
  font-size: 14px;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--light-grey);
  margin-bottom: 30px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-logo-placeholder {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(31, 124, 193, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  font-size: 18px;
  font-weight: 700;
  border: 1px solid rgba(31, 124, 193, 0.1);
}

.author-info h5 {
  margin: 0 0 3px 0;
  font-size: 15px;
  font-weight: 700;
}

.author-info p {
  margin: 0;
  font-size: 12px;
  color: var(--light-grey);
}

/* --- CTA Banner (Gradient Banner) --- */
.cta-banner {
  background: var(--primary-gradient);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  border-radius: var(--border-radius-lg);
}

.cta-banner .hero-blob-1 {
  background: rgba(255, 255, 255, 0.1);
  width: 300px;
  height: 300px;
  top: -50px;
  right: -50px;
  opacity: 1;
}

.cta-banner .hero-blob-2 {
  background: rgba(255, 255, 255, 0.05);
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: -100px;
  opacity: 1;
}

.cta-banner-content {
  position: relative;
  z-index: 10;
}

.cta-banner h2 {
  color: var(--white);
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  margin-bottom: 35px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* --- FAQ Accordion --- */
.faq-accordion .accordion-item {
  border: none;
  background: var(--white);
  margin-bottom: 15px;
  border-radius: var(--border-radius-md) !important;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.02);
  overflow: hidden;
  transition: var(--transition-no-transform);
}

.faq-accordion .accordion-item:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(98, 167, 68, 0.08);
}

.faq-accordion .accordion-button {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  color: var(--black);
  padding: 22px 25px;
  background: transparent;
  box-shadow: none;
  border: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--primary-green);
  background: rgba(98, 167, 68, 0.02);
}

.faq-accordion .accordion-button::after {
  background-size: 14px;
  width: 14px;
  height: 14px;
}

.faq-accordion .accordion-body {
  padding: 10px 25px 25px 25px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--light-grey);
  border-top: none;
}

/* --- Footer --- */
.footer {
  background-color: #0c1821;
  color: rgba(255, 255, 255, 0.7);
  padding-top: 80px;
  font-size: 14px;
}

.footer h5 {
  color: var(--white);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background: var(--primary-gradient);
}

.footer-logo {
  height: auto;
  max-height: 90px;
  max-width: 100%;
  object-fit: contain;
  margin-bottom: 20px;
}

.footer p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.8;
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--primary-green);
  transform: translateX(4px);
}

.footer-contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-info li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-contact-info i {
  color: var(--primary-green);
  font-size: 16px;
  margin-top: 4px;
}

.footer-contact-info span {
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact-info a {
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact-info a:hover {
  color: var(--primary-green);
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition-smooth);
}

.social-icon-btn:hover {
  background: var(--primary-gradient);
  color: var(--white);
  transform: translateY(-3px);
}

.newsletter-form .form-control {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 10px 20px;
  color: var(--white);
  font-size: 14px;
}

.newsletter-form .form-control:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary-green);
  box-shadow: none;
  color: var(--white);
}

.newsletter-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-form .btn-submit {
  border-radius: 50px;
  margin-top: 10px;
  width: 100%;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 25px 0;
  margin-top: 60px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
  color: var(--primary-green);
  font-weight: 500;
  transition: var(--transition-smooth);
}

.footer-bottom a:hover {
  color: var(--primary-blue);
  text-decoration: underline;
}

/* --- Scroll Reveal Animations --- */
.animated-in {
  transition: var(--transition-smooth) !important;
}

/* --- Contact/Quote Modal --- */
.modal-content-custom {
  border-radius: var(--border-radius-md);
  border: none;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.modal-header-gradient {
  background: var(--primary-gradient);
  color: var(--white);
  border: none;
  padding: 25px 30px;
}

.modal-header-gradient h5 {
  color: var(--white);
  font-weight: 700;
}

.modal-header-gradient .btn-close {
  filter: invert(1);
}

.modal-body-custom {
  padding: 35px 30px;
}

.form-label-custom {
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--black);
}

.form-control-custom {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  padding: 12px 15px;
  transition: var(--transition-smooth);
}

.form-control-custom:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(31, 124, 193, 0.1);
}

/* --- About Us Page Specific Styles --- */
.about-hero-section {
  position: relative;
  padding: 180px 0 80px 0;
  background: radial-gradient(circle at 10% 20%, rgba(98, 167, 68, 0.03) 0%, rgba(31, 124, 193, 0.03) 90%), var(--white);
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 0, 0, 0.02);
}

.about-hero-title {
  font-size: 44px;
  font-weight: 800;
  color: #1e293b;
  margin-top: 15px;
}

.about-hero-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: var(--light-grey);
  max-width: 680px;
  margin: 15px auto 0 auto;
}

.breadcrumb-custom {
  background: transparent;
  padding: 0;
  margin: 0;
}

.breadcrumb-custom .breadcrumb-item a {
  color: var(--primary-blue);
  font-weight: 600;
  font-size: 14px;
}

.breadcrumb-custom .breadcrumb-item.active {
  color: var(--light-grey);
  font-weight: 500;
  font-size: 14px;
}

.breadcrumb-custom .breadcrumb-item+.breadcrumb-item::before {
  color: rgba(0, 0, 0, 0.2);
}

.story-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(98, 167, 68, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
  font-size: 20px;
  flex-shrink: 0;
}

.mission-vision-card {
  background: var(--white);
  padding: 45px 35px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--primary-green);
  border-left: 1px solid rgba(0, 0, 0, 0.02);
  border-right: 1px solid rgba(0, 0, 0, 0.02);
  border-bottom: 1px solid rgba(0, 0, 0, 0.02);
  height: 100%;
  transition: var(--transition-smooth);
}

.mission-vision-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.mv-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: rgba(98, 167, 68, 0.08);
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 25px;
}

.mission-vision-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.mission-vision-card p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 0;
}

.team-card {
  background: var(--white);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.02);
  overflow: hidden;
  height: 100%;
  transition: var(--transition-smooth);
  text-align: center;
  padding: 35px 25px;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.team-img-placeholder {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px auto;
  color: #94a3b8;
  font-size: 42px;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-sm);
}

.team-card:hover .team-img-placeholder {
  background: var(--primary-gradient);
  color: var(--white);
}

.team-content h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.team-title {
  color: var(--primary-blue);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}

.team-bio {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.team-social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  font-size: 13px;
  transition: var(--transition-smooth);
}

.team-social a:hover {
  background: var(--primary-gradient);
  color: var(--white);
}

.cert-item {
  padding: 20px 15px;
  border-radius: var(--border-radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.02);
  transition: var(--transition-smooth);
  height: 100%;
}

.cert-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.cert-icon {
  font-size: 30px;
  color: var(--primary-green);
  margin-bottom: 12px;
}

@media (max-width: 991px) {
  .about-hero-section {
    padding: 140px 0 60px 0;
  }

  .about-hero-title {
    font-size: 32px;
  }

  .about-hero-subtitle {
    font-size: 16px;
  }
}

/* --- Vertical Alternating Timeline (How We Work) --- */
.v-timeline {
  position: relative;
  max-width: 1000px;
  margin: 50px auto 0 auto;
  padding: 20px 0;
}

.v-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 3px;
  background: rgba(98, 167, 68, 0.15);
  left: 50%;
  transform: translateX(-50%);
}

.v-timeline-item {
  position: relative;
  width: 50%;
  padding: 10px 40px;
  box-sizing: border-box;
  margin-bottom: 30px;
}

.v-timeline-item.left {
  left: 0;
  text-align: right;
}

.v-timeline-item.right {
  left: 50%;
  text-align: left;
}

.v-timeline-node {
  position: absolute;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--white);
  border: 4px solid rgba(98, 167, 68, 0.15);
  top: 15px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-green);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.v-timeline-item.left .v-timeline-node {
  right: -23px;
}

.v-timeline-item.right .v-timeline-node {
  left: -23px;
}

.v-timeline-item:hover .v-timeline-node {
  border-color: transparent;
  background: var(--primary-gradient);
  color: var(--white);
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(98, 167, 68, 0.25);
}

.v-timeline-content {
  background: var(--white);
  padding: 25px 30px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.02);
  transition: var(--transition-smooth);
  display: inline-block;
  width: 100%;
}

.v-timeline-item:hover .v-timeline-content {
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
}

@media (max-width: 767px) {
  .v-timeline::before {
    left: 20px;
    transform: none;
  }

  .v-timeline-item {
    width: 100%;
    padding-left: 55px;
    padding-right: 0;
    margin-bottom: 25px;
  }

  .v-timeline-item.left {
    left: 0;
    text-align: left;
  }

  .v-timeline-item.right {
    left: 0;
    text-align: left;
  }

  .v-timeline-item.left .v-timeline-node,
  .v-timeline-item.right .v-timeline-node {
    left: 0px;
    right: auto;
    width: 40px;
    height: 40px;
    font-size: 16px;
    top: 15px;
  }
}

/* --- Contact Page Styles --- */
.contact-form-card {
  background: var(--white);
  padding: 40px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.contact-details-card {
  background: var(--white);
  padding: 40px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  border-left: 6px solid var(--primary-green);
  height: 100%;
}

.contact-info-list {
  list-style: none;
  padding-left: 0;
  margin-top: 30px;
}

.contact-info-list li {
  position: relative;
  padding-left: 45px;
  margin-bottom: 30px;
}

.contact-info-list li i {
  position: absolute;
  left: 0;
  top: 4px;
  font-size: 20px;
  color: var(--primary-green);
  background: rgba(98, 167, 68, 0.08);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-list li h5 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--black);
}

.contact-info-list li p {
  margin-bottom: 0;
  font-size: 14px;
  color: var(--light-grey);
}

.contact-info-list li a {
  color: var(--light-grey);
}

.contact-info-list li a:hover {
  color: var(--primary-blue);
}

.contact-social-connect {
  margin-top: 35px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 25px;
}

.contact-social-connect h5 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
}

.contact-social-connect .social-icons .social-icon-btn {
  background: rgba(98, 167, 68, 0.08);
  color: var(--primary-green);
}

.contact-social-connect .social-icons .social-icon-btn:hover {
  background: var(--primary-gradient);
  color: var(--white);
  transform: translateY(-3px);
}

/* Text Stat Counter Helper (e.g. International) */
.counter-number-text,
div.counter-number[style*="font-size"] {
  font-size: 20px !important;
  line-height: 1.3 !important;
  margin-top: 4px !important;
  margin-bottom: 4px !important;
  letter-spacing: -0.3px !important;
}

/* --- Back to Top Button --- */
.btn-back-to-top {
  position: fixed;
  bottom: 25px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-gradient);
  color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  z-index: 1080;
  box-shadow: 0 5px 15px rgba(31, 124, 193, 0.3);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.btn-back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(31, 124, 193, 0.5);
  color: var(--white);
}

/* --- Comprehensive Mobile & Tablet Responsiveness System --- */

/* --- Laptops & Desktop Viewports (992px to 1199px) --- */
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-title {
    font-size: 34px;
  }
  .navbar-brand img {
    height: 95px !important;
  }
  .hero-illustration {
    width: 105%;
  }
  .floating-card-1 { left: 2%; }
  .floating-card-2 { right: 0; }
  .floating-card-3 { right: 0; }
}

/* --- Tablet Viewports (Landscape & Portrait: 768px to 991px) --- */
@media (min-width: 768px) and (max-width: 991px) {
  .section-padding {
    padding: 75px 0;
  }
  .section-title {
    font-size: 30px;
  }
  
  /* Navbar */
  .navbar-custom {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 12px 0;
  }
  .navbar-brand img {
    height: 75px !important;
  }
  .navbar-collapse {
    background: var(--white);
    border-radius: 16px;
    margin-top: 15px;
    padding: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
  }
  .navbar-custom .nav-link {
    font-size: 15px;
    padding: 10px 14px;
    margin: 2px 0;
    border-radius: 8px;
  }
  .navbar-custom .dropdown-toggle,
  .navbar-custom .menu-item-has-children > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  .navbar-custom .dropdown-toggle::after,
  .navbar-custom .menu-item-has-children > a::after {
    content: '\f078' !important;
    font-family: 'Font Awesome 6 Free' !important;
    font-weight: 900 !important;
    font-size: 12px !important;
    display: inline-block !important;
    margin-left: 8px !important;
    color: var(--primary-green) !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  /* Hero Section */
  .hero-section {
    padding: 130px 0 60px 0;
  }
  .hero-title {
    font-size: 32px;
  }
  .hero-subtitle {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .hero-image-container {
    transform: none !important;
    margin-top: 30px !important;
    max-width: 100% !important;
    text-align: center;
    padding: 0 !important;
  }
  .hero-illustration {
    width: 100% !important;
    max-width: 550px !important;
    height: auto !important;
    margin: 0 auto;
    display: block;
  }
  .floating-card-1 { top: 35% !important; left: 0% !important; }
  .floating-card-2 { top: 6% !important; right: 0% !important; }
  .floating-card-3 { bottom: 16% !important; right: 0% !important; }
  .floating-card { scale: 0.9; }

  /* Hero Counters */
  .hero-counters {
    margin-top: 30px;
    padding: 25px 20px;
  }
  .counter-item {
    padding: 12px 10px;
  }
  .counter-number {
    font-size: 26px;
  }

  /* Cards Padding & Spacing */
  .feature-card {
    padding: 30px 22px;
  }
  .product-card-body {
    padding: 28px 22px;
  }
  .testimonial-card {
    padding: 35px 28px;
  }
  .contact-form-card, .contact-details-card {
    padding: 30px 24px;
  }
  .presence-info-card {
    padding: 30px 24px;
  }
  .cta-banner {
    padding: 60px 30px;
  }
  .cta-banner h2 {
    font-size: 32px;
  }

  /* Timeline Grid */
  .timeline-wrapper {
    margin-top: 40px;
  }
  .timeline-line {
    top: 20px;
    left: 28px;
    right: auto;
    width: 3px;
    height: calc(100% - 60px);
    background: var(--primary-gradient);
  }
  .timeline-step {
    text-align: left;
    margin-bottom: 30px;
    position: relative;
    width: 100%;
  }
  .timeline-number-node {
    margin: 0;
    position: absolute;
    left: 0;
    top: 0;
    width: 56px;
    height: 56px;
    font-size: 18px;
  }
  .timeline-content-card {
    margin-left: 75px;
    padding: 20px 18px;
  }

  /* About Experience Badge */
  .about-image-wrapper {
    margin-bottom: 40px;
  }
  .about-experience-badge {
    position: absolute;
    bottom: -25px;
    right: 20px;
    padding: 20px 25px;
  }
}

/* --- Mobile / Smartphone Viewports (< 768px) --- */
@media (max-width: 767px) {
  body {
    font-size: 14.5px;
  }
  .section-padding {
    padding: 55px 0;
  }
  .section-subtitle {
    font-size: 12px;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
  }
  .section-subtitle-badge {
    font-size: 11.5px;
    padding: 6px 14px;
    margin-bottom: 18px;
  }
  .section-title {
    font-size: 24px;
    margin-bottom: 16px;
  }

  /* Navbar */
  .navbar-custom {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    padding: 10px 0;
  }
  .navbar-brand img {
    height: 68px !important;
  }
  .navbar-collapse {
    background: var(--white);
    border-radius: 14px;
    margin-top: 12px;
    padding: 18px 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    max-height: 80vh;
    overflow-y: auto;
  }
  .navbar-custom .nav-link,
  .navbar-custom .menu-item > a {
    font-size: 14.5px;
    padding: 10px 12px;
    margin: 2px 0;
    border-radius: 8px;
  }
  .navbar-custom .nav-link:not(.dropdown-toggle)::after,
  .navbar-custom .menu-item:not(.menu-item-has-children):not(.dropdown) > a::after {
    display: none;
  }
  .navbar-custom .dropdown-toggle,
  .navbar-custom .menu-item-has-children > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  .navbar-custom .dropdown-toggle::after,
  .navbar-custom .menu-item-has-children > a::after {
    content: '\f078' !important;
    font-family: 'Font Awesome 6 Free' !important;
    font-weight: 900 !important;
    font-size: 12px !important;
    display: inline-block !important;
    margin-left: 8px !important;
    color: var(--primary-green) !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  .navbar-custom .dropdown-menu-custom,
  .navbar-custom .sub-menu {
    position: static !important;
    float: none !important;
    box-shadow: none !important;
    border: none !important;
    background: rgba(98, 167, 68, 0.04) !important;
    margin-top: 6px !important;
    margin-bottom: 6px !important;
    padding: 6px 10px !important;
    border-radius: 10px !important;
    transform: none !important;
    width: 100% !important;
  }
  .btn-back-to-top {
    right: 18px !important;
    bottom: 20px !important;
    width: 42px !important;
    height: 42px !important;
    font-size: 16px !important;
  }
  .header-cta-button-container,
  #nav-cta-btn {
    width: 100%;
    margin-top: 12px !important;
    padding: 11px 18px;
    text-align: center;
    justify-content: center;
  }

  /* Hero Section */
  .hero-section {
    padding: 100px 0 40px 0;
  }
  .hero-title {
    font-size: 25px;
    line-height: 1.3;
    margin-bottom: 16px;
  }
  .hero-subtitle {
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 25px;
  }
  .hero-content .d-flex.flex-wrap {
    flex-direction: column;
    width: 100%;
  }
  .hero-content .btn-custom {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .hero-social-proof {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-top: 15px;
    margin-top: 20px;
  }
  
  /* Hero Illustration & Badges */
  .hero-image-container {
    transform: none !important;
    text-align: center;
    position: relative;
    max-width: 100% !important;
    padding: 0 !important;
  }
  .hero-illustration {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    margin: 0 auto !important;
    display: block !important;
  }
  .floating-card-1 {
    top: 35% !important;
    left: 0% !important;
  }
  .floating-card-2 {
    top: 4% !important;
    right: 0% !important;
  }
  .floating-card-3 {
    bottom: 12% !important;
    right: 0% !important;
  }
  .floating-card {
    padding: 5px 10px !important;
    border-radius: 20px !important;
  }
  .floating-icon {
    width: 22px !important;
    height: 22px !important;
    font-size: 10px !important;
  }
  .floating-text h5 {
    font-size: 10px !important;
  }

  /* Hero Counters */
  .hero-counters {
    margin-top: 25px;
    padding: 16px 10px;
    border-radius: 16px;
  }
  .counter-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
    padding: 10px 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    height: 100%;
  }
  .counter-icon-wrapper {
    width: 40px;
    height: 40px;
    font-size: 16px;
    margin-bottom: 6px;
    border-radius: 10px;
  }
  .counter-number {
    font-size: 22px;
  }
  .counter-label-title {
    font-size: 11.5px;
  }
  .counter-label-desc {
    font-size: 9.5px;
  }

  /* Feature Cards */
  .feature-card {
    padding: 24px 18px;
    text-align: center !important;
  }
  .feature-icon-container {
    margin: 0 auto 16px auto !important;
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  .feature-card h4 {
    font-size: 17px;
    margin-bottom: 10px;
  }
  .feature-card p {
    font-size: 13.5px;
  }

  /* About Preview & Centered Badge */
  .about-image-wrapper {
    margin-bottom: 45px;
  }
  .about-image {
    border-radius: 16px;
  }
  .about-experience-badge {
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    right: auto;
    padding: 14px 22px;
    border-radius: 14px;
    text-align: center;
    width: max-content;
    max-width: 90%;
  }
  .about-experience-badge h3 {
    font-size: 26px;
    margin-bottom: 2px;
  }
  .about-experience-badge p {
    font-size: 10px;
    letter-spacing: 1.5px;
  }

  /* Products Cards */
  .product-image-container {
    height: 200px;
  }
  .product-card-body {
    padding: 22px 18px;
  }
  .product-card-body h4 {
    font-size: 19px;
    margin-bottom: 10px;
  }
  .product-card-body p {
    font-size: 13.5px;
    margin-bottom: 18px;
  }
  .product-category-tag {
    top: 14px;
    left: 14px;
    font-size: 11px;
    padding: 4px 12px;
  }

  /* Industries Cards */
  .industry-card {
    padding: 18px 10px;
  }
  .industry-icon-container {
    width: 50px;
    height: 50px;
    font-size: 20px;
    margin-bottom: 12px;
  }
  .industry-card h5 {
    font-size: 12.5px;
  }

  /* Process Timeline Vertical Alignment */
  .timeline-wrapper {
    margin-top: 30px;
  }
  .timeline-line {
    top: 15px;
    left: 24px;
    right: auto;
    width: 3px;
    height: calc(100% - 50px);
    background: var(--primary-gradient);
  }
  .timeline-step {
    text-align: left;
    margin-bottom: 25px;
    position: relative;
    width: 100%;
  }
  .timeline-number-node {
    margin: 0;
    position: absolute;
    left: 0;
    top: 0;
    width: 48px;
    height: 48px;
    font-size: 16px;
  }
  .timeline-content-card {
    margin-left: 64px;
    padding: 18px 15px;
  }
  .timeline-content-card h4 {
    font-size: 16px;
    margin-bottom: 6px;
  }
  .timeline-content-card p {
    font-size: 13px;
  }

  /* Global Presence */
  .presence-info-card {
    padding: 22px 18px;
    border-radius: 16px;
    margin-top: 25px;
  }
  .market-highlight {
    gap: 12px;
    margin-bottom: 16px;
  }
  .market-highlight h5 {
    font-size: 15.5px;
  }
  .market-flag {
    width: 28px;
    height: 20px;
  }

  /* Quality Section */
  .quality-stat-card {
    padding: 14px 16px;
    gap: 12px;
    margin-bottom: 12px;
    border-left-width: 4px;
  }
  .quality-stat-icon {
    font-size: 24px;
  }
  .quality-stat-content h5 {
    font-size: 14.5px;
  }
  .quality-stat-content p {
    font-size: 12px;
  }

  /* Testimonials */
  .testimonial-card {
    padding: 25px 18px;
  }
  .quote-icon {
    top: 18px;
    right: 18px;
    font-size: 28px;
  }
  .testimonial-text {
    font-size: 13.5px;
    line-height: 1.7;
    margin-bottom: 20px;
  }

  /* CTA Banner */
  .cta-banner {
    padding: 40px 18px;
    border-radius: 16px;
    text-align: center;
  }
  .cta-banner h2 {
    font-size: 22px;
    margin-bottom: 12px;
  }
  .cta-banner p {
    font-size: 13.5px;
    margin-bottom: 22px;
  }
  .cta-banner .btn-custom {
    width: 100%;
    justify-content: center;
  }

  /* Accordion FAQ */
  .faq-accordion .accordion-button {
    padding: 16px 18px;
    font-size: 14.5px;
  }
  .faq-accordion .accordion-body {
    padding: 8px 18px 18px 18px;
    font-size: 13px;
  }

  /* About Us Page Specifics */
  .about-hero-section {
    padding: 110px 0 45px 0;
  }
  .about-hero-title {
    font-size: 26px;
  }
  .about-hero-subtitle {
    font-size: 14px;
  }
  .mission-vision-card {
    padding: 25px 18px;
  }
  .mv-icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
    margin-bottom: 16px;
  }
  .team-card {
    padding: 22px 15px;
  }
  .team-img-placeholder {
    width: 85px;
    height: 85px;
    font-size: 32px;
    margin-bottom: 16px;
  }
  
  /* Vertical Alternating Timeline on About Page */
  .v-timeline::before {
    left: 20px;
    transform: none;
  }
  .v-timeline-item {
    width: 100%;
    padding-left: 52px;
    padding-right: 0;
    margin-bottom: 22px;
  }
  .v-timeline-item.left, .v-timeline-item.right {
    left: 0;
    text-align: left;
  }
  .v-timeline-item.left .v-timeline-node,
  .v-timeline-item.right .v-timeline-node {
    left: 0;
    right: auto;
    width: 38px;
    height: 38px;
    font-size: 15px;
    top: 10px;
  }
  .v-timeline-content {
    padding: 18px 15px;
  }

  /* Contact Page */
  .contact-form-card, .contact-details-card {
    padding: 24px 18px;
    border-radius: 16px;
  }
  .contact-info-list {
    margin-top: 20px;
  }
  .contact-info-list li {
    padding-left: 40px;
    margin-bottom: 22px;
  }
  .contact-info-list li i {
    width: 32px;
    height: 32px;
    font-size: 15px;
  }

  /* Footer */
  .footer {
    padding-top: 50px;
  }
  .footer h5 {
    font-size: 16px;
    margin-bottom: 18px;
  }
  .footer-logo {
    height: 60px;
    margin-bottom: 12px;
  }
  .footer-bottom {
    margin-top: 35px;
    padding: 20px 0;
    font-size: 12px;
  }

  /* Back to top button */
  .btn-back-to-top {
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
    font-size: 16px;
  }

  /* Modal */
  .modal-dialog {
    margin: 10px;
  }
  .modal-header-gradient {
    padding: 18px 20px;
  }
  .modal-header-gradient h5 {
    font-size: 17px;
  }
  .modal-body-custom {
    padding: 20px 16px;
  }
}

/* --- Extra Small Smartphones (< 480px) --- */
@media (max-width: 480px) {
  .hero-title {
    font-size: 22px;
  }
  .section-title {
    font-size: 21px;
  }
  .btn-custom {
    padding: 11px 22px;
    font-size: 14px;
  }
  .floating-card {
    display: none !important;
  }
  .counter-number {
    font-size: 20px;
  }
  .counter-label-title {
    font-size: 10.5px;
  }
}