:root {
    --primary: #1A5F7A;      /* Deep teal blue instead of dark blue */
    --secondary: #57C5B6;    /* Bright turquoise instead of medium blue */
    --accent: #F24C4C;       /* Vibrant red instead of dark pink */
    --light: #FFFBF5;        /* Warm white instead of cool white */
    --dark: #1E293B;         /* Dark slate blue instead of near black */
    --highlight: #FFB84C;    /* Warm amber as a new highlight color */

    
    /* Additional color variables */
    --primary-light: #2a7a99;
    --primary-dark: #104a61;
    --secondary-light: #6fd6c9;
    --secondary-dark: #41a699;
    --gray-light: #f7f9fa;
    --gray-medium: #e5e7eb;
    --gray-dark: #6b7280;
    --text-primary: var(--dark);
    --text-secondary: #4a5568;
    --white: #ffffff;
    --black: #000000;
    --success: #10b981;
    --warning: var(--highlight);
    --error: var(--accent);
    --info: #3b82f6;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-full: 9999px;
    
    /* Box Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    
    /* Typography */
    --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-md: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    /* Transition */
    --transition-all: all 0.3s ease;
    --transition-transform: transform 0.3s ease;
    --transition-opacity: opacity 0.3s ease;
    
    /* Container Widths */
    --container-max-width: 1200px;
}

