:root {
    --background: #07180d; /* Deep Forest Black-Green */
    --background-alt: #0c2615; /* Dark Forest Green */
    
    --foreground: #ffffff;
    
    --primary: #ffffff;
    --primary-foreground: #07180d;
    
    --accent: #06993b; /* Pure Forest Green (Logo Color) */
    --accent-hover: #0cb448;
    
    --gradient-primary: linear-gradient(135deg, #033f23, #06993b);
    --gradient-hover: linear-gradient(135deg, #022e19, #057a2f);
    
    --text-muted: rgba(255, 255, 255, 0.7);
    --text-faded: rgba(255, 255, 255, 0.5);
    
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    
    --shadow-lift: 0 10px 30px -10px rgba(7, 24, 13, 0.5);
    --shadow-glow: 0 0 30px rgba(6, 153, 59, 0.3);
    
    --nav-height: 80px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html {
    scroll-padding-top: var(--nav-height);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Typography Utilities */
.title-lg { font-size: 2.5rem; font-weight: 700; }
.text-sm { font-size: 0.875rem; }
.text-white { color: #ffffff; }
.text-white-70 { color: var(--text-muted); }
.text-white-50 { color: var(--text-faded); }
.text-accent { background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.text-center { text-align: center; }

@media (min-width: 768px) {
    .title-lg { font-size: 3rem; }
}

/* Layout Utilities */
.section-container {
    max-w-[1200px];
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.section-padding {
    padding-top: 6rem;
    padding-bottom: 6rem;
}
.bg-alt { background-color: var(--background-alt); }
.max-w-2xl { max-width: 42rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-2 { margin-top: 0.5rem; }

.grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
.grid-4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
    .grid-2 { grid-template-columns: repeat(2, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* UI Elements */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
}

.hover-lift {
    transition: var(--transition);
}
.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lift);
}

.gradient-text {
    background: linear-gradient(135deg, #1a6e3c, #0a7c49, #52e09c, #0a7c49, #1a6e3c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 300% 100%;
    display: inline-block;
}

.animated-gradient {
    animation: gradientMove 6s ease-in-out infinite;
}

@keyframes gradientMove {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    border-radius: 0.5rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}
.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}
.btn-cta {
    background: var(--gradient-primary);
    color: var(--primary-foreground);
    position: relative;
    overflow: hidden;
}
.btn-cta:hover {
    background: var(--gradient-primary);
    transform: none;
    box-shadow: none;
    filter: none;
}
.btn-outline {
    background: transparent;
    color: var(--foreground);
    border: 1px solid var(--glass-border);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.1);
}
.w-full { width: 100%; }

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    padding: 1.5rem 0;
    transition: var(--transition);
}
.navbar.scrolled {
    background: rgba(7, 24, 13, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1rem 0;
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
}
.logo img {
    border-radius: 0.5rem;
    width: 48px;
    height: 48px;
    transition: var(--transition);
    object-fit: cover;
}
.navbar.scrolled .logo img {
    width: 40px;
    height: 40px;
}
.desktop-menu {
    display: none;
    align-items: center;
    gap: 2rem;
}
@media (min-width: 768px) {
    .desktop-menu { display: flex; }
    .menu-toggle { display: none; }
}
.nav-link {
    font-weight: 500;
    color: var(--foreground);
    position: relative;
}
.nav-link:hover {
    color: var(--accent);
}
.nav-link.active {
    color: var(--accent);
}
.menu-toggle {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}
.mobile-menu {
    display: none;
    flex-direction: column;
    background: rgba(12, 38, 21, 0.95);
    backdrop-filter: blur(16px);
    padding: 1rem;
    position: absolute;
    top: 100%;
    left: 1rem;
    right: 1rem;
    border-radius: 0.5rem;
    border: 1px solid var(--glass-border);
}
.mobile-menu.active {
    display: flex;
    animation: fadeInDown 0.3s ease forwards;
}
.mobile-link {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: var(--nav-height);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.hero-content {
    position: relative;
    z-index: 10;
}
.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    margin-bottom: 1.5rem;
}
.badge-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.badge-glow {
    animation: pulseGlow 3s infinite;
}
@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 rgba(10, 124, 73, 0); }
    50% { box-shadow: 0 0 15px rgba(10, 124, 73, 0.4); }
    100% { box-shadow: 0 0 0 rgba(10, 124, 73, 0); }
}
.hero-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
    .hero-title { font-size: 4rem; }
}
.hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.8);
    max-width: 42rem;
    margin: 0 auto 3rem;
}
.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}
.hero-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 48rem;
    margin: 0 auto;
}
@media (min-width: 768px) {
    .hero-stats { grid-template-columns: repeat(3, 1fr); }
}
.stat-card {
    padding: 1.5rem;
    border-radius: 1rem;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: default;
}
.stat-card:hover {
    transform: translateY(-10px) scale(1.05);
}
.stat-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(255,255,255,0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.25rem;
    transition: var(--transition);
}
.stat-card:hover .stat-icon {
    background: rgba(10, 124, 73, 0.2);
    transform: scale(1.1);
}
.stat-value {
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Outfit';
    margin-bottom: 0.25rem;
}
.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Particles / Orbs */
.floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    z-index: 1;
}
.orb-1 {
    top: 20%;
    left: 10%;
    width: 300px;
    height: 300px;
    background: var(--gradient-primary);
    animation: float 10s ease-in-out infinite alternate;
}
.orb-2 {
    bottom: 20%;
    right: 10%;
    width: 400px;
    height: 400px;
    background-color: #3b82f6; /* Tailwind blue-500 */
    animation: float 12s ease-in-out infinite alternate-reverse;
}
@keyframes float {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-50px) scale(1.1); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}
.mouse-wheel {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 12px;
    position: relative;
}
.wheel {
    width: 4px;
    height: 8px;
    background: var(--gradient-primary);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: wheelScroll 1.5s infinite;
}
@keyframes wheelScroll {
    0% { top: 6px; opacity: 1; }
    100% { top: 20px; opacity: 0; }
}

