/* ============================================
   WILLINGS GLOBAL - Main Stylesheet
   ============================================ */

/* ============================================
   CSS Variables (Design Tokens)
   ============================================ */
:root {
    /* Primary Colors - Reverted to Original Parrot Green */
    --primary: hsl(110, 100%, 37%);
    --primary-foreground: hsl(0, 0%, 100%);
    --primary-light: hsl(110, 60%, 94%);
    --primary-glow: hsla(110, 100%, 37%, 0.3);

    /* Secondary Colors - Dark Green */
    --secondary: hsl(120, 100%, 17%);
    --secondary-foreground: hsl(0, 0%, 100%);

    /* Background & Foreground */
    --background: hsl(60, 30%, 98%);
    --foreground: hsl(120, 50%, 10%);

    /* Glass Effects */
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.05);

    /* Shadows */
    --shadow-soft: 0 4px 20px hsla(110, 100%, 37%, 0.1);
    --shadow-medium: 0 8px 30px hsla(110, 100%, 37%, 0.15);
    --shadow-strong: 0 15px 50px hsla(110, 100%, 37%, 0.2);
    --shadow-glow: 0 0 30px var(--primary-glow);

    /* Gradients */
    --gradient-hero: linear-gradient(135deg, hsla(110, 100%, 37%, 0.1), hsla(120, 100%, 17%, 0.05));
    --gradient-primary: linear-gradient(135deg, hsl(110, 100%, 37%), hsl(120, 100%, 17%));
    --gradient-surface: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(245, 250, 245, 1) 100%);


    /* Border Radius */
    --radius: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2.5rem;
    --radius-full: 9999px;

    /* Transitions */
    --transition-bounce: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-smooth: 0.8s cubic-bezier(0.4, 0, 0.2, 1);

}

/* ============================================
   Base Styles
   ============================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    overflow-x: hidden !important;
    width: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--foreground);
    background-color: var(--background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

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

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

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

input,
textarea {
    font-family: inherit;
    font-size: inherit;
}

ul,
ol {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* ============================================
   Utility Classes
   ============================================ */
.text-primary {
    color: var(--primary);
}

.text-muted {
    color: var(--muted-foreground);
}

/* Display Utilities */
.d-none {
    display: none !important;
}

@media (min-width: 1024px) {
    .d-lg-block {
        display: block !important;
    }

    .d-lg-flex {
        display: flex !important;
    }
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

@media (max-width: 480px) {
    .btn {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
        width: auto;
    }
}

.btn-primary {
    background: var(--primary);
    color: var(--primary-foreground);
    box-shadow: 0 4px 15px hsla(110, 100%, 37%, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px hsla(110, 100%, 37%, 0.5);
}

.btn-success {
    background: var(--secondary);
    color: var(--secondary-foreground);
    box-shadow: 0 4px 15px hsla(120, 100%, 17%, 0.4);
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px hsla(120, 100%, 17%, 0.5);
}

.btn-full {
    width: 100%;
}

/* ============================================
   Header
   ============================================ */
#main-header {
    position: relative;
    z-index: 10000;
}

.fixed-header-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9991;
    transition: all var(--transition-slow);
    padding-top: env(safe-area-inset-top, 0);
}

.fixed-header-container.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    box-shadow: var(--glass-shadow);
}

.fixed-header-container.scrolled .header-category-bar {
    max-height: 0;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    border: none;
}

.header-main-bar {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: white;
    /* Make main bar white like referenced image */
}

@media (min-width: 768px) {
    .header-main-bar {
        padding: 1rem 2rem;
    }
}

@media (min-width: 1024px) {
    .header-main-bar {
        padding: 1rem 3rem;
    }
}

/* Scrolled state moved to fixed-header-container */
/* .header-main-bar.scrolled { ... } removed */


/* Search Bar */
.header-search {
    flex-grow: 1;
    max-width: 600px;
    margin: 0 1rem;
}

@media (min-width: 1024px) {
    .header-search {
        margin: 0 2rem;
    }
}

.search-wrapper {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    border-radius: var(--radius-full);
    padding: 0.5rem 1rem;
    border: 1px solid transparent;
    transition: all 0.3s;
}

.search-wrapper:focus-within {
    background: white;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.search-input {
    border: none;
    background: transparent;
    flex-grow: 1;
    padding: 0.25rem 0.5rem;
    outline: none;
    font-size: 0.95rem;
}

@media (max-width: 640px) {
    .header-search {
        display: none;
        /* Hide main search on vey small mobile to save space */
    }
}

.search-btn {
    color: var(--primary);
    padding: 0.25rem;
}

/* Category Bar */
/* Category Bar */
.header-category-bar {
    background: var(--secondary);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 0.75rem 0;
    width: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 60px;
    opacity: 1;
    visibility: visible;
    overflow: hidden;
    display: none;
    /* Hidden on mobile */
}

@media (min-width: 1024px) {
    .header-category-bar {
        display: block;
    }
}

.category-nav {
    display: flex;
    justify-content: flex-start;
}

.category-list {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0 1rem;
    margin: 0;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
}

.category-list::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

@media (min-width: 1024px) {
    .category-list {
        gap: 2.5rem;
        justify-content: center;
        padding: 0;
        overflow: visible;
    }
}

.category-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: white;
    /* Changed to white for better contrast primarily */
    text-transform: capitalize;
    position: relative;
    padding-bottom: 0.25rem;
    white-space: nowrap;
}

.category-link:hover,
.category-link.active {
    color: var(--primary);
    /* Lighter Green on hover for contrast against dark bg */
}

.category-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    /* Lighter Green underline */
    transition: width 0.3s;
}

.category-link:hover::after,
.category-link.active::after {
    width: 100%;
}

/* Logo */
.header-logo .logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: auto;
    height: auto;
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    transition: transform var(--transition-normal);
}

.logo-icon:hover {
    transform: scale(1.05);
    /* Removed rotation for professional logo feel */
}

.logo-icon img {
    height: 50px;
    width: auto;
    display: block;
    object-fit: contain;
}

@media (max-width: 768px) {
    .logo-icon img {
        height: 35px;
    }
}

.logo-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: var(--primary);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 1rem;
    /* Smaller for very small mobile */
    color: var(--secondary);
    letter-spacing: -0.02em;
}

@media (min-width: 380px) {
    .logo-name {
        font-size: 1.25rem;
    }
}

@media (min-width: 768px) {
    .logo-name {
        font-size: 1.5rem;
    }
}

.logo-tagline {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    color: var(--primary);
    letter-spacing: 0.2em;
}

@media (min-width: 768px) {
    .logo-tagline {
        font-size: 0.875rem;
    }
}

/* Navbar Toggle */
.navbar-toggle {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.25rem;
    padding: 0.5rem;
    border-radius: var(--radius);
    transition: background var(--transition-normal), transform var(--transition-normal);
}

.navbar-toggle:hover {
    background: var(--accent);
    transform: scale(1.05);
}

.navbar-toggle:active {
    transform: scale(0.95);
}

