 :root {
     /* Video mathi lidhela color codes */
     --primary-green: #1e7b3b;
     --light-green: #e9f2eb;
     --dark-bg: #0f1712;
     --text-dark: #222222;
     --text-muted: #666666;
     --accent-green: #28a745;
 }

 /* Enforce No Horizontal Overflow globally */
 html,
 body {
     max-width: 100vw;
     overflow-x: hidden;
 }

 /* Hide default cursor for the custom mouse effect */
 body {
     font-family: 'Inter', sans-serif;
     color: var(--text-dark);
     background-color: #fafafa;
     transition: background-color 0.5s ease;
     /* Hover effect transition */
     cursor: none;
 }

 /* Disable scroll while loading */
 body.loading-active {
     overflow: hidden !important;
     height: 100vh;
 }

 /* Ensure links and buttons hide default cursor too, so our custom one shows */
 a,
 button,
 input,
 textarea,
 .map-pin-light,
 .feature-card {
     cursor: none !important;
 }

 body:hover {
     background-color: #f0f5f1;
     /* Subtle green tint on hover */
 }

 /* Smooth scrolling */
 html {
     scroll-behavior: smooth;
 }

 /* --- ASENSE-STYLE MINIMALIST PRELOADER --- */
 #preloader {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100vh;
     background-color: #ffffff;
     /* Brilliant white void to support the dark Seizon logo natively */
     z-index: 100000;
     display: flex;
     align-items: center;
     justify-content: center;
     pointer-events: all;
     transition: opacity 0.8s ease;
     /* 800ms smooth fade out */
 }

 body.loaded #preloader {
     opacity: 0;
     pointer-events: none;
 }

 .preloader-content {
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     width: 100%;
     height: 100%;
     z-index: 1;
 }

 /* The slow breathing "pulse" animation based on Asense Branding */
 .preloader-content img {
     width: 160px;
     animation: breathe-logo 3s ease-in-out infinite;
     /* Filter removed to prevent logo from turning into a solid white block */
 }

 @keyframes breathe-logo {
     0% {
         opacity: 1;
     }

     50% {
         opacity: 0;
     }

     /* Smooth fade to invisible */
     100% {
         opacity: 1;
     }
 }

 .preloader-counter {
     display: none !important;
 }

 /* Sleek progress bar matching the minimal aesthetic */
 .preloader-divider {
     width: 200px;
     height: 2px;
     background-color: rgba(30, 123, 59, 0.15);
     /* light green track */
     position: relative;
     margin-top: 40px;
     overflow: hidden;
     border-radius: 4px;
 }

 .preloader-progress {
     position: absolute;
     top: 0;
     left: 0;
     height: 100%;
     width: 0%;
     background-color: var(--primary-green);
     /* brand green progress */
     transition: width 0.1s linear;
 }

 /* Page Reveal Animations */
 .hero-carousel {
     opacity: 0;
     transform: scale(1.02);
     transition: opacity 1.2s ease 0.6s, transform 1.2s cubic-bezier(0.77, 0, 0.175, 1) 0.6s;
 }

 body.loaded .hero-carousel {
     opacity: 1;
     transform: scale(1);
 }

 /* --- UNIQUE DIAMOND MOUSE CURSOR --- */
 .cursor-dot {
     width: 8px;
     height: 8px;
     background-color: var(--primary-green);
     position: fixed;
     top: 0;
     left: 0;
     transform: translate(-50%, -50%) rotate(45deg);
     border-radius: 0;
     /* NOT rounded */
     z-index: 9999;
     pointer-events: none;
     transition: width 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275),
         height 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275),
         background-color 0.3s ease,
         transform 0.3s ease,
         box-shadow 0.3s ease;
     box-shadow: 0 0 8px rgba(30, 123, 59, 0.4);
 }

 .cursor-outline {
     display: none !important;
     /* Hide outer circle as requested */
 }

 /* Interactive hover effect keeps the 'only dot' requirement but morphs it to a square */
 body:has(.cursor-outline.hover-active) .cursor-dot {
     width: 14px;
     height: 14px;
     background-color: #ffffff;
     box-shadow: 0 0 15px rgba(30, 123, 59, 0.9);
     transform: translate(-50%, -50%) rotate(90deg);
 }

 @media (max-width: 991px) {

     .cursor-dot,
     .cursor-outline {
         display: none !important;
     }

     body,
     a,
     button,
     input,
     textarea,
     .map-pin-light,
     .feature-card {
         cursor: auto !important;
     }

     a,
     button,
     .map-pin-light,
     .feature-card {
         cursor: pointer !important;
     }
 }

 /* Utility Classes */
 .text-primary-green {
     color: var(--primary-green) !important;
 }

 .bg-primary-green {
     background-color: var(--primary-green) !important;
 }

 .bg-light-green {
     background-color: var(--light-green) !important;
 }

 .hover-white:hover {
     color: #ffffff !important;
 }

 .hover-primary-green:hover {
     color: var(--primary-green) !important;
 }

 /* Modern Buttons */
 .btn-custom-green {
     background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-green) 100%);
     color: white;
     border-radius: 50px;
     padding: 10px 24px;
     font-weight: 600;
     border: none;
     box-shadow: 0 4px 15px rgba(30, 123, 59, 0.3);
     transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
     position: relative;
     overflow: hidden;
     z-index: 1;
 }

 .btn-custom-green::before {
     content: '';
     position: absolute;
     top: 0;
     left: -100%;
     width: 100%;
     height: 100%;
     background: rgba(255, 255, 255, 0.2);
     transition: all 0.4s ease;
     z-index: -1;
 }

 .btn-custom-green:hover::before {
     left: 0;
 }

 .btn-custom-green:hover {
     transform: translateY(-3px);
     box-shadow: 0 8px 25px rgba(30, 123, 59, 0.4);
     color: white;
 }

 /* --- PREMIUM FLOATING CAPSULE NAVIGATION --- */
 .premium-capsule-nav {
     position: fixed;
     top: -100px;
     left: 50%;
     transform: translateX(-50%);
     background: rgba(255, 255, 255, 0.92);
     backdrop-filter: blur(25px);
     -webkit-backdrop-filter: blur(25px);
     border-radius: 100px;
     box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06), inset 0 0 0 1px rgba(255, 255, 255, 0.5), inset 0 0 0 1px rgba(30, 123, 59, 0.1);
     display: flex;
     align-items: center;
     padding: 8px 12px 8px 24px;
     z-index: 1050;
     width: max-content;
     max-width: 96%;
     opacity: 0;
     transition: top 1s cubic-bezier(0.77, 0, 0.175, 1), opacity 1s ease, box-shadow 0.4s, transform 0.4s;
 }

 body.loaded .premium-capsule-nav {
     top: 25px;
     opacity: 1;
 }

 .premium-capsule-nav:hover {
     box-shadow: 0 18px 50px rgba(30, 123, 59, 0.12), inset 0 0 0 1px rgba(255, 255, 255, 0.8), inset 0 0 1px rgba(30, 123, 59, 0.25);
     transform: translateX(-50%) translateY(-2px);
 }

 .nav-logo-section {
     padding-right: 25px;
     display: flex;
     align-items: center;
     position: relative;
 }

 .nav-logo-section::after {
     content: '';
     position: absolute;
     right: 0;
     top: 50%;
     transform: translateY(-50%);
     height: 24px;
     width: 2px;
     background: rgba(0, 0, 0, 0.08);
     border-radius: 2px;
 }

 .nav-links-section {
     display: flex;
     align-items: center;
     padding: 0 25px;
     gap: 6px;
     position: relative;
 }

 .nav-links-section::after {
     content: '';
     position: absolute;
     right: 0;
     top: 50%;
     transform: translateY(-50%);
     height: 24px;
     width: 2px;
     background: rgba(0, 0, 0, 0.08);
     border-radius: 2px;
 }

 .nav-capsule-link {
     font-weight: 600;
     font-size: 0.95rem;
     color: var(--text-dark);
     text-decoration: none;
     padding: 10px 20px;
     border-radius: 40px;
     transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
     position: relative;
     z-index: 1;
 }

 .nav-capsule-link:hover {
     color: var(--primary-green);
     background: var(--light-green);
     transform: scale(1.05);
 }

 .nav-action-section {
     display: flex;
     align-items: center;
     padding-left: 20px;
     gap: 20px;
 }

 .nav-contact-text {
     font-weight: 700;
     font-size: 1.05rem;
     display: flex;
     align-items: center;
     gap: 10px;
     color: var(--text-dark);
     letter-spacing: 0.2px;
 }

 .icon-pulse-wrapper {
     position: relative;
     width: 34px;
     height: 34px;
     background: var(--light-green);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--primary-green);
 }

 .icon-pulse-wrapper::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: var(--primary-green);
     border-radius: 50%;
     z-index: -1;
     opacity: 0.3;
     animation: pulse-glow-btn 2s infinite;
 }

 @keyframes pulse-glow-btn {
     0% {
         transform: scale(1);
         opacity: 0.4;
     }

     70% {
         transform: scale(1.5);
         opacity: 0;
     }

     100% {
         transform: scale(1);
         opacity: 0;
     }
 }

 .nav-action-btn {
     background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-green) 100%);
     color: white;
     border: none;
     padding: 12px 28px;
     border-radius: 40px;
     font-weight: 600;
     font-size: 0.95rem;
     text-decoration: none;
     display: flex;
     align-items: center;
     gap: 8px;
     transition: all 0.3s ease;
     box-shadow: 0 4px 15px rgba(30, 123, 59, 0.25);
 }

 .nav-action-btn:hover {
     color: white;
     box-shadow: 0 6px 20px rgba(30, 123, 59, 0.4);
     transform: translateY(-2px);
 }

 /* Mobile handling */
 .mobile-menu-btn {
     display: none;
     background: var(--light-green);
     border: none;
     height: 44px;
     width: 44px;
     border-radius: 50%;
     font-size: 1.2rem;
     color: var(--primary-green);
     cursor: pointer;
     transition: all 0.3s;
 }

 .mobile-menu-btn:active {
     transform: scale(0.9);
 }

 .mobile-dropdown-capsule {
     background: rgba(255, 255, 255, 0.95);
     backdrop-filter: blur(25px);
     -webkit-backdrop-filter: blur(25px);
     border-radius: 30px;
     box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
     border: 1px solid rgba(255, 255, 255, 0.8);
     padding: 20px;
     margin-top: 15px;
 }

 .mobile-dropdown-capsule .nav-capsule-link {
     display: block;
     margin-bottom: 5px;
     padding: 12px 20px;
     border-radius: 16px;
 }

 @media (max-width: 1199px) {
     .premium-capsule-nav {
         width: 92%;
         justify-content: space-between;
         padding: 10px 15px 10px 20px;
     }

     .nav-links-section,
     .nav-action-section {
         display: none !important;
     }

     .mobile-menu-btn {
         display: flex;
         align-items: center;
         justify-content: center;
     }

     .nav-logo-section {
         padding-right: 0;
     }

     .nav-logo-section::after {
         display: none;
     }
 }

 /* STYLISH UNIQUE HERO CAROUSEL */
 .hero-carousel {
     height: 100vh;
     min-height: 700px;
     position: relative;
     clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
     margin-bottom: 0;
     background-color: var(--dark-bg);
 }

 .carousel-item {
     height: 100vh;
     min-height: 700px;
     overflow: hidden;
 }

 /* Slow Zoom Animation for Hero Images */
 .bg-image {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-size: cover;
     background-position: center;
     transform: scale(1.1);
     transition: transform 8s ease-out;
     z-index: 0;
 }

 .carousel-item.active .bg-image {
     transform: scale(1);
 }

 /* Stylish Left-Aligned Gradient Overlay */
 .carousel-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(90deg, rgba(15, 23, 18, 0.95) 0%, rgba(15, 23, 18, 0.6) 40%, rgba(15, 23, 18, 0.1) 100%);
     display: flex;
     align-items: center;
     z-index: 1;
 }

 /* Glassmorphism Hero Content Box */
 .hero-content-box {
     background: rgba(255, 255, 255, 0.05);
     backdrop-filter: blur(15px);
     -webkit-backdrop-filter: blur(15px);
     border: 1px solid rgba(255, 255, 255, 0.15);
     border-radius: 24px;
     padding: 50px;
     max-width: 650px;
     transform: translateY(40px);
     opacity: 0;
     transition: all 1s cubic-bezier(0.25, 0.8, 0.25, 1) 0.3s;
     box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
 }

 .carousel-item.active .hero-content-box {
     transform: translateY(0);
     opacity: 1;
 }

 /* FIXED YELLOW LINE ERROR HERE */
 .hero-title {
     font-size: 4rem;
     font-weight: 900;
     line-height: 1.15;
     margin-bottom: 20px;
     background: linear-gradient(135deg, #ffffff 0%, #a3e6b5 100%);
     -webkit-background-clip: text;
     background-clip: text;
     /* Added standard property to remove warning */
     -webkit-text-fill-color: transparent;
     color: transparent;
     /* Added standard fallback property */
 }

 /* Stylish Custom Progress-bar Indicators */
 .carousel-indicators {
     bottom: 40px;
     margin-left: 5%;
     justify-content: flex-start;
     z-index: 2;
 }

 .carousel-indicators [data-bs-target] {
     width: 30px;
     height: 4px;
     border-radius: 4px;
     background-color: rgba(255, 255, 255, 0.3);
     border: none;
     margin: 0 6px;
     transition: width 0.5s ease, background-color 0.5s ease;
 }

 .carousel-indicators .active {
     width: 70px;
     background-color: var(--primary-green);
     box-shadow: 0 0 10px rgba(30, 123, 59, 0.5);
 }

 .subtitle-badge {
     background: rgba(30, 123, 59, 0.3);
     border: 1px solid var(--primary-green);
     color: #d1ffd6;
     padding: 8px 20px;
     border-radius: 30px;
     text-transform: uppercase;
     letter-spacing: 2px;
     font-size: 13px;
     font-weight: 700;
     margin-bottom: 25px;
     display: inline-block;
 }

 @media (max-width: 768px) {
     .hero-carousel {
         clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
     }

     .hero-title {
         font-size: 2.5rem;
     }

     .hero-content-box {
         padding: 30px;
         margin-top: 50px;
     }

     .carousel-overlay {
         background: linear-gradient(180deg, rgba(15, 23, 18, 0.6) 0%, rgba(15, 23, 18, 0.9) 100%);
     }
 }

 /* Section Titles */
 .section-subtitle {
     color: var(--primary-green);
     text-transform: uppercase;
     letter-spacing: 2px;
     font-size: 14px;
     font-weight: 700;
     display: flex;
     align-items: center;
     gap: 10px;
     margin-bottom: 10px;
 }

 .section-subtitle::before {
     content: "";
     width: 30px;
     height: 2px;
     background-color: var(--primary-green);
 }

 .section-title {
     font-size: 42px;
     font-weight: 800;
     margin-bottom: 25px;
     color: var(--text-dark);
     line-height: 1.2;
 }

 /* Floating Animation for Icons */
 @keyframes float {
     0% {
         transform: translateY(0px);
     }

     50% {
         transform: translateY(-10px);
     }

     100% {
         transform: translateY(0px);
     }
 }

 /* Feature Cards Unique Design */
 .feature-card {
     background: white;
     padding: 30px 20px;
     border-radius: 20px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
     transition: all 0.4s ease;
     border-bottom: 4px solid transparent;
     height: 100%;
 }

 .feature-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
     border-bottom: 4px solid var(--primary-green);
 }

 .feature-icon-wrapper {
     width: 70px;
     height: 70px;
     background: var(--light-green);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 20px auto;
     transition: all 0.4s ease;
 }

 .feature-card:hover .feature-icon-wrapper {
     background: var(--primary-green);
     animation: float 2s infinite ease-in-out;
 }

 .feature-card:hover .feature-icon {
     color: white;
 }

 .feature-icon {
     font-size: 28px;
     color: var(--primary-green);
     transition: color 0.4s;
 }

 /* Stats Box */
 .stats-box {
     background: linear-gradient(135deg, var(--light-green) 0%, #ffffff 100%);
     padding: 30px;
     border-radius: 24px;
     border-left: 6px solid var(--primary-green);
     box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
     position: relative;
     overflow: hidden;
 }

 .stats-box::after {
     content: '\f132';
     font-family: 'Font Awesome 6 Free';
     font-weight: 900;
     position: absolute;
     right: -20px;
     bottom: -20px;
     font-size: 150px;
     color: rgba(30, 123, 59, 0.05);
     transform: rotate(-15deg);
 }

 /* --- STREAMA-INSPIRED SCROLLING PRODUCTS SECTION --- */
 .scrolling-products-section {
     background-color: #ffffff;
     padding: 60px 0;
     /* Reduced spacing */
     overflow: hidden;
     position: relative;
 }

 .scrolling-grid-container {
     display: flex;
     gap: 20px;
     height: 600px;
     overflow: hidden;
     mask-image: linear-gradient(to bottom, transparent, black 5%, black 95%, transparent);
     -webkit-mask-image: linear-gradient(to bottom, transparent, black 5%, black 95%, transparent);
 }

 .scrolling-column {
     display: flex;
     flex-direction: column;
     gap: 20px;
     width: 33.333%;
     will-change: transform;
 }

 /* Infinite Animation Classes */
 .scroll-up {
     animation: scrollUp 25s linear infinite;
 }

 .scroll-down {
     animation: scrollDown 30s linear infinite;
 }

 .scrolling-column img {
     width: 100%;
     border-radius: 16px;
     box-shadow: 0 10px 30px rgba(30, 123, 59, 0.08);
     object-fit: cover;
     aspect-ratio: 3/4;
     background-color: var(--light-green);
     border: 1px solid rgba(30, 123, 59, 0.1);
     transition: transform 0.3s ease;
 }

 .scrolling-column img:hover {
     transform: scale(1.03);
 }

 @keyframes scrollUp {
     0% {
         transform: translateY(0);
     }

     100% {
         transform: translateY(-50%);
     }
 }

 @keyframes scrollDown {
     0% {
         transform: translateY(-50%);
     }

     100% {
         transform: translateY(0);
     }
 }

 @media (max-width: 991px) {
     .scrolling-grid-container {
         height: 450px;
         margin-bottom: 30px;
     }

     .scrolling-products-section {
         padding: 40px 0;
         /* Reduced mobile padding */
     }
 }

 /* About Image Animation */
 .about-img-wrap {
     position: relative;
     border-radius: 24px;
     overflow: hidden;
 }

 .about-img-wrap img {
     transition: transform 0.7s ease;
 }

 .about-img-wrap:hover img {
     transform: scale(1.05);
 }

 .experience-badge {
     position: absolute;
     bottom: -20px;
     right: 20px;
     background: var(--primary-green);
     color: white;
     padding: 20px;
     border-radius: 16px;
     text-align: center;
     box-shadow: 0 10px 20px rgba(30, 123, 59, 0.3);
     border: 4px solid white;
     animation: float 4s infinite ease-in-out;
 }

 /* --- UNIQUE GLOBAL MAP SECTION (LIGHT THEME MATCHING IMAGE) --- */
 .map-pin-light {
     position: absolute;
     width: 12px;
     height: 12px;
     background: var(--primary-green);
     border-radius: 50%;
     transform: translate(-50%, -50%);
     z-index: 10;
     box-shadow: 0 0 0 4px rgba(30, 123, 59, 0.2);
 }

 .map-pin-light::before {
     content: '';
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     width: 35px;
     height: 35px;
     background: rgba(30, 123, 59, 0.15);
     border-radius: 50%;
     animation: pulse-light 2s infinite;
 }

 .map-pin-light.active {
     background: var(--accent-green);
 }

 @keyframes pulse-light {
     0% {
         width: 12px;
         height: 12px;
         opacity: 1;
     }

     100% {
         width: 50px;
         height: 50px;
         opacity: 0;
     }
 }

 .map-tooltip {
     position: absolute;
     bottom: 25px;
     left: 50%;
     transform: translateX(-50%) translateY(10px);
     background: white;
     padding: 8px 16px;
     border-radius: 8px;
     box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
     text-align: center;
     min-width: 130px;
     opacity: 0;
     visibility: hidden;
     transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
     z-index: 20;
     border: 1px solid rgba(0, 0, 0, 0.04);
 }

 .map-pin-light:hover .map-tooltip,
 .map-pin-light.active .map-tooltip {
     opacity: 1;
     visibility: visible;
     transform: translateX(-50%) translateY(0);
 }

 .map-tooltip::after {
     content: '';
     position: absolute;
     bottom: -6px;
     left: 50%;
     transform: translateX(-50%);
     border-width: 6px 6px 0;
     border-style: solid;
     border-color: white transparent transparent transparent;
 }

 .tooltip-country {
     font-size: 0.8rem;
     font-weight: 800;
     color: var(--primary-green);
     text-transform: uppercase;
     letter-spacing: 1px;
     margin-bottom: 2px;
     display: block;
 }

 .tooltip-city {
     font-size: 0.75rem;
     color: var(--text-dark);
     font-weight: 500;
     display: block;
 }

 @media (max-width: 768px) {
     .stat-item-light {
         margin-bottom: 20px;
     }

     .stat-item-light h2 {
         font-size: 2rem !important;
     }

     .border-start {
         border-left: none !important;
     }
 }

 /* --- SPLIT TONE CONTACT SECTION --- */
 .contact-split-section {
     padding: 30px 0 80px 0;
     /* Reduced padding from 40/120 to 30/80 */
     background-color: #fbfcfd;
     position: relative;
     z-index: 5;
 }

 .contact-split-container {
     border-radius: 40px;
     overflow: hidden;
     /* Added to fix any internal overflow */
     box-shadow: 0 40px 80px rgba(0, 0, 0, 0.06);
     background: #ffffff;
     display: flex;
     flex-wrap: wrap;
 }

 .contact-split-info {
     background: linear-gradient(145deg, var(--primary-green) 0%, var(--accent-green) 100%);
     padding: 60px 50px;
     /* Reduced from 80/60 */
     color: white;
     position: relative;
     flex: 1 1 45%;
 }

 .contact-split-info::before {
     content: '';
     position: absolute;
     top: -20%;
     right: -20%;
     width: 500px;
     height: 500px;
     background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
     border-radius: 50%;
     pointer-events: none;
 }

 .contact-split-info::after {
     content: '';
     position: absolute;
     bottom: -10%;
     left: -10%;
     width: 300px;
     height: 300px;
     background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
     border-radius: 50%;
     pointer-events: none;
 }

 .split-info-content {
     position: relative;
     z-index: 2;
 }

 .split-info-title {
     font-size: 3.5rem;
     font-weight: 900;
     line-height: 1.1;
     margin-bottom: 15px;
     letter-spacing: -1px;
 }

 .split-info-item {
     display: flex;
     align-items: center;
     gap: 20px;
     margin-bottom: 25px;
 }

 .split-info-icon {
     width: 55px;
     height: 55px;
     border-radius: 50%;
     background: rgba(255, 255, 255, 0.15);
     backdrop-filter: blur(10px);
     border: 1px solid rgba(255, 255, 255, 0.25);
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.3rem;
     flex-shrink: 0;
     transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
 }

 .split-info-item:hover .split-info-icon {
     background: white;
     color: var(--primary-green);
     transform: scale(1.1) rotate(5deg);
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
 }

 .contact-split-form {
     padding: 60px 50px;
     /* Reduced from 80/60 */
     flex: 1 1 55%;
     background: #ffffff;
     display: flex;
     flex-direction: column;
     justify-content: center;
 }

 .split-input-group {
     position: relative;
     margin-bottom: 20px;
 }

 .split-input {
     width: 100%;
     padding: 22px 20px 10px 24px;
     border: 2px solid transparent;
     background: #f4f7f5;
     border-radius: 16px;
     font-size: 1rem;
     color: var(--text-dark);
     font-weight: 600;
     transition: all 0.3s ease;
 }

 .split-input:focus {
     background: #ffffff;
     border-color: var(--primary-green);
     box-shadow: 0 10px 20px rgba(30, 123, 59, 0.08);
     outline: none;
 }

 .split-label {
     position: absolute;
     top: 50%;
     left: 24px;
     transform: translateY(-50%);
     color: #88968e;
     font-size: 1rem;
     font-weight: 500;
     pointer-events: none;
     transition: all 0.3s ease;
     margin: 0;
 }

 .split-input-group textarea~.split-label {
     top: 24px;
 }

 .split-input:focus~.split-label,
 .split-input:not(:placeholder-shown)~.split-label {
     top: 12px;
     font-size: 0.75rem;
     color: var(--primary-green);
     font-weight: 800;
     text-transform: uppercase;
     letter-spacing: 1px;
 }

 .split-submit-btn {
     background: var(--dark-bg);
     color: white;
     border: none;
     width: 100%;
     padding: 16px;
     border-radius: 16px;
     font-size: 1.1rem;
     font-weight: 700;
     transition: all 0.4s ease;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 10px;
     margin-top: 10px;
 }

 .split-submit-btn:hover {
     background: var(--primary-green);
     transform: translateY(-3px);
     box-shadow: 0 15px 30px rgba(30, 123, 59, 0.25);
 }

 @media (max-width: 991px) {
     .contact-split-container {
         flex-direction: column;
         border-radius: 30px;
     }

     .contact-split-info {
         padding: 40px 30px;
     }

     .contact-split-form {
         padding: 40px 30px;
     }

     .split-info-title {
         font-size: 2.8rem;
     }
 }

 /* --- MONOLITHIC MEGA-TYPOGRAPHY FOOTER --- */
 .neo-footer {
     background: #09100b;
     color: #ffffff;
     padding: 100px 0 30px 0;
     position: relative;
     overflow: hidden;
     border-top-left-radius: 60px;
     border-top-right-radius: 60px;
     margin-top: -40px;
     /* Subtle overlap over the contact section kept same */
     z-index: 10;
     box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.5);
     width: 100%;
 }

 .neo-footer::before {
     content: '';
     position: absolute;
     top: -150px;
     left: 50%;
     transform: translateX(-50%);
     width: 80%;
     height: 300px;
     background: radial-gradient(ellipse, rgba(30, 123, 59, 0.3) 0%, transparent 70%);
     pointer-events: none;
     z-index: 0;
 }

 .neo-footer-content {
     position: relative;
     z-index: 1;
 }

 .neo-cta-text {
     font-size: 1.2rem;
     text-transform: uppercase;
     letter-spacing: 3px;
     color: var(--primary-green);
     font-weight: 700;
     margin-bottom: 20px;
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .neo-massive-mail {
     font-size: clamp(3rem, 7vw, 7rem);
     font-weight: 900;
     color: #ffffff;
     text-decoration: none;
     line-height: 1;
     letter-spacing: -2px;
     display: inline-block;
     transition: color 0.4s ease;
     word-break: break-word;
 }

 .neo-massive-mail:hover {
     color: var(--primary-green);
 }

 .neo-footer-grid {
     display: grid;
     grid-template-columns: 2fr 1fr 1fr 1fr;
     gap: 40px;
     margin-top: 80px;
     padding-top: 60px;
     border-top: 1px solid rgba(255, 255, 255, 0.1);
 }

 .neo-footer-col h5 {
     font-size: 1.1rem;
     font-weight: 700;
     margin-bottom: 25px;
     color: #ffffff;
     letter-spacing: 0.5px;
 }

 .neo-footer-link {
     color: rgba(255, 255, 255, 0.6);
     text-decoration: none;
     display: block;
     margin-bottom: 15px;
     font-size: 0.95rem;
     font-weight: 500;
     transition: all 0.3s ease;
     position: relative;
     width: fit-content;
 }

 .neo-footer-link::after {
     content: '';
     position: absolute;
     left: 0;
     bottom: -2px;
     width: 0;
     height: 1px;
     background: var(--primary-green);
     transition: width 0.3s ease;
 }

 .neo-footer-link:hover {
     color: #ffffff;
     transform: translateX(5px);
 }

 .neo-footer-link:hover::after {
     width: 100%;
 }

 .neo-social-btn {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     width: 40px;
     height: 40px;
     background: rgba(255, 255, 255, 0.05);
     border-radius: 50%;
     color: white;
     text-decoration: none;
     margin-right: 10px;
     transition: all 0.3s ease;
     border: 1px solid rgba(255, 255, 255, 0.1);
 }

 .neo-social-btn:hover {
     background: var(--primary-green);
     border-color: var(--primary-green);
     transform: translateY(-5px);
     box-shadow: 0 10px 20px rgba(30, 123, 59, 0.4);
 }

 .neo-bottom-bar {
     margin-top: 80px;
     padding-top: 30px;
     border-top: 1px solid rgba(255, 255, 255, 0.05);
     display: flex;
     justify-content: space-between;
     align-items: center;
     color: rgba(255, 255, 255, 0.4);
     font-size: 0.85rem;
 }

 .neo-huge-brand {
     font-size: 18vw;
     font-weight: 900;
     color: rgba(255, 255, 255, 0.02);
     text-align: center;
     line-height: 0.8;
     margin-top: 40px;
     pointer-events: none;
     user-select: none;
     letter-spacing: -2vw;
     overflow: hidden;
     /* Added overflow hidden for this specific large text layer */
 }

 @media (max-width: 991px) {
     .neo-footer-grid {
         grid-template-columns: 1fr 1fr;
         gap: 40px;
         margin-top: 60px;
         padding-top: 40px;
     }

     .neo-footer-col:first-child {
         grid-column: span 2;
     }

     .neo-massive-mail {
         font-size: 10vw;
     }

     .neo-bottom-bar {
         flex-direction: column;
         gap: 20px;
         text-align: center;
         margin-top: 60px;
     }

     .neo-footer {
         border-top-left-radius: 40px;
         border-top-right-radius: 40px;
         padding-top: 60px;
     }
 }

 @media (max-width: 576px) {
     .neo-footer-grid {
         grid-template-columns: 1fr;
     }

     .neo-footer-col:first-child {
         grid-column: span 1;
     }

     .neo-huge-brand {
         margin-top: 20px;
         letter-spacing: -1vw;
     }
 }





 :root {
     --primary-green: #1e7b3b;
     --light-green: #e9f2eb;
     --dark-bg: #0f1712;
     --text-dark: #222222;
     --text-muted: #666666;
     --accent-green: #28a745;
 }

 body {
     font-family: 'Inter', sans-serif;
     color: var(--text-dark);
     overflow-x: hidden;
     background-color: #fafafa;
     transition: background-color 0.5s ease;
     cursor: none;
 }

 body.loading-active {
     overflow: hidden !important;
     height: 100vh;
 }

 a,
 button,
 input,
 textarea,
 .adv-card,
 .testi-card,
 .strength-card,
 .cs-tag,
 .cs-social-icon {
     cursor: none !important;
 }

 html {
     scroll-behavior: smooth;
 }

 /* Utility Classes */
 .text-primary-green {
     color: var(--primary-green) !important;
 }

 .bg-primary-green {
     background-color: var(--primary-green) !important;
 }

 .bg-light-green {
     background-color: var(--light-green) !important;
 }

 .hover-white:hover {
     color: #ffffff !important;
 }

 /* --- PRELOADER (Counter & Slide Up) --- */
 #preloader {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100vh;
     background-color: #ffffff;
     z-index: 100000;
     display: flex;
     align-items: center;
     justify-content: center;
     flex-direction: column;
     transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1), border-radius 1.2s cubic-bezier(0.77, 0, 0.175, 1);
     border-radius: 0;
 }

 body.loaded #preloader {
     transform: translateY(-150%);
     border-radius: 0 0 50% 50%;
 }

 .preloader-content {
     display: flex;
     flex-direction: column;
     align-items: center;
     width: 280px;
     max-width: 80%;
     transition: opacity 0.5s ease, transform 0.5s ease;
 }

 body.loaded .preloader-content {
     opacity: 0;
     transform: translateY(-30px);
 }

 .preloader-brand {
     font-size: 2.5rem;
     font-weight: 900;
     color: var(--text-dark);
     margin-bottom: 25px;
     letter-spacing: -0.5px;
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .preloader-brand i {
     font-size: 2.2rem;
     color: var(--text-dark);
 }

 .preloader-brand span {
     color: var(--text-dark);
 }

 .preloader-divider {
     width: 100%;
     height: 3px;
     background-color: rgba(0, 0, 0, 0.05);
     position: relative;
     margin-bottom: 20px;
     overflow: hidden;
     border-radius: 2px;
 }

 .preloader-progress {
     position: absolute;
     top: 0;
     left: 0;
     height: 100%;
     width: 0%;
     background-color: var(--primary-green);
     transition: width 0.1s linear;
 }

 .preloader-counter {
     font-size: 4.5rem;
     font-weight: 400;
     color: var(--text-dark);
     line-height: 1;
     font-variant-numeric: tabular-nums;
 }

 /* --- CUSTOM MOUSE EFFECT --- */
 .cursor-dot {
     width: 8px;
     height: 8px;
     background-color: var(--primary-green);
     position: fixed;
     top: 0;
     left: 0;
     transform: translate(-50%, -50%);
     border-radius: 50%;
     z-index: 9999;
     pointer-events: none;
 }

 .cursor-outline {
     width: 40px;
     height: 40px;
     border: 2px solid rgba(30, 123, 59, 0.5);
     position: fixed;
     top: 0;
     left: 0;
     transform: translate(-50%, -50%);
     border-radius: 50%;
     z-index: 9998;
     pointer-events: none;
     transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
 }

 .cursor-outline.hover-active {
     width: 60px;
     height: 60px;
     background-color: rgba(30, 123, 59, 0.1);
     border-color: transparent;
 }

 @media (max-width: 991px) {

     .cursor-dot,
     .cursor-outline {
         display: none !important;
     }

     body,
     a,
     button,
     input,
     textarea,
     .adv-card,
     .testi-card,
     .strength-card,
     .cs-tag,
     .cs-social-icon {
         cursor: auto !important;
     }

     a,
     button,
     .adv-card,
     .testi-card,
     .strength-card,
     .cs-tag,
     .cs-social-icon {
         cursor: pointer !important;
     }
 }

 /* --- NAVIGATION --- */
 .premium-capsule-nav {
     position: fixed;
     top: -100px;
     left: 50%;
     transform: translateX(-50%);
     background: rgba(255, 255, 255, 0.92);
     backdrop-filter: blur(25px);
     -webkit-backdrop-filter: blur(25px);
     border-radius: 100px;
     box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06), inset 0 0 0 1px rgba(255, 255, 255, 0.5), inset 0 0 0 1px rgba(30, 123, 59, 0.1);
     display: flex;
     align-items: center;
     padding: 8px 12px 8px 24px;
     z-index: 1050;
     width: max-content;
     max-width: 96%;
     opacity: 0;
     transition: top 1s cubic-bezier(0.77, 0, 0.175, 1), opacity 1s ease, box-shadow 0.4s, transform 0.4s;
 }

 body.loaded .premium-capsule-nav {
     top: 25px;
     opacity: 1;
 }

 .premium-capsule-nav:hover {
     box-shadow: 0 18px 50px rgba(30, 123, 59, 0.12), inset 0 0 0 1px rgba(255, 255, 255, 0.8), inset 0 0 1px rgba(30, 123, 59, 0.25);
     transform: translateX(-50%) translateY(-2px);
 }

 .nav-logo-section {
     padding-right: 25px;
     display: flex;
     align-items: center;
     position: relative;
 }

 .nav-logo-section::after {
     content: '';
     position: absolute;
     right: 0;
     top: 50%;
     transform: translateY(-50%);
     height: 24px;
     width: 2px;
     background: rgba(0, 0, 0, 0.08);
     border-radius: 2px;
 }

 .nav-links-section {
     display: flex;
     align-items: center;
     padding: 0 25px;
     gap: 6px;
     position: relative;
 }

 .nav-links-section::after {
     content: '';
     position: absolute;
     right: 0;
     top: 50%;
     transform: translateY(-50%);
     height: 24px;
     width: 2px;
     background: rgba(0, 0, 0, 0.08);
     border-radius: 2px;
 }

 .nav-capsule-link {
     font-weight: 600;
     font-size: 0.95rem;
     color: var(--text-dark);
     text-decoration: none;
     padding: 10px 20px;
     border-radius: 40px;
     transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
     position: relative;
     z-index: 1;
 }

 .nav-capsule-link:hover,
 .nav-capsule-link.active {
     color: var(--primary-green);
     background: var(--light-green);
     transform: scale(1.05);
 }

 .nav-action-section {
     display: flex;
     align-items: center;
     padding-left: 20px;
     gap: 20px;
 }

 .nav-contact-text {
     font-weight: 700;
     font-size: 1.05rem;
     display: flex;
     align-items: center;
     gap: 10px;
     color: var(--text-dark);
     letter-spacing: 0.2px;
 }

 .icon-pulse-wrapper {
     position: relative;
     width: 34px;
     height: 34px;
     background: var(--light-green);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--primary-green);
 }

 .icon-pulse-wrapper::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: var(--primary-green);
     border-radius: 50%;
     z-index: -1;
     opacity: 0.3;
     animation: pulse-glow-btn 2s infinite;
 }

 @keyframes pulse-glow-btn {
     0% {
         transform: scale(1);
         opacity: 0.4;
     }

     70% {
         transform: scale(1.5);
         opacity: 0;
     }

     100% {
         transform: scale(1);
         opacity: 0;
     }
 }

 .nav-action-btn {
     background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-green) 100%);
     color: white;
     border: none;
     padding: 12px 28px;
     border-radius: 40px;
     font-weight: 600;
     font-size: 0.95rem;
     text-decoration: none;
     display: flex;
     align-items: center;
     gap: 8px;
     transition: all 0.3s ease;
     box-shadow: 0 4px 15px rgba(30, 123, 59, 0.25);
 }

 .nav-action-btn:hover {
     color: white;
     box-shadow: 0 6px 20px rgba(30, 123, 59, 0.4);
     transform: translateY(-2px);
 }

 .mobile-menu-btn {
     display: none;
     background: var(--light-green);
     border: none;
     height: 44px;
     width: 44px;
     border-radius: 50%;
     font-size: 1.2rem;
     color: var(--primary-green);
     cursor: pointer;
     transition: all 0.3s;
 }

 .mobile-dropdown-capsule {
     background: rgba(255, 255, 255, 0.95);
     backdrop-filter: blur(25px);
     -webkit-backdrop-filter: blur(25px);
     border-radius: 30px;
     box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
     border: 1px solid rgba(255, 255, 255, 0.8);
     padding: 20px;
     margin-top: 15px;
 }

 .mobile-dropdown-capsule .nav-capsule-link {
     display: block;
     margin-bottom: 5px;
     padding: 12px 20px;
     border-radius: 16px;
 }

 @media (max-width: 1199px) {
     .premium-capsule-nav {
         width: 92%;
         justify-content: space-between;
         padding: 10px 15px 10px 20px;
     }

     .nav-links-section,
     .nav-action-section {
         display: none !important;
     }

     .mobile-menu-btn {
         display: flex;
         align-items: center;
         justify-content: center;
     }

     .nav-logo-section {
         padding-right: 0;
     }

     .nav-logo-section::after {
         display: none;
     }
 }

 /* --- BUTTON CUSTOM MATCHING IMAGE --- */
 .btn-solid-green {
     background-color: #2b9044;
     color: #ffffff;
     border-radius: 50px;
     padding: 14px 38px;
     font-weight: 700;
     font-size: 1.15rem;
     border: none;
     box-shadow: 0 10px 25px rgba(43, 144, 68, 0.35);
     transition: all 0.3s ease;
     text-decoration: none;
     display: inline-block;
 }

 .btn-solid-green:hover {
     background-color: #237a39;
     box-shadow: 0 12px 30px rgba(43, 144, 68, 0.45);
     color: #ffffff;
     transform: translateY(-2px);
 }

 /* --- ABOUT HERO SECTION --- */
 .about-hero {
     position: relative;
     height: 65vh;
     min-height: 500px;
     background-color: var(--dark-bg);
     display: flex;
     align-items: center;
     justify-content: center;
     overflow: hidden;
     clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
     opacity: 0;
     transform: translateY(40px);
     transition: opacity 1.2s ease 0.3s, transform 1.2s cubic-bezier(0.77, 0, 0.175, 1) 0.3s;
 }

 body.loaded .about-hero {
     opacity: 1;
     transform: translateY(0);
 }

 .about-hero-bg {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-image: url('../image/about-bg.webp');
     background-size: cover;
     background-position: center;
     background-attachment: fixed;
     animation: slowZoom 20s linear infinite alternate;
 }

 @keyframes slowZoom {
     0% {
         transform: scale(1);
     }

     100% {
         transform: scale(1.15);
     }
 }

 .about-hero-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(to right, rgba(15, 23, 18, 0.9) 0%, rgba(15, 23, 18, 0.4) 100%);
 }

 .about-hero-content {
     position: relative;
     z-index: 2;
     text-align: center;
     color: white;
     padding: 0 20px;
 }

 .about-title {
     font-size: clamp(3rem, 6vw, 5rem);
     font-weight: 900;
     letter-spacing: -1px;
     margin-bottom: 20px;
     background: linear-gradient(135deg, #ffffff 0%, #a3e6b5 100%);
     /* CSS WARNING FIX: Added standard properties below */
     -webkit-background-clip: text;
     background-clip: text;
     -webkit-text-fill-color: transparent;
     color: transparent;
 }

 /* --- ABOUT US TEXT SECTION --- */
 .section-subtitle {
     color: var(--primary-green);
     text-transform: uppercase;
     letter-spacing: 2px;
     font-size: 14px;
     font-weight: 700;
     display: flex;
     align-items: center;
     gap: 10px;
     margin-bottom: 15px;
 }

 .section-subtitle::before {
     content: "";
     width: 30px;
     height: 2px;
     background-color: var(--primary-green);
 }

 .section-title {
     font-size: clamp(2rem, 4vw, 3rem);
     font-weight: 800;
     margin-bottom: 30px;
     color: var(--text-dark);
     line-height: 1.2;
     letter-spacing: -1px;
 }

 .about-content-wrapper {
     position: relative;
     padding-left: 20px;
     border-left: 4px solid var(--primary-green);
 }

 .about-image-stack {
     position: relative;
     height: 100%;
     min-height: 400px;
 }

 .about-img-1 {
     width: 70%;
     border-radius: 20px;
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
     position: absolute;
     top: 0;
     left: 0;
     z-index: 1;
 }

 .about-img-2 {
     width: 60%;
     border-radius: 20px;
     box-shadow: 0 30px 50px rgba(0, 0, 0, 0.2);
     position: absolute;
     bottom: 0;
     right: 0;
     z-index: 2;
     border: 8px solid #fafafa;
 }

 /* --- CORE STRENGTHS (Tabbed Grid Design with Custom Content) --- */
 .strength-section {
     background-color: #fafafa;
     padding: 100px 0;
     position: relative;
     z-index: 5;
 }

 .strength-card {
     background: #ffffff;
     border-radius: 20px;
     padding: 60px 30px 40px;
     text-align: center;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
     position: relative;
     height: 100%;
     margin-top: 35px;
     /* space for the top tab */
     transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
     border: 1px solid rgba(0, 0, 0, 0.02);
     display: flex;
     flex-direction: column;
     align-items: center;
 }

 .strength-card:hover {
     box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
     transform: translateY(-5px);
 }

 .strength-icon-tab {
     position: absolute;
     top: -35px;
     left: 50%;
     transform: translateX(-50%);
     width: 85px;
     height: 75px;
     background: #ffffff;
     /* Curved bucket shape */
     border-radius: 8px 8px 35px 35px;
     box-shadow: 0 15px 25px rgba(0, 0, 0, 0.06), 0 -5px 10px rgba(0, 0, 0, 0.02);
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 2rem;
     color: var(--primary-green);
     z-index: 2;
     transition: all 0.4s ease;
 }

 /* Top accent line matching the image style */
 .strength-icon-tab::after {
     content: '';
     position: absolute;
     top: 0;
     left: 15%;
     width: 70%;
     height: 3px;
     background-color: rgba(0, 0, 0, 0.06);
     border-radius: 4px;
     transition: all 0.4s ease;
 }

 .strength-card:hover .strength-icon-tab {
     color: #ffffff;
     background: var(--primary-green);
 }

 .strength-card:hover .strength-icon-tab::after {
     background-color: rgba(255, 255, 255, 0.3);
 }

 .strength-title {
     font-weight: 800;
     font-size: 1.25rem;
     color: var(--text-dark);
     margin-bottom: 15px;
     letter-spacing: -0.5px;
 }

 .strength-desc {
     color: var(--text-muted);
     font-size: 0.9rem;
     line-height: 1.6;
     margin-bottom: 25px;
 }

 .strength-arrow-btn {
     width: 40px;
     height: 40px;
     border-radius: 50%;
     background-color: #f4f7f5;
     color: #a0aab2;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     text-decoration: none;
     transition: all 0.3s ease;
     font-size: 0.9rem;
     margin-top: auto;
 }

 .strength-card:hover .strength-arrow-btn {
     background-color: var(--primary-green);
     color: #ffffff;
     box-shadow: 0 8px 20px rgba(30, 123, 59, 0.3);
 }

 /* --- WHAT MAKES US DIFFERENT --- */
 .adv-layout-section {
     padding: 100px 0;
     background-color: #ffffff;
     position: relative;
 }

 .adv-title-primary {
     font-size: clamp(3rem, 5vw, 4.5rem);
     font-weight: 900;
     color: var(--text-dark);
     line-height: 1.1;
     letter-spacing: -1px;
 }

 .adv-vertical-line {
     width: 3px;
     height: 180px;
     background-color: var(--text-dark);
     border-radius: 5px;
 }

 .adv-card {
     background-color: #ffffff;
     border-radius: 20px;
     padding: 25px 30px;
     display: flex;
     align-items: center;
     gap: 25px;
     border: 1px solid rgba(0, 0, 0, 0.06);
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
     transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
     cursor: none;
 }

 .adv-card:hover {
     transform: translateX(-10px);
     box-shadow: 0 20px 40px rgba(30, 123, 59, 0.08);
     border-color: rgba(30, 123, 59, 0.2);
 }

 .adv-icon-badge {
     width: 55px;
     height: 55px;
     border-radius: 50%;
     background-color: #fff6e5;
     color: #fca311;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.4rem;
     flex-shrink: 0;
     transition: all 0.3s ease;
 }

 .adv-card:hover .adv-icon-badge {
     background-color: var(--primary-green);
     color: #ffffff;
 }

 .adv-card-title {
     font-size: 1.15rem;
     font-weight: 700;
     color: var(--text-dark);
     margin-bottom: 5px;
 }

 .adv-card-text {
     font-size: 0.85rem;
     color: var(--text-muted);
     margin-bottom: 0;
     line-height: 1.6;
 }

 .adv-arrow-btn {
     width: 40px;
     height: 40px;
     border-radius: 50%;
     border: 1px solid rgba(0, 0, 0, 0.1);
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--text-dark);
     flex-shrink: 0;
     transition: all 0.3s ease;
 }

 .adv-card:hover .adv-arrow-btn {
     background-color: var(--primary-green);
     border-color: var(--primary-green);
     color: #ffffff;
 }

 @media (max-width: 991px) {
     .adv-vertical-line {
         display: none;
     }

     .adv-layout-section {
         padding: 60px 0;
     }
 }

 /* --- MODERN CLIENT SUCCESS SECTION (Image Matched) --- */
 .cs-modern-section {
     background-color: #fcfcfc;
     padding: 100px 0;
     position: relative;
     overflow: hidden;
     border-top: 1px solid rgba(0, 0, 0, 0.03);
     border-bottom: 1px solid rgba(0, 0, 0, 0.03);
 }

 /* Faint grid background matching the image */
 .cs-modern-section::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-image: linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
         linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
     background-size: 60px 60px;
     z-index: 0;
 }

 .cs-container {
     position: relative;
     z-index: 2;
     max-width: 1200px;
     margin: 0 auto;
 }

 .cs-header {
     text-align: center;
     margin-bottom: 50px;
     position: relative;
     z-index: 5;
 }

 .cs-top-badge {
     position: absolute;
     top: 20px;
     right: 20px;
     width: 100px;
     height: 100px;
     animation: spin-slow 15s linear infinite;
 }

 @keyframes spin-slow {
     100% {
         transform: rotate(360deg);
     }
 }

 .cs-main-layout {
     position: relative;
     height: 600px;
     width: 100%;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 /* Central Graphic */
 .cs-center-graphic {
     position: relative;
     width: 400px;
     height: 500px;
     display: flex;
     align-items: flex-end;
     justify-content: center;
 }

 .cs-blob {
     position: absolute;
     bottom: 0;
     width: 350px;
     height: 350px;
     background-color: var(--primary-green);
     /* Organic blob shape */
     border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
     z-index: 1;
     animation: blob-morph 8s ease-in-out infinite alternate;
 }

 @keyframes blob-morph {
     0% {
         border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
     }

     100% {
         border-radius: 60% 40% 30% 70% / 60% 50% 40% 50%;
     }
 }

 .cs-person-img {
     position: relative;
     z-index: 2;
     height: 100%;
     width: auto;
     object-fit: cover;
     /* Clipping the bottom to match the blob's base roughly */
     mask-image: radial-gradient(circle at 54% 60%, black 64%, transparent 61%);
     -webkit-mask-image: radial-gradient(circle at 54% 60%, black 64%, transparent 61%);
 }

 /* Floating Elements (Absolute) */
 .cs-floating-quote {
     position: absolute;
     top: 20%;
     left: 0;
     background: white;
     padding: 25px 30px;
     border-radius: 20px;
     box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
     max-width: 300px;
     z-index: 5;
     border: 1px solid rgba(0, 0, 0, 0.02);
     transition: transform 0.4s ease;
 }

 .cs-floating-quote:hover {
     transform: translateY(-5px);
 }

 .cs-quote-icon {
     color: var(--primary-green);
     font-size: 28px;
     margin-bottom: 15px;
     display: block;
 }

 .cs-quote-text {
     color: var(--text-muted);
     font-size: 0.95rem;
     line-height: 1.6;
     margin: 0;
 }

 .cs-floating-tags {
     position: absolute;
     top: 25%;
     right: 0;
     width: 250px;
     display: flex;
     flex-wrap: wrap;
     justify-content: flex-end;
     gap: 12px;
     z-index: 5;
 }

 .cs-tag {
     padding: 10px 20px;
     border-radius: 30px;
     font-weight: 700;
     font-size: 0.85rem;
     text-decoration: none;
     transition: all 0.3s ease;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
     display: inline-flex;
     align-items: center;
     gap: 8px;
 }

 .cs-tag-dark {
     background: var(--text-dark);
     color: white;
 }

 .cs-tag-dark:hover {
     background: var(--primary-green);
     color: white;
     transform: scale(1.05);
 }

 .cs-tag-green {
     background: var(--primary-green);
     color: white;
 }

 .cs-tag-green:hover {
     background: var(--dark-bg);
     color: white;
     transform: scale(1.05);
 }

 .cs-tag-outline {
     background: white;
     color: var(--text-dark);
     border: 2px solid var(--text-dark);
 }

 .cs-tag-outline:hover {
     background: var(--text-dark);
     color: white;
     transform: scale(1.05);
 }

 .cs-floating-social {
     position: absolute;
     bottom: 10%;
     right: 0;
     text-align: right;
     z-index: 5;
 }

 .cs-social-title {
     color: var(--text-muted);
     font-size: 0.85rem;
     font-weight: 600;
     margin-bottom: 15px;
     display: block;
 }

 .cs-social-icons {
     display: flex;
     gap: 10px;
     justify-content: flex-end;
 }

 .cs-social-icon {
     width: 40px;
     height: 40px;
     border-radius: 50%;
     background: var(--text-dark);
     color: white;
     display: flex;
     align-items: center;
     justify-content: center;
     text-decoration: none;
     transition: all 0.3s ease;
 }

 .cs-social-icon:hover {
     background: var(--primary-green);
     color: white;
     transform: translateY(-3px);
 }

 .cs-floating-action {
     position: absolute;
     bottom: 0;
     left: 50%;
     transform: translateX(-50%);
     background: white;
     padding: 10px;
     border-radius: 50px;
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
     display: flex;
     gap: 10px;
     z-index: 10;
     border: 1px solid rgba(0, 0, 0, 0.03);
 }

 .cs-btn-dark {
     background: var(--text-dark);
     color: white;
     padding: 12px 30px;
     border-radius: 40px;
     font-weight: 700;
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     gap: 8px;
     transition: all 0.3s;
 }

 .cs-btn-dark:hover {
     background: var(--primary-green);
     color: white;
 }

 .cs-btn-light {
     background: transparent;
     color: var(--text-dark);
     padding: 12px 30px;
     border-radius: 40px;
     font-weight: 700;
     text-decoration: none;
     transition: all 0.3s;
 }

 .cs-btn-light:hover {
     background: var(--light-green);
     color: var(--primary-green);
 }

 @media (max-width: 991px) {
     .cs-main-layout {
         height: auto;
         flex-direction: column;
         gap: 40px;
         margin-top: 40px;
     }

     .cs-center-graphic {
         width: 300px;
         height: 350px;
         margin: 0 auto;
         order: -1;
     }

     .cs-blob {
         width: 280px;
         height: 280px;
     }

     .cs-floating-quote,
     .cs-floating-reviews,
     .cs-floating-tags,
     .cs-floating-social,
     .cs-floating-action {
         position: relative;
         top: auto;
         bottom: auto;
         left: auto;
         right: auto;
         transform: none;
         width: 100%;
         text-align: center;
         justify-content: center;
     }

     .cs-floating-quote {
         max-width: 100%;
         margin-bottom: 20px;
     }

     .cs-review-avatars {
         justify-content: center;
     }

     .cs-social-icons {
         justify-content: center;
     }

     .cs-top-badge {
         display: none;
     }
 }

 /* --- FOOTER (Monolithic) --- */
 .neo-footer {
     background: #09100b;
     color: #ffffff;
     padding: 100px 0 30px 0;
     position: relative;
     overflow: hidden;
     border-top-left-radius: 60px;
     border-top-right-radius: 60px;
     z-index: 10;
     box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.5);
 }

 .neo-footer::before {
     content: '';
     position: absolute;
     top: -150px;
     left: 50%;
     transform: translateX(-50%);
     width: 80%;
     height: 300px;
     background: radial-gradient(ellipse, rgba(30, 123, 59, 0.3) 0%, transparent 70%);
     pointer-events: none;
     z-index: 0;
 }

 .neo-footer-content {
     position: relative;
     z-index: 1;
 }

 .neo-cta-text {
     font-size: 1.2rem;
     text-transform: uppercase;
     letter-spacing: 3px;
     color: var(--primary-green);
     font-weight: 700;
     margin-bottom: 20px;
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .neo-massive-mail {
     font-size: clamp(3rem, 7vw, 7rem);
     font-weight: 900;
     color: #ffffff;
     text-decoration: none;
     line-height: 1;
     letter-spacing: -2px;
     display: inline-block;
     transition: color 0.4s ease;
     word-break: break-word;
 }

 .neo-massive-mail:hover {
     color: var(--primary-green);
 }

 .neo-footer-grid {
     display: grid;
     grid-template-columns: 2fr 1fr 1fr 1fr;
     gap: 40px;
     margin-top: 80px;
     padding-top: 60px;
     border-top: 1px solid rgba(255, 255, 255, 0.1);
 }

 .neo-footer-col h5 {
     font-size: 1.1rem;
     font-weight: 700;
     margin-bottom: 25px;
     color: #ffffff;
     letter-spacing: 0.5px;
 }

 .neo-footer-link {
     color: rgba(255, 255, 255, 0.6);
     text-decoration: none;
     display: block;
     margin-bottom: 15px;
     font-size: 0.95rem;
     font-weight: 500;
     transition: all 0.3s ease;
     position: relative;
     width: fit-content;
 }

 .neo-footer-link::after {
     content: '';
     position: absolute;
     left: 0;
     bottom: -2px;
     width: 0;
     height: 1px;
     background: var(--primary-green);
     transition: width 0.3s ease;
 }

 .neo-footer-link:hover {
     color: #ffffff;
     transform: translateX(5px);
 }

 .neo-footer-link:hover::after {
     width: 100%;
 }

 .neo-social-btn {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     width: 40px;
     height: 40px;
     background: rgba(255, 255, 255, 0.05);
     border-radius: 50%;
     color: white;
     text-decoration: none;
     margin-right: 10px;
     transition: all 0.3s ease;
     border: 1px solid rgba(255, 255, 255, 0.1);
 }

 .neo-social-btn:hover {
     background: var(--primary-green);
     border-color: var(--primary-green);
     transform: translateY(-5px);
     box-shadow: 0 10px 20px rgba(30, 123, 59, 0.4);
 }

 .neo-bottom-bar {
     margin-top: 80px;
     padding-top: 30px;
     border-top: 1px solid rgba(255, 255, 255, 0.05);
     display: flex;
     justify-content: space-between;
     align-items: center;
     color: rgba(255, 255, 255, 0.4);
     font-size: 0.85rem;
 }

 .neo-huge-brand {
     font-size: 18vw;
     font-weight: 900;
     color: rgba(255, 255, 255, 0.02);
     text-align: center;
     line-height: 0.8;
     margin-top: 40px;
     pointer-events: none;
     user-select: none;
     letter-spacing: -2vw;
 }

 @media (max-width: 991px) {
     .neo-footer-grid {
         grid-template-columns: 1fr 1fr;
         gap: 40px;
         margin-top: 60px;
         padding-top: 40px;
     }

     .neo-footer-col:first-child {
         grid-column: span 2;
     }

     .neo-massive-mail {
         font-size: 10vw;
     }

     .neo-bottom-bar {
         flex-direction: column;
         gap: 20px;
         text-align: center;
         margin-top: 60px;
     }

     .neo-footer {
         border-top-left-radius: 40px;
         border-top-right-radius: 40px;
         padding-top: 60px;
     }
 }

 @media (max-width: 576px) {
     .neo-footer-grid {
         grid-template-columns: 1fr;
     }

     .neo-footer-col:first-child {
         grid-column: span 1;
     }

     .neo-huge-brand {
         margin-top: 20px;
         letter-spacing: -1vw;
     }
 }






 :root {
     --primary-green: #1e7b3b;
     --light-green: #e9f2eb;
     --dark-bg: #0f1712;
     --text-dark: #222222;
     --text-muted: #666666;
     --accent-green: #28a745;
 }

 body {
     font-family: 'Inter', sans-serif;
     color: var(--text-dark);
     overflow-x: hidden;
     background-color: #fafafa;
     transition: background-color 0.5s ease;
     cursor: none;
 }

 body.loading-active {
     overflow: hidden !important;
     height: 100vh;
 }

 a,
 button,
 input,
 textarea,
 .adv-card,
 .testi-card,
 .strength-card,
 .cs-tag,
 .cs-social-icon,
 .prod-card-wrap {
     cursor: none !important;
 }

 html {
     scroll-behavior: smooth;
 }

 /* Utility Classes */
 .text-primary-green {
     color: var(--primary-green) !important;
 }

 .bg-primary-green {
     background-color: var(--primary-green) !important;
 }

 .bg-light-green {
     background-color: var(--light-green) !important;
 }

 .hover-white:hover {
     color: #ffffff !important;
 }

 /* --- PRELOADER (Counter & Slide Up) --- */
 #preloader {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100vh;
     background-color: #ffffff;
     z-index: 100000;
     display: flex;
     align-items: center;
     justify-content: center;
     flex-direction: column;
     transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1), border-radius 1.2s cubic-bezier(0.77, 0, 0.175, 1);
     border-radius: 0;
 }

 body.loaded #preloader {
     transform: translateY(-150%);
     border-radius: 0 0 50% 50%;
 }

 .preloader-content {
     display: flex;
     flex-direction: column;
     align-items: center;
     width: 280px;
     max-width: 80%;
     transition: opacity 0.5s ease, transform 0.5s ease;
 }

 body.loaded .preloader-content {
     opacity: 0;
     transform: translateY(-30px);
 }

 .preloader-brand {
     font-size: 2.5rem;
     font-weight: 900;
     color: var(--text-dark);
     margin-bottom: 25px;
     letter-spacing: -0.5px;
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .preloader-brand i {
     font-size: 2.2rem;
     color: var(--text-dark);
 }

 .preloader-brand span {
     color: var(--text-dark);
 }

 .preloader-divider {
     width: 100%;
     height: 3px;
     background-color: rgba(0, 0, 0, 0.05);
     position: relative;
     margin-bottom: 20px;
     overflow: hidden;
     border-radius: 2px;
 }

 .preloader-progress {
     position: absolute;
     top: 0;
     left: 0;
     height: 100%;
     width: 0%;
     background-color: var(--primary-green);
     transition: width 0.1s linear;
 }

 .preloader-counter {
     font-size: 4.5rem;
     font-weight: 400;
     color: var(--text-dark);
     line-height: 1;
     font-variant-numeric: tabular-nums;
 }

 /* --- CUSTOM MOUSE EFFECT --- */
 .cursor-dot {
     width: 8px;
     height: 8px;
     background-color: var(--primary-green);
     position: fixed;
     top: 0;
     left: 0;
     transform: translate(-50%, -50%);
     border-radius: 50%;
     z-index: 9999;
     pointer-events: none;
 }

 .cursor-outline {
     width: 40px;
     height: 40px;
     border: 2px solid rgba(30, 123, 59, 0.5);
     position: fixed;
     top: 0;
     left: 0;
     transform: translate(-50%, -50%);
     border-radius: 50%;
     z-index: 9998;
     pointer-events: none;
     transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
 }

 .cursor-outline.hover-active {
     width: 60px;
     height: 60px;
     background-color: rgba(30, 123, 59, 0.1);
     border-color: transparent;
 }

 @media (max-width: 991px) {

     .cursor-dot,
     .cursor-outline {
         display: none !important;
     }

     body,
     a,
     button,
     input,
     textarea,
     .adv-card,
     .testi-card,
     .strength-card,
     .cs-tag,
     .cs-social-icon {
         cursor: auto !important;
     }

     a,
     button,
     .adv-card,
     .testi-card,
     .strength-card,
     .cs-tag,
     .cs-social-icon {
         cursor: pointer !important;
     }
 }

 /* --- NAVIGATION --- */
 .premium-capsule-nav {
     position: fixed;
     top: -100px;
     left: 50%;
     transform: translateX(-50%);
     background: rgba(255, 255, 255, 0.92);
     backdrop-filter: blur(25px);
     -webkit-backdrop-filter: blur(25px);
     border-radius: 100px;
     box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06), inset 0 0 0 1px rgba(255, 255, 255, 0.5), inset 0 0 0 1px rgba(30, 123, 59, 0.1);
     display: flex;
     align-items: center;
     padding: 8px 12px 8px 24px;
     z-index: 1050;
     width: max-content;
     max-width: 96%;
     opacity: 0;
     transition: top 1s cubic-bezier(0.77, 0, 0.175, 1), opacity 1s ease, box-shadow 0.4s, transform 0.4s;
 }

 body.loaded .premium-capsule-nav {
     top: 25px;
     opacity: 1;
 }

 .premium-capsule-nav:hover {
     box-shadow: 0 18px 50px rgba(30, 123, 59, 0.12), inset 0 0 0 1px rgba(255, 255, 255, 0.8), inset 0 0 1px rgba(30, 123, 59, 0.25);
     transform: translateX(-50%) translateY(-2px);
 }

 .nav-logo-section {
     padding-right: 25px;
     display: flex;
     align-items: center;
     position: relative;
 }

 .nav-logo-section::after {
     content: '';
     position: absolute;
     right: 0;
     top: 50%;
     transform: translateY(-50%);
     height: 24px;
     width: 2px;
     background: rgba(0, 0, 0, 0.08);
     border-radius: 2px;
 }

 .nav-links-section {
     display: flex;
     align-items: center;
     padding: 0 25px;
     gap: 6px;
     position: relative;
 }

 .nav-links-section::after {
     content: '';
     position: absolute;
     right: 0;
     top: 50%;
     transform: translateY(-50%);
     height: 24px;
     width: 2px;
     background: rgba(0, 0, 0, 0.08);
     border-radius: 2px;
 }

 .nav-capsule-link {
     font-weight: 600;
     font-size: 0.95rem;
     color: var(--text-dark);
     text-decoration: none;
     padding: 10px 20px;
     border-radius: 40px;
     transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
     position: relative;
     z-index: 1;
 }

 .nav-capsule-link:hover,
 .nav-capsule-link.active {
     color: var(--primary-green);
     background: var(--light-green);
     transform: scale(1.05);
 }

 .nav-action-section {
     display: flex;
     align-items: center;
     padding-left: 20px;
     gap: 20px;
 }

 .nav-contact-text {
     font-weight: 700;
     font-size: 1.05rem;
     display: flex;
     align-items: center;
     gap: 10px;
     color: var(--text-dark);
     letter-spacing: 0.2px;
 }

 .icon-pulse-wrapper {
     position: relative;
     width: 34px;
     height: 34px;
     background: var(--light-green);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--primary-green);
 }

 .icon-pulse-wrapper::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: var(--primary-green);
     border-radius: 50%;
     z-index: -1;
     opacity: 0.3;
     animation: pulse-glow-btn 2s infinite;
 }

 @keyframes pulse-glow-btn {
     0% {
         transform: scale(1);
         opacity: 0.4;
     }

     70% {
         transform: scale(1.5);
         opacity: 0;
     }

     100% {
         transform: scale(1);
         opacity: 0;
     }
 }

 .nav-action-btn {
     background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-green) 100%);
     color: white;
     border: none;
     padding: 12px 28px;
     border-radius: 40px;
     font-weight: 600;
     font-size: 0.95rem;
     text-decoration: none;
     display: flex;
     align-items: center;
     gap: 8px;
     transition: all 0.3s ease;
     box-shadow: 0 4px 15px rgba(30, 123, 59, 0.25);
 }

 .nav-action-btn:hover {
     color: white;
     box-shadow: 0 6px 20px rgba(30, 123, 59, 0.4);
     transform: translateY(-2px);
 }

 .mobile-menu-btn {
     display: none;
     background: var(--light-green);
     border: none;
     height: 44px;
     width: 44px;
     border-radius: 50%;
     font-size: 1.2rem;
     color: var(--primary-green);
     cursor: pointer;
     transition: all 0.3s;
 }

 .mobile-dropdown-capsule {
     background: rgba(255, 255, 255, 0.95);
     backdrop-filter: blur(25px);
     -webkit-backdrop-filter: blur(25px);
     border-radius: 30px;
     box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
     border: 1px solid rgba(255, 255, 255, 0.8);
     padding: 20px;
     margin-top: 15px;
 }

 .mobile-dropdown-capsule .nav-capsule-link {
     display: block;
     margin-bottom: 5px;
     padding: 12px 20px;
     border-radius: 16px;
 }

 @media (max-width: 1199px) {
     .premium-capsule-nav {
         width: 92%;
         justify-content: space-between;
         padding: 10px 15px 10px 20px;
     }

     .nav-links-section,
     .nav-action-section {
         display: none !important;
     }

     .mobile-menu-btn {
         display: flex;
         align-items: center;
         justify-content: center;
     }

     .nav-logo-section {
         padding-right: 0;
     }

     .nav-logo-section::after {
         display: none;
     }
 }

 /* --- BUTTON CUSTOM MATCHING IMAGE --- */
 .btn-solid-green {
     background-color: #2b9044;
     color: #ffffff;
     border-radius: 50px;
     padding: 14px 38px;
     font-weight: 700;
     font-size: 1.15rem;
     border: none;
     box-shadow: 0 10px 25px rgba(43, 144, 68, 0.35);
     transition: all 0.3s ease;
     text-decoration: none;
     display: inline-block;
 }

 .btn-solid-green:hover {
     background-color: #237a39;
     box-shadow: 0 12px 30px rgba(43, 144, 68, 0.45);
     color: #ffffff;
     transform: translateY(-2px);
 }

 /* --- HERO SECTION --- */
 .about-hero {
     position: relative;
     height: 65vh;
     min-height: 500px;
     background-color: var(--dark-bg);
     display: flex;
     align-items: center;
     justify-content: center;
     overflow: hidden;
     clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
     opacity: 0;
     transform: translateY(40px);
     transition: opacity 1.2s ease 0.3s, transform 1.2s cubic-bezier(0.77, 0, 0.175, 1) 0.3s;
 }

 body.loaded .about-hero {
     opacity: 1;
     transform: translateY(0);
 }

 .certificate-hero-bg {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-image: url('../image/certificate.webp');
     background-size: cover;
     background-position: center;
     background-attachment: fixed;
     animation: slowZoom 20s linear infinite alternate;
 }

 @keyframes slowZoom {
     0% {
         transform: scale(1);
     }

     100% {
         transform: scale(1.15);
     }
 }

 .about-hero-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(to right, rgba(15, 23, 18, 0.95) 0%, rgba(15, 23, 18, 0.5) 100%);
 }

 .about-hero-content {
     position: relative;
     z-index: 2;
     text-align: center;
     color: white;
     padding: 0 20px;
 }

 .about-title {
     font-size: clamp(3rem, 6vw, 5rem);
     font-weight: 900;
     letter-spacing: -1px;
     margin-bottom: 20px;
     background: linear-gradient(135deg, #ffffff 0%, #a3e6b5 100%);
     /* SOLVED ERROR: Added standard background-clip property alongside webkit */
     -webkit-background-clip: text;
     background-clip: text;
     -webkit-text-fill-color: transparent;
 }

 /* --- STAGGERED PRODUCTS SHOWCASE SECTION --- */
 .products-showcase {
     padding: 100px 0;
     background-color: #fafafa;
     position: relative;
 }

 .section-subtitle {
     color: var(--primary-green);
     text-transform: uppercase;
     letter-spacing: 2px;
     font-size: 14px;
     font-weight: 700;
     display: flex;
     align-items: center;
     gap: 10px;
     margin-bottom: 15px;
 }

 .section-subtitle::before {
     content: "";
     width: 30px;
     height: 2px;
     background-color: var(--primary-green);
 }

 .section-title {
     font-size: clamp(2rem, 4vw, 3rem);
     font-weight: 800;
     margin-bottom: 30px;
     color: var(--text-dark);
     line-height: 1.2;
     letter-spacing: -1px;
 }

 .prod-card-wrap {
     margin-bottom: 120px;
     display: flex;
     align-items: center;
     position: relative;
     z-index: 1;
 }

 /* Alternate Layout */
 .prod-card-wrap:nth-child(even) {
     flex-direction: row-reverse;
 }

 .prod-img-col {
     border-radius: 30px;
     overflow: hidden;
     box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
     position: relative;
     z-index: 1;
 }

 .prod-img {
     width: 100%;
     height: auto;
     object-fit: cover;
     transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
     display: block;
 }

 .prod-card-wrap:hover .prod-img {
     transform: scale(1.05);
 }

 .prod-content-col {
     background: rgba(255, 255, 255, 0.95);
     backdrop-filter: blur(20px);
     -webkit-backdrop-filter: blur(20px);
     padding: 50px;
     border-radius: 30px;
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
     border: 1px solid rgba(255, 255, 255, 1);
     position: relative;
     z-index: 2;
     transition: all 0.4s ease;
     border-top: 4px solid transparent;
 }

 .prod-card-wrap:hover .prod-content-col {
     transform: translateY(-10px);
     box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
     border-top: 4px solid var(--primary-green);
 }

 /* Large Background Numbers */
 .prod-index {
     position: absolute;
     top: -40px;
     font-size: 8rem;
     font-weight: 900;
     color: transparent;
     -webkit-text-stroke: 2px rgba(30, 123, 59, 0.08);
     line-height: 1;
     z-index: 0;
     pointer-events: none;
     user-select: none;
 }

 .prod-card-wrap:nth-child(odd) .prod-index {
     left: 30px;
 }

 .prod-card-wrap:nth-child(even) .prod-index {
     right: 30px;
 }

 .prod-title {
     font-size: 2rem;
     font-weight: 800;
     color: var(--text-dark);
     margin-bottom: 15px;
     letter-spacing: -0.5px;
 }

 .prod-desc {
     color: var(--text-muted);
     font-size: 1.05rem;
     line-height: 1.7;
     margin-bottom: 25px;
 }

 .prod-tags {
     display: flex;
     flex-wrap: wrap;
     gap: 10px;
     margin-bottom: 35px;
 }

 .prod-tag {
     background-color: var(--light-green);
     color: var(--primary-green);
     padding: 8px 16px;
     border-radius: 50px;
     font-size: 0.85rem;
     font-weight: 700;
     display: inline-flex;
     align-items: center;
     gap: 6px;
 }

 /* Responsive Desktop Overlap */
 @media (min-width: 992px) {
     .prod-card-wrap:nth-child(odd) .prod-content-col {
         margin-left: -80px;
     }

     .prod-card-wrap:nth-child(even) .prod-content-col {
         margin-right: -80px;
     }
 }

 @media (max-width: 991px) {
     .prod-card-wrap {
         flex-direction: column !important;
         margin-bottom: 80px;
     }

     .prod-content-col {
         margin-top: -60px;
         margin-left: 15px !important;
         margin-right: 15px !important;
         padding: 40px 30px;
     }

     .prod-img {
         height: 350px;
     }
 }

 /* --- FOOTER (Monolithic) --- */
 .neo-footer {
     background: #09100b;
     color: #ffffff;
     padding: 100px 0 30px 0;
     position: relative;
     overflow: hidden;
     border-top-left-radius: 60px;
     border-top-right-radius: 60px;
     z-index: 10;
     box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.5);
 }

 .neo-footer::before {
     content: '';
     position: absolute;
     top: -150px;
     left: 50%;
     transform: translateX(-50%);
     width: 80%;
     height: 300px;
     background: radial-gradient(ellipse, rgba(30, 123, 59, 0.3) 0%, transparent 70%);
     pointer-events: none;
     z-index: 0;
 }

 .neo-footer-content {
     position: relative;
     z-index: 1;
 }

 .neo-cta-text {
     font-size: 1.2rem;
     text-transform: uppercase;
     letter-spacing: 3px;
     color: var(--primary-green);
     font-weight: 700;
     margin-bottom: 20px;
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .neo-massive-mail {
     font-size: clamp(3rem, 7vw, 7rem);
     font-weight: 900;
     color: #ffffff;
     text-decoration: none;
     line-height: 1;
     letter-spacing: -2px;
     display: inline-block;
     transition: color 0.4s ease;
     word-break: break-word;
 }

 .neo-massive-mail:hover {
     color: var(--primary-green);
 }

 .neo-footer-grid {
     display: grid;
     grid-template-columns: 2fr 1fr 1fr 1fr;
     gap: 40px;
     margin-top: 80px;
     padding-top: 60px;
     border-top: 1px solid rgba(255, 255, 255, 0.1);
 }

 .neo-footer-col h5 {
     font-size: 1.1rem;
     font-weight: 700;
     margin-bottom: 25px;
     color: #ffffff;
     letter-spacing: 0.5px;
 }

 .neo-footer-link {
     color: rgba(255, 255, 255, 0.6);
     text-decoration: none;
     display: block;
     margin-bottom: 15px;
     font-size: 0.95rem;
     font-weight: 500;
     transition: all 0.3s ease;
     position: relative;
     width: fit-content;
 }

 .neo-footer-link::after {
     content: '';
     position: absolute;
     left: 0;
     bottom: -2px;
     width: 0;
     height: 1px;
     background: var(--primary-green);
     transition: width 0.3s ease;
 }

 .neo-footer-link:hover {
     color: #ffffff;
     transform: translateX(5px);
 }

 .neo-footer-link:hover::after {
     width: 100%;
 }

 .neo-social-btn {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     width: 40px;
     height: 40px;
     background: rgba(255, 255, 255, 0.05);
     border-radius: 50%;
     color: white;
     text-decoration: none;
     margin-right: 10px;
     transition: all 0.3s ease;
     border: 1px solid rgba(255, 255, 255, 0.1);
 }

 .neo-social-btn:hover {
     background: var(--primary-green);
     border-color: var(--primary-green);
     transform: translateY(-5px);
     box-shadow: 0 10px 20px rgba(30, 123, 59, 0.4);
 }

 .neo-bottom-bar {
     margin-top: 80px;
     padding-top: 30px;
     border-top: 1px solid rgba(255, 255, 255, 0.05);
     display: flex;
     justify-content: space-between;
     align-items: center;
     color: rgba(255, 255, 255, 0.4);
     font-size: 0.85rem;
 }

 .neo-huge-brand {
     font-size: 18vw;
     font-weight: 900;
     color: rgba(255, 255, 255, 0.02);
     text-align: center;
     line-height: 0.8;
     margin-top: 40px;
     pointer-events: none;
     user-select: none;
     letter-spacing: -2vw;
 }

 @media (max-width: 991px) {
     .neo-footer-grid {
         grid-template-columns: 1fr 1fr;
         gap: 40px;
         margin-top: 60px;
         padding-top: 40px;
     }

     .neo-footer-col:first-child {
         grid-column: span 2;
     }

     .neo-massive-mail {
         font-size: 10vw;
     }

     .neo-bottom-bar {
         flex-direction: column;
         gap: 20px;
         text-align: center;
         margin-top: 60px;
     }

     .neo-footer {
         border-top-left-radius: 40px;
         border-top-right-radius: 40px;
         padding-top: 60px;
     }
 }

 @media (max-width: 576px) {
     .neo-footer-grid {
         grid-template-columns: 1fr;
     }

     .neo-footer-col:first-child {
         grid-column: span 1;
     }

     .neo-huge-brand {
         margin-top: 20px;
         letter-spacing: -1vw;
     }
 }





 :root {
     --primary-green: #1e7b3b;
     --light-green: #e9f2eb;
     --dark-bg: #0f1712;
     --text-dark: #222222;
     --text-muted: #666666;
     --accent-green: #28a745;
 }

 body {
     font-family: 'Inter', sans-serif;
     color: var(--text-dark);
     overflow-x: hidden;
     background-color: #fafafa;
     transition: background-color 0.5s ease;
     cursor: none;
 }

 body.loading-active {
     overflow: hidden !important;
     height: 100vh;
 }

 a,
 button,
 input,
 textarea,
 .feature-bento-card,
 .eco-gallery-wrapper,
 .eco-bento-card {
     cursor: none !important;
 }

 html {
     scroll-behavior: smooth;
 }

 /* Utility Classes */
 .text-primary-green {
     color: var(--primary-green) !important;
 }

 .bg-primary-green {
     background-color: var(--primary-green) !important;
 }

 .bg-light-green {
     background-color: var(--light-green) !important;
 }

 .hover-white:hover {
     color: #ffffff !important;
 }

 /* --- PRELOADER (Counter & Slide Up) --- */
 #preloader {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100vh;
     background-color: #ffffff;
     z-index: 100000;
     display: flex;
     align-items: center;
     justify-content: center;
     flex-direction: column;
     transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1), border-radius 1.2s cubic-bezier(0.77, 0, 0.175, 1);
     border-radius: 0;
 }

 body.loaded #preloader {
     transform: translateY(-150%);
     border-radius: 0 0 50% 50%;
 }

 .preloader-content {
     display: flex;
     flex-direction: column;
     align-items: center;
     width: 280px;
     max-width: 80%;
     transition: opacity 0.5s ease, transform 0.5s ease;
 }

 body.loaded .preloader-content {
     opacity: 0;
     transform: translateY(-30px);
 }

 .preloader-brand {
     font-size: 2.5rem;
     font-weight: 900;
     color: var(--text-dark);
     margin-bottom: 25px;
     letter-spacing: -0.5px;
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .preloader-brand i {
     font-size: 2.2rem;
     color: var(--text-dark);
 }

 .preloader-brand span {
     color: var(--text-dark);
 }

 .preloader-divider {
     width: 100%;
     height: 3px;
     background-color: rgba(0, 0, 0, 0.05);
     position: relative;
     margin-bottom: 20px;
     overflow: hidden;
     border-radius: 2px;
 }

 .preloader-progress {
     position: absolute;
     top: 0;
     left: 0;
     height: 100%;
     width: 0%;
     background-color: var(--primary-green);
     transition: width 0.1s linear;
 }

 .preloader-counter {
     font-size: 4.5rem;
     font-weight: 400;
     color: var(--text-dark);
     line-height: 1;
     font-variant-numeric: tabular-nums;
 }

 /* --- CUSTOM MOUSE EFFECT --- */
 .cursor-dot {
     width: 8px;
     height: 8px;
     background-color: var(--primary-green);
     position: fixed;
     top: 0;
     left: 0;
     transform: translate(-50%, -50%);
     border-radius: 50%;
     z-index: 9999;
     pointer-events: none;
 }

 .cursor-outline {
     width: 40px;
     height: 40px;
     border: 2px solid rgba(30, 123, 59, 0.5);
     position: fixed;
     top: 0;
     left: 0;
     transform: translate(-50%, -50%);
     border-radius: 50%;
     z-index: 9998;
     pointer-events: none;
     transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
 }

 .cursor-outline.hover-active {
     width: 60px;
     height: 60px;
     background-color: rgba(30, 123, 59, 0.1);
     border-color: transparent;
 }

 @media (max-width: 991px) {

     .cursor-dot,
     .cursor-outline {
         display: none !important;
     }

     body,
     a,
     button,
     input,
     textarea,
     .feature-bento-card,
     .eco-gallery-wrapper,
     .eco-bento-card {
         cursor: auto !important;
     }

     a,
     button,
     .feature-bento-card,
     .eco-gallery-wrapper,
     .eco-bento-card {
         cursor: pointer !important;
     }
 }

 /* --- NAVIGATION --- */
 .premium-capsule-nav {
     position: fixed;
     top: -100px;
     left: 50%;
     transform: translateX(-50%);
     background: rgba(255, 255, 255, 0.92);
     backdrop-filter: blur(25px);
     -webkit-backdrop-filter: blur(25px);
     border-radius: 100px;
     box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06), inset 0 0 0 1px rgba(255, 255, 255, 0.5), inset 0 0 0 1px rgba(30, 123, 59, 0.1);
     display: flex;
     align-items: center;
     padding: 8px 12px 8px 24px;
     z-index: 1050;
     width: max-content;
     max-width: 96%;
     opacity: 0;
     transition: top 1s cubic-bezier(0.77, 0, 0.175, 1), opacity 1s ease, box-shadow 0.4s, transform 0.4s;
 }

 body.loaded .premium-capsule-nav {
     top: 25px;
     opacity: 1;
 }

 .premium-capsule-nav:hover {
     box-shadow: 0 18px 50px rgba(30, 123, 59, 0.12), inset 0 0 0 1px rgba(255, 255, 255, 0.8), inset 0 0 1px rgba(30, 123, 59, 0.25);
     transform: translateX(-50%) translateY(-2px);
 }

 .nav-logo-section {
     padding-right: 25px;
     display: flex;
     align-items: center;
     position: relative;
 }

 .nav-logo-section::after {
     content: '';
     position: absolute;
     right: 0;
     top: 50%;
     transform: translateY(-50%);
     height: 24px;
     width: 2px;
     background: rgba(0, 0, 0, 0.08);
     border-radius: 2px;
 }

 .nav-links-section {
     display: flex;
     align-items: center;
     padding: 0 25px;
     gap: 6px;
     position: relative;
 }

 .nav-links-section::after {
     content: '';
     position: absolute;
     right: 0;
     top: 50%;
     transform: translateY(-50%);
     height: 24px;
     width: 2px;
     background: rgba(0, 0, 0, 0.08);
     border-radius: 2px;
 }

 .nav-capsule-link {
     font-weight: 600;
     font-size: 0.95rem;
     color: var(--text-dark);
     text-decoration: none;
     padding: 10px 20px;
     border-radius: 40px;
     transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
     position: relative;
     z-index: 1;
 }

 .nav-capsule-link:hover,
 .nav-capsule-link.active {
     color: var(--primary-green);
     background: var(--light-green);
     transform: scale(1.05);
 }

 .nav-action-section {
     display: flex;
     align-items: center;
     padding-left: 20px;
     gap: 20px;
 }

 .nav-contact-text {
     font-weight: 700;
     font-size: 1.05rem;
     display: flex;
     align-items: center;
     gap: 10px;
     color: var(--text-dark);
     letter-spacing: 0.2px;
 }

 .icon-pulse-wrapper {
     position: relative;
     width: 34px;
     height: 34px;
     background: var(--light-green);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--primary-green);
 }

 .icon-pulse-wrapper::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: var(--primary-green);
     border-radius: 50%;
     z-index: -1;
     opacity: 0.3;
     animation: pulse-glow-btn 2s infinite;
 }

 @keyframes pulse-glow-btn {
     0% {
         transform: scale(1);
         opacity: 0.4;
     }

     70% {
         transform: scale(1.5);
         opacity: 0;
     }

     100% {
         transform: scale(1);
         opacity: 0;
     }
 }

 .nav-action-btn {
     background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-green) 100%);
     color: white;
     border: none;
     padding: 12px 28px;
     border-radius: 40px;
     font-weight: 600;
     font-size: 0.95rem;
     text-decoration: none;
     display: flex;
     align-items: center;
     gap: 8px;
     transition: all 0.3s ease;
     box-shadow: 0 4px 15px rgba(30, 123, 59, 0.25);
 }

 .nav-action-btn:hover {
     color: white;
     box-shadow: 0 6px 20px rgba(30, 123, 59, 0.4);
     transform: translateY(-2px);
 }

 .mobile-menu-btn {
     display: none;
     background: var(--light-green);
     border: none;
     height: 44px;
     width: 44px;
     border-radius: 50%;
     font-size: 1.2rem;
     color: var(--primary-green);
     cursor: pointer;
     transition: all 0.3s;
 }

 .mobile-dropdown-capsule {
     background: rgba(255, 255, 255, 0.95);
     backdrop-filter: blur(25px);
     -webkit-backdrop-filter: blur(25px);
     border-radius: 30px;
     box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
     border: 1px solid rgba(255, 255, 255, 0.8);
     padding: 20px;
     margin-top: 15px;
 }

 .mobile-dropdown-capsule .nav-capsule-link {
     display: block;
     margin-bottom: 5px;
     padding: 12px 20px;
     border-radius: 16px;
 }

 @media (max-width: 1199px) {
     .premium-capsule-nav {
         width: 92%;
         justify-content: space-between;
         padding: 10px 15px 10px 20px;
     }

     .nav-links-section,
     .nav-action-section {
         display: none !important;
     }

     .mobile-menu-btn {
         display: flex;
         align-items: center;
         justify-content: center;
     }

     .nav-logo-section {
         padding-right: 0;
     }

     .nav-logo-section::after {
         display: none;
     }
 }

 /* --- BUTTON CUSTOM MATCHING IMAGE --- */
 .btn-solid-green {
     background-color: #2b9044;
     color: #ffffff;
     border-radius: 50px;
     padding: 14px 38px;
     font-weight: 700;
     font-size: 1.15rem;
     border: none;
     box-shadow: 0 10px 25px rgba(43, 144, 68, 0.35);
     transition: all 0.3s ease;
     text-decoration: none;
     display: inline-flex;
     align-items: center;
 }

 .btn-solid-green:hover {
     background-color: #237a39;
     box-shadow: 0 12px 30px rgba(43, 144, 68, 0.45);
     color: #ffffff;
     transform: translateY(-2px);
 }

 /* --- HERO SECTION --- */
 .about-hero {
     position: relative;
     height: 65vh;
     min-height: 500px;
     background-color: var(--dark-bg);
     display: flex;
     align-items: center;
     justify-content: center;
     overflow: hidden;
     clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
     opacity: 0;
     transform: translateY(40px);
     transition: opacity 1.2s ease 0.3s, transform 1.2s cubic-bezier(0.77, 0, 0.175, 1) 0.3s;
 }

 body.loaded .about-hero {
     opacity: 1;
     transform: translateY(0);
 }

 .contact-hero-bg {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     /* Industrial Factory Image */
     background-image: url('../image/contact-bg.webp');
     background-size: cover;
     background-position: center;
     background-attachment: fixed;
     animation: slowZoom 20s linear infinite alternate;
 }

 @keyframes slowZoom {
     0% {
         transform: scale(1);
     }

     100% {
         transform: scale(1.15);
     }
 }

 .about-hero-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(to right, rgba(15, 23, 18, 0.95) 0%, rgba(15, 23, 18, 0.5) 100%);
 }

 .about-hero-content {
     position: relative;
     z-index: 2;
     text-align: center;
     color: white;
     padding: 0 20px;
 }

 .about-title {
     font-size: clamp(3rem, 6vw, 5rem);
     font-weight: 900;
     letter-spacing: -1px;
     margin-bottom: 20px;
     background: linear-gradient(135deg, #ffffff 0%, #a3e6b5 100%);
     /* FIXED ERROR HERE: Added standard background-clip & color properties */
     -webkit-background-clip: text;
     background-clip: text;
     -webkit-text-fill-color: transparent;
     color: transparent;
 }

 /* --- SECTION: ECO-CONSCIOUS CHOICE (Matched Design) --- */
 .eco-layout-section {
     padding: 120px 0;
     background-color: #ffffff;
     position: relative;
     overflow: hidden;
 }

 .eco-top-label {
     display: flex;
     align-items: center;
     gap: 12px;
     margin-bottom: 20px;
     font-weight: 700;
     color: var(--text-muted);
     font-size: 0.95rem;
     letter-spacing: 0.5px;
     text-transform: none;
 }

 .label-shapes {
     display: flex;
     align-items: center;
     gap: 4px;
 }

 .shape-circle {
     width: 14px;
     height: 14px;
     border-radius: 50%;
     background-color: #a3e635;
     /* bright green accent */
 }

 .shape-semi {
     width: 14px;
     height: 14px;
     border-radius: 0 14px 14px 0;
     background-color: var(--dark-bg);
 }

 .eco-main-title {
     font-size: clamp(2.5rem, 4vw, 3.8rem);
     font-weight: 900;
     color: var(--text-dark);
     line-height: 1.15;
     margin-bottom: 25px;
     letter-spacing: -1px;
 }

 .eco-desc {
     color: var(--text-muted);
     font-size: 1.05rem;
     line-height: 1.7;
     margin-bottom: 40px;
     max-width: 500px;
 }

 .eco-actions {
     display: flex;
     align-items: center;
     gap: 30px;
     flex-wrap: wrap;
 }

 .eco-sec-link {
     color: var(--text-muted);
     font-weight: 600;
     text-decoration: underline;
     text-underline-offset: 6px;
     text-decoration-thickness: 2px;
     transition: color 0.3s;
 }

 .eco-sec-link:hover {
     color: var(--primary-green);
 }

 .eco-gallery-wrapper {
     position: relative;
     width: 100%;
     max-width: 550px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 20px;
 }

 .eco-img {
     width: 100%;
     object-fit: cover;
     transition: transform 0.5s ease;
     filter: grayscale(40%);
     /* Slight grayscale for professional aesthetic */
 }

 .eco-img:hover {
     filter: grayscale(0%);
     transform: scale(1.02);
 }

 .eco-img-tall {
     height: 100%;
     min-height: 450px;
     border-radius: 20px 100px 20px 100px;
 }

 .eco-img-stack {
     display: flex;
     flex-direction: column;
     gap: 20px;
 }

 .eco-img-top {
     height: 215px;
     border-radius: 100px 20px 100px 20px;
 }

 .eco-img-bottom {
     height: 215px;
     border-radius: 20px 100px 20px 100px;
 }

 .eco-circ-badge {
     position: absolute;
     bottom: 40px;
     left: -50px;
     /* Overlaps bottom left */
     width: 130px;
     height: 130px;
     background-color: var(--dark-bg);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     z-index: 5;
     box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
 }

 .eco-circ-badge-text {
     position: absolute;
     width: 100%;
     height: 100%;
     animation: spin-slow 12s linear infinite;
 }

 @keyframes spin-slow {
     100% {
         transform: rotate(360deg);
     }
 }

 .eco-circ-badge-inner {
     width: 45px;
     height: 45px;
     background-color: #a3e635;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--dark-bg);
     font-size: 1.2rem;
     z-index: 6;
 }

 .eco-sparkle {
     position: absolute;
     bottom: -15px;
     right: -15px;
     color: #a3e635;
     font-size: 3rem;
     z-index: 5;
     animation: pulse-glow-btn 2s infinite;
 }

 @media (max-width: 991px) {
     .eco-circ-badge {
         left: -10px;
         bottom: -20px;
         width: 100px;
         height: 100px;
     }

     .eco-circ-badge-inner {
         width: 35px;
         height: 35px;
         font-size: 1rem;
     }

     .eco-gallery-wrapper {
         margin-top: 50px;
     }

     .eco-img-tall {
         min-height: 350px;
     }

     .eco-img-top,
     .eco-img-bottom {
         height: 165px;
     }
 }

 /* --- SECTION: OUR ECO PRINCIPLES (Modern Bento Grid with Image Details) --- */
 .eco-bento-section {
     background-color: #ffffff;
     padding: 100px 0;
     position: relative;
 }

 .eco-bento-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 25px;
 }

 .eco-span-1 {
     grid-column: span 1;
 }

 .eco-span-2 {
     grid-column: span 2;
 }

 .eco-bento-card {
     border-radius: 35px;
     padding: 45px;
     position: relative;
     overflow: hidden;
     transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
     display: flex;
     flex-direction: column;
     justify-content: space-between;
 }

 .eco-bento-card:hover {
     transform: translateY(-8px);
 }

 .eco-bento-green {
     background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-green) 100%);
     box-shadow: 0 20px 40px rgba(30, 123, 59, 0.2);
 }

 .eco-bento-green:hover {
     box-shadow: 0 30px 50px rgba(30, 123, 59, 0.3);
 }

 .eco-bento-white {
     background: #ffffff;
     border: 1px solid rgba(0, 0, 0, 0.05);
     box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
 }

 .eco-bento-white:hover {
     box-shadow: 0 25px 45px rgba(0, 0, 0, 0.06);
     border-color: rgba(30, 123, 59, 0.2);
 }

 .eco-bento-light {
     background: var(--light-green);
     box-shadow: 0 15px 35px rgba(30, 123, 59, 0.05);
 }

 .eco-bento-light:hover {
     box-shadow: 0 25px 45px rgba(30, 123, 59, 0.1);
 }

 .eco-bento-dark {
     background: var(--dark-bg);
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
 }

 .eco-bento-dark:hover {
     box-shadow: 0 30px 50px rgba(0, 0, 0, 0.25);
     border-color: var(--primary-green);
 }

 .eco-bento-bg-icon {
     position: absolute;
     right: -10%;
     bottom: -20%;
     font-size: 18rem;
     color: rgba(255, 255, 255, 0.05);
     transform: rotate(-15deg);
     pointer-events: none;
     transition: all 0.6s ease;
 }

 .eco-bento-green:hover .eco-bento-bg-icon {
     transform: rotate(0deg) scale(1.1);
     color: rgba(255, 255, 255, 0.1);
 }

 .eco-bento-content {
     position: relative;
     z-index: 2;
 }

 .eco-bento-icon-wrap {
     width: 65px;
     height: 65px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.5rem;
     margin-bottom: 25px;
     background: rgba(255, 255, 255, 0.2);
     color: white;
 }

 /* Specific Icon Colors for different cards */
 .eco-bento-white .eco-bento-icon-wrap {
     background: var(--light-green);
     color: var(--primary-green);
 }

 .eco-bento-light .eco-bento-icon-wrap {
     background: var(--primary-green);
     color: white;
 }

 .eco-bento-dark .eco-bento-icon-wrap {
     background: white;
     color: var(--dark-bg);
 }

 .eco-bento-title {
     font-size: 1.7rem;
     font-weight: 800;
     margin-bottom: 15px;
     letter-spacing: -0.5px;
 }

 .eco-bento-desc {
     font-size: 1rem;
     line-height: 1.6;
     margin-bottom: 0;
 }

 /* Spin hover effect */
 .eco-bento-card:hover .spin-on-hover {
     animation: spin-fast 2s linear infinite;
 }

 @keyframes spin-fast {
     100% {
         transform: rotate(360deg);
     }
 }

 /* Recycle Circle Anim */
 .recycle-circle-anim {
     width: 120px;
     height: 120px;
     border-radius: 50%;
     border: 4px dashed var(--primary-green);
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.8rem;
     font-weight: 900;
     color: white;
     animation: slow-spin-border 8s linear infinite;
     position: relative;
 }

 .recycle-circle-anim span {
     animation: slow-spin-border-reverse 8s linear infinite;
     /* keep text upright */
 }

 @keyframes slow-spin-border {
     100% {
         transform: rotate(360deg);
     }
 }

 @keyframes slow-spin-border-reverse {
     100% {
         transform: rotate(-360deg);
     }
 }

 @media (max-width: 991px) {
     .eco-bento-grid {
         grid-template-columns: 1fr;
     }

     .eco-span-2,
     .eco-span-1 {
         grid-column: span 1;
     }

     .recycle-circle-anim {
         display: none;
     }
 }


 /* --- SECTION: WHY US (Bright Bento Grid) --- */
 .why-us-section {
     padding: 100px 0;
     background-color: #fafafa;
 }

 .feature-bento-card {
     background: white;
     border-radius: 30px;
     padding: 40px;
     box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
     height: 100%;
     transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
     border: 1px solid rgba(0, 0, 0, 0.02);
     text-align: center;
 }

 .feature-bento-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 25px 50px rgba(30, 123, 59, 0.08);
     border-color: rgba(30, 123, 59, 0.1);
 }

 /* --- FOOTER (Monolithic) --- */
 .neo-footer {
     background: #09100b;
     color: #ffffff;
     padding: 100px 0 30px 0;
     position: relative;
     overflow: hidden;
     border-top-left-radius: 60px;
     border-top-right-radius: 60px;
     z-index: 10;
     box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.5);
 }

 .neo-footer::before {
     content: '';
     position: absolute;
     top: -150px;
     left: 50%;
     transform: translateX(-50%);
     width: 80%;
     height: 300px;
     background: radial-gradient(ellipse, rgba(30, 123, 59, 0.3) 0%, transparent 70%);
     pointer-events: none;
     z-index: 0;
 }

 .neo-footer-content {
     position: relative;
     z-index: 1;
 }

 .neo-cta-text {
     font-size: 1.2rem;
     text-transform: uppercase;
     letter-spacing: 3px;
     color: var(--primary-green);
     font-weight: 700;
     margin-bottom: 20px;
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .neo-massive-mail {
     font-size: clamp(3rem, 7vw, 7rem);
     font-weight: 900;
     color: #ffffff;
     text-decoration: none;
     line-height: 1;
     letter-spacing: -2px;
     display: inline-block;
     transition: color 0.4s ease;
     word-break: break-word;
 }

 .neo-massive-mail:hover {
     color: var(--primary-green);
 }

 .neo-footer-grid {
     display: grid;
     grid-template-columns: 2fr 1fr 1fr 1fr;
     gap: 40px;
     margin-top: 80px;
     padding-top: 60px;
     border-top: 1px solid rgba(255, 255, 255, 0.1);
 }

 .neo-footer-col h5 {
     font-size: 1.1rem;
     font-weight: 700;
     margin-bottom: 25px;
     color: #ffffff;
     letter-spacing: 0.5px;
 }

 .neo-footer-link {
     color: rgba(255, 255, 255, 0.6);
     text-decoration: none;
     display: block;
     margin-bottom: 15px;
     font-size: 0.95rem;
     font-weight: 500;
     transition: all 0.3s ease;
     position: relative;
     width: fit-content;
 }

 .neo-footer-link::after {
     content: '';
     position: absolute;
     left: 0;
     bottom: -2px;
     width: 0;
     height: 1px;
     background: var(--primary-green);
     transition: width 0.3s ease;
 }

 .neo-footer-link:hover {
     color: #ffffff;
     transform: translateX(5px);
 }

 .neo-footer-link:hover::after {
     width: 100%;
 }

 .neo-social-btn {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     width: 40px;
     height: 40px;
     background: rgba(255, 255, 255, 0.05);
     border-radius: 50%;
     color: white;
     text-decoration: none;
     margin-right: 10px;
     transition: all 0.3s ease;
     border: 1px solid rgba(255, 255, 255, 0.1);
 }

 .neo-social-btn:hover {
     background: var(--primary-green);
     border-color: var(--primary-green);
     transform: translateY(-5px);
     box-shadow: 0 10px 20px rgba(30, 123, 59, 0.4);
 }

 .neo-bottom-bar {
     margin-top: 80px;
     padding-top: 30px;
     border-top: 1px solid rgba(255, 255, 255, 0.05);
     display: flex;
     justify-content: space-between;
     align-items: center;
     color: rgba(255, 255, 255, 0.4);
     font-size: 0.85rem;
 }

 .neo-huge-brand {
     font-size: 18vw;
     font-weight: 900;
     color: rgba(255, 255, 255, 0.02);
     text-align: center;
     line-height: 0.8;
     margin-top: 40px;
     pointer-events: none;
     user-select: none;
     letter-spacing: -2vw;
 }

 @media (max-width: 991px) {
     .neo-footer-grid {
         grid-template-columns: 1fr 1fr;
         gap: 40px;
         margin-top: 60px;
         padding-top: 40px;
     }

     .neo-footer-col:first-child {
         grid-column: span 2;
     }

     .neo-massive-mail {
         font-size: 10vw;
     }

     .neo-bottom-bar {
         flex-direction: column;
         gap: 20px;
         text-align: center;
         margin-top: 60px;
     }

     .neo-footer {
         border-top-left-radius: 40px;
         border-top-right-radius: 40px;
         padding-top: 60px;
     }
 }

 @media (max-width: 576px) {
     .neo-footer-grid {
         grid-template-columns: 1fr;
     }

     .neo-footer-col:first-child {
         grid-column: span 1;
     }

     .neo-huge-brand {
         margin-top: 20px;
         letter-spacing: -1vw;
     }
 }






 :root {
     --primary-green: #1e7b3b;
     --light-green: #e9f2eb;
     --dark-bg: #0f1712;
     --text-dark: #222222;
     --text-muted: #666666;
     --accent-green: #28a745;
 }

 body {
     font-family: 'Inter', sans-serif;
     color: var(--text-dark);
     overflow-x: hidden;
     background-color: #fafafa;
     transition: background-color 0.5s ease;
     cursor: none;
 }

 body.loading-active {
     overflow: hidden !important;
     height: 100vh;
 }

 a,
 button,
 input,
 textarea,
 .coverflow-item,
 .neo-footer-link {
     cursor: none !important;
 }

 html {
     scroll-behavior: smooth;
 }

 /* Utility Classes */
 .text-primary-green {
     color: var(--primary-green) !important;
 }

 .bg-primary-green {
     background-color: var(--primary-green) !important;
 }

 .bg-light-green {
     background-color: var(--light-green) !important;
 }

 .hover-white:hover {
     color: #ffffff !important;
 }

 /* --- PRELOADER (Counter & Slide Up) --- */
 #preloader {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100vh;
     background-color: #ffffff;
     z-index: 100000;
     display: flex;
     align-items: center;
     justify-content: center;
     flex-direction: column;
     transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1), border-radius 1.2s cubic-bezier(0.77, 0, 0.175, 1);
     border-radius: 0;
 }

 body.loaded #preloader {
     transform: translateY(-150%);
     border-radius: 0 0 50% 50%;
 }

 .preloader-content {
     display: flex;
     flex-direction: column;
     align-items: center;
     width: 280px;
     max-width: 80%;
     transition: opacity 0.5s ease, transform 0.5s ease;
 }

 body.loaded .preloader-content {
     opacity: 0;
     transform: translateY(-30px);
 }

 .preloader-brand {
     font-size: 2.5rem;
     font-weight: 900;
     color: var(--text-dark);
     margin-bottom: 25px;
     letter-spacing: -0.5px;
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .preloader-brand i {
     font-size: 2.2rem;
     color: var(--text-dark);
 }

 .preloader-brand span {
     color: var(--text-dark);
 }

 .preloader-divider {
     width: 100%;
     height: 3px;
     background-color: rgba(0, 0, 0, 0.05);
     position: relative;
     margin-bottom: 20px;
     overflow: hidden;
     border-radius: 2px;
 }

 .preloader-progress {
     position: absolute;
     top: 0;
     left: 0;
     height: 100%;
     width: 0%;
     background-color: var(--primary-green);
     transition: width 0.1s linear;
 }

 .preloader-counter {
     font-size: 4.5rem;
     font-weight: 400;
     color: var(--text-dark);
     line-height: 1;
     font-variant-numeric: tabular-nums;
 }

 /* --- CUSTOM MOUSE EFFECT --- */
 .cursor-dot {
     width: 8px;
     height: 8px;
     background-color: var(--primary-green);
     position: fixed;
     top: 0;
     left: 0;
     transform: translate(-50%, -50%);
     border-radius: 50%;
     z-index: 9999;
     pointer-events: none;
 }

 .cursor-outline {
     width: 40px;
     height: 40px;
     border: 2px solid rgba(30, 123, 59, 0.5);
     position: fixed;
     top: 0;
     left: 0;
     transform: translate(-50%, -50%);
     border-radius: 50%;
     z-index: 9998;
     pointer-events: none;
     transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
 }

 .cursor-outline.hover-active {
     width: 60px;
     height: 60px;
     background-color: rgba(30, 123, 59, 0.1);
     border-color: transparent;
 }

 @media (max-width: 991px) {

     .cursor-dot,
     .cursor-outline {
         display: none !important;
     }

     body,
     a,
     button,
     input,
     textarea,
     .coverflow-item,
     .neo-footer-link {
         cursor: auto !important;
     }

     a,
     button,
     .coverflow-item,
     .neo-footer-link {
         cursor: pointer !important;
     }
 }

 /* --- NAVIGATION --- */
 .premium-capsule-nav {
     position: fixed;
     top: -100px;
     left: 50%;
     transform: translateX(-50%);
     background: rgba(255, 255, 255, 0.92);
     backdrop-filter: blur(25px);
     -webkit-backdrop-filter: blur(25px);
     border-radius: 100px;
     box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06), inset 0 0 0 1px rgba(255, 255, 255, 0.5), inset 0 0 0 1px rgba(30, 123, 59, 0.1);
     display: flex;
     align-items: center;
     padding: 8px 12px 8px 24px;
     z-index: 1050;
     width: max-content;
     max-width: 96%;
     opacity: 0;
     transition: top 1s cubic-bezier(0.77, 0, 0.175, 1), opacity 1s ease, box-shadow 0.4s, transform 0.4s;
 }

 body.loaded .premium-capsule-nav {
     top: 25px;
     opacity: 1;
 }

 .premium-capsule-nav:hover {
     box-shadow: 0 18px 50px rgba(30, 123, 59, 0.12), inset 0 0 0 1px rgba(255, 255, 255, 0.8), inset 0 0 1px rgba(30, 123, 59, 0.25);
     transform: translateX(-50%) translateY(-2px);
 }

 .nav-logo-section {
     padding-right: 25px;
     display: flex;
     align-items: center;
     position: relative;
 }

 .nav-logo-section::after {
     content: '';
     position: absolute;
     right: 0;
     top: 50%;
     transform: translateY(-50%);
     height: 24px;
     width: 2px;
     background: rgba(0, 0, 0, 0.08);
     border-radius: 2px;
 }

 .nav-links-section {
     display: flex;
     align-items: center;
     padding: 0 25px;
     gap: 6px;
     position: relative;
 }

 .nav-links-section::after {
     content: '';
     position: absolute;
     right: 0;
     top: 50%;
     transform: translateY(-50%);
     height: 24px;
     width: 2px;
     background: rgba(0, 0, 0, 0.08);
     border-radius: 2px;
 }

 .nav-capsule-link {
     font-weight: 600;
     font-size: 0.95rem;
     color: var(--text-dark);
     text-decoration: none;
     padding: 10px 20px;
     border-radius: 40px;
     transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
     position: relative;
     z-index: 1;
 }

 .nav-capsule-link:hover,
 .nav-capsule-link.active {
     color: var(--primary-green);
     background: var(--light-green);
     transform: scale(1.05);
 }

 .nav-action-section {
     display: flex;
     align-items: center;
     padding-left: 20px;
     gap: 20px;
 }

 .nav-contact-text {
     font-weight: 700;
     font-size: 1.05rem;
     display: flex;
     align-items: center;
     gap: 10px;
     color: var(--text-dark);
     letter-spacing: 0.2px;
 }

 .icon-pulse-wrapper {
     position: relative;
     width: 34px;
     height: 34px;
     background: var(--light-green);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--primary-green);
 }

 .icon-pulse-wrapper::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: var(--primary-green);
     border-radius: 50%;
     z-index: -1;
     opacity: 0.3;
     animation: pulse-glow-btn 2s infinite;
 }

 @keyframes pulse-glow-btn {
     0% {
         transform: scale(1);
         opacity: 0.4;
     }

     70% {
         transform: scale(1.5);
         opacity: 0;
     }

     100% {
         transform: scale(1);
         opacity: 0;
     }
 }

 .nav-action-btn {
     background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-green) 100%);
     color: white;
     border: none;
     padding: 12px 28px;
     border-radius: 40px;
     font-weight: 600;
     font-size: 0.95rem;
     text-decoration: none;
     display: flex;
     align-items: center;
     gap: 8px;
     transition: all 0.3s ease;
     box-shadow: 0 4px 15px rgba(30, 123, 59, 0.25);
 }

 .nav-action-btn:hover {
     color: white;
     box-shadow: 0 6px 20px rgba(30, 123, 59, 0.4);
     transform: translateY(-2px);
 }

 .mobile-menu-btn {
     display: none;
     background: var(--light-green);
     border: none;
     height: 44px;
     width: 44px;
     border-radius: 50%;
     font-size: 1.2rem;
     color: var(--primary-green);
     cursor: pointer;
     transition: all 0.3s;
 }

 .mobile-dropdown-capsule {
     background: rgba(255, 255, 255, 0.95);
     backdrop-filter: blur(25px);
     -webkit-backdrop-filter: blur(25px);
     border-radius: 30px;
     box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
     border: 1px solid rgba(255, 255, 255, 0.8);
     padding: 20px;
     margin-top: 15px;
 }

 .mobile-dropdown-capsule .nav-capsule-link {
     display: block;
     margin-bottom: 5px;
     padding: 12px 20px;
     border-radius: 16px;
 }

 @media (max-width: 1199px) {
     .premium-capsule-nav {
         width: 92%;
         justify-content: space-between;
         padding: 10px 15px 10px 20px;
     }

     .nav-links-section,
     .nav-action-section {
         display: none !important;
     }

     .mobile-menu-btn {
         display: flex;
         align-items: center;
         justify-content: center;
     }

     .nav-logo-section {
         padding-right: 0;
     }

     .nav-logo-section::after {
         display: none;
     }
 }

 /* --- HERO SECTION --- */
 .about-hero {
     position: relative;
     height: 65vh;
     min-height: 500px;
     background-color: var(--dark-bg);
     display: flex;
     align-items: center;
     justify-content: center;
     overflow: hidden;
     clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
     opacity: 0;
     transform: translateY(40px);
     transition: opacity 1.2s ease 0.3s, transform 1.2s cubic-bezier(0.77, 0, 0.175, 1) 0.3s;
 }

 body.loaded .about-hero {
     opacity: 1;
     transform: translateY(0);
 }

 .about-hero-bg5 {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-image: url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
     background-size: cover;
     background-position: center;
     background-attachment: fixed;
     animation: slowZoom 20s linear infinite alternate;
 }

 @keyframes slowZoom {
     0% {
         transform: scale(1);
     }

     100% {
         transform: scale(1.15);
     }
 }

 .about-hero-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(to right, rgba(15, 23, 18, 0.95) 0%, rgba(15, 23, 18, 0.5) 100%);
 }

 .about-hero-content {
     position: relative;
     z-index: 2;
     text-align: center;
     color: white;
     padding: 0 20px;
 }

 /* FIXED ERROR: Added standard "background-clip" and "color" properties 
           to resolve the IDE warning shown in your image. 
        */
 .about-title {
     font-size: clamp(3rem, 6vw, 5rem);
     font-weight: 900;
     letter-spacing: -1px;
     margin-bottom: 20px;
     background: linear-gradient(135deg, #ffffff 0%, #a3e6b5 100%);
     -webkit-background-clip: text;
     background-clip: text;
     /* Standard Property added here */
     -webkit-text-fill-color: transparent;
     color: transparent;
     /* Standard Fallback color added here */
 }

 .subtitle-badge {
     background: rgba(255, 255, 255, 0.1);
     border: 1px solid rgba(255, 255, 255, 0.2);
     color: #ffffff;
     padding: 8px 20px;
     border-radius: 30px;
     text-transform: uppercase;
     letter-spacing: 2px;
     font-size: 13px;
     font-weight: 700;
     margin-bottom: 25px;
     display: inline-block;
 }

 /* --- UNIQUE 3D COVERFLOW GALLERY SECTION --- */
 .cert-coverflow-section {
     background-color: #f4f5f7;
     /* Very clean, soft light gray matching the image */
     padding: 100px 0 140px 0;
     position: relative;
     overflow: hidden;
 }

 .coverflow-text-display {
     text-align: center;
     margin-bottom: 50px;
     min-height: 80px;
 }

 .coverflow-title {
     color: #2b3044;
     font-size: 2.2rem;
     font-weight: 800;
     margin-bottom: 5px;
     letter-spacing: -0.5px;
     transition: opacity 0.3s ease;
 }

 .coverflow-desc {
     color: #8a94a6;
     font-size: 1.1rem;
     font-weight: 500;
     transition: opacity 0.3s ease;
     margin-bottom: 0;
 }

 .coverflow-container {
     position: relative;
     width: 100%;
     max-width: 1200px;
     height: 480px;
     margin: 0 auto;
     perspective: 1500px;
     transform-style: preserve-3d;
     display: flex;
     justify-content: center;
     align-items: center;
 }

 .coverflow-item {
     position: absolute;
     width: 320px;
     height: 480px;
     background: transparent;
     border-radius: 16px;
     transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1),
         opacity 0.6s ease, filter 0.6s ease, box-shadow 0.6s ease;
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
     backface-visibility: hidden;
     will-change: transform, opacity, filter;
 }

 .coverflow-item img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     /* Fills the card without borders, matching reference */
     border-radius: 16px;
     pointer-events: none;
     box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
     background: #ffffff;
 }

 @media (max-width: 991px) {
     .coverflow-container {
         height: 400px;
     }

     .coverflow-item {
         width: 260px;
         height: 390px;
     }
 }

 @media (max-width: 576px) {
     .coverflow-container {
         height: 320px;
     }

     .coverflow-item {
         width: 200px;
         height: 300px;
     }

     .coverflow-title {
         font-size: 1.8rem;
     }
 }

 /* --- FOOTER (Monolithic) --- */
 .neo-footer {
     background: #09100b;
     color: #ffffff;
     padding: 100px 0 30px 0;
     position: relative;
     overflow: hidden;
     border-top-left-radius: 60px;
     border-top-right-radius: 60px;
     z-index: 10;
     box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.5);
 }

 .neo-footer::before {
     content: '';
     position: absolute;
     top: -150px;
     left: 50%;
     transform: translateX(-50%);
     width: 80%;
     height: 300px;
     background: radial-gradient(ellipse, rgba(30, 123, 59, 0.3) 0%, transparent 70%);
     pointer-events: none;
     z-index: 0;
 }

 .neo-footer-content {
     position: relative;
     z-index: 1;
 }

 .neo-cta-text {
     font-size: 1.2rem;
     text-transform: uppercase;
     letter-spacing: 3px;
     color: var(--primary-green);
     font-weight: 700;
     margin-bottom: 20px;
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .neo-massive-mail {
     font-size: clamp(3rem, 7vw, 7rem);
     font-weight: 900;
     color: #ffffff;
     text-decoration: none;
     line-height: 1;
     letter-spacing: -2px;
     display: inline-block;
     transition: color 0.4s ease;
     word-break: break-word;
 }

 .neo-massive-mail:hover {
     color: var(--primary-green);
 }

 .neo-footer-grid {
     display: grid;
     grid-template-columns: 2fr 1fr 1fr 1fr;
     gap: 40px;
     margin-top: 80px;
     padding-top: 60px;
     border-top: 1px solid rgba(255, 255, 255, 0.1);
 }

 .neo-footer-col h5 {
     font-size: 1.1rem;
     font-weight: 700;
     margin-bottom: 25px;
     color: #ffffff;
     letter-spacing: 0.5px;
 }

 .neo-footer-link {
     color: rgba(255, 255, 255, 0.6);
     text-decoration: none;
     display: block;
     margin-bottom: 15px;
     font-size: 0.95rem;
     font-weight: 500;
     transition: all 0.3s ease;
     position: relative;
     width: fit-content;
 }

 .neo-footer-link::after {
     content: '';
     position: absolute;
     left: 0;
     bottom: -2px;
     width: 0;
     height: 1px;
     background: var(--primary-green);
     transition: width 0.3s ease;
 }

 .neo-footer-link:hover {
     color: #ffffff;
     transform: translateX(5px);
 }

 .neo-footer-link:hover::after {
     width: 100%;
 }

 .neo-social-btn {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     width: 40px;
     height: 40px;
     background: rgba(255, 255, 255, 0.05);
     border-radius: 50%;
     color: white;
     text-decoration: none;
     margin-right: 10px;
     transition: all 0.3s ease;
     border: 1px solid rgba(255, 255, 255, 0.1);
 }

 .neo-social-btn:hover {
     background: var(--primary-green);
     border-color: var(--primary-green);
     transform: translateY(-5px);
     box-shadow: 0 10px 20px rgba(30, 123, 59, 0.4);
 }

 .neo-bottom-bar {
     margin-top: 80px;
     padding-top: 30px;
     border-top: 1px solid rgba(255, 255, 255, 0.05);
     display: flex;
     justify-content: space-between;
     align-items: center;
     color: rgba(255, 255, 255, 0.4);
     font-size: 0.85rem;
 }

 .neo-huge-brand {
     font-size: 18vw;
     font-weight: 900;
     color: rgba(255, 255, 255, 0.02);
     text-align: center;
     line-height: 0.8;
     margin-top: 40px;
     pointer-events: none;
     user-select: none;
     letter-spacing: -2vw;
 }

 @media (max-width: 991px) {
     .neo-footer-grid {
         grid-template-columns: 1fr 1fr;
         gap: 40px;
         margin-top: 60px;
         padding-top: 40px;
     }

     .neo-footer-col:first-child {
         grid-column: span 2;
     }

     .neo-massive-mail {
         font-size: 10vw;
     }

     .neo-bottom-bar {
         flex-direction: column;
         gap: 20px;
         text-align: center;
         margin-top: 60px;
     }

     .neo-footer {
         border-top-left-radius: 40px;
         border-top-right-radius: 40px;
         padding-top: 60px;
     }
 }

 @media (max-width: 576px) {
     .neo-footer-grid {
         grid-template-columns: 1fr;
     }

     .neo-footer-col:first-child {
         grid-column: span 1;
     }

     .neo-huge-brand {
         margin-top: 20px;
         letter-spacing: -1vw;
     }
 }




 :root {
     --primary-green: #1e7b3b;
     --light-green: #e9f2eb;
     --dark-bg: #0f1712;
     --text-dark: #1a1a24;
     --text-muted: #6b7280;
     --accent-green: #28a745;
     --input-bg: #f8f9fa;
 }

 body {
     font-family: 'Inter', sans-serif;
     color: var(--text-dark);
     overflow-x: hidden;
     background-color: #ffffff;
     transition: background-color 0.5s ease;
     cursor: none;
 }

 body.loading-active {
     overflow: hidden !important;
     height: 100vh;
 }

 a,
 button,
 input,
 textarea,
 .info-card-ui,
 .live-chat-card,
 .neo-footer-link {
     cursor: none !important;
 }

 html {
     scroll-behavior: smooth;
 }

 /* Utility Classes */
 .text-primary-green {
     color: var(--primary-green) !important;
 }

 .bg-primary-green {
     background-color: var(--primary-green) !important;
 }

 .bg-light-green {
     background-color: var(--light-green) !important;
 }

 /* --- PRELOADER --- */
 #preloader {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100vh;
     background-color: #ffffff;
     z-index: 100000;
     display: flex;
     align-items: center;
     justify-content: center;
     flex-direction: column;
     transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1), border-radius 1.2s cubic-bezier(0.77, 0, 0.175, 1);
     border-radius: 0;
 }

 body.loaded #preloader {
     transform: translateY(-150%);
     border-radius: 0 0 50% 50%;
 }

 .preloader-content {
     display: flex;
     flex-direction: column;
     align-items: center;
     width: 280px;
     max-width: 80%;
     transition: opacity 0.5s ease, transform 0.5s ease;
 }

 body.loaded .preloader-content {
     opacity: 0;
     transform: translateY(-30px);
 }

 .preloader-brand {
     font-size: 2.5rem;
     font-weight: 900;
     color: var(--text-dark);
     margin-bottom: 25px;
     letter-spacing: -0.5px;
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .preloader-brand i {
     font-size: 2.2rem;
     color: var(--text-dark);
 }

 .preloader-divider {
     width: 100%;
     height: 3px;
     background-color: rgba(0, 0, 0, 0.05);
     position: relative;
     margin-bottom: 20px;
     overflow: hidden;
     border-radius: 2px;
 }

 .preloader-progress {
     position: absolute;
     top: 0;
     left: 0;
     height: 100%;
     width: 0%;
     background-color: var(--primary-green);
     transition: width 0.1s linear;
 }

 .preloader-counter {
     font-size: 4.5rem;
     font-weight: 400;
     color: var(--text-dark);
     line-height: 1;
     font-variant-numeric: tabular-nums;
 }

 /* --- CUSTOM MOUSE EFFECT --- */
 .cursor-dot {
     width: 8px;
     height: 8px;
     background-color: var(--primary-green);
     position: fixed;
     top: 0;
     left: 0;
     transform: translate(-50%, -50%);
     border-radius: 50%;
     z-index: 9999;
     pointer-events: none;
 }

 .cursor-outline {
     width: 40px;
     height: 40px;
     border: 2px solid rgba(30, 123, 59, 0.5);
     position: fixed;
     top: 0;
     left: 0;
     transform: translate(-50%, -50%);
     border-radius: 50%;
     z-index: 9998;
     pointer-events: none;
     transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
 }

 .cursor-outline.hover-active {
     width: 60px;
     height: 60px;
     background-color: rgba(30, 123, 59, 0.1);
     border-color: transparent;
 }

 @media (max-width: 991px) {

     .cursor-dot,
     .cursor-outline {
         display: none !important;
     }

     body,
     a,
     button,
     input,
     textarea,
     .info-card-ui,
     .live-chat-card {
         cursor: auto !important;
     }

     a,
     button,
     .info-card-ui,
     .live-chat-card {
         cursor: pointer !important;
     }
 }

 /* --- NAVIGATION --- */
 .premium-capsule-nav {
     position: fixed;
     top: -100px;
     left: 50%;
     transform: translateX(-50%);
     background: rgba(255, 255, 255, 0.92);
     backdrop-filter: blur(25px);
     -webkit-backdrop-filter: blur(25px);
     border-radius: 100px;
     box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06), inset 0 0 0 1px rgba(255, 255, 255, 0.5), inset 0 0 0 1px rgba(30, 123, 59, 0.1);
     display: flex;
     align-items: center;
     padding: 8px 12px 8px 24px;
     z-index: 1050;
     width: max-content;
     max-width: 96%;
     opacity: 0;
     transition: top 1s cubic-bezier(0.77, 0, 0.175, 1), opacity 1s ease, box-shadow 0.4s, transform 0.4s;
 }

 body.loaded .premium-capsule-nav {
     top: 25px;
     opacity: 1;
 }

 .premium-capsule-nav:hover {
     box-shadow: 0 18px 50px rgba(30, 123, 59, 0.12), inset 0 0 0 1px rgba(255, 255, 255, 0.8), inset 0 0 1px rgba(30, 123, 59, 0.25);
     transform: translateX(-50%) translateY(-2px);
 }

 .nav-logo-section {
     padding-right: 25px;
     display: flex;
     align-items: center;
     position: relative;
 }

 .nav-logo-section::after {
     content: '';
     position: absolute;
     right: 0;
     top: 50%;
     transform: translateY(-50%);
     height: 24px;
     width: 2px;
     background: rgba(0, 0, 0, 0.08);
     border-radius: 2px;
 }

 .nav-links-section {
     display: flex;
     align-items: center;
     padding: 0 25px;
     gap: 6px;
     position: relative;
 }

 .nav-links-section::after {
     content: '';
     position: absolute;
     right: 0;
     top: 50%;
     transform: translateY(-50%);
     height: 24px;
     width: 2px;
     background: rgba(0, 0, 0, 0.08);
     border-radius: 2px;
 }

 .nav-capsule-link {
     font-weight: 600;
     font-size: 0.95rem;
     color: var(--text-dark);
     text-decoration: none;
     padding: 10px 20px;
     border-radius: 40px;
     transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
     position: relative;
     z-index: 1;
 }

 .nav-capsule-link:hover,
 .nav-capsule-link.active {
     color: var(--primary-green);
     background: var(--light-green);
     transform: scale(1.05);
 }

 .nav-action-section {
     display: flex;
     align-items: center;
     padding-left: 20px;
     gap: 20px;
 }

 .nav-contact-text {
     font-weight: 700;
     font-size: 1.05rem;
     display: flex;
     align-items: center;
     gap: 10px;
     color: var(--text-dark);
     letter-spacing: 0.2px;
 }

 .icon-pulse-wrapper {
     position: relative;
     width: 34px;
     height: 34px;
     background: var(--light-green);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--primary-green);
 }

 .icon-pulse-wrapper::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: var(--primary-green);
     border-radius: 50%;
     z-index: -1;
     opacity: 0.3;
     animation: pulse-glow-btn 2s infinite;
 }

 @keyframes pulse-glow-btn {
     0% {
         transform: scale(1);
         opacity: 0.4;
     }

     70% {
         transform: scale(1.5);
         opacity: 0;
     }

     100% {
         transform: scale(1);
         opacity: 0;
     }
 }

 .nav-action-btn {
     background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-green) 100%);
     color: white;
     border: none;
     padding: 12px 28px;
     border-radius: 40px;
     font-weight: 600;
     font-size: 0.95rem;
     text-decoration: none;
     display: flex;
     align-items: center;
     gap: 8px;
     transition: all 0.3s ease;
     box-shadow: 0 4px 15px rgba(30, 123, 59, 0.25);
 }

 .nav-action-btn:hover {
     color: white;
     box-shadow: 0 6px 20px rgba(30, 123, 59, 0.4);
     transform: translateY(-2px);
 }

 .mobile-menu-btn {
     display: none;
     background: var(--light-green);
     border: none;
     height: 44px;
     width: 44px;
     border-radius: 50%;
     font-size: 1.2rem;
     color: var(--primary-green);
     cursor: pointer;
     transition: all 0.3s;
 }

 .mobile-dropdown-capsule {
     background: rgba(255, 255, 255, 0.95);
     backdrop-filter: blur(25px);
     -webkit-backdrop-filter: blur(25px);
     border-radius: 30px;
     box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
     border: 1px solid rgba(255, 255, 255, 0.8);
     padding: 20px;
     margin-top: 15px;
 }

 .mobile-dropdown-capsule .nav-capsule-link {
     display: block;
     margin-bottom: 5px;
     padding: 12px 20px;
     border-radius: 16px;
 }

 @media (max-width: 1199px) {
     .premium-capsule-nav {
         width: 92%;
         justify-content: space-between;
         padding: 10px 15px 10px 20px;
     }

     .nav-links-section,
     .nav-action-section {
         display: none !important;
     }

     .mobile-menu-btn {
         display: flex;
         align-items: center;
         justify-content: center;
     }

     .nav-logo-section {
         padding-right: 0;
     }

     .nav-logo-section::after {
         display: none;
     }
 }

 /* --- HERO SECTION --- */
 .about-hero {
     position: relative;
     height: 50vh;
     min-height: 400px;
     background-color: var(--dark-bg);
     display: flex;
     align-items: center;
     justify-content: center;
     overflow: hidden;
     clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
     opacity: 0;
     transform: translateY(40px);
     transition: opacity 1.2s ease 0.3s, transform 1.2s cubic-bezier(0.77, 0, 0.175, 1) 0.3s;
 }

 body.loaded .about-hero {
     opacity: 1;
     transform: translateY(0);
 }

 .about-hero-bg55 {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-image: url('https://images.unsplash.com/photo-1587293852726-70cdb56c2866?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
     background-size: cover;
     background-position: center;
     background-attachment: fixed;
     animation: slowZoom 20s linear infinite alternate;
 }

 @keyframes slowZoom {
     0% {
         transform: scale(1);
     }

     100% {
         transform: scale(1.15);
     }
 }

 .about-hero-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(to right, rgba(15, 23, 18, 0.9) 0%, rgba(15, 23, 18, 0.5) 100%);
 }

 .about-hero-content {
     position: relative;
     z-index: 2;
     text-align: center;
     color: white;
     padding: 0 20px;
 }

 .about-title {
     font-size: clamp(3rem, 6vw, 4.5rem);
     font-weight: 900;
     letter-spacing: -1px;
     margin-bottom: 20px;
     color: white;
 }

 /* --- DESIGN-MATCHED CONTACT LAYOUT --- */
 .matched-contact-section {
     background-color: #fafafa;
     padding: 80px 0 0 0;
     position: relative;
 }

 /* Title Area */
 .section-badge-ui {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     background: #ffffff;
     color: var(--primary-green);
     padding: 6px 16px;
     border-radius: 30px;
     font-size: 0.75rem;
     font-weight: 800;
     text-transform: uppercase;
     letter-spacing: 1px;
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
     margin-bottom: 20px;
 }

 .section-badge-ui::before,
 .section-badge-ui::after {
     content: '';
     width: 6px;
     height: 6px;
     border-radius: 50%;
     background-color: var(--primary-green);
 }

 .design-title {
     font-size: clamp(2.5rem, 5vw, 3.5rem);
     font-weight: 900;
     color: var(--text-dark);
     margin-bottom: 15px;
     letter-spacing: -1px;
     line-height: 1.1;
 }

 .design-subtitle {
     color: #888;
     font-size: 1rem;
     max-width: 600px;
     margin: 0 auto;
     line-height: 1.6;
 }

 /* 4 Info Cards Grid */
 .info-cards-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 20px;
     margin-top: 50px;
     margin-bottom: 100px;
 }

 .info-card-ui {
     background: #ffffff;
     border-radius: 20px;
     padding: 30px 25px;
     display: flex;
     align-items: center;
     gap: 15px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
     transition: all 0.3s ease;
     border: 1px solid rgba(0, 0, 0, 0.02);
 }

 .info-card-ui:hover {
     transform: translateY(-5px);
     box-shadow: 0 15px 40px rgba(30, 123, 59, 0.08);
     border-color: rgba(30, 123, 59, 0.1);
 }

 .info-card-icon {
     width: 45px;
     height: 45px;
     border-radius: 12px;
     background: var(--light-green);
     color: var(--primary-green);
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.1rem;
     flex-shrink: 0;
 }

 .info-card-title {
     font-size: 0.8rem;
     font-weight: 800;
     color: var(--text-muted);
     text-transform: uppercase;
     letter-spacing: 0.5px;
     margin-bottom: 4px;
 }

 .info-card-text {
     font-size: 0.95rem;
     font-weight: 700;
     color: var(--text-dark);
     margin-bottom: 0;
     line-height: 1.4;
 }

 /* Split Contact Section (Left Image + Floating Box, Right Form) */
 .reach-us-container {
     display: flex;
     align-items: center;
     flex-wrap: wrap;
     gap: 60px;
     margin-bottom: 80px;
 }

 .reach-image-col {
     flex: 1 1 45%;
     position: relative;
     padding-left: 50px;
     /* Space for the floating card to hang off the edge */
     padding-bottom: 50px;
 }

 .reach-person-img {
     width: 100%;
     height: 550px;
     object-fit: cover;
     border-radius: 30px;
     box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
     background: #ffffff;
     /* Placeholder mimics a person on a clean background */
 }

 .live-chat-card {
     position: absolute;
     bottom: 0;
     left: 0;
     background: var(--primary-green);
     color: white;
     padding: 40px 30px;
     border-radius: 30px;
     width: 260px;
     text-align: center;
     box-shadow: 0 25px 50px rgba(30, 123, 59, 0.3);
     animation: float 4s ease-in-out infinite;
 }

 @keyframes float {
     0% {
         transform: translateY(0);
     }

     50% {
         transform: translateY(-10px);
     }

     100% {
         transform: translateY(0);
     }
 }

 .live-chat-icon {
     width: 60px;
     height: 60px;
     border-radius: 50%;
     background: rgba(255, 255, 255, 0.2);
     border: 1px solid rgba(255, 255, 255, 0.4);
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.5rem;
     margin: 0 auto 20px auto;
 }

 .live-chat-title {
     font-size: 1.25rem;
     font-weight: 800;
     margin-bottom: 10px;
 }

 .live-chat-text {
     font-size: 0.85rem;
     color: rgba(255, 255, 255, 0.8);
     line-height: 1.6;
     margin-bottom: 25px;
 }

 .live-chat-btn {
     background: white;
     color: var(--primary-green);
     border: none;
     padding: 12px 30px;
     border-radius: 50px;
     font-weight: 800;
     font-size: 0.9rem;
     transition: all 0.3s ease;
     display: inline-block;
     text-decoration: none;
 }

 .live-chat-btn:hover {
     background: var(--dark-bg);
     color: white;
 }

 /* Form Column */
 .reach-form-col {
     flex: 1 1 45%;
 }

 .reach-form-title {
     font-size: 3rem;
     font-weight: 900;
     color: var(--text-dark);
     line-height: 1.15;
     margin-bottom: 40px;
     letter-spacing: -1px;
 }

 .reach-input {
     width: 100%;
     background: var(--input-bg);
     border: 2px solid transparent;
     padding: 16px 24px;
     border-radius: 12px;
     font-size: 1rem;
     color: var(--text-dark);
     font-weight: 500;
     transition: all 0.3s;
     margin-bottom: 20px;
 }

 .reach-input:focus {
     background: #ffffff;
     border-color: var(--primary-green);
     box-shadow: 0 10px 20px rgba(30, 123, 59, 0.08);
     outline: none;
 }

 .reach-input::placeholder {
     color: #a0aab2;
 }

 .reach-submit-btn {
     background: var(--primary-green);
     color: white;
     border: none;
     padding: 16px 40px;
     border-radius: 50px;
     font-size: 1rem;
     font-weight: 800;
     text-transform: uppercase;
     letter-spacing: 1px;
     transition: all 0.3s ease;
     box-shadow: 0 10px 20px rgba(30, 123, 59, 0.2);
 }

 .reach-submit-btn:hover {
     background: var(--dark-bg);
     box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
     transform: translateY(-2px);
 }

 @media (max-width: 991px) {
     .info-cards-grid {
         grid-template-columns: repeat(2, 1fr);
     }

     .reach-us-container {
         flex-direction: column;
         gap: 40px;
     }

     .reach-image-col {
         padding-left: 0;
         padding-bottom: 0;
         width: 100%;
     }

     .reach-person-img {
         height: 400px;
     }

     .live-chat-card {
         position: relative;
         width: 100%;
         margin-top: -60px;
         border-radius: 20px;
         animation: none;
     }
 }

 @media (max-width: 576px) {
     .info-cards-grid {
         grid-template-columns: 1fr;
     }
 }

 /* --- FULL WIDTH MAP --- */
 .full-map-section {
     width: 100%;
     height: 500px;
     background: #eee;
     margin-bottom: -50px;
     /* Overlapped by footer */
 }

 .full-map-section iframe {
     width: 100%;
     height: 100%;
     border: none;
     filter: grayscale(15%) contrast(1.05);
 }

 /* --- FOOTER (Monolithic) --- */
 .neo-footer {
     background: #09100b;
     color: #ffffff;
     padding: 100px 0 30px 0;
     position: relative;
     overflow: hidden;
     border-top-left-radius: 60px;
     border-top-right-radius: 60px;
     z-index: 10;
     box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.5);
 }

 .neo-footer::before {
     content: '';
     position: absolute;
     top: -150px;
     left: 50%;
     transform: translateX(-50%);
     width: 80%;
     height: 300px;
     background: radial-gradient(ellipse, rgba(30, 123, 59, 0.3) 0%, transparent 70%);
     pointer-events: none;
     z-index: 0;
 }

 .neo-footer-content {
     position: relative;
     z-index: 1;
 }

 .neo-cta-text {
     font-size: 1.2rem;
     text-transform: uppercase;
     letter-spacing: 3px;
     color: var(--primary-green);
     font-weight: 700;
     margin-bottom: 20px;
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .neo-massive-mail {
     font-size: clamp(3rem, 7vw, 7rem);
     font-weight: 900;
     color: #ffffff;
     text-decoration: none;
     line-height: 1;
     letter-spacing: -2px;
     display: inline-block;
     transition: color 0.4s ease;
     word-break: break-word;
 }

 .neo-massive-mail:hover {
     color: var(--primary-green);
 }

 .neo-footer-grid {
     display: grid;
     grid-template-columns: 2fr 1fr 1fr 1fr;
     gap: 40px;
     margin-top: 80px;
     padding-top: 60px;
     border-top: 1px solid rgba(255, 255, 255, 0.1);
 }

 .neo-footer-col h5 {
     font-size: 1.1rem;
     font-weight: 700;
     margin-bottom: 25px;
     color: #ffffff;
     letter-spacing: 0.5px;
 }

 .neo-footer-link {
     color: rgba(255, 255, 255, 0.6);
     text-decoration: none;
     display: block;
     margin-bottom: 15px;
     font-size: 0.95rem;
     font-weight: 500;
     transition: all 0.3s ease;
     position: relative;
     width: fit-content;
 }

 .neo-footer-link::after {
     content: '';
     position: absolute;
     left: 0;
     bottom: -2px;
     width: 0;
     height: 1px;
     background: var(--primary-green);
     transition: width 0.3s ease;
 }

 .neo-footer-link:hover {
     color: #ffffff;
     transform: translateX(5px);
 }

 .neo-footer-link:hover::after {
     width: 100%;
 }

 .neo-social-btn {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     width: 40px;
     height: 40px;
     background: rgba(255, 255, 255, 0.05);
     border-radius: 50%;
     color: white;
     text-decoration: none;
     margin-right: 10px;
     transition: all 0.3s ease;
     border: 1px solid rgba(255, 255, 255, 0.1);
 }

 .neo-social-btn:hover {
     background: var(--primary-green);
     border-color: var(--primary-green);
     transform: translateY(-5px);
     box-shadow: 0 10px 20px rgba(30, 123, 59, 0.4);
 }

 .neo-bottom-bar {
     margin-top: 80px;
     padding-top: 30px;
     border-top: 1px solid rgba(255, 255, 255, 0.05);
     display: flex;
     justify-content: space-between;
     align-items: center;
     color: rgba(255, 255, 255, 0.4);
     font-size: 0.85rem;
 }

 .neo-huge-brand {
     font-size: 18vw;
     font-weight: 900;
     color: rgba(255, 255, 255, 0.02);
     text-align: center;
     line-height: 0.8;
     margin-top: 40px;
     pointer-events: none;
     user-select: none;
     letter-spacing: -2vw;
 }

 @media (max-width: 991px) {
     .neo-footer-grid {
         grid-template-columns: 1fr 1fr;
         gap: 40px;
         margin-top: 60px;
         padding-top: 40px;
     }

     .neo-footer-col:first-child {
         grid-column: span 2;
     }

     .neo-massive-mail {
         font-size: 10vw;
     }

     .neo-bottom-bar {
         flex-direction: column;
         gap: 20px;
         text-align: center;
         margin-top: 60px;
     }

     .neo-footer {
         border-top-left-radius: 40px;
         border-top-right-radius: 40px;
         padding-top: 60px;
     }
 }

 @media (max-width: 576px) {
     .neo-footer-grid {
         grid-template-columns: 1fr;
     }

     .neo-footer-col:first-child {
         grid-column: span 1;
     }

     .neo-huge-brand {
         margin-top: 20px;
         letter-spacing: -1vw;
     }
 }




 /* --- DESIGN-MATCHED CONTACT LAYOUT --- */
 .matched-contact-section {
     background-color: #fafafa;
     padding: 80px 0 0 0;
     position: relative;
 }

 /* Title Area */
 .section-badge-ui {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     background: #ffffff;
     color: var(--primary-green);
     padding: 6px 16px;
     border-radius: 30px;
     font-size: 0.75rem;
     font-weight: 800;
     text-transform: uppercase;
     letter-spacing: 1px;
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
     margin-bottom: 20px;
 }

 .section-badge-ui::before,
 .section-badge-ui::after {
     content: '';
     width: 6px;
     height: 6px;
     border-radius: 50%;
     background-color: var(--primary-green);
 }

 .design-title {
     font-size: clamp(2.5rem, 5vw, 3.5rem);
     font-weight: 900;
     color: var(--text-dark);
     margin-bottom: 15px;
     letter-spacing: -1px;
     line-height: 1.1;
 }

 .design-subtitle {
     color: #888;
     font-size: 1rem;
     max-width: 700px;
     margin: 0 auto;
     line-height: 1.6;
 }

 /* --- UNIQUE REDESIGNED INFO CARDS (3 Columns) --- */
 .unique-contact-cards {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 30px;
     margin-top: 60px;
     margin-bottom: 100px;
 }

 .unique-contact-card {
     background: #ffffff;
     border-radius: 30px;
     padding: 50px 40px;
     position: relative;
     overflow: hidden;
     box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
     border: 1px solid rgba(0, 0, 0, 0.02);
     transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
     text-align: center;
     z-index: 1;
     height: 100%;
     display: flex;
     flex-direction: column;
     align-items: center;
 }

 .unique-contact-card:hover {
     transform: translateY(-15px);
     box-shadow: 0 30px 60px rgba(30, 123, 59, 0.08);
     border-color: rgba(30, 123, 59, 0.15);
 }

 /* Floating background glow */
 .card-glow-bg {
     position: absolute;
     top: -60px;
     left: 50%;
     transform: translateX(-50%);
     width: 200px;
     height: 200px;
     background: radial-gradient(circle, rgba(30, 123, 59, 0.08) 0%, transparent 70%);
     border-radius: 50%;
     z-index: -1;
     transition: all 0.6s ease;
 }

 .unique-contact-card:hover .card-glow-bg {
     transform: translateX(-50%) scale(1.5);
     background: radial-gradient(circle, rgba(30, 123, 59, 0.15) 0%, transparent 70%);
 }

 .card-icon-wrapper {
     position: relative;
     width: 90px;
     height: 90px;
     margin: 0 auto 30px auto;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 2.2rem;
     color: var(--primary-green);
 }

 /* Animated dashed halo */
 .spinning-circle {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     animation: spin-slow 15s linear infinite;
     opacity: 0.3;
     transition: opacity 0.4s ease, transform 0.4s ease;
 }

 .unique-contact-card:hover .spinning-circle {
     opacity: 1;
     animation-duration: 6s;
     transform: scale(1.1);
 }

 @keyframes spin-slow {
     100% {
         transform: rotate(360deg);
     }
 }

 .ucc-title {
     font-size: 1.4rem;
     font-weight: 800;
     color: var(--text-dark);
     margin-bottom: 15px;
     letter-spacing: -0.5px;
 }

 .ucc-text {
     font-size: 0.95rem;
     color: var(--text-muted);
     line-height: 1.6;
     margin-bottom: 0;
 }

 /* Main Split Content (Form & Image) */
 .reach-us-container {
     display: flex;
     align-items: center;
     flex-wrap: wrap;
     gap: 60px;
     margin-bottom: 80px;
 }

 .reach-image-col {
     flex: 1 1 45%;
     position: relative;
     padding-left: 50px;
     padding-bottom: 50px;
 }

 .reach-person-img {
     width: 100%;
     height: 550px;
     object-fit: cover;
     border-radius: 30px;
     box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
     background: #ffffff;
 }

 /* Floating Live Chat Card */
 .live-chat-card {
     position: absolute;
     bottom: 0;
     left: 0;
     background: var(--primary-green);
     color: white;
     padding: 40px 30px;
     border-radius: 30px;
     width: 260px;
     text-align: center;
     box-shadow: 0 25px 50px rgba(30, 123, 59, 0.3);
     animation: float 4s ease-in-out infinite;
 }

 @keyframes float {
     0% {
         transform: translateY(0);
     }

     50% {
         transform: translateY(-10px);
     }

     100% {
         transform: translateY(0);
     }
 }

 .live-chat-icon {
     width: 60px;
     height: 60px;
     border-radius: 50%;
     background: rgba(255, 255, 255, 0.2);
     border: 1px solid rgba(255, 255, 255, 0.4);
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.5rem;
     margin: 0 auto 20px auto;
 }

 .live-chat-title {
     font-size: 1.25rem;
     font-weight: 800;
     margin-bottom: 10px;
 }

 .live-chat-text {
     font-size: 0.85rem;
     color: rgba(255, 255, 255, 0.8);
     line-height: 1.6;
     margin-bottom: 25px;
 }

 .live-chat-btn {
     background: white;
     color: var(--primary-green);
     border: none;
     padding: 12px 30px;
     border-radius: 50px;
     font-weight: 800;
     font-size: 0.9rem;
     transition: all 0.3s ease;
     display: inline-block;
     text-decoration: none;
 }

 .live-chat-btn:hover {
     background: var(--dark-bg);
     color: white;
 }

 /* Form Column */
 .reach-form-col {
     flex: 1 1 45%;
 }

 .reach-form-title {
     font-size: 3rem;
     font-weight: 900;
     color: var(--text-dark);
     line-height: 1.15;
     margin-bottom: 40px;
     letter-spacing: -1px;
 }

 .reach-input {
     width: 100%;
     background: var(--input-bg);
     border: 2px solid transparent;
     padding: 16px 24px;
     border-radius: 12px;
     font-size: 1rem;
     color: var(--text-dark);
     font-weight: 500;
     transition: all 0.3s;
     margin-bottom: 20px;
 }

 .reach-input:focus {
     background: #ffffff;
     border-color: var(--primary-green);
     box-shadow: 0 10px 20px rgba(30, 123, 59, 0.08);
     outline: none;
 }

 .reach-input::placeholder {
     color: #a0aab2;
 }

 .reach-submit-btn {
     background: var(--primary-green);
     color: white;
     border: none;
     padding: 16px 40px;
     border-radius: 50px;
     font-size: 1rem;
     font-weight: 800;
     text-transform: uppercase;
     letter-spacing: 1px;
     transition: all 0.3s ease;
     box-shadow: 0 10px 20px rgba(30, 123, 59, 0.2);
 }

 .reach-submit-btn:hover {
     background: var(--dark-bg);
     box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
     transform: translateY(-2px);
 }

 /* Mobile Responsiveness */
 @media (max-width: 991px) {
     .unique-contact-cards {
         grid-template-columns: repeat(1, 1fr);
         gap: 20px;
         margin-bottom: 60px;
     }

     .unique-contact-card {
         padding: 40px 20px;
     }

     .reach-us-container {
         flex-direction: column;
         gap: 40px;
     }

     .reach-image-col {
         padding-left: 0;
         padding-bottom: 0;
         width: 100%;
     }

     .reach-person-img {
         height: 400px;
     }

     .live-chat-card {
         position: relative;
         width: 100%;
         margin-top: -60px;
         border-radius: 20px;
         animation: none;
     }
 }

 /* --- CERTIFICATIONS MARQUEE SLIDER --- */
 .cert-section {
     padding: 80px 0;
     background: #ffffff;
     overflow: hidden;
 }

 .cert-marquee-container {
     padding: 40px 0;
     width: 100%;
     overflow: hidden;
     position: relative;
 }

 .cert-marquee-content {
     display: flex;
     width: max-content;
     gap: 60px;
     animation: certMarquee 30s linear infinite;
 }

 .cert-marquee-content:hover {
     animation-play-state: paused;
 }

 .cert-marquee-item {
     flex: 0 0 auto;
     width: 320px;
     height: 450px;
     background: #f8fcf9;
     padding: 20px;
     border-radius: 12px;
     border: 1px solid rgba(43, 144, 68, 0.1);
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     transition: all 0.4s ease;
 }

 .cert-marquee-item:hover {
     transform: translateY(-10px);
     box-shadow: 0 15px 40px rgba(43, 144, 68, 0.15);
     background: #ffffff;
 }

 .cert-marquee-item img {
     max-width: 100%;
     max-height: 100%;
     object-fit: contain;
     border-radius: 4px;
 }

 .cert-info {
     margin-top: 20px;
     text-align: center;
 }

 .cert-info h5 {
     font-weight: 700;
     margin-bottom: 5px;
     color: var(--text-dark);
 }

 .cert-info p {
     font-size: 0.85rem;
     color: var(--primary-green);
     margin-bottom: 0;
 }

 @keyframes certMarquee {
     0% {
         transform: translateX(0);
     }

     100% {
         transform: translateX(-50%);
     }

     /* Scrolls precisely half of the double-content */
 }

 @media (max-width: 768px) {
     .cert-marquee-item {
         width: 260px;
         height: 380px;
     }

     .cert-marquee-content {
         gap: 30px;
     }
 }

 