/* Marquee Logistics */
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 1rem 0;
}
.marquee-container::before, .marquee-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 250px;
    height: 100%;
    z-index: 2;
}
.marquee-container::before {
    left: 0;
    background: linear-gradient(to right, var(--background) 0%, transparent 100%);
}
.marquee-container::after {
    right: 0;
    background: linear-gradient(to left, var(--background) 0%, transparent 100%);
}

.marquee-container-light::before {
    background: linear-gradient(to right, #ffffff 0%, transparent 100%);
}
.marquee-container-light::after {
    background: linear-gradient(to left, #ffffff 0%, transparent 100%);
}

.marquee {
    display: flex;
    width: max-content;
    animation: marqueeScroll 30s linear infinite;
}
.marquee:hover {
    animation-play-state: paused;
}
.marquee-group {
    display: flex;
}
.logo-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-faded);
    margin: 0 3rem;
    transition: color 0.3s;
}
.logo-item:hover { color: #ffffff; }
@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Service Box */
.service-card {
    padding: 2rem;
    border-radius: 1rem;
    text-align: left;
}
.icon-box {
    width: 3.5rem;
    height: 3.5rem;
    background: rgba(10, 124, 73, 0.1);
    color: var(--accent);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}
.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}
.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Progress Steps */
.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    position: relative;
}
@media (min-width: 768px) {
    .process-steps { grid-template-columns: repeat(4, 1fr); }
    /* Connecting Line */
    .process-steps::before {
        content: '';
        position: absolute;
        top: 2rem;
        left: 0;
        right: 0;
        height: 2px;
        background: var(--glass-border);
        z-index: 0;
    }
}
.step-card {
    position: relative;
    z-index: 1;
    text-align: center;
    background: var(--background);
    padding: 1rem;
}
.step-number {
    width: 4rem;
    height: 4rem;
    background: var(--background-alt);
    border: 2px solid var(--accent);
    color: var(--accent);
    font-family: 'Outfit';
    font-weight: 700;
    font-size: 1.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 20px rgba(14,169,89,0.2);
}
.step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}
.step-card p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Form Styles */
.form-input {
    width: 100%;
    padding: 1rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--glass-border);
    border-radius: 0.75rem;
    color: white;
    font-family: 'Inter';
    margin-bottom: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(8px);
}
.form-input:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255,255,255,0.08);
    box-shadow: 0 0 0 4px rgba(10, 124, 73, 0.15);
}