.navbar-toggle span {
    width: 0.5rem;
    height: 0.5rem;
    background: var(--secondary);
    border-radius: 2px;
    transition: all var(--transition-normal);
}

/* Menu Bar (Overlay) */
.menu-bar {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, #003300 0%, #001a00 100%);
    z-index: 100000;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 6rem 10% 2rem;
    width: 100%;
    height: 100vh;
    transform: translateX(100%);
    /* Slide from right for better feel */
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    backdrop-filter: blur(15px);
    overflow-y: auto;
}

.menu-bar.open {
    transform: translateX(0);
}

.menu-bg-decoration {
    position: absolute;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231fa400' opacity='0.05'%3E%3Cpath d='M17,8C8,10 5.9,16.17 3.82,21.34L5.71,22L6.66,19.7C7.14,19.87 7.64,20 8.13,20C11,20 14.85,15.62 16.59,10.62C18.14,12.1 20.28,13 22,13C22,12.13 22,11.26 22,10.4C21.61,10.44 21.24,10.45 20.87,10.42C19.14,10.26 17.58,9.11 17,8Z' /%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
    z-index: -1;
    pointer-events: none;
}

.dec-1 {
    top: -5%;
    left: -10%;
    width: 400px;
    height: 400px;
    transform: rotate(15deg);
}

.dec-2 {
    bottom: -10%;
    right: -10%;
    width: 300px;
    height: 300px;
    transform: rotate(-20deg);
}

/* Menu Close Button */
.menu-close {
    position: absolute;
    top: 2.5rem;
    right: 2.5rem;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 100001;
    /* Above menu-bar background */
}

.menu-close:hover {
    background: var(--primary);
    transform: rotate(90deg);
}

.menu-close svg {
    width: 1.75rem;
    height: 1.75rem;
}

.menu-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    width: 100%;
    margin-bottom: 3rem;
}

.menu-list li {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.menu-item-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.menu-bar.open .menu-list li {
    opacity: 1;
    transform: translateY(0);
}

.menu-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 10px var(--primary-glow);
}


.menu-list a {
    font-size: 1.5rem;
    /* Larger for better mobile presence */
    font-weight: 700;
    color: white;
    text-transform: capitalize;
    letter-spacing: -0.01em;
    position: relative;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.menu-list a:hover {
    color: var(--primary);
    transform: translateX(10px);
}

.submenu-toggle {
    margin-left: auto;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.submenu-toggle.active {
    background: var(--primary);
    transform: rotate(180deg);
}

.submenu-toggle svg {
    width: 1.25rem;
    height: 1.25rem;
}

.submenu-list {
    display: none;
    width: 100%;
    padding: 0.5rem 0 0.5rem 2rem;
    border-left: 1px solid rgba(31, 164, 0, 0.3);
    margin: 0.5rem 0 0.5rem 1.25rem;
}

.submenu-list li {
    opacity: 1 !important;
    transform: none !important;
    margin-bottom: 0.5rem;
}

.submenu-list a {
    font-size: 1.15rem !important;
    font-weight: 500 !important;
    color: rgba(255, 255, 255, 0.8) !important;
    text-transform: capitalize !important;
}

.submenu-list a:hover {
    color: var(--primary) !important;
    transform: translateX(5px) !important;
}

.menu-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    width: 100%;
    margin-top: auto;
}

.menu-socials {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.menu-socials .social-link {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.menu-socials .social-link:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

.menu-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

@media (min-width: 768px) {
    .menu-list a {
        font-size: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .menu-list a {
        font-size: 1.85rem;
    }
}


.menu-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition-normal);
}

.menu-list a:hover {
    color: var(--primary);
}

.menu-list a:hover::after {
    width: 100%;
}

/* ============================================
   Main Content
   ============================================ */
.main-content {
    padding-top: 0;
}

@media (min-width: 1024px) {
    .main-content {
        padding-top: 0;
    }
}

/* ============================================
   Hero Slider Section
   ============================================ */
.hero-slider-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    /* Increased for mobile to prevent overlap */
    background: #000;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .hero-slider-section {
        height: 100vh;
        min-height: 850px;
    }
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slides-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Individual Slide */
.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), visibility 1s;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    /* Safety space for mobile header */
}

@media (min-width: 1024px) {
    .slide {
        padding-top: 140px;
        /* Safety space for desktop header */
    }
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

/* Glassy Overlay is handled in inline style via linear-gradient if needed, 
   but we can also add a global overlay here for consistency */
.slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

.container.h-full {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    padding-top: 100px;
    /* Space for desktop header/category row */
    padding-bottom: 100px;
    /* Large safe zone for navigation dots */
}

@media (max-width: 480px) {
    .container.h-full {
        align-items: center;
        /* Keep centered vertically */
        padding-top: 60px;
        /* Account for mobile header overlap */
        padding-bottom: 120px;
        /* Increased safe zone for navigation dots and buttons */
    }
}

.slide-content-centered {
    text-align: center;
    max-width: 900px;
    padding: 2rem;
    color: white;
}

.slide-subtitle {
    font-size: 1.125rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
    color: var(--primary);
    opacity: 0;
    transform: translateY(30px);
}

@media (min-width: 768px) {
    .slide-subtitle {
        font-size: 1.25rem;
    }
}

.slide.active .slide-subtitle {
    animation: fadeInUp 0.8s ease forwards 0.2s;
}

.slide-title {
    font-size: clamp(2.25rem, 8vw + 1rem, 5rem);
    /* Fluid sizing */
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: white;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(40px);
}

.slide.active .slide-title {
    animation: fadeInUp 0.8s ease forwards 0.4s;
}

.slide-description {
    font-size: 1.125rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    opacity: 0;
    transform: translateY(30px);
}

@media (max-width: 480px) {
    .slide-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
}

.slide.active .slide-description {
    animation: fadeInUp 0.8s ease forwards 0.6s;
}

.slide-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
}

@media (max-width: 480px) {
    .slide-buttons {
        flex-direction: row;
        gap: 0.75rem;
    }

    .btn-slider-primary,
    .btn-slider-outline {
        padding: 0.875rem 1.25rem;
        font-size: 0.85rem;
        flex: 1;
        max-width: 200px;
        white-space: nowrap;
    }
}

.slide.active .slide-buttons {
    animation: fadeInUp 0.8s ease forwards 0.8s;
}

/* Slider Buttons */
.btn-slider-primary {
    background: var(--primary);
    /* Parrot Green theme color */
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    letter-spacing: 0.1em;
    box-shadow: 0 10px 20px rgba(31, 164, 0, 0.3);
    transition: all 0.3s ease;
}

.btn-slider-primary:hover {
    background: var(--secondary);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 51, 0, 0.4);
    color: white;
}