/* Card flip animation */
        .flip-card {
            perspective: 1000px;
            height: 300px;
            margin-bottom: 30px;
        }
        
        .flip-card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            text-align: center;
            transition: transform 0.8s;
            transform-style: preserve-3d;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            border-radius: 8px;
        }
        
        .flip-card:hover .flip-card-inner {
            transform: rotateY(180deg);
        }
        
        .flip-card-front, .flip-card-back {
            position: absolute;
            width: 100%;
            height: 100%;
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
            border-radius: 8px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 25px;
        }
        
        .flip-card-front {
            background-color: white;
        }
        
        .flip-card-back {
            background: linear-gradient(135deg, var(--primary) 0%, #0a4d8c 100%);
            color: white;
            transform: rotateY(180deg);
        }
        
        .challenge-icon {
            font-size: 4rem;
            margin-bottom: 20px;
            color: var(--primary);
        }
        
        .flip-card-back .challenge-icon {
            color: white;
        }

        /* Horizontal Timeline styling */
        .horizontal-timeline {
            position: relative;
            width: 100%;
            margin: 60px 0;
            padding: 20px 0;
            overflow-x: auto;
        }
        
        .timeline-track {
            position: relative;
            width: max-content;
            min-width: 100%;
            padding: 60px 20px;
            display: flex;
            justify-content: space-between;
        }
        
        .timeline-line {
            position: absolute;
            top: 60px;
            left: 40px;
            right: 40px;
            height: 6px;
            background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 100%);
            border-radius: 3px;
        }
        
        .timeline-event {
            position: relative;
            width: 220px;
            margin: 0 15px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .timeline-point {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background-color: var(--accent);
            border: 4px solid var(--primary);
            position: absolute;
            top: -8px;
            z-index: 2;
            box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.5);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .timeline-event:hover .timeline-point {
            transform: scale(1.3);
            box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.7);
        }
        
        .timeline-date {
            position: absolute;
            top: -55px;
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--primary);
            background-color: white;
            padding: 5px 15px;
            border-radius: 20px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }
        
        .timeline-event:hover .timeline-date {
            transform: translateY(-5px);
        }
        
        .timeline-content {
            background-color: white;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            margin-top: 20px;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .timeline-event:hover .timeline-content {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }
        
        .timeline-content h3 {
            font-size: 1.1rem;
            margin-bottom: 10px;
            color: var(--primary);
        }
        
        .timeline-content p {
            font-size: 0.9rem;
            line-height: 1.5;
            color: #555;
        }
        
        /* Scroll styling for webkit browsers */
        .horizontal-timeline::-webkit-scrollbar {
            height: 8px;
        }
        
        .horizontal-timeline::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 4px;
        }
        
        .horizontal-timeline::-webkit-scrollbar-thumb {
            background: var(--secondary);
            border-radius: 4px;
        }
        
        .horizontal-timeline::-webkit-scrollbar-thumb:hover {
            background: var(--primary);
        }
        
        /* Responsive adjustments - Vertical Timeline for mobile */
        @media screen and (max-width: 768px) {
            .horizontal-timeline {
                overflow-x: visible;
                margin: 30px 0;
                padding: 0;
            }
            
            .timeline-track {
                width: 100%;
                min-width: auto;
                padding: 0;
                flex-direction: column;
            }
            
            .timeline-line {
                top: 0;
                bottom: 0;
                left: 20px;
                width: 6px;
                height: 100%;
                right: auto;
                background: linear-gradient(180deg, var(--secondary) 0%, var(--primary) 100%);
            }
            
            .timeline-event {
                width: 100%;
                margin: 0 0 40px 0;
                padding-left: 50px;
                align-items: flex-start;
            }
            
            .timeline-event:last-child {
                margin-bottom: 0;
            }
            
            .timeline-point {
                left: 13px;
                top: 25px;
                transform: translateX(0);
            }
            
            .timeline-event:hover .timeline-point {
                transform: scale(1.3);
            }
            
            .timeline-date {
                position: relative;
                top: 0;
                left: 0;
                margin-bottom: 15px;
                display: inline-block;
            }
            
            .timeline-content {
                width: 100%;
                margin-top: 0;
                text-align: left;
            }
            
            /* Remove the swipe hint for vertical layout */
            .horizontal-timeline::after {
                content: none;
            }
        }
        
        /* Small screen tweaks */
        @media screen and (max-width: 480px) {
            .timeline-point {
                left: 13px;
            }
            
            .timeline-event {
                padding-left: 45px;
            }
        }

        /* Enhanced Stats Section Styling */
        .stats-section {
            padding: 80px 0;
            background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), 
                        url('images/uk-india-trade.jpg') center/cover no-repeat;
            position: relative;
            color: white;
        }
        
        /* Background animation with better positioning */
        .stats-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 20% 30%, rgba(87, 197, 182, 0.15) 0, rgba(87, 197, 182, 0) 20px),
                radial-gradient(circle at 75% 44%, rgba(255, 184, 76, 0.1) 0, rgba(255, 184, 76, 0) 25px),
                radial-gradient(circle at 46% 52%, rgba(242, 76, 76, 0.1) 0, rgba(242, 76, 76, 0) 30px),
                radial-gradient(circle at 80% 80%, rgba(26, 95, 122, 0.15) 0, rgba(26, 95, 122, 0) 15px);
            animation: backgroundShift 8s ease-in-out infinite;
            pointer-events: none;
        }
        
        /* Section heading styling */
        .stats-section .section-title {
            margin-bottom: 40px;
        }
        
        .stats-section .section-title h2 {
            color: white;
            font-size: 2.2rem;
        }
        
        .stats-section .section-title p {
            color: rgba(255, 255, 255);
            font-size: 1.1rem;
        }
        
        /* Improved container layout */
        .stats-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 25px;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
        /* Better stat card styling */
        .stat-item {
            text-align: center;
            padding: 30px;
            color: white;
            flex: 1;
            min-width: 220px;
            max-width: 280px;
            position: relative;
            transition: transform 0.3s ease;
            background-color: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
        }
        
        /* Hover effect that preserves readability */
        .stat-item:hover {
            transform: translateY(-10px);
            background-color: rgba(255, 255, 255, 0.12);
        }
        
        /* Top border accent */
        .stat-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--secondary), var(--highlight));
            border-radius: 12px 12px 0 0;
        }
        
        /* More readable stat numbers */
        .stat-number {
            font-size: 4.5rem;
            font-weight: 800;
            margin-bottom: 15px;
            line-height: 1;
            position: relative;
            display: inline-block;
            color: white;
        }
        
        /* Optional gradient effect that maintains readability */
        .stat-number {
            background: linear-gradient(45deg, var(--secondary) 0%, #ffffff 50%, var(--highlight) 100%);
            background-size: 200% auto;
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: shine 2s linear infinite;
        }
        
        /* Subtitle text styling */
        .stat-item p {
            font-size: 1.15rem;
            line-height: 1.4;
            margin: 0;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.9);
            position: relative;
            padding-bottom: 15px;
        }
        
        /* Source text styling */
        .stat-source {
            display: block;
            font-size: 0.9rem;
            margin-top: 8px;
            color: rgba(255, 255, 255, 0.7);
            font-style: italic;
        }
        
        /* References section styling */
        .stat-references {
            margin-top: 40px;
            text-align: center;
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.95rem;
            position: relative;
            z-index: 2;
            padding: 0 20px;
        }
        
        /* Link styling with better contrast */
        .stat-references a {
            color: var(--highlight);
            text-decoration: underline;
            transition: all 0.3s ease;
            font-weight: 500;
            position: relative;
            z-index: 3;
            padding: 2px 4px;
            margin: 0 2px;
            border-radius: 4px;
        }
        
        .stat-references a:hover {
            color: white;
            background-color: rgba(255, 255, 255, 0.1);
            text-decoration: none;
        }
        
        /* Focus state for accessibility */
        .stat-references a:focus-visible {
            outline: 2px solid white;
            outline-offset: 2px;
        }
        
        /* Mobile responsive adjustments */
        @media screen and (max-width: 768px) {
            .stats-section {
                padding: 60px 0;
            }
            
            .stat-item {
                min-width: 160px;
                padding: 25px 15px;
            }
            
            .stat-number {
                font-size: 3.5rem;
            }
            
            .stat-references {
                font-size: 0.85rem;
            }
        }
        
        /* Animation for the gradient text effect */
        @keyframes shine {
            to {
                background-position: 200% center;
            }
        }
        
        /* Animation for background elements */
        @keyframes backgroundShift {
            0%, 100% { background-position: 0% 0%, 100% 0%, 0% 100%, 100% 100%; }
            25% { background-position: 10% 10%, 90% 10%, 10% 90%, 90% 90%; }
            50% { background-position: 0% 20%, 80% 20%, 20% 80%, 80% 80%; }
            75% { background-position: 20% 0%, 100% 20%, 0% 100%, 80% 100%; }
        }

        /* Hero section enhancements */
        .hero-solutions {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 25px 0;
        }

        .solution-tag {
            background-color: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(5px);
            padding: 5px 10px;
            border-radius: 50px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .solution-tag:hover {
            transform: translateY(-3px);
            background-color: rgba(255, 255, 255, 0.25);
        }

        .solution-tag i {
            color: var(--highlight);
        }

        .hero-impact {
            font-size: 1.1rem;
            font-weight: 500;
            margin-bottom: 30px;
            padding: 15px 20px;
            background-color: rgba(0, 0, 0, 0.4);
            border-left: 4px solid var(--highlight);
            border-radius: 0 4px 4px 0;
        }

        .hero-cta {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .btn-outline {
            background-color: transparent;
            border: 2px solid white;
            color: white;
        }

        .btn-outline:hover {
            background-color: rgba(255, 255, 255, 0.2);
            border-color: var(--highlight);
        }

        @media (max-width: 768px) {
            .hero-solutions {
                justify-content: center;
            }
            
            .hero-impact {
                text-align: center;
            }
            
            .hero-cta {
                justify-content: center;
            }
        }

        /* Simplified Process Steps Styling */
        .process-step {
            display: flex;
            flex-wrap: wrap;
            align-items: flex-start;
            margin-bottom: 30px;
            padding: 0;
            background: none;
            border: none;
            box-shadow: none;
        }
        
        .step-icon {
            width: 50px;
            height: 50px;
            min-width: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            margin-top: 3px;
            color: white;
            font-size: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .process-step h4 {
            color: var(--primary);
            font-size: 1.3rem;
            margin-bottom: 10px;
            margin-top: 10px;
            font-weight: 600;
        }
        
        .process-step p {
            color: #444;
            font-size: 1rem;
            line-height: 1.6;
            margin: 0;
        }
        
        .process-step:last-child {
            margin-bottom: 40px;
        }
        
        /* Responsive adjustments */
        @media (max-width: 576px) {
            .process-step {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .step-icon {
                margin-bottom: 15px;
                margin-right: 0;
            }
        }

        /* Ruvelis FTA Advantage Section Styling */
        .ruvelis-fta-advantage {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
            overflow: hidden;
        }

        .ruvelis-fta-advantage::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 20% 20%, rgba(87, 197, 182, 0.1) 0, transparent 30%),
                radial-gradient(circle at 80% 80%, rgba(242, 76, 76, 0.08) 0, transparent 40%);
            pointer-events: none;
        }

        .advantage-showcase {
            position: relative;
            z-index: 2;
        }

        /* Achievement Banner */
        .achievement-banner {
            background: linear-gradient(135deg, var(--primary) 0%, #1a4f7a 100%);
            border-radius: 20px;
            padding: 40px;
            margin-bottom: 60px;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .achievement-banner::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 200%;
            background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.1) 50%, transparent 60%);
            animation: shine-banner 3s infinite;
        }

        .achievement-content {
            display: flex;
            align-items: center;
            gap: 30px;
            position: relative;
            z-index: 2;
        }

        .achievement-icon {
            font-size: 4rem;
            color: var(--highlight);
        }

        .achievement-text h3 {
            font-size: 2rem;
            margin-bottom: 10px;
            color: white;
        }

        .achievement-text p {
            font-size: 1.2rem;
            margin: 0;
            color: rgba(255,255,255,0.9);
        }

        .achievement-stats {
            display: flex;
            gap: 20px;
            margin-left: auto;
        }

        .stat-badge {
            text-align: center;
            background: rgba(255,255,255,0.15);
            padding: 15px 20px;
            border-radius: 12px;
            backdrop-filter: blur(10px);
        }

        .badge-number {
            display: block;
            font-size: 2rem;
            font-weight: bold;
            color: var(--highlight);
        }

        .badge-text {
            display: block;
            font-size: 0.9rem;
            color: rgba(255,255,255,0.8);
        }

        /* Strategy Pillars */
        .strategy-pillars {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .pillar-card {
            background: white;
            border-radius: 16px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .pillar-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
        }

        .pillar-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .pillar-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 25px;
        }

        .pillar-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: white;
        }

        .pillar-header h4 {
            font-size: 1.4rem;
            color: var(--primary);
            margin: 0;
        }

        .pillar-metric {
            text-align: center;
            margin-bottom: 25px;
            padding: 20px;
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            border-radius: 12px;
        }

        .metric-value {
            display: block;
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--primary);
        }

        .metric-label {
            display: block;
            font-size: 0.9rem;
            color: #666;
            margin-top: 5px;
        }

        .pillar-benefits {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .pillar-benefits li {
            padding: 8px 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .pillar-benefits i {
            color: var(--highlight);
            font-size: 0.9rem;
        }

        /* Success Stories */
        .success-stories {
            margin-bottom: 60px;
        }

        .success-stories h3 {
            text-align: center;
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 40px;
        }

        .stories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
        }

        .story-card {
            background: white;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .story-card:hover {
            transform: translateY(-5px);
        }

        .story-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .company-logo {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--secondary), var(--highlight));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
        }

        .company-info h5 {
            margin: 0 0 5px 0;
            color: var(--primary);
            font-size: 1.1rem;
        }

        .company-info span {
            color: #666;
            font-size: 0.9rem;
        }

        .result-metric {
            text-align: center;
            margin-bottom: 15px;
        }

        .result-value {
            display: block;
            font-size: 2rem;
            font-weight: bold;
            color: var(--highlight);
        }

        .result-label {
            display: block;
            font-size: 0.8rem;
            color: #666;
        }

        .story-result p {
            font-style: italic;
            color: #444;
            margin: 0;
            font-size: 0.95rem;
            line-height: 1.4;
        }

        /* Exclusive Advantages */
        .exclusive-advantages h3 {
            text-align: center;
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 40px;
        }

        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
        }

        .advantage-item {
            text-align: center;
            padding: 30px 20px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }

        .advantage-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }

        .advantage-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.8rem;
            color: white;
        }

        .advantage-item h5 {
            font-size: 1.2rem;
            color: var(--primary);
            margin-bottom: 15px;
        }

        .advantage-item p {
            color: #666;
            line-height: 1.5;
            margin: 0;
        }

        /* Export Inquiry Section */
        .export-inquiry-section {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--primary) 0%, #1a4f7a 100%);
            color: white;
            position: relative;
        }

        .inquiry-hero {
            text-align: center;
            margin-bottom: 40px;
        }

        .inquiry-hero h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: white;
        }

        .inquiry-subtitle {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: rgba(255,255,255,0.9);
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Trade Inquiry Section with Tabs */
        .trade-inquiry-section {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--primary) 0%, #1a4f7a 100%);
            color: white;
            position: relative;
        }

        .inquiry-hero {
            text-align: center;
            margin-bottom: 40px;
        }

        .inquiry-hero h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: white;
        }

        .inquiry-subtitle {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: rgba(255,255,255,0.9);
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Trade Tabs */
        .trade-tabs-container {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
            max-width: 1000px;
            margin: 0 auto;
        }

        .trade-tabs {
            display: flex;
            background: #f8f9fa;
            border-bottom: 2px solid #e9ecef;
        }

        .tab-button {
            flex: 1;
            padding: 25px 20px;
            background: transparent;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            position: relative;
        }

        .tab-button::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: transparent;
            transition: background 0.3s ease;
        }

        .tab-button.active {
            background: white;
            color: var(--primary);
        }

        .tab-button.active::after {
            background: linear-gradient(90deg, var(--primary), var(--secondary));
        }

        .tab-button:hover:not(.active) {
            background: rgba(255,255,255,0.5);
        }

        .tab-button i {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 10px;
            display: block;
        }

        .tab-title {
            display: block;
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 5px;
        }

        .tab-subtitle {
            display: block;
            font-size: 0.9rem;
            color: #666;
        }

        /* Tab Content */
        .tab-content {
            display: none;
            padding: 40px;
            color: #333;
        }

        .tab-content.active {
            display: block;
        }

        .form-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .form-header h3 {
            font-size: 1.8rem;
            color: var(--primary);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
        }

        .form-header p {
            color: #666;
            margin-bottom: 20px;
        }

        .form-benefits {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
        }

        .benefit-tag {
            background: rgba(var(--primary-rgb), 0.1);
            color: var(--primary);
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 0.85rem;
            display: flex;
            align-items: center;
            gap: 6px;
            border: 1px solid rgba(var(--primary-rgb), 0.2);
        }

        /* Form Styling */
        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 30px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-full-width {
            grid-column: 1 / -1;
        }

        .form-group label {
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 8px;
            font-size: 0.95rem;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            padding: 12px 15px;
            border: 2px solid #e9ecef;
            border-radius: 8px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: white;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
        }

        .form-group textarea {
            height: 80px;
            resize: vertical;
            font-family: inherit;
        }

        /* Product Grid */
        .product-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            margin-top: 10px;
        }

        .product-option {
            position: relative;
        }

        .product-option input[type="checkbox"] {
            display: none;
        }

        .product-option label {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 15px;
            border: 2px solid #e9ecef;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            background: white;
            font-weight: 500;
        }

        .product-option input[type="checkbox"]:checked + label {
            border-color: var(--primary);
            background: rgba(var(--primary-rgb), 0.05);
            color: var(--primary);
        }

        .product-option label:hover {
            border-color: var(--primary);
            background: rgba(var(--primary-rgb), 0.02);
        }

        .product-option label i {
            font-size: 1.1rem;
            color: var(--primary);
            width: 20px;
            text-align: center;
        }

        /* Submit Button */
        .submit-btn {
            width: 100%;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            border: none;
            padding: 18px 30px;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(0,0,0,0.2);
        }

        .submit-btn:active {
            transform: translateY(-1px);
        }

        /* Animations */
        @keyframes shine-banner {
            0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
            100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .achievement-content {
                flex-direction: column;
                text-align: center;
                gap: 20px;
            }

            .achievement-stats {
                margin-left: 0;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .product-selection {
                grid-template-columns: 1fr;
            }

            .inquiry-highlights {
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }

            .inquiry-hero h2 {
                font-size: 2rem;
            }

            .tab-button {
                padding: 20px 15px;
            }

            .tab-title {
                font-size: 1.1rem;
            }
        }

        @media (max-width: 480px) {
            .trade-inquiry-section {
                padding: 60px 0;
            }
            
            .trade-tabs-container {
                margin: 0 15px;
                border-radius: 15px;
            }
            
            .tab-button i {
                font-size: 1.5rem;
            }
            
            .form-header h3 {
                font-size: 1.5rem;
                flex-direction: column;
                gap: 8px;
            }
        }

        /* Enhanced popup styles */
        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            backdrop-filter: blur(5px);
        }

        .popup-content {
            background: white;
            border-radius: 15px;
            padding: 0;
            max-width: 500px;
            width: 90%;
            max-height: 90vh;
            overflow-y: auto;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            transform: scale(0.9);
            opacity: 0;
            transition: all 0.3s ease;
        }        .popup-overlay[style*="flex"] .popup-content {
            transform: scale(1);
            opacity: 1;
        }

        .popup-overlay.show-popup .popup-content {
            transform: scale(1);
            opacity: 1;
        }

        .popup-overlay.show-popup {
            display: flex !important;
            z-index: 99999 !important;
            visibility: visible !important;
            opacity: 1 !important;
        }

        .popup-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 25px 30px 0;
        }

        .popup-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--highlight), #27ae60);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.8rem;
        }

        .popup-close {
            cursor: pointer;
            color: var(--white);
            font-size: 1.5rem;
            padding: 5px;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .popup-close:hover {
            /* background: #f8f9fa; */
            color: var(--white);
        }

        .popup-body {
            padding: 20px 30px 30px;
        }

        .popup-title {
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 15px;
        }

        .popup-message {
            color: #666;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .popup-button {
            width: 100%;
            /* background: linear-gradient(135deg, var(--primary), var(--secondary)); */
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }        .popup-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }

        /* Mobile Responsive Styles */
        @media (max-width: 768px) {
            .form-grid {
                grid-template-columns: 1fr;
                gap: 15px;
                margin-bottom: 20px;
            }
            
            .form-full-width {
                grid-column: 1;
            }
            
            .product-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }
            
            .trade-tabs {
                flex-direction: row;
                gap: 10px;
            }
            
            .tab-button {
                padding: 15px;
                text-align: center;
            }
            
            .inquiry-hero-content h2 {
                font-size: 1.8rem;
                line-height: 1.3;
                margin-bottom: 15px;
            }
            
            .inquiry-subtitle {
                font-size: 1rem;
                line-height: 1.5;
            }
            
            .form-benefits {
                flex-direction: column;
                gap: 8px;
                align-items: stretch;
            }
            
            .benefit-tag {
                text-align: center;
                justify-content: center;
                padding: 8px 12px;
                font-size: 0.9rem;
            }
            
            .popup-content {
                width: 95%;
                margin: 10px;
                max-height: 85vh;
            }
            
            .popup-body {
                padding: 15px 20px 20px;
            }
              .submit-btn {
                padding: 15px 20px;
                font-size: 1rem;
            }
            
            .container {
                padding: 0 15px;
            }
            
            .trade-tabs-container {
                margin: 0 -10px;
            }
            
            .form-header h3 {
                font-size: 1.5rem;
            }
            
            .form-header p {
                font-size: 0.95rem;
            }
        }

        @media (max-width: 480px) {
            .form-group input,
            .form-group select,
            .form-group textarea {
                padding: 10px 12px;
                font-size: 0.95rem;
            }
            
            .form-group label {
                font-size: 0.9rem;
                margin-bottom: 6px;
            }
            
            .trade-tabs-container {
                padding: 0 10px;
            }
            
            .popup-header {
                padding: 20px 20px 0;
            }
            
            .popup-title {
                font-size: 1.3rem;
            }
              .popup-message {
                font-size: 0.95rem;
            }
            
            /* Hide test buttons on mobile */
            button[onclick="testPopup()"] {
                display: none;
            }
        }