.form-input.is-invalid {
    border-color: #ef4444;
}
.form-input.is-valid {
    border-color: var(--accent);
}
.validation-message {
    color: #ef4444;
    font-size: 0.75rem;
    margin-top: -0.5rem;
    margin-bottom: 0.5rem;
    display: block;
    text-align: left;
}
.cta-box {
    padding: 3rem 1.5rem;
    border-radius: 1.5rem;
}
@media (min-width: 768px) {
    .cta-box { padding: 4rem; max-width: 48rem; margin: 0 auto; text-align: center; }
}

/* Footer Styles */
.footer {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 4rem;
}
.footer-heading {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: white;
}
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a { color: var(--text-muted); font-size: 0.95rem; }
.footer-links a:hover { color: var(--accent); }
.social-links { display: flex; gap: 1rem; }
.social-links a {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}
.social-links a:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
}
.footer-bottom {
    margin-top: 4rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

/* Scroll Progress */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--gradient-primary);
    z-index: 1000;
    width: 0%;
    box-shadow: 0 0 10px var(--accent);
}

/* Animations */
.fade-up { opacity: 0; transform: translateY(30px); transition: all 0.8s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

.fade-in { opacity: 0; transition: opacity 0.8s ease; }
.fade-in.visible { opacity: 1; }

.slide-up { opacity: 0; transform: translateY(20px); transition: all 0.6s ease; }
.slide-up.visible { opacity: 1; transform: translateY(0); }

.slide-down { opacity: 0; transform: translateY(-20px); transition: all 0.6s ease; }
.slide-down.visible { opacity: 1; transform: translateY(0); }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* pr-fade - progressive reveal for section containers */
.pr-fade { opacity: 0; transform: translateY(18px); transition: opacity 0.7s ease, transform 0.7s ease; }
.pr-fade.visible { opacity: 1; transform: translateY(0); }

/* Adding initial visibility for Hero to prevent flicker before JS loads */
.hero-content {
    animation: gentleReveal 1s ease forwards;
}

@keyframes gentleReveal {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Base Utility Extensions */
.align-center { align-items: center; }
.align-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-col { display: flex; flex-direction: column; }
.flex-between { display: flex; justify-content: space-between; }
.flex-center { display: flex; justify-content: center; align-items: center; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-16 { gap: 4rem; }

/* Backgrounds & Colors */
.bg-card { background-color: rgba(255, 255, 255, 0.03); }
.bg-accent-10 { background-color: rgba(10, 124, 73, 0.1); }
.bg-white-10 { background-color: rgba(255, 255, 255, 0.1); }
.bg-white-5 { background-color: rgba(255, 255, 255, 0.05); }
.bg-white { background-color: #ffffff; }

/* Buttons */
.btn-icon {
    width: 3.5rem;
    height: 3.5rem;
    padding: 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 1.25rem;
}

/* Why Choose Us additions */
.benefits-list { display: flex; flex-direction: column; }
.benefit-item { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.mini-tag {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent);
    background: rgba(10, 124, 73, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
}
.border-white-20 { border-color: rgba(255, 255, 255, 0.2); }
.border-white-10 { border-color: rgba(255, 255, 255, 0.1); }
.text-white-80 { color: rgba(255, 255, 255, 0.8); }

/* Current Openings additions */
.job-card { position: relative; }
.job-card .tag {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    padding: 0.25rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
}

/* Testimonials Slides */
.slides-wrapper {
    position: relative;
    overflow: hidden;
}
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
    transform: translateX(50px);
}
.slide.active-slide {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}
.trans-x-0 { transform: translateX(0); }
.trans-x-100 { transform: translateX(100px); }

.quote-icon {
    position: absolute;
    top: -1.5rem;
    left: -1.5rem;
    font-size: 3rem;
    background: var(--background);
    width: 5rem;
    height: 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 1rem;
    box-shadow: var(--shadow-lift);
    transform: rotate(-10deg);
    transition: var(--transition);
}
.testimonial-card:hover .quote-icon {
    transform: rotate(0deg);
}
.rounded-img { border-radius: 1rem; border: 4px solid var(--background); box-shadow: var(--shadow-lift); }

@media (min-width: 768px) {
    .grid-2-md { display: grid; grid-template-columns: auto 1fr; gap: 2rem; align-items: flex-start; }
    .md-layout { grid-template-columns: auto 1fr; }
}

/* Form Groups / Inputs */
.form-group { margin-bottom: 1.5rem; text-align: left; }
.label { display: block; margin-bottom: 0.5rem; font-size: 0.875rem; font-weight: 500; color: var(--text-muted); }
.mb-0 { margin-bottom: 0 !important; }
.cursor-pointer { cursor: pointer; }

/* Utility */
.absolute { position: absolute; }
.relative { position: relative; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.overflow-hidden { overflow: hidden; }
.object-cover { object-fit: cover; }
.w-48 { width: 12rem; }
.h-48 { height: 12rem; }
.min-h-screen { min-height: 100vh; }
.pt-32 { padding-top: 8rem; }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.inline-block { display: inline-block; }
.flex { display: flex; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.text-2xl { font-size: 1.5rem; }
.text-xl { font-size: 1.25rem; }
.font-bold { font-weight: 700; }
.font-medium { font-weight: 500; }
.leading-relaxed { line-height: 1.625; }
.border-transparent { border-color: transparent; }
.opacity-100 { opacity: 1; }
.opacity-0 { opacity: 0; }
.pointer-events-none { pointer-events: none; }
.hidden { display: none; }
.block { display: block; }
.hover-shift:hover { transform: translateX(5px); }

/* --- Advanced Upgrades --- */
.align-start { align-items: flex-start; }
.w-full { width: 100%; }
.mt-6 { margin-top: 1.5rem; }
.whitespace-nowrap { white-space: nowrap; }

/* 3D Hover Effect */
.advanced-hover {
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
}
.advanced-hover:hover {
    transform: translateY(-12px) scale(1.05) rotateX(4deg) rotateY(4deg);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.15), 0 0 20px rgba(10, 124, 73, 0.2);
    border-color: rgba(10, 124, 73, 0.5);
    z-index: 20;
}

/* Glow Backgrounds on Cards */
.glow-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(10, 124, 73, 0.15), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}
.advanced-hover:hover .glow-bg {
    opacity: 1;
}

/* Fix Testimonial Image Size & Alignment */
.testimonial-slider .img-wrapper img {
    border-radius: 1rem;
    border: 4px solid var(--background);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    width: 200px !important;
    height: 200px !important;
    object-fit: cover;
}

/* Upscale Services (Light Theme Mode) */
.service-card-light {
    background: #ffffff;
    padding: 3rem 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 20px 40px -15px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.service-card-light:hover {
    border-color: rgba(10, 124, 73, 0.3);
}

.icon-box-light {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, rgba(10, 124, 73, 0.1), rgba(59, 130, 246, 0.1));
    color: var(--accent);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 25px -5px rgba(10, 124, 73, 0.2);
    transition: all 0.4s ease;
}
.service-card-light:hover .icon-box-light {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(10, 124, 73, 0.2), rgba(59, 130, 246, 0.2));
}
.group-hover\:translate-x-1 { transition: transform 0.3s; }
.group:hover .group-hover\:translate-x-1 { transform: translateX(4px); }
.text-gray-600 { color: #475569; }

/* Our Process Detailed Layout (Horizontal Flex) */
@media (min-width: 768px) {
    .process-steps {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        position: relative;
        gap: 1rem;
    }
    .process-steps::before {
        content: '';
        position: absolute;
        top: 2rem; /* Half of step-number height */
        left: 5%;
        right: 5%;
        height: 1px;
        background: rgba(255,255,255,0.15);
        z-index: 0;
    }
    .step-card {
        flex: 1;
        background: transparent;
        padding: 0 1rem;
    }
}
.step-number {
    position: relative;
    z-index: 2;
    background: #07180d; /* Match body to hide line behind */
    transition: all 0.3s ease;
}
.step-card:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(10, 124, 73, 0.4);
    background: rgba(10, 124, 73, 0.1);
}