.btn-slider-outline {
    background: transparent;
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: var(--radius-full);
    border: 2px solid white;
    font-weight: 700;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

.btn-slider-outline:hover {
    background: white;
    color: var(--secondary);
    transform: translateY(-2px);
}

/* Slider Pagination */
.slider-pagination {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: row;
    gap: 12px;
    z-index: 100;
}

@media (max-width: 480px) {
    .slider-pagination {
        bottom: 20px;
        /* Lower for better mobile clearance */
    }
}


.pagination-dot {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding: 0;
    cursor: pointer;
}

.pagination-dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

.pagination-dot.active {
    width: 30px;
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 4px 10px rgba(31, 164, 0, 0.3);
}


/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

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



/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8) rotate(-5deg);
    }

    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

/* ============================================
   About Section
   ============================================ */
.about-section {
    padding: 4rem 0;
}

@media (min-width: 1024px) {
    .about-section {
        padding: 6rem 0;
    }
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    text-align: center;
    /* Center for mobile */
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        text-align: left;
    }
}

/* About Image Column */
.about-image-col {
    order: 1;
    margin-bottom: 1rem;
}

@media (min-width: 1024px) {
    .about-image-col {
        order: 1;
        margin-bottom: 0;
    }

    .about-text-col {
        order: 2;
    }
}


.about-us-image {
    position: relative;
}

.about-us-image .image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.about-us-image .image-wrapper img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-strong);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, hsla(120, 100%, 17%, 0.2), transparent);
    border-radius: var(--radius-xl);
}

/* Floating Decorations */
.floating-decor {
    position: absolute;
    opacity: 0.4;
    animation: float 3s ease-in-out infinite;
    display: none;
}

@media (min-width: 1024px) {
    .floating-decor {
        display: block;
    }
}

.grains-1 {
    top: 10%;
    left: 5%;
    font-size: 2.5rem;
    animation-delay: 0s;
}

.grains-2 {
    top: 20%;
    right: 10%;
    font-size: 2rem;
    animation-delay: 0.5s;
}

.grains-3 {
    top: 50%;
    left: -5%;
    font-size: 3rem;
    animation-delay: 1s;
}

@keyframes float {

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

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Stats Badge */
.stats-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
    display: none;
}

@media (min-width: 768px) {
    .stats-badge {
        display: block;
    }
}

.stats-number {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
}

.stats-text {
    font-size: 0.875rem;
    font-weight: 500;
    opacity: 0.9;
}

/* About Text Column */
.about-text-col {
    order: 1;
}

@media (min-width: 1024px) {
    .about-text-col {
        order: 2;
    }
}

.section-label {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.about-us-text .title h2 {
    font-size: 1.875rem;
    font-weight: 900;
    color: var(--secondary);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
    .about-us-text .title h2 {
        font-size: 2.5rem;
    }
}

@media (min-width: 1280px) {
    .about-us-text .title h2 {
        font-size: 3rem;
    }
}

.about-us-text .text {
    color: var(--muted-foreground);
    margin-bottom: 2rem;
}

.about-us-text .text p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-buttons {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

@media (min-width: 640px) {
    .about-buttons {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .about-buttons {
        justify-content: flex-start;
    }
}

@media (min-width: 1024px) {
    .about-buttons {
        justify-content: flex-start;
    }
}

/* ============================================
   Section Header (Shared)
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .section-header {
        margin-bottom: 4rem;
    }
}

.section-subtitle {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(1.75rem, 5vw + 1rem, 3rem);
    /* Fluid sizing from mobile to desktop */
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1rem;
    color: var(--muted-foreground);
    max-width: 42rem;
    margin: 0 auto;
}

/* ============================================
   Categories Section
   ============================================ */
.categories-section {
    padding: 4rem 0;
}

@media (min-width: 1024px) {
    .categories-section {
        padding: 6rem 0;
    }
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

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

@media (min-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(5, 1fr);
        max-width: 1100px;
        margin: 0 auto;
    }
}


.category-card {
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: all var(--transition-bounce);
    cursor: pointer;
    box-shadow: var(--shadow-soft);
}

.category-card:hover {
    transform: translateY(-12px) scale(1.05);
    background: white;
    box-shadow: var(--shadow-strong), var(--shadow-glow);
    border-color: var(--primary);
}


.category-icon {
    width: 5rem;
    height: 5rem;
    margin: 0 auto 1rem;
    background: var(--accent);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-normal);
}

.category-card:hover .category-icon {
    transform: scale(1.1);
}

.category-icon svg {
    width: 2rem;
    height: 2rem;
    color: var(--primary);
}

.category-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--foreground);
}

@media (min-width: 1024px) {
    .category-card h4 {
        font-size: 1.125rem;
    }
}

/* ============================================
   Categories & Generic Grid Shared Styles
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

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

@media (min-width: 1280px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.service-card {
    background: var(--card);
    border: 1px solid hsla(110, 100%, 37%, 0.2);
    border-radius: var(--radius-lg);
    padding: 1.5rem 2rem;
    text-align: center;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-soft);
}

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

/* ============================================
   Services Section (Animated Tree Flow)
   ============================================ */
.services-tree-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f7faf7 0%, #e8f5e9 100%);
    overflow: hidden;
}

.tree-grid-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.tree-grid-row {
    display: flex;
    align-items: stretch;
    min-height: 220px;
}

.tree-cell {
    flex: 1;
    display: flex;
    align-items: center;
}

.center-cell {
    flex: 0 0 400px;
    justify-content: center;
}

.left-cell {
    justify-content: flex-end;
}

.right-cell {
    justify-content: flex-start;
}

.tree-svg-segment {
    width: 400px;
    height: 220px;
    overflow: visible;
}

/* Card Styling to ensure perfect alignment */
.tree-service-card {
    width: 100%;
    max-width: 320px;
    padding: 20px;
    position: relative;
    background: white;
    border: 1px solid rgba(31, 164, 0, 0.2);
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin: 0 auto;
}

@media (max-width: 380px) {
    .tree-service-card {
        padding: 15px;
        max-width: 280px;
    }
}

.tree-service-card:hover {
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 15px 35px rgba(31, 164, 0, 0.15);
    border-color: var(--primary);
    background: linear-gradient(to bottom, #ffffff, #f9fdf8);
}

.tree-service-card.highlighted h3,
.tree-service-card.highlighted .card-icon [data-lucide] {
    color: var(--primary) !important;
}

.card-icon {
    margin-bottom: 12px;
    display: flex;
    justify-content: center;
}

.card-icon svg,
.card-icon [data-lucide] {
    width: 42px;
    height: 42px;
    color: var(--primary);
    stroke-width: 1.2;
}

.tree-service-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--secondary);
    margin: 0;
}

.card-arrow-indicator {
    position: absolute;
    top: 50%;
    width: 14px;
    height: 14px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transform: translateY(-50%) rotate(45deg);
    z-index: 1;
}

.left-cell .card-arrow-indicator {
    right: -8px;
    border-left: none;
    border-bottom: none;
    box-shadow: 2px -2px 0 white;
    /* Inset effect */
}

.right-cell .card-arrow-indicator {
    left: -8px;
    border-right: none;
    border-top: none;
    box-shadow: -2px 2px 0 white;
    /* Inset effect */
}

