/* ============================================
   COLOR VARIABLES - PROFESSIONAL PALETTE
   ============================================ */

:root {
    /* Primary Greens */
    --primary-green: #1e9903;
    --primary-dark: #178002;
    --accent-emerald: #10b981;
    
    /* Text Colors */
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    
    /* Backgrounds */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-card: #f0fdf4;
    --bg-card-hover: #dcfce7;
    
    /* Borders & Shadows */
    --border-light: #e2e8f0;
    --border-medium: #cbd5e1;
}

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    overflow-x: hidden;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 50%, var(--bg-secondary) 100%);
    background-attachment: fixed;
}

/* Fixed Header */
header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-radius: 100px;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.12);
    max-width: 1200px;
    width: calc(100% - 40px);
    border: 1px solid var(--border-light);
}

.header-container {
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}

.logo-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
}

.logo-icon {
    width: 45px;
    height: 45px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    overflow: hidden;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

nav {
    display: flex;
    gap: 24px;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

nav a:hover {
    color: var(--primary-green);
}

.header-cta {
    font-size: 12px;
    padding: 8px 16px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 3px 10px rgba(30, 153, 3, 0.3);
    border: none;
}

/* Ripple effect on hover */
.header-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0) 70%);
    transform: translate(-50%, -50%);
    transition: width 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), 
                height 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: -1;
}

.header-cta:hover::before {
    width: 300px;
    height: 300px;
}

/* Continuous animated shine effect */
.header-cta::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 40%;
    height: 200%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        rgba(255, 255, 255, 0.6),
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transform: skewX(-25deg);
    animation: shine-header 3s ease-in-out infinite;
    z-index: 2;
    pointer-events: none;
}

@keyframes shine-header {
    0% {
        left: -100%;
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        left: 150%;
        opacity: 0;
    }
}

/* Subtle glow pulse effect */
@keyframes glow-header {
    0%, 100% {
        filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.6));
    }
}

.header-cta:hover {
    background: linear-gradient(135deg, #22ab03 0%, var(--primary-green) 100%);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 20px rgba(30, 153, 3, 0.5), 
                0 0 15px rgba(30, 153, 3, 0.3);
    animation: glow-header 2s ease-in-out infinite, float-header 3s ease-in-out infinite;
}

.header-cta:active {
    transform: translateY(-1px) scale(1.01);
    transition: all 0.1s ease;
}

/* Faster shine on hover for interactive feedback */
.header-cta:hover::after {
    animation: shine-header 1.5s ease-in-out infinite;
}

/* Magnetic effect - slight tilt on hover */
@keyframes float-header {
    0%, 100% {
        transform: translateY(-3px) scale(1.03) rotate(0deg);
    }
    33% {
        transform: translateY(-4px) scale(1.03) rotate(0.5deg);
    }
    66% {
        transform: translateY(-2px) scale(1.03) rotate(-0.5deg);
    }
}

/* Hero Section */
.hero {
    margin-top: 100px;
    padding: 20px 20px 60px;
    background: transparent;
    position: relative;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-left {
    padding-top: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-emerald) 100%);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: white;
    margin-bottom: 0;
    box-shadow: 0 2px 8px rgba(30, 153, 3, 0.2);
}

@keyframes blink {
    50% { opacity: 0; }
}

.highlight {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-emerald) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.certified-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.certified-badge .clay-logo {
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-emerald) 100%);
    border-radius: 3px;
}

.certified-badge .checkmark {
    color: var(--accent-emerald);
    font-weight: 700;
}

.hero h1 {
    font-size: 52px;
    line-height: 1.15;
    margin-bottom: 16px;
    color: var(--text-primary);
    font-weight: 800;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-emerald) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 4px; /* Reduced from 16px to 8px */
    max-width: 540px;
}

.launch-text {
    font-size: 15px;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 8px;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    align-items: center;
}

.hero-btn {
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1;
}

/* Ripple effect on hover */
.hero-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0) 70%);
    transform: translate(-50%, -50%);
    transition: width 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), 
                height 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: -1;
}

.hero-btn:hover::before {
    width: 350px;
    height: 350px;
}

/* Continuous animated shine effect */
.hero-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 40%;
    height: 200%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        rgba(255, 255, 255, 0.6),
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transform: skewX(-25deg);
    animation: shine 3s ease-in-out infinite;
    z-index: 2;
    pointer-events: none;
}

@keyframes shine {
    0% {
        left: -100%;
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        left: 150%;
        opacity: 0;
    }
}

/* Subtle glow pulse effect */
@keyframes glow {
    0%, 100% {
        filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
    }
}

.hero-btn-primary {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 4px 14px rgba(30, 153, 3, 0.3);
}

.hero-btn-primary:hover {
    background: linear-gradient(135deg, #22ab03 0%, var(--primary-green) 100%);
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 12px 32px rgba(30, 153, 3, 0.5), 
                0 0 20px rgba(30, 153, 3, 0.3);
    animation: glow 2s ease-in-out infinite;
}

.hero-btn-primary:active {
    transform: translateY(-2px) scale(1.01);
    transition: all 0.1s ease;
}

.hero-btn-secondary {
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    color: var(--text-primary);
    border: 2px solid var(--border-light);
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05);
}

.hero-btn-secondary:hover {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-card) 100%);
    border-color: var(--primary-green);
    color: var(--text-primary);
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.15), 
                0 0 20px rgba(30, 153, 3, 0.1);
}

.hero-btn-secondary:active {
    transform: translateY(-2px) scale(1.01);
    transition: all 0.1s ease;
}

/* Faster shine on hover for interactive feedback */
.hero-btn:hover::after {
    animation: shine 1.5s ease-in-out infinite;
}

/* Magnetic effect - slight tilt on hover */
.hero-btn:hover {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(-5px) scale(1.03) rotate(0deg);
    }
    33% {
        transform: translateY(-6px) scale(1.03) rotate(0.5deg);
    }
    66% {
        transform: translateY(-4px) scale(1.03) rotate(-0.5deg);
    }
}

/* Workflow Card */
.workflow-card {
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-card) 100%);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
    position: relative;
    transition: all 0.3s ease;
    max-width: 100%;
    border: 1px solid var(--border-light);
    border-left: 4px solid var(--primary-green);
}

.workflow-card:hover {
    box-shadow: 0 8px 40px rgba(30, 153, 3, 0.2);
    transform: translateY(-4px);
    border-left-color: var(--accent-emerald);
}

.ready-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-emerald) 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
    animation: pulse 2s ease-in-out infinite;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(30, 153, 3, 0.3);
}

@keyframes pulse {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        box-shadow: 0 4px 12px rgba(30, 153, 3, 0.3);
    }
    50% {
        transform: translateX(-50%) scale(1.05);
        box-shadow: 0 6px 20px rgba(30, 153, 3, 0.5);
    }
}

.workflow-steps {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.workflow-step {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 12px;
    align-items: start;
    padding: 12px 14px;
    background: var(--bg-card);
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    animation: slideIn 0.5s ease forwards;
    border: 1px solid transparent;
}

.workflow-step:nth-child(1) { animation-delay: 0.1s; }
.workflow-step:nth-child(2) { animation-delay: 0.2s; }
.workflow-step:nth-child(3) { animation-delay: 0.3s; }
.workflow-step:nth-child(4) { animation-delay: 0.4s; }
.workflow-step:nth-child(5) { animation-delay: 0.5s; }
.workflow-step:nth-child(6) { animation-delay: 0.6s; }

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.workflow-step:hover {
    background: var(--bg-card-hover);
    transform: translateX(6px) scale(1.02);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
    border-color: var(--primary-green);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-emerald) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 14px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(30, 153, 3, 0.2);
}

.workflow-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(30, 153, 3, 0.4);
}

.step-content h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.step-content p {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.workflow-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
    font-size: 13px;
    color: var(--text-secondary);
}

.workflow-footer .icon {
    color: var(--primary-green);
    animation: zap 1.5s ease-in-out infinite;
}