.tree-service-card:hover .card-arrow-indicator {
    border-color: var(--primary);
}

/* Animations */
.core-trunk,
.trunk-line {
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
}

.branch-path-animate {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
}

.node-dot-animate {
    opacity: 0;
    transform: scale(0);
    transform-origin: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.revealed .core-trunk,
.revealed .trunk-line {
    animation: drawLine 1.5s ease forwards;
}

.revealed .branch-path-animate {
    animation: drawLine 1s ease forwards;
}

.revealed .node-dot-animate {
    opacity: 1;
    transform: scale(1);
    transition-delay: 1.8s;
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

/* Mobile Responsive Tree */
@media (max-width: 1024px) {
    .services-tree-section {
        padding: 60px 0;
    }

    .tree-grid-wrapper {
        gap: 0;
    }

    .tree-grid-row {
        flex-direction: column;
        align-items: center;
        min-height: auto;
        margin-bottom: 0;
        padding-bottom: 2rem;
        position: relative;
    }

    /* Create a simple vertical line connector on mobile */
    .tree-grid-row:not(:last-child)::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 2px;
        height: 2rem;
        background: var(--primary);
        opacity: 0.3;
        transform: translateX(-50%);
    }

    .slide-content-centered {
        position: relative;
        z-index: 10;
        text-align: center;
        max-width: 900px;
        margin: 0 auto;
        padding-top: 170px;
    }

    @media (min-width: 768px) {
        .slide-content-centered {
            padding-top: 0;
        }
    }

    .center-cell {
        display: none;
    }

    .tree-cell {
        width: 100%;
        justify-content: center;
        padding: 0 1rem !important;
    }

    .tree-service-card {
        width: 100%;
        max-width: 400px;
        padding: 25px;
        margin-bottom: 10px;
    }

    .card-arrow-indicator {
        display: none;
    }
}

/* ============================================
   Products Section
   ============================================ */
.products-section {
    padding: 6rem 0;
    background: #fbfdfb;
}

.products-carousel-container {
    position: relative;
    padding: 0 2.25rem;
    /* Increased padding to place buttons outside cards */
}

@media (min-width: 768px) {
    .products-carousel-container {
        padding: 0 4rem;
    }
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 1.75rem;
    /* Very small for mobile */
    height: 1.75rem;
    /* Very small for mobile */
    background: white;
    border-radius: 50%;
    display: flex;
    /* Visible on mobile */
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.carousel-btn svg {
    width: 1rem;
    height: 1rem;
    /* Smaller icon for mobile */
}

@media (min-width: 1024px) {
    .carousel-btn {
        width: 3.5rem;
        /* Original size for desktop */
        height: 3.5rem;
        /* Original size for desktop */
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .carousel-btn svg {
        width: 1.5rem;
        /* Original icon size for desktop */
        height: 1.5rem;
    }
}

.carousel-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn-prev {
    left: 0.25rem;
}

.carousel-btn-next {
    right: 0.25rem;
}

.products-carousel {
    overflow: hidden;
    padding: 50px 10px;
    margin: -50px -10px;
}

.products-track {
    display: flex;
    gap: 1rem;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-slide {
    flex: 0 0 100%;
    min-width: 0;
}

@media (min-width: 640px) {
    .product-slide {
        flex: 0 0 calc(50% - 0.5rem);
    }
}

@media (min-width: 1024px) {
    .product-slide {
        flex: 0 0 calc((100% - 2rem) / 3);
    }
}

@media (min-width: 1280px) {
    .product-slide {
        flex: 0 0 calc((100% - 2rem) / 3);
    }
}


/* Modern Product Tag */
.product-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary);
    color: white;
    padding: 0.4rem 0.85rem;
    border-radius: 1rem;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    z-index: 5;
    box-shadow: 0 8px 20px rgba(31, 164, 0, 0.3);
    border: 2px solid white;
}

@media (max-width: 768px) {
    .product-tag {
        display: none !important;
    }
}

.premium-product-card {
    background: white;
    border-radius: 2.5rem;
    padding: 1.25rem;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.04);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.premium-product-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 70px rgba(31, 164, 0, 0.12);
    border-color: rgba(31, 164, 0, 0.2);
}

.product-image-container {
    position: relative;
    aspect-ratio: 1/1;
    border-radius: 2rem;
    overflow: hidden;
    margin-bottom: 2rem;
    background: #f8faf8;
    z-index: 1;
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.premium-product-card:hover .product-image-container img {
    transform: scale(1.15) rotate(2deg);
}

.product-info-box {
    padding: 0 0.75rem 0.5rem;
    flex-grow: 1;
}

.product-meta {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--primary);
    margin-bottom: 0.75rem;
    display: block;
    opacity: 0.7;
}

.product-title-main {
    font-size: 1.15rem;
    /* Reduced for mobile */
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 0.5rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

@media (min-width: 768px) {
    .product-title-main {
        font-size: 1.35rem;
        margin-bottom: 0.75rem;
    }
}

.premium-product-card:hover .product-title-main {
    color: var(--primary);
}

.product-desc-short {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


/* ============================================
   Contact Section (Image Match)
   ============================================ */
.contact-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f7faf7 0%, #e8f5e9 100%);
    position: relative;
    overflow: hidden;
}

.contact-layout-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: flex-start;
}

@media (min-width: 992px) {
    .contact-layout-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6rem;
    }
}


.contact-info-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    /* Even smaller for very small mobile */
    font-weight: 700;
    color: #2e4d2e;
    line-height: 1.2;
    margin-bottom: 2rem;
}

@media (min-width: 480px) {
    .contact-info-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 992px) {
    .contact-info-title {
        font-size: 3.5rem;
        margin-bottom: 3rem;
    }
}

.contact-info-title .highlight {
    color: #1a9d1a;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.contact-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.contact-feature-icon {
    width: 2.25rem;
    height: 2.25rem;
    background: #1a9d1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    margin-top: 0.25rem;
}


.contact-feature-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    stroke-width: 3px;
}

.contact-feature-text h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1b3d1b;
    margin-bottom: 0.25rem;
}

.contact-feature-text p {
    color: #5c7a5c;
    font-size: 1.125rem;
}

.expert-support-card {
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: fit-content;
    /* Changed from 400px to fit content */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.expert-icon-box {
    width: 4.5rem;
    height: 4.5rem;
    background: #f0fdf4;
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a9d1a;
}

.expert-icon-box svg {
    width: 2.25rem;
    height: 2.25rem;
}

.expert-text span {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #7d9a7d;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.expert-text a {
    font-size: 2rem;
    font-weight: 800;
    color: #1b3d1b;
    text-decoration: none;
    white-space: nowrap;
    /* Prevent phone number from breaking */
}

/* Inquiry Form Card */
.inquiry-card {
    background: white;
    border-radius: 3rem;
    padding: 3rem 4rem;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.06);
}

.inquiry-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #1b3d1b;
    margin-bottom: 2.5rem;
}

.inquiry-input {
    width: 100%;
    background: #f8faf8;
    border: 1px solid #e2eee2;
    padding: 1.25rem 1.75rem;
    border-radius: 1.25rem;
    font-size: 1.125rem;
    color: #1b3d1b;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.inquiry-input:focus {
    background: white;
    border-color: #1a9d1a;
    box-shadow: 0 0 0 4px rgba(26, 157, 26, 0.1);
    outline: none;
}

/* Phone Input Group Redesign */
.inquiry-input-group {
    display: flex;
    align-items: center;
    background: #f8faf8;
    border: 1px solid #e2eee2;
    border-radius: 1.25rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    /* overflow: hidden; Removed to allow dropdown to show */
}

/* Wrapper Hover/Focus State simulation */
.inquiry-input-group:focus-within {
    background: white;
    border-color: #1a9d1a;
    box-shadow: 0 0 0 4px rgba(26, 157, 26, 0.1);
}

/* Custom Country Selector */
.custom-country-select {
    position: relative;
    border-right: 1px solid #e2eee2;
    min-width: 110px;
    /* Ensure left corners follow parent radius */
    border-top-left-radius: 1.25rem;
    border-bottom-left-radius: 1.25rem;
}

.selected-country {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem 0.75rem 1.25rem 1.25rem;
    cursor: pointer;
    white-space: nowrap;
}

.country-flag {
    width: 24px;
    height: 16px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
}

.country-dial {
    font-size: 1.125rem;
    color: #1b3d1b;
    font-weight: 500;
}

.dropdown-arrow {
    width: 14px;
    height: 14px;
    color: #1b3d1b;
    opacity: 0.5;
}

.country-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 280px;
    max-height: 300px;
    background: white;
    border: 1px solid #e2eee2;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 100;
    margin-top: 0.5rem;
    display: flex;
    flex-direction: column;
}

.country-search {
    padding: 0.6rem 0.75rem;
    border: none;
    border-bottom: 1px solid #e2eee2;
    font-size: 0.9rem;
    outline: none;
    border-radius: 12px 12px 0 0;
    background: #f8faf8;
    color: #1b3d1b;
}

.country-search::placeholder {
    color: #94a3b8;
}

.country-list {
    overflow-y: auto;
    flex: 1;
}

.country-dropdown.hidden {
    display: none;
}

.country-option {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 0.75rem;
    cursor: pointer;
    transition: background 0.2s;
}

.country-option:hover {
    background: #f0fdf4;
}

.country-option.hidden {
    display: none;
}

.option-flag {
    width: 24px;
    height: 16px;
    object-fit: cover;
    border-radius: 2px;
    flex-shrink: 0;
}

.option-name {
    font-size: 0.85rem;
    color: #1b3d1b;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.option-dial {
    font-size: 1rem;
    color: #1b3d1b;
}

/* Redefine native Select just in case scripts fail or for fallback styling logic removal */
.inquiry-select {
    display: none;
    /* Hidden by JS anyway, but good to have safety css if desired or reused */
}

/* Update phone input padding since divider is handled by custom select border */
.inquiry-input-phone {
    padding-left: 1rem;
    border-top-right-radius: 1.25rem;
    border-bottom-right-radius: 1.25rem;
}

.inquiry-input-phone {
    flex-grow: 1;
    background: transparent;
    border: none;
    padding: 1.25rem 1.25rem;
    font-size: 1.125rem;
    color: #1b3d1b;
    width: 100%;
    outline: none;
    border-radius: 0;
}

.inquiry-input-phone:focus {
    background: transparent;
    border: none;
    box-shadow: none;
}

.inquiry-textarea {
    min-height: 150px;
}

.inquiry-submit-btn {
    width: 100%;
    background: #1a9d1a;
    color: white;
    border: none;
    padding: 1.25rem;
    border-radius: 1.25rem;
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(26, 157, 26, 0.2);
}

.inquiry-submit-btn:hover {
    background: #168a16;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(26, 157, 26, 0.3);
}

.inquiry-submit-btn svg {
    width: 1.5rem;
    height: 1.5rem;
    transform: rotate(-15deg);
}

@media (max-width: 768px) {
    .contact-info-title {
        font-size: 2.25rem;
        margin-bottom: 2rem;
    }

    .expert-text a {
        font-size: 1.5rem;
    }

    .inquiry-card {
        padding: 1.5rem;
        border-radius: 2rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .contact-features {
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
}

/* ============================================
   Newsletter Section
   ============================================ */
.newsletter-section {
    padding: 4rem 0 6rem;
    position: relative;
    z-index: 10;
}

@media (min-width: 1024px) {
    .newsletter-section {
        padding: 6rem 0 8rem;
    }
}

.newsletter-box {
    background: var(--card);
    border: 1px solid var(--primary);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-glow);
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .newsletter-box {
        padding: 2rem;
    }
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: center;
}

@media (min-width: 768px) {
    .newsletter-content {
        grid-template-columns: 1fr 1fr;
    }
}

.newsletter-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

@media (min-width: 1024px) {
    .newsletter-content h3 {
        font-size: 1.5rem;
    }
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .newsletter-form {
        flex-direction: row;
    }
}

.newsletter-input-wrapper {
    position: relative;
    flex: 1;
}

.newsletter-input-wrapper svg {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.25rem;
    height: 1.25rem;
    color: var(--muted-foreground);
}

.newsletter-input-wrapper input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    background: var(--background);
    color: var(--foreground);
    outline: none;
    transition: border-color var(--transition-normal);
}

.newsletter-input-wrapper input:focus {
    border-color: var(--primary);
}

/* ============================================
   Footer
   ============================================ */
.footer-section {
    background: linear-gradient(135deg, #001a00 0%, #002600 100%);
    padding-top: 5rem;
    padding-bottom: 2rem;
    margin-top: 0;
    color: white;
}



.footer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    /* Slightly reduced gap for mobile */
    padding-bottom: 2.5rem;
    border-bottom: 1px solid hsla(110, 100%, 37%, 0.2);
}

/* Mobile Layout: Company Info (1) and Contact (4) full width */
.footer-col:nth-child(1),
.footer-col:nth-child(4) {
    grid-column: 1 / -1;
}

/* Links and Products (2 & 3) share the row 50:50 automatically */

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    /* Reset spans for tablet */
    .footer-col:nth-child(1),
    .footer-col:nth-child(4) {
        grid-column: auto;
    }
}

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

/* Footer Logo */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    margin-left: 0;
}

@media (min-width: 1024px) {
    .footer-logo {
        margin-left: -20px;
    }
}

.footer-logo-icon {
    width: 3rem;
    height: 3rem;
    background: var(--primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: var(--secondary);
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.footer-logo-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 1.25rem;
    color: white;
    letter-spacing: -0.02em;
}

.footer-logo-tagline {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--primary);
    letter-spacing: 0.2em;
}