@keyframes zap {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.workflow-footer strong {
    color: var(--text-primary);
    font-weight: 700;
}
        
        /* Decorative Elements - Tool Logos */
        .decorative-icons {
            position: absolute;
            bottom: 40px;
            left: -85px;
            width: 140px;
            height: 180px;
            pointer-events: none;
            z-index: 10;
            display: flex;
            flex-direction: column;
        }
        
        .tool-logo {
            position: absolute;
            width: 50px;
            height: 50px;
            background: white;
            border-radius: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 12px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
            transition: all 0.3s ease;
            border: 3px solid #ffffff;
        }
        
        .tool-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
        
        .tool-logo:hover {
            transform: scale(1.15) rotate(5deg);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
            z-index: 20;
        }
        
        /* Clustered formation - bottom left */
        .tool-logo:nth-child(1) {
            bottom: 60px;
            left: 20px;
            transform: rotate(-8deg);
            z-index: 3;
        }
        
        .tool-logo:nth-child(1):hover {
            transform: rotate(-3deg) scale(1.15);
        }
        
        .tool-logo:nth-child(2) {
            bottom: 10px;
            left: 0;
            transform: rotate(5deg);
            z-index: 2;
        }
        
        .tool-logo:nth-child(2):hover {
            transform: rotate(10deg) scale(1.15);
        }
        
        .tool-logo:nth-child(3) {
            bottom: 0;
            left: 50px;
            transform: rotate(3deg);
            z-index: 1;
        }
        
        .tool-logo:nth-child(3):hover {
            transform: rotate(8deg) scale(1.15);
        }
        
        /* Logo Strip */
        .logo-strip {
            padding: 60px 20px;
            background: white;
        }
        
        .logo-strip h3 {
            text-align: center;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #9ca3af;
            margin-bottom: 30px;
        }
        
        .logos {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 40px;
            flex-wrap: wrap;
        }
        
        .logo-item {
            font-size: 20px;
            font-weight: 600;
            color: #4b5563;
            opacity: 0.7;
            transition: opacity 0.3s;
        }
        
        .logo-item:hover {
            opacity: 1;
        }
        
        /* Tablet Responsive */
        @media (max-width: 1200px) {
            .decorative-icons {
                left: -80px;
            }
        }
        
        @media (max-width: 1024px) {
            .hero-container {
                max-width: 900px;
                grid-template-columns: 1fr;
                gap: 48px;
            }
            
            .workflow-card {
                max-width: 600px;
                margin: 0 auto;
            }
        
            .hero h1 {
                font-size: 44px;
            }
        
            nav {
                gap: 20px;
            }
        
            .decorative-icons {
                display: flex;
                position: static;
                flex-direction: row;
                justify-content: center;
                gap: 16px;
                width: 100%;
                height: auto;
                margin-top: 24px;
                padding: 0;
            }
        
            .tool-logo {
                position: static;
                width: 56px;
                height: 56px;
                transform: none !important;
            }
        
            .tool-logo:hover {
                transform: scale(1.1) !important;
            }
        }
        
        /* Mobile Responsive */
      /* ============================================
   MOBILE NAVBAR - COMPACT ON SCROLL
   ============================================ */

        /* Mobile Responsive - Enhanced */
        /* Tablet Responsive */
        @media (max-width: 1200px) {
            .decorative-icons {
                left: -80px;
            }
        }
        
        @media (max-width: 1024px) {
            .hero-container {
                max-width: 900px;
                grid-template-columns: 1fr;
                gap: 48px;
            }
            
            .workflow-card {
                max-width: 600px;
                margin: 0 auto;
            }
        
            .hero h1 {
                font-size: 44px;
            }
        
            nav {
                gap: 20px;
            }
        
            .decorative-icons {
                display: flex;
                position: static;
                flex-direction: row;
                justify-content: center;
                gap: 16px;
                width: 100%;
                height: auto;
                margin-top: 24px;
                padding: 0;
            }
        
            .tool-logo {
                position: static;
                width: 56px;
                height: 56px;
                transform: none !important;
            }
        
            .tool-logo:hover {
                transform: scale(1.1) !important;
            }
        }
        
        /* Mobile Responsive */
        @media (max-width: 768px) {
            header {
                top: 10px;
                width: calc(100% - 20px);
            }
        
            .header-container {
                padding: 10px 16px;
                height: 50px;
            }
        
            .logo-nav {
                gap: 16px;
            }
        
            .logo {
                font-size: 14px;
                display: flex;
            }
        
            .logo-icon {
                width: 32px;
                height: 32px;
                display: flex;
            }
        
            nav {
                display: none;
            }
        
            .header-cta {
                font-size: 12px;
                padding: 8px 16px;
            }
        
            .hero {
                margin-top: 70px;
                padding: 16px 16px 40px;
            }
        
            .hero-container {
                gap: 32px;
            }
        
            .hero h1 {
                font-size: 32px;
                margin-bottom: 16px;
                line-height: 1.2;
            }
        
            .hero-badge {
                margin-bottom: 16px;
                font-size: 11px;
                padding: 5px 14px;
            }
        
            .certified-badge {
                margin-bottom: 3px;
                font-size: 12px;
            }
        
            .hero-description {
                
                font-size: 20px;
                max-width: 100%;
            }
        
            .launch-text {
                
                font-size: 20px;
            }
        
            .hero-cta-group {
                flex-direction: column;
                align-items: stretch;
                gap: 12px;
            }
        
            .hero-btn {
                text-align: center;
                padding: 13px 24px;
                font-size: 14px;
                width: 100%;
            }
        
            .workflow-card {
                padding: 20px 16px;
                border-radius: 14px;
                max-width: 100%;
            }
        
            .ready-badge {
                font-size: 10px;
                padding: 5px 12px;
                top: -10px;
            }
        
            .workflow-steps {
                gap: 8px;
                margin-bottom: 16px;
            }
        
            .workflow-step {
                padding: 10px 12px;
                grid-template-columns: 36px 1fr;
                gap: 10px;
            }
        
            .step-number {
                width: 36px;
                height: 36px;
                font-size: 13px;
            }
        
            .step-content h3 {
                font-size: 13px;
                margin-bottom: 3px;
            }
        
            .step-content p {
                font-size: 11px;
                line-height: 1.4;
            }
        
            .workflow-footer {
                padding-top: 12px;
                font-size: 11px;
            }
        
            .decorative-icons {
                display: flex;
                position: static;
                flex-direction: row;
                justify-content: center;
                gap: 16px;
                width: 100%;
                height: auto;
                margin-top: 24px;
                padding: 0;
            }
        
            .tool-logo {
                position: static;
                width: 56px;
                height: 56px;
                transform: none !important;
            }
        
            .tool-logo:hover {
                transform: scale(1.1) !important;
            }
        }
        
        /* Small Mobile */
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 28px;
            }
        
            .hero-description {
                font-size: 14px;
            }
        
            .workflow-card {
                padding: 18px 14px;
            }
        
            .ready-badge {
                font-size: 9px;
                padding: 4px 10px;
            }
        
            .workflow-step {
                padding: 9px 10px;
                grid-template-columns: 34px 1fr;
            }
        
            .step-number {
                width: 34px;
                height: 34px;
                font-size: 12px;
            }
        
            .step-content h3 {
                font-size: 12px;
            }
        
            .step-content p {
                font-size: 10px;
            }
        
            .workflow-footer {
                font-size: 10px;
            }
        }
    

           /* ============================================
           COLOR VARIABLES - PROFESSIONAL PALETTE
           ============================================ */

        :root {
            /* Primary Greens */
            --primary-green: #1e9903;
            --primary-dark: #178002;
            --accent-emerald: #10b981;
            
            /* Text Colors */
            --text-primary: #0f172a;
            --text-secondary: #475569;
            --text-muted: #64748b;
            
            /* Backgrounds */
            --bg-primary: #ffffff;
            --bg-secondary: #f8fafc;
            --bg-card: #f0fdf4;
            
            /* Borders & Shadows */
            --border-light: #e2e8f0;
            --border-medium: #cbd5e1;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        }

        .playbook-library {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 80px;
            background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
        }

        /* Header */
        .playbook-header {
            margin-bottom: 30px;
        }

        .playbook-title {
            font-size: 32px;
            font-weight: 800;
            color: var(--text-primary);
            margin-bottom: 10px;
            line-height: 1.3;
        }

        .playbook-title .highlight {
            background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-emerald) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .playbook-subtitle {
            font-size: 15px;
            color: var(--text-secondary);
            margin-bottom: 20px;
            line-height: 1.6;
            max-width: 800px;
        }

        /* Filter Tabs */
        .filter-tabs {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            margin-bottom: 30px;
        }

        .filter-tab {
            padding: 8px 18px;
            background: var(--bg-primary);
            border: 1px solid var(--border-light);
            border-radius: 8px;
            font-size: 13px;
            font-weight: 600;
            color: var(--text-muted);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .filter-tab:hover {
            background: var(--bg-secondary);
            border-color: var(--primary-green);
            color: var(--text-secondary);
            transform: translateY(-2px);
        }

        .filter-tab.active {
            background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-emerald) 100%);
            color: white;
            border-color: var(--primary-green);
            box-shadow: 0 4px 12px rgba(30, 153, 3, 0.25);
        }

        /* Playbook Grid - SMALLER CARDS */
        .playbook-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 14px;
            margin-bottom: 30px;
        }

        .playbook-card {
            background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-card) 100%);
            border: 1px solid var(--border-light);
            border-left: 3px solid transparent;
            border-radius: 10px;
            padding: 18px 14px 12px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            text-decoration: none;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .playbook-card.hidden {
            display: none;
        }

        .playbook-card:hover {
            transform: translateY(-4px) translateX(2px);
            box-shadow: 0 8px 24px rgba(30, 153, 3, 0.15);
            border-color: var(--primary-green);
            border-left-color: var(--primary-green);
            background: linear-gradient(135deg, var(--bg-card) 0%, #dcfce7 100%);
        }

        /* UPDATED: Logo container instead of icon */
        .playbook-logo {
            width: 38px;
            height: 38px;
            background: var(--bg-primary);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 12px;
            flex-shrink: 0;
            border: 1px solid var(--border-light);
            transition: all 0.3s ease;
            overflow: hidden;
            padding: 4px;
        }

        .playbook-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

        .playbook-card:hover .playbook-logo {
            background: var(--bg-primary);
            transform: scale(1.1);
            box-shadow: 0 4px 12px rgba(30, 153, 3, 0.2);
            border-color: var(--primary-green);
        }

        .playbook-card:hover .playbook-logo img {
            transform: scale(1.05);
        }

        .playbook-card-title {
            font-size: 14px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 6px;
            line-height: 1.3;
        }

        .playbook-card-description {
            font-size: 12px;
            color: var(--text-secondary);
            line-height: 1.5;
            margin-bottom: 12px;
            flex-grow: 1;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .playbook-link {
            display: inline-flex;
            align-items: center;
            font-size: 12px;
            font-weight: 600;
            color: var(--primary-green);
            text-decoration: none;
            gap: 4px;
            margin-top: auto;
            transition: all 0.2s ease;
        }

        .playbook-link:hover {
            color: var(--accent-emerald);
            gap: 6px;
        }

        /* Show More/Less Button */
        .show-more-container {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }

        .show-more-btn {
            padding: 12px 32px;
            background: linear-gradient(135deg, var(--text-primary) 0%, #1e293b 100%);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 4px 12px rgba(15, 23, 42, 0.2);
        }

        .show-more-btn:hover {
            background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-emerald) 100%);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(30, 153, 3, 0.35);
        }

        /* Browse Button */
        .browse-btn {
            padding: 10px 24px;
            background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-emerald) 100%);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(30, 153, 3, 0.25);
        }

        .browse-btn:hover {
            background: linear-gradient(135deg, #22ab03 0%, var(--primary-green) 100%);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(30, 153, 3, 0.4);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .playbook-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .playbook-title {
                font-size: 28px;
            }
        }

        @media (max-width: 768px) {
            .playbook-library {
                padding: 30px 20px;
            }

            .playbook-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }

            .playbook-title {
                font-size: 24px;
            }

            .filter-tabs {
                gap: 8px;
            }

            .filter-tab {
                font-size: 12px;
                padding: 6px 14px;
            }
        }

        @media (max-width: 480px) {
            .playbook-grid {
                grid-template-columns: 1fr;
            }
        }
        
        
        
        
        
    
            /*end playbook*/
            
            
            /* ===== Section Base ===== */
        /* ============================================
        COLOR VARIABLES - PROFESSIONAL PALETTE
        ============================================ */

        :root {
            /* Primary Greens */
            --primary-green: #1e9903;
            --primary-dark: #178002;
            --accent-emerald: #10b981;
            
            /* Text Colors */
            --text-primary: #0f172a;
            --text-secondary: #475569;
            --text-muted: #64748b;
            
            /* Backgrounds */
            --bg-primary: #ffffff;
            --bg-secondary: #f8fafc;
            --bg-card: #f0fdf4;
            
            /* Borders & Shadows */
            --border-light: #e2e8f0;
        }

        .problems {
           padding: 80px 0;
            background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
            position: relative;
        }
        
        .problems::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 60px;
            background: linear-gradient(180deg, transparent 0%, var(--bg-primary) 100%);
            pointer-events: none;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-label {
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--primary-green);
            font-weight: 700;
            margin-bottom: 12px;
            display: inline-block;
            padding: 4px 12px;
            background: var(--bg-card);
            border-radius: 20px;
        }

        .section-title {
            font-size: 36px;
            line-height: 1.3;
            color: var(--text-primary);
            max-width: 800px;
            margin: 0 auto;
            font-weight: 800;
        }

        .highlight {
            background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-emerald) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 800;
        }

        /* ===== Grid - More Compact ===== */
        .problem-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 18px;
            margin-top: 50px;
        }

        /* ===== Card Wrapper with Border ===== */
        .problem-card-wrap {
            background: var(--bg-primary);
            padding: 5px;
            border-radius: 16px;
            cursor: pointer;
            border: 1px solid var(--border-light);
            transition: 
                transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.3s ease;
        }

        .problem-card-wrap:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 30px rgba(30, 153, 3, 0.15);
            border-color: var(--primary-green);
        }

        /* ===== Card - More Compact ===== */
        .problem-card {
            background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-card) 100%);
            border-radius: 12px;
            padding: 24px 18px;
            transition: background 0.3s ease;
            height: 100%;
        }

        .problem-card-wrap:hover .problem-card {
            background: linear-gradient(135deg, var(--bg-card) 0%, #dcfce7 100%);
        }

        /* ===== Card Content - Smaller ===== */
        .problem-icon {
            width: 42px;
            height: 42px;
            background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
            transition: all 0.3s ease;
            border: 1px solid #fdba74;
        }

        .problem-card-wrap:hover .problem-icon {
            transform: scale(1.1);
            background: linear-gradient(135deg, #fed7aa 0%, #fb923c 100%);
            box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
        }

        .problem-card-wrap:hover .problem-icon svg {
            stroke: #ffffff;
        }

        .problem-card h4 {
            font-size: 15px;
            font-weight: 600;
            line-height: 1.5;
            color: var(--text-primary);
            margin: 0;
        }

        /* ===== Responsive ===== */
        @media (max-width: 768px) {
            .problems {
                padding: 60px 0;
            }

            .section-title {
                font-size: 26px;
            }

            .problem-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .section-header {
                margin-bottom: 40px;
            }
        }





/* ===================================
           INTEGRATIONS SECTION - COMPACT
           =================================== */

         .integrations-section {
            padding: 80px 0;
            background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
            position: relative;
        }
        
        .integrations-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 60px;
            background: linear-gradient(180deg, var(--bg-primary) 0%, transparent 100%);
            pointer-events: none;
            z-index: 1;
        }
        
        .container {
            max-width: 1250px;
            margin: 0 auto;
            padding: 0 60px;
        }
        
        .integrations-content {
            display: grid;
            grid-template-columns: 1.15fr 1fr;
            gap: 70px;
            align-items: center;
        }
        
        /* ===== LEFT SIDE: TEXT CONTENT ===== */
        .integrations-text h2 {
            font-size: 36px;
            line-height: 1.3;
            color: var(--text-primary);
            margin-bottom: 20px;
            font-weight: 800;
        }
        
        .italic-highlight {
            font-style: italic;
            background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-emerald) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 700;
        }
        
        .main-description {
            font-size: 15px;
            line-height: 1.7;
            color: var(--text-secondary);
            margin-bottom: 16px;
        }
        
        .secondary-description {
            font-size: 15px;
            line-height: 1.7;
            color: var(--text-muted);
            margin-bottom: 24px;
        }
        
        .highlight-box {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            padding: 20px 24px;
            background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card-hover) 100%);
            border-radius: 12px;
            border-left: 4px solid var(--primary-green);
            box-shadow: 0 4px 16px rgba(30, 153, 3, 0.1);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .highlight-box:hover {
            transform: translateX(4px);
            box-shadow: 0 8px 24px rgba(30, 153, 3, 0.15);
            border-left-color: var(--accent-emerald);
        }
        
        .highlight-box svg {
            flex-shrink: 0;
            margin-top: 3px;
            width: 24px;
            height: 24px;
            stroke: var(--primary-green);
        }
        
        .highlight-box p {
            font-size: 14px;
            line-height: 1.6;
            color: var(--text-secondary);
            margin: 0;
        }
        
        .highlight-box strong {
            color: var(--text-primary);
            font-weight: 700;
        }
        
        /* ===== RIGHT SIDE: FRAMED CARD ===== */
        .integrations-visual {
            position: relative;
        }
        
        .framed-card {
            background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
            padding: 6px;
            border-radius: 20px;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--border-light);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .framed-card:hover {
            box-shadow: 0 12px 36px rgba(30, 153, 3, 0.12);
            transform: translateY(-4px);
        }
        
        .framed-card-inner {
            background: linear-gradient(180deg, var(--bg-secondary) 0%, #f1f5f9 100%);
            border-radius: 16px;
            padding: 22px 18px;
            min-height: 350px;
            position: relative;
        }
        
        /* ===== Notification Badge ===== */
        .notification-badge {
            display: flex;
            align-items: center;
            gap: 14px;
            background: var(--bg-primary);
            border: 1px solid var(--border-light);
            border-radius: 14px;
            padding: 14px 18px;
            margin-bottom: 28px;
            box-shadow: 0 4px 16px rgba(30, 153, 3, 0.08);
            max-width: fit-content;
            margin-left: auto;
            margin-right: auto;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .notification-badge:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(30, 153, 3, 0.15);
            border-color: var(--primary-green);
        }
        
        .notification-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card-hover) 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            border: 1px solid var(--border-light);
            transition: all 0.3s ease;
        }
        
        .notification-badge:hover .notification-icon {
            background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-emerald) 100%);
            transform: scale(1.08);
            box-shadow: 0 4px 12px rgba(30, 153, 3, 0.3);
        }
        
        .notification-icon svg {
            width: 20px;
            height: 20px;
            stroke: var(--primary-green);
            transition: all 0.3s ease;
        }
        
        .notification-badge:hover .notification-icon svg {
            stroke: white;
        }
        
        .notification-text {
            display: flex;
            flex-direction: column;
        }
        
        .notification-title {
            font-size: 14px;
            font-weight: 700;
            color: var(--text-primary);
            line-height: 1.3;
        }
        
        .notification-subtitle {
            font-size: 12px;
            color: var(--text-muted);
            font-weight: 500;
        }
        
        /* ===== Integration Grid ===== */
        .integration-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 14px;
        }
        
        .integration-badge {
            display: flex;
            align-items: center;
            gap: 14px;
            background: var(--bg-primary);
            border: 1px solid var(--border-light);
            border-radius: 14px;
            padding: 14px 16px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }
        
        /* Shine effect on hover */
        .integration-badge::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -100%;
            width: 40%;
            height: 200%;
            background: linear-gradient(
                90deg,
                transparent,
                rgba(30, 153, 3, 0.1),
                rgba(30, 153, 3, 0.2),
                rgba(30, 153, 3, 0.1),
                transparent
            );
            transform: skewX(-25deg);
            transition: all 0.6s ease;
        }
        
        .integration-badge:hover::after {
            left: 150%;
        }
        
        .integration-badge:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(30, 153, 3, 0.12);
            border-color: var(--primary-green);
            background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-card) 100%);
        }
        
        .badge-icon {
            width: 40px;
            height: 40px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            transition: all 0.3s ease;
            position: relative;
            z-index: 1;
        }
        
        .integration-badge:hover .badge-icon {
            transform: scale(1.12) rotate(5deg);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
        }
        
        .badge-icon svg {
            width: 18px;
            height: 18px;
        }
        
        .integration-badge span {
            font-size: 13px;
            font-weight: 600;
            color: var(--text-primary);
            line-height: 1.4;
        }
        
        /* Individual Badge Colors - Professional Gradients */
        .integration-badge:nth-child(1) .badge-icon {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }
        
        .integration-badge:nth-child(2) .badge-icon {
            background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-emerald) 100%);
        }
        
        .integration-badge:nth-child(3) .badge-icon {
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        }
        
        .integration-badge:nth-child(4) .badge-icon {
            background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
        }
        
        .integration-badge:nth-child(5) .badge-icon {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        }
        
        .integration-badge:nth-child(6) .badge-icon {
            background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
        }
        
        .integration-badge:nth-child(7) .badge-icon {
            background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
        }
        
        .integration-badge:nth-child(8) .badge-icon {
            background: linear-gradient(135deg, #a1c4fd 0%, #c2e9fb 100%);
        }
        
        .integration-badge:nth-child(9) .badge-icon {
            background: linear-gradient(135deg, #fee140 0%, #fa709a 100%);
        }
        
        .integration-badge:nth-child(10) .badge-icon {
            background: linear-gradient(135deg, #fbc2eb 0%, #a6c1ee 100%);
        }
        
        /* ===== Responsive Design ===== */
        @media (max-width: 1200px) {
            .container {
                max-width: 1100px;
                padding: 0 50px;
            }
            
            .integrations-content {
                gap: 60px;
            }
        
            .integrations-text h2 {
                font-size: 42px;
            }
        }
        
        @media (max-width: 1024px) {
            .container {
                padding: 0 40px;
            }
            
            .integrations-content {
                grid-template-columns: 1fr;
                gap: 50px;
            }
            
            .integrations-text h2 {
                font-size: 38px;
            }
        }
        
        @media (max-width: 768px) {
            .integrations-section {
                padding: 60px 0;
            }
        
            .container {
                padding: 0 24px;
            }
            
            .integrations-text h2 {
                font-size: 32px;
                margin-bottom: 20px;
            }
            
            .main-description,
            .secondary-description {
                font-size: 15px;
            }
            
            .integration-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }
            
            .framed-card-inner {
                padding: 24px 20px;
                min-height: auto;
            }
            
            .integration-badge {
                padding: 14px 16px;
            }
            
            .badge-icon {
                width: 36px;
                height: 36px;
            }
        
            .badge-icon svg {
                width: 16px;
                height: 16px;
            }
            
            .integration-badge span {
                font-size: 12px;
            }
            
            .highlight-box {
                flex-direction: column;
                gap: 12px;
                padding: 18px 20px;
            }
        
            .notification-badge {
                padding: 12px 16px;
                margin-bottom: 24px;
            }
        }
        
        @media (max-width: 480px) {
            .container {
                padding: 0 20px;
            }
            
            .integrations-text h2 {
                font-size: 28px;
            }
            
            .main-description,
            .secondary-description {
                font-size: 14px;
            }
            
            .framed-card {
                padding: 5px;
                border-radius: 16px;
            }
            
            .framed-card-inner {
                border-radius: 14px;
                padding: 20px 16px;
            }
        
            .notification-badge {
                padding: 10px 14px;
                margin-bottom: 20px;
            }
        
            .notification-icon {
                width: 36px;
                height: 36px;
            }
        
            .integration-badge span {
                font-size: 11px;
            }
        
            .highlight-box p {
                font-size: 14px;
            }
        }
    



            
            /* ===================================
               SERVICES CARDS SECTION - UNIQUE CLASSES
               =================================== */
            
            .services-cards-section {
                padding: 80px 0;
                background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
            }
            
            /* Container with proper spacing */
            .services-cards-section .container {
                max-width: 950px;
                margin: 0 auto;
                padding: 0 40px;
            }
            
            /* ===== Header Section ===== */
            .testimonials-header {
                text-align: center;
                margin-bottom: 50px;
            }
            
            .testimonials-badges {
                margin-bottom: 12px;
            }
            
            .testimonials-badge-text {
                font-size: 11px;
                text-transform: uppercase;
                letter-spacing: 2px;
                color: #1e9903;
                font-weight: 700;
                display: inline-block;
                padding: 4px 12px;
                background: #f0fdf4;
                border-radius: 20px;
            }
            
            .testimonials-main-title {
                font-size: 36px;
                line-height: 1.3;
                color: #0f172a;
                max-width: 800px;
                margin: 0 auto 4px;
                font-weight: 800;
            }
            
            .testimonials-subtitle {
                font-size: 36px;
                line-height: 1.3;
                margin: 0 auto 8px;
                font-weight: 800;
                background: linear-gradient(135deg, #1e9903 0%, #10b981 100%);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-clip: text;
            }
            
            .testimonials-description {
                font-size: 16px;
                color: #475569;
                margin: 0 auto 0;
                font-weight: 400;
            }
            
            /* Service Card Container */
            .single-service-card {
                margin-bottom: 40px;
            }
            
            .single-service-card:last-child {
                margin-bottom: 0;
            }
            
            /* ===== White Framed Card ===== */
            .service-frame-card {
                background: #ffffff;
                padding: 0;
                border-radius: 24px;
                border: 1px solid #e2e8f0;
                box-shadow: 0 2px 8px rgba(30, 153, 3, 0.08), 0 1px 3px rgba(0, 0, 0, 0.04);
                transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
                overflow: hidden;
            }
            
            .single-service-card:hover .service-frame-card {
                transform: translateY(-4px);
                box-shadow: 0 12px 30px rgba(30, 153, 3, 0.15), 0 4px 8px rgba(0, 0, 0, 0.06);
                border-color: #1e9903;
            }
            
            .service-frame-inner {
                background: #ffffff;
                border-radius: 0;
                display: grid;
                grid-template-columns: 1fr 1fr;
                overflow: hidden;
                min-height: 280px;
            }
            
            /* ===== Image Section ===== */
            .service-img-section {
                position: relative;
                background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
                display: flex;
                align-items: center;
                justify-content: center;
                overflow: hidden;
                padding: 5px;
                border-right: 1px solid #e2e8f0;
            }
            
            .service-photo {
                width: 100%;
                height: 100%;
                object-fit: contain;
                display: block;
                padding: 0;
            }
            
            .img-placeholder {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 12px;
                padding: 40px 20px;
            }
            
            .img-placeholder svg {
                stroke: #10b981;
            }
            
            .img-placeholder p {
                font-size: 13px;
                color: #64748b;
                font-weight: 500;
                margin: 0;
            }
            
            /* Hide placeholder when image exists */
            .service-photo[src]:not([src=""]) ~ .img-placeholder {
                display: none;
            }
            
            /* ===== Content Section ===== */
            .service-text-section {
                padding: 40px 45px;
                display: flex;
                flex-direction: column;
                justify-content: center;
                background: #ffffff;
            }
            
            .phase-badge {
                display: inline-flex;
                align-items: center;
                gap: 8px;
                padding: 8px 16px;
                background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
                border: 1px solid #bbf7d0;
                border-radius: 8px;
                margin-bottom: 16px;
                font-size: 13px;
                font-weight: 700;
                color: #1e9903;
                width: fit-content;
                transition: all 0.3s ease;
            }
            
            .single-service-card:hover .phase-badge {
                background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
                border-color: #1e9903;
            }
            
            .phase-badge svg {
                width: 16px;
                height: 16px;
            }
            
            .service-text-section h3 {
                font-size: 28px;
                font-weight: 800;
                color: #0f172a;
                margin-bottom: 16px;
                line-height: 1.2;
                transition: color 0.3s ease;
            }
            
            .single-service-card:hover .service-text-section h3 {
                background: linear-gradient(135deg, #1e9903 0%, #10b981 100%);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-clip: text;
            }
            
            .service-text-section p {
                font-size: 15px;
                line-height: 1.7;
                color: #475569;
                margin-bottom: 0;
            }
            
            /* Feature List */
            .service-features-list {
                display: none;
            }
            
            /* ===================================
               RESPONSIVE DESIGN
               =================================== */
            
            @media (max-width: 1200px) {
                .services-cards-section .container {
                    max-width: 1100px;
                    padding: 0 30px;
                }
                
                .service-frame-inner {
                    grid-template-columns: 1fr 1fr;
                    min-height: 260px;
                }
                
                .service-text-section {
                    padding: 35px 40px;
                }
                
                .service-text-section h3 {
                    font-size: 26px;
                }
            }
            
            @media (max-width: 1024px) {
                .services-cards-section .container {
                    max-width: 900px;
                    padding: 0 24px;
                }
                
                .service-frame-inner {
                    grid-template-columns: 1fr 1fr;
                    min-height: 250px;
                }
                
                .service-text-section {
                    padding: 32px 36px;
                }
                
                .service-text-section h3 {
                    font-size: 24px;
                }
                
                .service-text-section p {
                    font-size: 14px;
                }
                
                .testimonials-main-title,
                .testimonials-subtitle {
                    font-size: 32px;
                }
            }
            
            @media (max-width: 768px) {
                .services-cards-section {
                    padding: 60px 0;
                }
                
                .services-cards-section .container {
                    padding: 0 20px;
                }
                
                .testimonials-header {
                    margin-bottom: 40px;
                }
                
                .testimonials-main-title,
                .testimonials-subtitle {
                    font-size: 26px;
                }
                
                .testimonials-description {
                    font-size: 15px;
                }
                
                .single-service-card {
                    margin-bottom: 30px;
                }
                
                .service-frame-inner {
                    grid-template-columns: 1fr;
                    min-height: auto;
                }
                
                .service-img-section {
                    min-height: 300px;
                    padding: 30px;
                    border-right: none;
                    border-bottom: 1px solid #e2e8f0;
                }
                
                .service-text-section {
                    padding: 32px;
                }
                
                .service-text-section h3 {
                    font-size: 26px;
                }
                
                .service-text-section p {
                    font-size: 15px;
                }
            }
            
            @media (max-width: 480px) {
                .services-cards-section .container {
                    padding: 0 16px;
                }
                
                .service-frame-card {
                    border-radius: 20px;
                }
                
                .testimonials-main-title,
                .testimonials-subtitle {
                    font-size: 22px;
                }
                
                .testimonials-description {
                    font-size: 14px;
                }
                
                .service-img-section {
                    min-height: 250px;
                    padding: 24px;
                }
                
                .service-text-section {
                    padding: 28px 24px;
                }
                
                .service-text-section h3 {
                    font-size: 22px;
                }
                
                .service-text-section p {
                    font-size: 14px;
                }
                
                .phase-badge {
                    font-size: 12px;
                    padding: 6px 14px;
                }
            }

            
            /* end service card section */
            
            
            
       /*Why us section start*/  
           
          
            
            .comparison-section {
            padding: 60px 20px;
            background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
        }

        .comparison-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .comparison-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .comparison-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, #1e9903 0%, #10b981 100%);
            padding: 6px 16px;
            border-radius: 24px;
            font-size: 12px;
            font-weight: 600;
            color: white;
            margin-bottom: 16px;
            box-shadow: 0 4px 12px rgba(30, 153, 3, 0.25);
        }

        .comparison-header h2 {
            font-size: 38px;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 12px;
            line-height: 1.2;
        }

        .comparison-highlight {
            background: linear-gradient(135deg, #1e9903 0%, #10b981 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .comparison-desc {
            font-size: 15px;
            color: #475569;
            max-width: 600px;
            margin: 0 auto;
        }

        .table-wrapper {
            overflow-x: auto;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
            background: white;
            border: 1px solid #e2e8f0;
        }

        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 700px;
        }

        .comparison-table thead {
            background: #f8fafc;
            border-bottom: 2px solid #e2e8f0;
        }

        .comparison-table thead th {
            padding: 14px 12px;
            font-size: 13px;
            font-weight: 700;
            color: #0f172a;
            text-align: center;
            border-right: 1px solid #e2e8f0;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .comparison-table thead th:first-child {
            text-align: left;
            color: #64748b;
        }

        .comparison-table thead th:last-child {
            border-right: none;
        }

        .comparison-table thead th.highlight-header {
            background: linear-gradient(135deg, #1e9903 0%, #10b981 100%);
            color: white;
        }

        .comparison-table tbody tr {
            border-bottom: 1px solid #f1f5f9;
            transition: background 0.2s ease;
        }

        .comparison-table tbody tr:hover {
            background: #fafbfc;
        }

        .comparison-table tbody tr:last-child {
            border-bottom: none;
        }

        .comparison-table tbody td {
            padding: 14px 12px;
            font-size: 14px;
            color: #475569;
            text-align: center;
            border-right: 1px solid #f1f5f9;
        }

        .comparison-table tbody td:first-child {
            text-align: left;
            font-weight: 600;
            color: #0f172a;
            font-size: 13px;
        }

        .comparison-table tbody td:last-child {
            border-right: none;
        }

        .highlight-column {
            background: #fafffe;
        }

        .check-icon {
            color: #1e9903;
            font-size: 18px;
            font-weight: 700;
        }

        .cross-icon {
            color: #cbd5e1;
            font-size: 18px;
            font-weight: 400;
        }

        /* Mobile view */
        @media (max-width: 768px) {
            .comparison-section {
                padding: 50px 16px;
            }

            .comparison-header h2 {
                font-size: 28px;
            }

            .comparison-desc {
                font-size: 14px;
            }

            .table-wrapper {
                border-radius: 8px;
            }

            .comparison-table {
                min-width: 650px;
            }

            .comparison-table thead th {
                padding: 12px 10px;
                font-size: 11px;
            }

            .comparison-table tbody td {
                padding: 12px 10px;
                font-size: 13px;
            }

            .comparison-table tbody td:first-child {
                font-size: 12px;
            }
        }

        @media (max-width: 480px) {
            .comparison-section {
                padding: 40px 12px;
            }

            .comparison-header h2 {
                font-size: 24px;
            }

            .comparison-header {
                margin-bottom: 40px;
            }

            .comparison-table {
                min-width: 600px;
            }

            .comparison-table thead th {
                padding: 10px 8px;
                font-size: 10px;
            }

            .comparison-table tbody td {
                padding: 10px 8px;
                font-size: 12px;
            }

            .comparison-table tbody td:first-child {
                font-size: 11px;
            }

            .check-icon,
            .cross-icon {
                font-size: 16px;
            }
        }
            
            
            
            /*Why us section*/
            
            
            
            
            
            
            
/* Testimonial section section start */
            
            .testimonial-section-new {
            padding: 80px 20px;
            background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
            position: relative;
            overflow: hidden;
        }
        
        .testimonial-container-new {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        /* Header */
        .testimonial-header-new {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .testimonial-badge-new {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, #1e9903 0%, #10b981 100%);
            padding: 8px 18px;
            border-radius: 24px;
            font-size: 13px;
            font-weight: 600;
            color: white;
            margin-bottom: 20px;
            box-shadow: 0 4px 12px rgba(30, 153, 3, 0.25);
        }
        
        .testimonial-header-new h2 {
            font-size: 48px;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 16px;
            line-height: 1.2;
        }
        
        .testimonial-highlight {
            background: linear-gradient(135deg, #1e9903 0%, #10b981 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .testimonial-desc {
            font-size: 16px;
            color: #475569;
            max-width: 600px;
            margin: 0 auto;
        }
        
        /* Grid */
        .testimonial-grid-new {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 24px;
            margin-bottom: 80px;
        }
        
        /* Card */
        .testimonial-card-new {
            background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
            border-radius: 16px;
            padding: 28px;
            border: 1px solid #e2e8f0;
            border-left: 4px solid #1e9903;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
            opacity: 0;
            transform: translateY(30px);
        }
        
        .testimonial-card-new.card-visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .testimonial-card-new:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 32px rgba(30, 153, 3, 0.2);
            border-left-color: #10b981;
        }
        
        /* Top Section */
        .testimonial-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .quote-icon-new {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, #1e9903 0%, #10b981 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            box-shadow: 0 4px 12px rgba(30, 153, 3, 0.3);
        }
        
        .quote-icon-new svg {
            width: 24px;
            height: 24px;
        }
        
        .rating-stars-new {
            display: flex;
            gap: 4px;
            color: #1e9903;
            font-size: 18px;
        }
        
        /* Text */
        .testimonial-text-new {
            font-size: 15px;
            line-height: 1.7;
            color: #475569;
            margin-bottom: 24px;
            font-style: italic;
        }
        
        /* Author */
        .testimonial-author-new {
            display: flex;
            align-items: center;
            gap: 14px;
            padding-top: 20px;
            border-top: 1px solid #e2e8f0;
        }
        
        .author-avatar-new {
            width: 52px;
            height: 52px;
            background: linear-gradient(135deg, #1e9903 0%, #10b981 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            font-weight: 700;
            color: white;
            flex-shrink: 0;
            border: 3px solid #dcfce7;
        }
        
        .author-name-new {
            font-size: 16px;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 2px;
        }
        
        .author-role-new {
            font-size: 13px;
            color: #64748b;
        }
        
        /* Video Card */
        .video-card-new {
            padding: 0;
            overflow: hidden;
            position: relative;
            height: 400px;
        }
        
        .video-wrapper-new {
            width: 100%;
            height: 100%;
            position: relative;
            border-radius: 16px;
            overflow: hidden;
        }
        
        .testimonial-video-new {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .video-overlay-new {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transition: opacity 0.3s ease;
        }
        
        .video-card-new.playing .video-overlay-new {
            opacity: 0;
            pointer-events: none;
        }
        
        .play-btn-new {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #1e9903 0%, #10b981 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 8px 24px rgba(30, 153, 3, 0.4);
            margin-bottom: 20px;
        }
        
        .play-btn-new:hover {
            transform: scale(1.1);
            box-shadow: 0 12px 32px rgba(30, 153, 3, 0.6);
        }
        
        .play-btn-new svg {
            width: 32px;
            height: 32px;
            margin-left: 4px;
        }
        
        .video-info-new {
            text-align: center;
            color: white;
        }
        
        .video-info-new h4 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 8px;
        }
        
        .video-info-new p {
            font-size: 14px;
            opacity: 0.9;
        }
        
        .mute-btn-new {
            position: absolute;
            top: 16px;
            right: 16px;
            background: rgba(0, 0, 0, 0.6);
            border: none;
            color: white;
            font-size: 20px;
            padding: 8px 12px;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
        }
        
        .mute-btn-new:hover {
            background: rgba(0, 0, 0, 0.8);
        }
        
        .video-card-new.playing .mute-btn-new {
            display: block !important;
        }
        
        /* Stats */
        .stats-section-new {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 32px;
            padding: 50px 0;
            border-top: 2px solid #e2e8f0;
        }
        
        .stat-box-new {
            text-align: center;
            padding: 24px;
            background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
            border-radius: 12px;
            border: 1px solid #e2e8f0;
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(20px);
        }
        
        .stat-box-new.stat-visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .stat-box-new:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(30, 153, 3, 0.15);
            border-color: #1e9903;
        }
        
        .stat-number-new {
            font-size: 48px;
            font-weight: 800;
            background: linear-gradient(135deg, #1e9903 0%, #10b981 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 8px;
            line-height: 1;
        }
        
        .stat-label-new {
            font-size: 15px;
            color: #64748b;
            font-weight: 600;
        }
        
        /* Stagger animation delays */
        .testimonial-card-new:nth-child(1) { transition-delay: 0.1s; }
        .testimonial-card-new:nth-child(2) { transition-delay: 0.2s; }
        .testimonial-card-new:nth-child(3) { transition-delay: 0.3s; }
        .testimonial-card-new:nth-child(4) { transition-delay: 0.4s; }
        .testimonial-card-new:nth-child(5) { transition-delay: 0.5s; }
        .testimonial-card-new:nth-child(6) { transition-delay: 0.6s; }
        
        .stat-box-new:nth-child(1) { transition-delay: 0.1s; }
        .stat-box-new:nth-child(2) { transition-delay: 0.2s; }
        .stat-box-new:nth-child(3) { transition-delay: 0.3s; }
        .stat-box-new:nth-child(4) { transition-delay: 0.4s; }
        
        /* Tablet */
        @media (max-width: 1024px) {
            .testimonial-grid-new {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            }
        }
        
        /* Mobile */
        @media (max-width: 768px) {
            .testimonial-section-new {
                padding: 60px 16px;
            }
        
            .testimonial-header-new h2 {
                font-size: 36px;
            }
        
            .testimonial-desc {
                font-size: 15px;
            }
        
            .testimonial-grid-new {
                grid-template-columns: 1fr;
                gap: 20px;
                margin-bottom: 60px;
            }
        
            .testimonial-card-new {
                padding: 24px;
            }
        
            .video-card-new {
                height: 350px;
            }
        
            .stat-number-new {
                font-size: 40px;
            }
        
            .stats-section-new {
                gap: 20px;
            }
        }
        
        @media (max-width: 480px) {
            .testimonial-header-new h2 {
                font-size: 32px;
            }
        
            .testimonial-card-new {
                padding: 20px;
            }
        
            .video-card-new {
                height: 300px;
            }
        
            .play-btn-new {
                width: 70px;
                height: 70px;
            }
        
            .video-info-new h4 {
                font-size: 18px;
            }
        
            .stat-number-new {
                font-size: 36px;
            }
        }
        
        
        /* Testimonial section section end */
            
            
            
            
            
           
            
            
            /* ============================================
               TIMELINE SECTION - ENHANCED RESPONSIVE
               ============================================ */
            
            :root {
                /* Primary Greens */
                --primary-green: #1e9903;
                --primary-dark: #178002;
                --accent-emerald: #10b981;
                
                /* Text Colors */
                --text-primary: #0f172a;
                --text-secondary: #475569;
                --text-muted: #64748b;
                
                /* Backgrounds */
                --bg-primary: #ffffff;
                --bg-secondary: #f8fafc;
                --bg-card: #f0fdf4;
                
                /* Borders & Shadows */
                --border-light: #e2e8f0;
            }
            
            .timeline-section {
                max-width: 1100px;
                margin: 0 auto;
                padding: 60px 100px 40px 100px;
                background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
            }
            
            /* Header */
            .timeline-header {
                text-align: center;
                margin-bottom: 50px;
            }
            
            .timeline-title {
                font-size: 38px;
                font-weight: 800;
                color: var(--text-primary);
                margin-bottom: 10px;
                line-height: 1.3;
            }
            
            .timeline-title .highlight {
                background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-emerald) 100%);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-clip: text;
                position: relative;
                display: inline-block;
            }
            
            .timeline-subtitle {
                font-size: 22px;
                font-weight: 400;
                color: var(--text-secondary);
            }
            
            /* Main Timeline Container */
            .timeline-container {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 50px;
                align-items: start;
                position: relative;
                min-height: 1400px;
            }
            
            /* Left Side - Scrolling Text Boxes */
            .timeline-left {
                position: relative;
            }
            
            .timeline-phases {
                display: flex;
                flex-direction: column;
                gap: 40px;
            }
            
            /* White Border Card Style - ENHANCED */
            .phase-wrapper {
                background: var(--bg-primary);
                padding: 3px;
                border-radius: 18px;
                opacity: 0.4;
                transform: translateY(30px);
                transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
                border: 1px solid var(--border-light);
                box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
                position: relative;
                overflow: hidden;
            }
            
            /* Shimmer effect on inactive cards */
            .phase-wrapper::before {
                content: '';
                position: absolute;
                top: -50%;
                left: -100%;
                width: 30%;
                height: 200%;
                background: linear-gradient(
                    90deg,
                    transparent,
                    rgba(255, 255, 255, 0.3),
                    transparent
                );
                transform: skewX(-20deg);
                animation: shimmer 3s infinite;
            }
            
            @keyframes shimmer {
                0% {
                    left: -100%;
                }
                100% {
                    left: 200%;
                }
            }
            
            .phase-wrapper.active {
                opacity: 1;
                transform: translateY(0);
                border-color: var(--primary-green);
                box-shadow: 0 8px 24px rgba(30, 153, 3, 0.2),
                            0 0 0 1px rgba(30, 153, 3, 0.1);
            }
            
            .phase-wrapper.active::before {
                animation: none;
            }
            
            .phase-inner {
                background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-emerald) 100%);
                border-radius: 15px;
                padding: 22px 20px;
                position: relative;
                overflow: hidden;
            }
            
            /* Subtle pattern overlay */
            .phase-inner::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: 
                    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
                pointer-events: none;
            }
            
            .phase-title {
                font-size: 16px;
                font-weight: 600;
                color: #ffffff;
                margin-bottom: 10px;
                line-height: 1.3;
                position: relative;
            }
            
            .phase-description {
                font-size: 15px;
                line-height: 1.5;
                color: rgba(255, 255, 255, 0.95);
                position: relative;
            }
            
            /* Right Side - Sticky Image Box - ENHANCED */
            .timeline-right {
                position: sticky;
                top: 140px;
                height: fit-content;
                margin-top: 30px;
            }
            
            .timeline-image-wrapper {
                background: var(--bg-primary);
                padding: 3px;
                border-radius: 18px;
                box-shadow: 0 8px 28px rgba(15, 23, 42, 0.12);
                border: 1px solid var(--border-light);
                transition: all 0.3s ease;
            }
            
            .timeline-image-wrapper:hover {
                box-shadow: 0 12px 40px rgba(15, 23, 42, 0.15);
                transform: translateY(-2px);
            }
            
            .timeline-image-inner {
                background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-card) 100%);
                border-radius: 15px;
                padding: 24px;
                min-height: 380px;
                display: flex;
                align-items: center;
                justify-content: center;
                position: relative;
            }
            
            /* Image Content Container */
            .timeline-content {
                position: absolute;
                inset: 0;
                opacity: 0;
                transition: opacity 0.5s ease;
                display: flex;
                align-items: center;
                justify-content: center;
                padding: 24px;
            }
            
            .timeline-content.active {
                opacity: 1;
            }
            
            /* Flowchart Styles - ENHANCED */
            .timeline-flowchart {
                width: 100%;
                max-width: 420px;
            }
            
            .flow-box {
                background: var(--bg-primary);
                border: 2px solid var(--border-light);
                border-radius: 12px;
                padding: 14px 18px;
                margin-bottom: 16px;
                box-shadow: 0 2px 10px rgba(15, 23, 42, 0.08);
                transition: all 0.3s ease;
            }
            
            .flow-box:hover {
                box-shadow: 0 4px 16px rgba(15, 23, 42, 0.12);
                transform: translateY(-2px);
                border-color: var(--primary-green);
            }
            
            .flow-box-header {
                display: flex;
                align-items: center;
                gap: 8px;
                margin-bottom: 8px;
            }
            
            .flow-box-icon {
                width: 32px;
                height: 32px;
                border-radius: 8px;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 16px;
                flex-shrink: 0;
                transition: transform 0.3s ease;
            }
            
            .flow-box:hover .flow-box-icon {
                transform: scale(1.1) rotate(5deg);
            }
            
            .flow-box-title {
                font-size: 13px;
                font-weight: 700;
                color: var(--text-primary);
                line-height: 1.3;
            }
            
            .flow-box-list {
                list-style: none;
                padding-left: 40px;
            }
            
            .flow-box-list li {
                font-size: 11px;
                color: var(--text-secondary);
                line-height: 1.6;
                position: relative;
                padding-left: 12px;
            }
            
            .flow-box-list li::before {
                content: '•';
                position: absolute;
                left: 0;
                color: var(--primary-green);
                font-weight: bold;
            }
            
            .flow-line {
                width: 2px;
                height: 16px;
                background: linear-gradient(to bottom, var(--primary-green), var(--accent-emerald));
                margin: 0 auto 16px;
                box-shadow: 0 0 8px rgba(30, 153, 3, 0.3);
            }
            
            .flow-center {
                background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-card) 100%);
                border: 2.5px solid var(--primary-green);
                border-radius: 12px;
                padding: 12px 20px;
                margin: 24px auto;
                width: fit-content;
                box-shadow: 0 4px 16px rgba(30, 153, 3, 0.25);
                position: relative;
                overflow: hidden;
            }
            
            .flow-center::before {
                content: '';
                position: absolute;
                inset: -2px;
                background: linear-gradient(135deg, var(--primary-green), var(--accent-emerald));
                border-radius: 12px;
                opacity: 0;
                transition: opacity 0.3s ease;
                z-index: -1;
            }
            
            .flow-center:hover::before {
                opacity: 0.2;
            }
            
            .flow-center-text {
                font-size: 12px;
                font-weight: 700;
                color: var(--text-primary);
                text-align: center;
                position: relative;
            }
            
            .flow-grid {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 12px;
                margin-top: 16px;
            }
            
            .flow-grid-box {
                background: var(--bg-primary);
                border: 2px solid var(--border-light);
                border-radius: 10px;
                padding: 12px;
                box-shadow: 0 2px 10px rgba(15, 23, 42, 0.08);
                transition: all 0.3s ease;
            }
            
            .flow-grid-box:hover {
                box-shadow: 0 4px 16px rgba(15, 23, 42, 0.12);
                transform: translateY(-2px);
                border-color: var(--primary-green);
            }
            
            .flow-grid-header {
                display: flex;
                align-items: center;
                gap: 7px;
                margin-bottom: 7px;
            }
            
            .flow-grid-icon {
                width: 28px;
                height: 28px;
                border-radius: 7px;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 14px;
                flex-shrink: 0;
                transition: transform 0.3s ease;
            }
            
            .flow-grid-box:hover .flow-grid-icon {
                transform: scale(1.15) rotate(-5deg);
            }
            
            .flow-grid-title {
                font-size: 12px;
                font-weight: 700;
                color: var(--text-primary);
                line-height: 1.2;
            }
            
            .flow-grid-list {
                list-style: none;
                padding-left: 35px;
            }
            
            .flow-grid-list li {
                font-size: 10px;
                color: var(--text-secondary);
                line-height: 1.5;
                position: relative;
                padding-left: 9px;
            }
            
            .flow-grid-list li::before {
                content: '•';
                position: absolute;
                left: 0;
                color: var(--primary-green);
                font-weight: bold;
            }
            
            /* Color Variations - Professional Gradients */
            .icon-purple { 
                background: linear-gradient(135deg, #6366f1, #8b5cf6); 
                color: white;
                box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
            }
            .icon-blue { 
                background: linear-gradient(135deg, #3b82f6, #06b6d4); 
                color: white;
                box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
            }
            .icon-pink { 
                background: linear-gradient(135deg, #ec4899, #f472b6); 
                color: white;
                box-shadow: 0 2px 8px rgba(236, 72, 153, 0.3);
            }
            .icon-cyan { 
                background: linear-gradient(135deg, #06b6d4, #0891b2); 
                color: white;
                box-shadow: 0 2px 8px rgba(6, 182, 212, 0.3);
            }
            .icon-orange { 
                background: linear-gradient(135deg, #f97316, #fb923c); 
                color: white;
                box-shadow: 0 2px 8px rgba(249, 115, 22, 0.3);
            }
            .icon-teal { 
                background: linear-gradient(135deg, #14b8a6, #5eead4); 
                color: white;
                box-shadow: 0 2px 8px rgba(20, 184, 166, 0.3);
            }
            .icon-indigo { 
                background: linear-gradient(135deg, #4f46e5, #818cf8); 
                color: white;
                box-shadow: 0 2px 8px rgba(79, 70, 229, 0.3);
            }
            .icon-yellow { 
                background: linear-gradient(135deg, #eab308, #fbbf24); 
                color: white;
                box-shadow: 0 2px 8px rgba(234, 179, 8, 0.3);
            }
            
            /* ============================================
               RESPONSIVE - TABLET VIEW
               ============================================ */
            
            @media (max-width: 1024px) {
                .timeline-section {
                    padding: 50px 40px 30px 40px;
                }
            
                .timeline-container {
                    grid-template-columns: 1fr;
                    gap: 50px;
                    min-height: auto;
                }
            
                .timeline-right {
                    position: relative;
                    top: 0;
                    margin-top: 0;
                }
            
                /* Show all images in tablet view */
                .timeline-content {
                    position: relative;
                    opacity: 1;
                    display: flex;
                    margin-bottom: 30px;
                }
            
                .timeline-content.active {
                    opacity: 1;
                }
            
                .timeline-image-inner {
                    min-height: auto;
                    padding: 20px;
                }
            }
            
            /* ============================================
               RESPONSIVE - MOBILE VIEW (ALTERNATING LAYOUT)
               ============================================ */
            
            @media (max-width: 768px) {
                .timeline-section {
                    padding: 50px 20px 30px 20px;
                }
            
                .timeline-title {
                    font-size: 30px;
                }
            
                .timeline-subtitle {
                    font-size: 18px;
                }
            
                .timeline-header {
                    margin-bottom: 40px;
                }
            
                /* Reset grid for mobile alternating layout */
                .timeline-container {
                    display: block;
                    gap: 0;
                }
            
                .timeline-left,
                .timeline-right {
                    position: static;
                    margin: 0;
                }
            
                /* Hide default timeline phases and content */
                .timeline-phases,
                .timeline-right .timeline-image-wrapper {
                    display: none;
                }
            
                /* Create alternating item structure */
                .timeline-phases {
                    display: flex;
                    flex-direction: column;
                    gap: 40px;
                }
            
                /* Mobile: Each phase wrapper becomes a standalone item */
                .phase-wrapper {
                    opacity: 1;
                    transform: translateY(0);
                    margin-bottom: 24px;
                }
            
                .phase-wrapper::before {
                    display: none;
                }
            
                /* Add corresponding image after each phase */
                .phase-wrapper::after {
                    content: attr(data-phase-content);
                }
            
                .timeline-image-inner {
                    padding: 18px;
                    min-height: auto;
                }
            
                /* Make all content visible in mobile */
                .timeline-content {
                    position: static;
                    opacity: 1;
                    display: flex;
                    padding: 18px;
                    margin: 0;
                }
            
                .flow-grid {
                    grid-template-columns: 1fr;
                    gap: 10px;
                }
            
                .flow-box {
                    margin-bottom: 12px;
                }
            
                .flow-center {
                    margin: 16px auto;
                }
            }
            
            /* ============================================
               MOBILE ALTERNATING STRUCTURE
               ============================================ */
            
            @media (max-width: 768px) {
                /* Re-enable display for mobile */
                .timeline-phases {
                    display: flex !important;
                }
            
                /* Create wrapper for phase + image pairs */
                .mobile-timeline-item {
                    margin-bottom: 40px;
                }
            
                .mobile-timeline-item:last-child {
                    margin-bottom: 0;
                }
            
                /* Ensure images show on mobile */
                .timeline-image-wrapper {
                    margin-top: 24px;
                }
            
                .timeline-flowchart {
                    max-width: 100%;
                }
            
                /* Adjust flowchart elements for mobile */
                .flow-box-title {
                    font-size: 12px;
                }
            
                .flow-box-list li,
                .flow-grid-list li {
                    font-size: 10px;
                }
            
                .flow-grid-title {
                    font-size: 11px;
                }
            }
            
            @media (max-width: 480px) {
                .timeline-section {
                    padding: 40px 16px 24px 16px;
                }
            
                .timeline-title {
                    font-size: 26px;
                }
            
                .timeline-subtitle {
                    font-size: 16px;
                }
            
                .phase-inner {
                    padding: 18px 16px;
                }
            
                .phase-title {
                    font-size: 15px;
                }
            
                .phase-description {
                    font-size: 14px;
                }
            
                .timeline-image-inner {
                    padding: 16px;
                }
            
                .flow-box,
                .flow-grid-box {
                    padding: 10px 12px;
                }
            
                .flow-box-icon,
                .flow-grid-icon {
                    width: 28px;
                    height: 28px;
                    font-size: 14px;
                }
            }

/* timeline section end */


/* ===================================
   COMPACT FAQ SECTION
   =================================== */

.faq-section-custom {
    max-width: 800px;
    margin: 80px auto;
    padding: 0 20px;
}

.faq-header-custom {
    text-align: center;
    margin-bottom: 48px;
}

.faq-badge-custom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #1e9903 0%, #10b981 100%);
    padding: 8px 18px;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 600;
    color: white;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(30, 153, 3, 0.25);
}

.faq-header-custom h2 {
    font-size: 42px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
    line-height: 1.2;
}

.faq-highlight {
    background: linear-gradient(135deg, #1e9903 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-header-custom p {
    font-size: 16px;
    color: #475569;
    max-width: 600px;
    margin: 0 auto;
}

.faq-container-custom {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item-custom {
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    border-left: 4px solid #1e9903;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}

.faq-item-custom:hover {
    box-shadow: 0 8px 24px rgba(30, 153, 3, 0.15);
    border-left-color: #10b981;
}

.faq-item-custom.faq-active {
    background: #dcfce7;
    border-left-color: #10b981;
    box-shadow: 0 8px 24px rgba(30, 153, 3, 0.2);
}

.faq-question-custom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    user-select: none;
    gap: 16px;
}

.faq-question-custom h3 {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    transition: color 0.3s;
    flex: 1;
}

.faq-item-custom:hover .faq-question-custom h3 {
    color: #1e9903;
}

.faq-icon-custom {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #1e9903 0%, #10b981 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    font-weight: 700;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(30, 153, 3, 0.2);
}

.faq-item-custom.faq-active .faq-icon-custom {
    transform: rotate(45deg);
}

.faq-answer-custom {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.3s ease;
    opacity: 0;
}

.faq-item-custom.faq-active .faq-answer-custom {
    max-height: 500px;
    padding: 0 24px 20px 24px;
    opacity: 1;
}

.faq-answer-custom p {
    font-size: 14px;
    color: #475569;
    line-height: 1.7;
}

.faq-answer-custom p strong {
    color: #0f172a;
    font-weight: 600;
}

.faq-footer-custom {
    text-align: center;
    margin-top: 48px;
    padding: 32px;
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.faq-footer-custom h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.faq-footer-custom p {
    font-size: 14px;
    color: #475569;
    margin-bottom: 20px;
}

.faq-contact-btn-custom {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg, #1e9903 0%, #178002 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(30, 153, 3, 0.3);
}

.faq-contact-btn-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(30, 153, 3, 0.5);
}

/* Tablet */
@media (max-width: 768px) {
    .faq-section-custom {
        padding: 0 16px;
        margin: 60px auto;
    }

    .faq-header-custom {
        margin-bottom: 36px;
    }

    .faq-header-custom h2 {
        font-size: 32px;
    }

    .faq-header-custom p {
        font-size: 15px;
    }

    .faq-question-custom {
        padding: 16px 18px;
    }

    .faq-question-custom h3 {
        font-size: 15px;
    }

    .faq-icon-custom {
        width: 28px;
        height: 28px;
        font-size: 16px;
    }

    .faq-item-custom.faq-active .faq-answer-custom {
        padding: 0 18px 16px 18px;
    }

    .faq-answer-custom p {
        font-size: 13px;
    }

    .faq-footer-custom {
        margin-top: 36px;
        padding: 24px;
    }

    .faq-footer-custom h3 {
        font-size: 18px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .faq-section-custom {
        margin: 40px auto;
    }

    .faq-header-custom h2 {
        font-size: 28px;
    }

    .faq-header-custom p {
        font-size: 14px;
    }

    .faq-badge-custom {
        font-size: 12px;
        padding: 6px 14px;
    }

    .faq-question-custom {
        padding: 14px 16px;
    }

    .faq-question-custom h3 {
        font-size: 14px;
    }

    .faq-icon-custom {
        width: 26px;
        height: 26px;
        font-size: 15px;
    }

    .faq-item-custom.faq-active .faq-answer-custom {
        padding: 0 16px 14px 16px;
    }

    .faq-answer-custom p {
        font-size: 13px;
    }

    .faq-footer-custom {
        padding: 20px;
    }

    .faq-footer-custom h3 {
        font-size: 17px;
    }

    .faq-footer-custom p {
        font-size: 13px;
    }

    .faq-contact-btn-custom {
        padding: 11px 24px;
        font-size: 13px;
    }
}



/* footer section */


    .footer-section {
        background: #000000;
        color: #ffffff;
        padding: 80px 40px 0;
    }

    .footer-container {
        max-width: 1400px;
        margin: 0 auto;
    }

    /* Top Section */
    .footer-top {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 60px;
        padding-bottom: 60px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* Brand Column */
    .footer-brand {
        max-width: 400px;
    }

    .footer-logo {
        font-size: 32px;
        font-weight: 800;
        color: #1e9903;
        margin-bottom: 16px;
        display: inline-block;
    }

    .footer-tagline {
        font-size: 16px;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.7);
        margin-bottom: 24px;
    }

    .footer-social {
        display: flex;
        gap: 12px;
    }

    .footer-social-link {
        width: 44px;
        height: 44px;
        background: rgba(30, 153, 3, 0.1);
        border: 1px solid rgba(30, 153, 3, 0.3);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #1e9903;
        font-size: 20px;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .footer-social-link:hover {
        background: #1e9903;
        color: white;
        transform: translateY(-2px);
    }

    /* Footer Columns */
    .footer-column {
        display: flex;
        flex-direction: column;
    }

    .footer-column-title {
        font-size: 16px;
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 20px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .footer-link {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        font-size: 15px;
        transition: all 0.3s ease;
        display: inline-block;
    }

    .footer-link:hover {
        color: #1e9903;
        transform: translateX(4px);
    }

    /* Newsletter Section */
    .footer-newsletter {
        background: rgba(30, 153, 3, 0.05);
        border: 1px solid rgba(30, 153, 3, 0.2);
        border-radius: 16px;
        padding: 28px;
        margin-top: 24px;
    }

    .footer-newsletter-title {
        font-size: 18px;
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 8px;
    }

    .footer-newsletter-text {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.7);
        margin-bottom: 16px;
    }

    .footer-newsletter-form {
        display: flex;
        gap: 8px;
    }

    .footer-newsletter-input {
        flex: 1;
        padding: 12px 16px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        color: #ffffff;
        font-size: 15px;
        outline: none;
        transition: all 0.3s ease;
    }

    .footer-newsletter-input::placeholder {
        color: rgba(255, 255, 255, 0.4);
    }

    .footer-newsletter-input:focus {
        background: rgba(255, 255, 255, 0.08);
        border-color: #1e9903;
    }

    .footer-newsletter-button {
        padding: 12px 24px;
        background: #1e9903;
        color: white;
        border: none;
        border-radius: 10px;
        font-size: 15px;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.3s ease;
        white-space: nowrap;
    }

    .footer-newsletter-button:hover {
        background: #15780a;
        transform: translateY(-2px);
    }

    /* Bottom Section */
    .footer-bottom {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 32px 0;
        margin-top: 40px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-copyright {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.5);
    }

    .footer-bottom-links {
        display: flex;
        gap: 32px;
    }

    .footer-bottom-link {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.5);
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .footer-bottom-link:hover {
        color: #1e9903;
    }

    /* Trust Badge */
    .footer-trust {
         display: inline-flex;
        align-items: center;
        gap: 8px;

        margin-top: 16px;
        padding: 10px 16px;

        background: rgba(30, 153, 3, 0.05);
        border: 1px solid rgba(30, 153, 3, 0.25);
        border-radius: 12px;

        cursor: pointer;

        transition: 
            background 0.3s ease,
            border-color 0.3s ease,
            transform 0.3s ease,
            box-shadow 0.3s ease;
        }

    .footer-trust-icon {
        font-size: 20px;
    }

    .footer-trust-text {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.7);
    }

    .footer-trust-number {
        color: #ffffff;
        font-weight: 700;
    }

    .footer-trust:hover {
        background: rgba(30, 153, 3, 0.12);
        border-color: #1e9903;
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(30, 153, 3, 0.25);
    }

    .footer-trust-icon {
        font-size: 20px;
        transition: transform 0.3s ease;
    }

    @media (max-width: 1024px) {
        .footer-top {
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        .footer-brand {
            max-width: 100%;
            grid-column: 1 / -1;
        }
    }

    @media (max-width: 640px) {
        .footer-section {
            padding: 60px 20px 0;
        }

        .footer-top {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .footer-newsletter-form {
            flex-direction: column;
        }

        .footer-bottom {
            flex-direction: column;
            gap: 20px;
            text-align: center;
        }
    }

.footer-brand {
    max-width: 400px;
}

.footer-brand-logo {
    width: 36px;          /* desktop logo size */
    height: 36px;
    object-fit: contain;
    display: inline-block;
    vertical-align: middle;
}

.footer-brand-text {
    font-size: 28px;
    font-weight: 800;
    color: #1e9903;
    margin-left: 10px;
    vertical-align: middle;
}

.footer-brand-header {
    display: flex;
    align-items: center;
    gap: 8px;              /* space between logo and text */
    margin-bottom: 14px;  /* 👈 space before the paragraph */
}