.footer-description {
    color: hsla(0, 0%, 100%, 0.7);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    background: hsla(255, 255%, 255%, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsla(0, 0%, 100%, 0.7);
    transition: all var(--transition-normal);
}

.social-link:hover {
    background: var(--primary);
    color: var(--secondary);
    transform: scale(1.1) translateY(-3px);
}

.social-link svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* Footer Columns */
.footer-col h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: hsla(0, 0%, 100%, 0.7);
    transition: color var(--transition-normal);
}

.footer-links a:hover {
    color: var(--primary);
}

.link-dot {
    width: 0.375rem;
    height: 0.375rem;
    background: var(--primary);
    border-radius: var(--radius-full);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.footer-links a:hover .link-dot {
    opacity: 1;
}

/* Footer Contact */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.footer-contact svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.footer-contact span,
.footer-contact a {
    color: hsla(0, 0%, 100%, 0.7);
    transition: color var(--transition-normal);
}

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

/* Footer Bottom */
.footer-bottom {
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: hsla(0, 0%, 100%, 0.5);
    font-size: 0.875rem;
}

/* ============================================
   Inner Pages Shared Styles
   ============================================ */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?w=1600&h=600&fit=crop');
    background-size: cover;
    background-position: center;
    padding: 10rem 0 6rem;
    color: white;
    margin-top: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, var(--background), transparent);
}

@media (max-width: 768px) {
    .page-header {
        padding: 8rem 0 4rem;
    }
}

.page-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-subtitle {
    font-size: 1.125rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.6;
    background: rgba(0, 0, 0, 0.2);
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
}

/* Section Brand Title */
.section-brand-title {
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--secondary);
    margin-bottom: 3rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-brand-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 5px;
    background: var(--primary);
    margin: 1.5rem auto 0;
    border-radius: var(--radius-full);
}

/* Premium Card Styles */
.premium-card {
    background: white;
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all var(--transition-bounce);
}

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

/* Spacing Helpers */
.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.py-32 {
    padding-top: 8rem;
    padding-bottom: 8rem;
}


.section-header.text-center .section-brand-title::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Products Detail Cards */
.product-detail-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-medium);
}

.use-case {
    padding: 0.5rem 1rem;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    border: 1px solid hsla(110, 100%, 37%, 0.1);
}

/* Blog & Gallery */
.blog-card {
    transition: transform var(--transition-bounce), box-shadow var(--transition-bounce);
}

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

.gallery-item {
    cursor: pointer;
}

.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent, rgba(0, 0, 0, 0.4));
    z-index: 1;
}

.reveal-up,
.reveal-left,
.reveal-right,
.reveal-scale {
    opacity: 0;
    transition: all var(--transition-bounce);
}

.reveal-up {
    transform: translateY(60px);
}

.reveal-left {
    transform: translateX(-60px);
}

.reveal-right {
    transform: translateX(60px);
}

.reveal-scale {
    transform: scale(0.7) translateY(30px);
}

@media (max-width: 768px) {

    .reveal-left,
    .reveal-right {
        transform: translate(0) !important;
        opacity: 1 !important;
    }
}

.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed,
.reveal-scale.revealed {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Scroll Popup Staggering */
.reveal-up[style*="--delay"],
.reveal-scale[style*="--delay"] {
    transition-delay: calc(var(--delay) * 0.1s);
}


/* ============================================
   Professional Image Layouts
   ============================================ */
.stacked-image-container {
    position: relative;
    padding: 1rem;
}

@media (min-width: 768px) {
    .stacked-image-container {
        padding: 2rem;
    }
}

.stacked-image-main {
    position: relative;
    z-index: 2;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    border: 4px solid white;
}

@media (min-width: 768px) {
    .stacked-image-main {
        border-radius: 4rem;
        border-width: 8px;
    }
}


.stacked-image-back {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 60%;
    background: var(--primary);
    border-radius: 2rem;
    z-index: 1;
    transform: translate(15px, -15px);
    opacity: 0.2;
}

@media (min-width: 768px) {
    .stacked-image-back {
        border-radius: 4rem;
        transform: translate(30px, -30px);
    }
}

.floating-badge {
    position: absolute;
    bottom: 10%;
    right: 5%;
    background: white;
    padding: 1.5rem;
    border-radius: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {

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

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

/* Staggered Grid Helper */
@media (min-width: 768px) {
    .staggered-grid>div:nth-child(even) {
        transform: translateY(4rem);
    }
}

.image-reveal-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

/* ============================================
   Responsive Adjustments
   ============================================ */
@media (max-width: 639px) {
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }
}

/* ============================================
   Print Styles
   ============================================ */
@media print {

    .header-main-bar,
    .menu-bar,
    .slider-pagination,
    .carousel-btn {
        display: none !important;
    }

    .main-content {
        padding-top: 0;
    }
}

/* ============================================
   Stats Section - Modern Professional Design
   ============================================ */
.stats-section {
    background: #fafafa;
    padding: 5rem 0;
    position: relative;
}

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

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
}

.stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2.5rem 2rem;
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px var(--primary-glow);
    border-color: var(--primary-glow);
}

.stat-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.stat-card:hover .stat-icon-circle {
    background: var(--primary);
    transform: scale(1.1);
}

.stat-icon-circle svg {
    width: 36px;
    height: 36px;
    color: var(--primary);
    transition: color 0.4s ease;
}

.stat-card:hover .stat-icon-circle svg {
    color: white;
}

.stat-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-number-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
}

.stat-number {
    font-size: 2.5rem;
    /* Reduced for mobile */
    font-weight: 800;
    line-height: 1;
    color: var(--secondary);
    letter-spacing: -1px;
}

@media (min-width: 480px) {
    .stat-number {
        font-size: 3rem;
    }
}

@media (min-width: 768px) {
    .stat-number {
        font-size: 3.5rem;
        letter-spacing: -2px;
    }
}

.stat-suffix {
    font-size: 1.75rem;
    /* Reduced for mobile */
    font-weight: 700;
    color: var(--primary);
    margin-left: 2px;
}

@media (min-width: 768px) {
    .stat-suffix {
        font-size: 2.5rem;
    }
}

.stat-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.5rem;
}

.stat-subtitle {
    font-size: 0.95rem;
    color: #888;
    font-weight: 500;
}

/* ============================================
   Floating WhatsApp Button
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: all var(--transition-base);
    opacity: 0;
    transform: scale(0.5);
    pointer-events: none;
}

.whatsapp-float.show {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 32px !important;
    height: 32px !important;
    color: white !important;
    display: block;
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

/* ============================================
   Enhanced Contact Form Mobile Styles
   ============================================ */
/* Native select styling for country code */
.inquiry-select {
    display: block;
    background: transparent;
    border: none;
    padding: 1.25rem 0.5rem 1.25rem 1.25rem;
    font-size: 1rem;
    color: #1b3d1b;
    font-weight: 500;
    cursor: pointer;
    outline: none;
    min-width: 90px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231b3d1b' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    padding-right: 2rem;
    border-right: 1px solid #e2eee2;
}

.inquiry-select:focus {
    outline: none;
}

/* Responsive adjustments for contact section */
@media (max-width: 480px) {
    .contact-section {
        padding: 3rem 0;
    }

    .contact-info-title {
        font-size: 1.5rem !important;
        line-height: 1.3;
    }

    .contact-feature-text h4 {
        font-size: 1.15rem;
    }

    .contact-feature-text p {
        font-size: 0.95rem;
    }

    .expert-support-card {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
        width: 100%;
        max-width: 100%;
    }

    .expert-text a {
        font-size: 1.25rem !important;
    }

    .inquiry-card {
        padding: 1.25rem !important;
        border-radius: 1.5rem !important;
    }

    .inquiry-card h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .inquiry-input {
        padding: 1rem 1.25rem;
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .inquiry-input-group {
        flex-direction: row;
        flex-wrap: nowrap;
    }

    .inquiry-select {
        min-width: 85px;
        font-size: 0.9rem;
        padding: 1rem 1.5rem 1rem 0.75rem;
    }

    .inquiry-input-phone {
        padding: 1rem;
        font-size: 1rem;
    }

    .inquiry-submit-btn {
        padding: 1rem;
        font-size: 1rem;
    }

    .inquiry-submit-btn svg {
        width: 1.25rem;
        height: 1.25rem;
    }
}

@media (max-width: 360px) {
    .inquiry-select {
        min-width: 75px;
        font-size: 0.85rem;
        padding: 0.9rem 1.5rem 0.9rem 0.5rem;
    }

    .inquiry-input-phone {
        font-size: 0.9rem;
    }

    .contact-info-title {
        font-size: 1.35rem !important;
    }

    .expert-support-card {
        padding: 1rem;
    }

    .expert-icon-box {
        width: 3.5rem;
        height: 3.5rem;
    }

    .expert-text a {
        font-size: 1.1rem !important;
    }
}

/* Ensure contact form stays within bounds */
@media (max-width: 992px) {
    .contact-layout-grid {
        gap: 2rem;
    }

    .contact-section .container {
        padding: 0 1rem;
    }
}

/* Newsletter mobile optimization */
@media (max-width: 640px) {
    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }

    .newsletter-input-wrapper {
        width: 100%;
    }

    .newsletter-form .btn {
        width: 100%;
    }
}

/* ============================================
   Categories Section - Card Styles
   ============================================ */

/* Grid layout for categories - 4 columns on desktop */
.categories-section .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .categories-section .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .categories-section .services-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

/* Category Card Styles - VERTICAL layout (image on top) */
.category-card-new {
    padding: 0 !important;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: white;
    border: 1px solid hsla(110, 100%, 37%, 0.1);
    border-radius: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.category-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

/* IMAGE CONTAINER - TAKES TOP HALF OF CARD */
.category-image-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
    background: #f6fbf3;
    border-radius: 24px 24px 0 0;
}

.category-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card-new:hover .category-image-wrapper img {
    transform: scale(1.1);
}

/* CONTENT AREA - BOTTOM HALF */
.category-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    background: white;
}

.category-content h3 {
    color: var(--primary);
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.category-content p {
    color: var(--muted-foreground);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

/* Categories Section Responsive - Tablet */
@media (max-width: 768px) {
    .categories-section {
        padding: 4rem 0;
    }

    .category-image-wrapper {
        height: 180px;
    }

    .category-content {
        padding: 1rem;
    }

    .category-content h3 {
        font-size: 1rem;
    }

    .category-content p {
        font-size: 0.8rem;
    }
}

/* Categories Section Responsive - Mobile */
@media (max-width: 640px) {
    .categories-section .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .category-image-wrapper {
        height: 180px;
    }

    .category-content {
        padding: 0.75rem;
    }

    .category-content h3 {
        font-size: 0.9rem;
    }

    .category-content p {
        font-size: 0.75rem;
    }
}

/* Categories Section Responsive - Very Small Mobile */
@media (max-width: 400px) {
    .categories-section .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .category-image-wrapper {
        height: 180px;
    }

    .category-content {
        padding: 1rem;
    }

    .category-content h3 {
        font-size: 1rem;
    }

    .category-content p {
        font-size: 0.85rem;
    }
}

/* Utility class for margin-top */
.mt-12 {
    margin-top: 3rem;
}

/* ============================================
   Certifications Section
   ============================================ */
.certifications-section {
    background-color: hsla(110, 60%, 94%, 0.3);
    border-top: 1px solid var(--primary-light);
    border-bottom: 1px solid var(--primary-light);
    position: relative;
    overflow: hidden;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 per row on mobile */
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 1024px) {
    .certifications-grid {
        grid-template-columns: repeat(3, 1fr);
        /* 3 per row on desktop */
        gap: 2.5rem;
    }
}

.certification-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--primary-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .certification-card {
        padding: 1.25rem 1rem;
    }
}

.certification-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary);
}

.cert-logo-box {
    height: 120px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.4s ease;
}

@media (max-width: 768px) {
    .cert-logo-box {
        height: 70px;
        margin-bottom: 0.75rem;
    }
}

.certification-card:hover .cert-logo-box {
    transform: scale(1.1);
}

.cert-logo-img {
    max-height: 100px;
    max-width: 180px;
    object-fit: contain;
    filter: none;
    opacity: 1;
    transition: all 0.4s ease;
}

.make-in-india-logo {
    transform: scale(1.6);
}

@media (max-width: 768px) {
    .make-in-india-logo {
        transform: scale(1.4);
    }
}



@media (max-width: 768px) {
    .cert-logo-img {
        max-height: 55px;
        max-width: 110px;
    }
}

.certification-card:hover .cert-logo-img {
    transform: scale(1.05);
}

.certification-card:hover .make-in-india-logo {
    transform: scale(1.7);
}

.cert-info h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
}

@media (max-width: 768px) {
    .cert-info h4 {
        font-size: 0.8rem;
        margin-bottom: 0.25rem;
    }
}

.cert-info p {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
}

@media (max-width: 768px) {
    .cert-info p {
        font-size: 0.6rem;
        letter-spacing: 0.05em;
    }
}

.certifications-section .section-label {
    display: inline-block;
    padding: 0.6rem 1.8rem;
    background: var(--primary);
    color: white;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px var(--primary-glow);
    font-family: 'Poppins', sans-serif;
}

/* View More Categories Button Styles */
.view-more-container {
    display: flex;
    justify-content: flex-end;
    margin-top: 3rem;
    width: 100%;
}

.btn-professional-view-more {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background-color: transparent;
    color: var(--primary);
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 2px solid var(--primary);
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-professional-view-more span {
    position: relative;
    z-index: 2;
    transition: color 0.4s ease;
}

.btn-professional-view-more i {
    position: relative;
    z-index: 2;
    width: 20px;
    height: 20px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), color 0.4s ease;
}

.btn-professional-view-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--primary);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.btn-professional-view-more:hover {
    color: white !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-professional-view-more:hover::before {
    left: 0;
}

.btn-professional-view-more:hover span {
    color: white;
}

.btn-professional-view-more:hover i {
    transform: translateX(5px);
    color: white;
}

@media (max-width: 768px) {
    .view-more-container {
        justify-content: center;
        margin-top: 2rem;
    }

    .btn-professional-view-more {
        padding: 0.8rem 1.7rem;
        font-size: 11px;
    }
}

/* ============================================
   Export Section - Global Presence Map
   ============================================ */
.export-section {
    background-color: #ffffff !important;
    padding: 60px 0;
    overflow: hidden;
    position: relative;
}

.export-section .text-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 80px;
}

.export-section .section-title,
.export-section .section-desc {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.map-container {
    width: 100%;
    position: relative;
    border-radius: 0;
    overflow: hidden;
    background-color: #ffffff !important;
    clip-path: inset(0 0 16% 0);
    /* Hides Antarctica */
}



.map-img {
    background-color: #ffffff !important;
}

.world-map {
    width: 100%;
    height: auto;
    opacity: 1;
    display: block;
    border-radius: 0;
}

.map_box {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
    transform: translate(-50%, -100%);
    cursor: pointer;
}

/* Pin Marker Styles - Professional Design */
.pin-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pin-flag {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    border: 3px solid #ffffff;
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.15),
        0 2px 4px rgba(0, 0, 0, 0.1),
        inset 0 -2px 5px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pin-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.pin-pointer {
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 14px solid #ffffff;
    margin-top: -3px;
    filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.12));
    transition: all 0.3s ease;
}

/* Country Label - Hidden by default, shown on hover */
.icon-label {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    padding: 6px 14px;
    background: rgba(27, 61, 27, 0.95);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    white-space: nowrap;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

/* Tooltip arrow */
.icon-label::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid rgba(27, 61, 27, 0.95);
}

/* Hover effect - Show label */
.map_box:hover .icon-label {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.map_box:hover .pin-marker {
    transform: scale(1.1) translateY(-8px);
}

.map_box:hover .pin-flag {
    border-color: var(--primary);
    box-shadow:
        0 8px 25px rgba(31, 164, 0, 0.3),
        0 4px 10px rgba(0, 0, 0, 0.15);
}

.map_box:hover .pin-flag img {
    transform: scale(1.1);
}

.map_box:hover .pin-pointer {
    border-top-color: var(--primary);
}

/* Hub Styling (India) - Larger & prominent */
.map_box.hub {
    z-index: 15;
}

.map_box.hub .pin-marker.hub-pin {
    position: relative;
}

.map_box.hub .pin-flag {
    width: 60px;
    height: 60px;
    border: 4px solid #FF9933;
    box-shadow:
        0 8px 30px rgba(255, 153, 51, 0.4),
        0 4px 12px rgba(0, 0, 0, 0.15);
}

.map_box.hub .pin-pointer {
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 20px solid #FF9933;
    margin-top: -4px;
}

/* India label - always visible */
.map_box.hub .icon-label {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin-top: 8px;
    padding: 8px 18px;
    background: linear-gradient(135deg, #FF9933 0%, #138808 100%);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    border-radius: 20px;
    opacity: 1;
    visibility: visible;
    box-shadow: 0 4px 15px rgba(255, 153, 51, 0.4);
}

.map_box.hub .icon-label::after {
    display: none;
}

.map_box.hub:hover .icon-label {
    transform: scale(1.05);
}

.map_box.hub:hover .pin-flag {
    border-color: #138808;
    box-shadow:
        0 10px 35px rgba(19, 136, 8, 0.4),
        0 6px 15px rgba(0, 0, 0, 0.2);
}

.map_box.hub:hover .pin-pointer {
    border-top-color: #138808;
}

/* Pulsating effect for India hub */
.icon-pulsate {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF9933 0%, #138808 100%);
    border-radius: 50%;
    z-index: -1;
    animation: pulsateHub 2.5s infinite ease-out;
}

@keyframes pulsateHub {
    0% {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0.5;
    }

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .export-section {
        padding: 40px 0;
    }

    .map_box {
        margin-top: -20px;
        margin-left: -5px;
    }

    .pin-flag {
        width: 24px;
        height: 24px;
        border-width: 1.5px;
    }

    .pin-pointer {
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-top: 8px solid #fff;
    }

    .map_box.hub .pin-flag {
        width: 36px;
        height: 36px;
        border-width: 2.5px;
    }

    .map_box.hub .pin-pointer {
        border-left: 7px solid transparent;
        border-right: 7px solid transparent;
        border-top: 12px solid #FF9933;
    }

    .icon-label {
        font-size: 8px;
        padding: 3px 8px;
        top: -22px;
    }

    .map_box.hub .icon-label {
        display: none !important;
    }

    .pin-india {
        left: 64% !important;
    }

    .pin-vietnam {
        left: 70% !important;
    }

    .icon-pulsate {
        width: 45px;
        height: 45px;
    }
}

/* ============================================
   Individual Pin Marker Position Classes
   ============================================ */
.pin-india {
    left: 65%;
    top: 35.6%;
}

.pin-usa {
    left: 19.6%;
    top: 25.9%;
}

.pin-uk {
    left: 45%;
    top: 18.2%;
}

.pin-netherlands {
    left: 47.5%;
    top: 22%;
}

.pin-dubai {
    left: 59.4%;
    top: 36%;
}

.pin-kenya {
    left: 55.5%;
    top: 49%;
}

.pin-southafrica {
    left: 51.4%;
    top: 62%;
}

.pin-china {
    left: 73.9%;
    top: 27.1%;
}

.pin-vietnam {
    left: 73.7%;
    top: 41.2%;
}

.pin-australia {
    left: 82.2%;
    top: 61%;
}

/* Adjustments for Extra Large Screens - Shifting selective pins slightly down */
@media (min-width: 1400px) {
    .pin-uk {
        top: 20.2%;
    }

    .pin-netherlands {
        top: 24%;
    }

    .pin-dubai {
        top: 38.5%;
    }

    .pin-kenya {
        top: 51.5%;
    }

    .pin-southafrica {
        top: 64.5%;
    }

    .pin-usa {
        top: 28.4%;
    }

    .pin-china {
        top: 31.6%;
    }

    .pin-vietnam {
        top: 43.7%;
    }
}

/* ============================================
   Website Preloader
   ============================================ */
#preloader {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100000;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.6s;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    width: auto;
    height: auto;
    margin: 0 auto !important;
}

.loader-gif {
    width: 450px;
    max-width: 85vw;
    /* Slightly reduced for better mobile safety */
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.08));
    animation: pulse 2.5s ease-in-out infinite;
    transform-origin: center center;
}

/* Mobile */
@media (max-width: 768px) {
    .loader-content {
        transform: translateX(-15px);
    }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1023px) {
    .loader-content {
        transform: translateX(-25px);
    }
}

/* Desktop / Large screens */
@media (min-width: 1024px) {
    .loader-content {
        transform: translateX(-40px);
    }
}


@keyframes pulse {

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

    50% {
        transform: scale(1.02);
        opacity: 0.95;
    }
}