
        /* ========== SOLIDPRO COLOR SCHEME ========== */
        :root {
            --solidpro-primary: #17479e;       /* Main blue from your design */
            --solidpro-secondary: #1e40af;     /* Darker blue */
            --solidpro-accent: #22c55e;        /* Green accent */
            --solidpro-light: #3b82f6;         /* Light blue */
            --solidpro-dark: #1e293b;          /* Dark background */
            --solidpro-card-bg: #ffffff;       /* White cards */
            --solidpro-text-dark: #0f172a;     /* Dark text */
            --solidpro-text-light: #64748b;    /* Light text */
            --solidpro-gradient: linear-gradient(135deg, #ff4757, #17479e);
            --solidpro-gradient-light: linear-gradient(135deg, #3b82f6 0%, #22c55e 100%);
            --solidpro-shadow: 0 10px 25px rgba(37, 99, 235, 0.1);
            --solidpro-shadow-lg: 0 20px 40px rgba(37, 99, 235, 0.15);
			
	
        }
        
        body {
            background: #f8fafc;
            font-family: 'Inter', sans-serif;
            overflow-x: hidden;
        }
        
        /* ========== ABOUT HERO - SOLIDPRO STYLE ========== */
        .about-hero-solidpro {
            min-height: 80vh;
            background: linear-gradient(rgba(30, 41, 59, 0.3), rgba(15, 23, 42, 0.3)),
                        url('../images/who-we-are.jpeg');
            background-size: cover;
            background-position: center;
            
            position: relative;
            display: flex;
            align-items: center;
            overflow: hidden;
        }
        
        .about-hero-solidpro::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('assets/solidpro-logo.png') center/400px no-repeat;
            opacity: 0.05;
            animation: pulse 4s ease-in-out infinite;
        }
        
        @keyframes pulse {
            0%, 100% { opacity: 0.05; transform: scale(1); }
            50% { opacity: 0.08; transform: scale(1.05); }
        }


           .about-hero-solidpro   .hero-badge-solidpro {
            display: inline-block;
            background: var(--solidpro-gradient);
            color: #fff;
            padding: 12px 30px;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            letter-spacing: 2px;
            margin-bottom: 0px;
            text-transform: uppercase;
            position: relative;
            overflow: hidden;
        }
        
        .hero-badge-solidpro {
            display: inline-block;
            background: transparent;
             color: #e11b22;
            padding: 12px 30px;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            letter-spacing: 2px;
            margin-bottom: 0px;
            text-transform: uppercase;
            position: relative;
            overflow: hidden;
        }
        
        .hero-badge-solidpro::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.6s ease;
        }
        
        .hero-badge-solidpro:hover::before {
            left: 100%;
        }
        
        .hero-title-solidpro {
            font-size: 3rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 20px;
            color: white;
           
        }
        
        .hero-subtitle-solidpro {
            font-size: 1.25rem;
            color: #cbd5e1;
            max-width: 600px;
            margin-bottom: 40px;
            line-height: 1.6;
        }
        
        /* ========== SOLIDPRO STATS COUNTER ========== */
        .stats-solidpro {
            padding: 80px 0;
            background: white;
            position: relative;
        }
        
        .stat-card-solidpro {
            text-align: center;
            padding: 40px 20px;
            background: white;
            border-radius: 15px;
            box-shadow: var(--solidpro-shadow);
            border: 1px solid #e2e8f0;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .stat-card-solidpro::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--solidpro-gradient);
        }
        
        .stat-card-solidpro:hover {
            transform: translateY(-10px);
            box-shadow: var(--solidpro-shadow-lg);
        }
        
        .stat-number-solidpro {
            font-size: 3.5rem;
            font-weight: 800;
            background: var(--solidpro-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
            margin-bottom: 10px;
        }
        
        .stat-label-solidpro {
            color: var(--solidpro-text-light);
            font-size: 1.1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        /* ========== VISION SECTION - SOLIDPRO STYLE ========== */
        .vision-solidpro {
            padding: 40px 0;
            background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
            position: relative;
        }
        
        .vision-card-solidpro {
            background: var(--solidpro-card-bg);
            border-radius: 20px;
            padding: 50px 40px;
            box-shadow: var(--solidpro-shadow-lg);
            position: relative;
            overflow: hidden;
            height: 100%;
            transition: transform 0.3s ease;
        }
        
        .vision-card-solidpro:hover {
            transform: translateY(-10px);
        }
        
        .vision-card-solidpro::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--solidpro-gradient);
        }
        
        .vision-icon-solidpro {
            width: 80px;
            height: 80px;
            background: var(--solidpro-gradient);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 30px;
            position: relative;
        }
        
        .vision-icon-solidpro i {
            font-size: 32px;
            color: white;
        }
        
        .vision-content-solidpro h3 {
            color: var(--solidpro-text-dark);
            font-weight: 700;
            margin-bottom: 20px;
            font-size: 1.8rem;
        }
        
		.vision-content-solidpro h5 {
     
            margin-bottom: 20px;
   
        }
		
        .vision-content-solidpro p {
            color: var(--solidpro-text-light);
            line-height: 1.7;
            margin-bottom: 25px;
        }
        
        .vision-tag-solidpro {
            display: inline-block;
            background: rgba(37, 99, 235, 0.1);
            color: var(--solidpro-primary);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            margin-top: 20px;
        }
        
        /* ========== CLIENTS SECTION - SOLIDPRO STYLE ========== */
        .clients-solidpro {
            padding: 40px 0;
            background: white;
        }
        
        .client-card-solidpro {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            height: 300px;
            margin-bottom: 30px;
            box-shadow: var(--solidpro-shadow);
        }
        
        .client-image-solidpro {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        
        .client-overlay-solidpro {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(15, 23, 42, 0.9), transparent 70%);
            padding: 30px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            color: white;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.4s ease;
        }
		
		.client-card-solidpro:hover h4 {
			color:#fff;
		}
        
        .client-card-solidpro:hover .client-overlay-solidpro {
            opacity: 1;
            transform: translateY(0);
        }
        
        .client-card-solidpro:hover .client-image-solidpro {
            transform: scale(1.1);
        }
        
        .client-icon-solidpro {
            width: 50px;
            height: 50px;
            background: var(--solidpro-gradient);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }
        
        .client-icon-solidpro i {
            font-size: 24px;
            color: white;
        }
        
        /* ========== CAPABILITIES - SOLIDPRO STYLE ========== */
        .capabilities-solidpro {
            padding: 40px 0;
            background: linear-gradient(135deg, #fff 0%, #fff 100%);
            position: relative;
            overflow: hidden;
        }
        
        .capability-card-solidpro {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 40px 30px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .capability-card-solidpro:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-10px);
            border-color: var(--solidpro-primary);
        }
        
        .capability-number-solidpro {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 48px;
            font-weight: 800;
            color: rgba(255, 255, 255, 0.50);
        }
        
        .capability-icon-solidpro {
            width: 70px;
            height: 70px;
            background: var(--solidpro-gradient);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
        }


        
        .capability-icon-solidpro i {
            font-size: 28px;
            color: white;
        }
        
        .capability-card-solidpro h4 {
            color: #17479e;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .capability-card-solidpro p {
            color: #000;
            font-size: 0.95rem;
            line-height: 1.6;
        }
        
        /* ========== TIMELINE - SOLIDPRO STYLE ========== */
        .timeline-solidpro {
            padding: 40px 0;
            background: white;
        }
        
        .timeline-solidpro .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .timeline-solidpro .section-title h2 {
            color: var(--solidpro-text-dark);
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 15px;
        }
        
        .timeline-solidpro .section-title p {
            color: var(--solidpro-text-light);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .timeline-container-solidpro {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            padding-left: 40px;
        }
        
        .timeline-line-solidpro {
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: var(--solidpro-gradient);
        }
        
        .timeline-item-solidpro {
            position: relative;
            margin-bottom: 60px;
            padding-left: 40px;
        }
        
        .timeline-dot-solidpro {
            position: absolute;
            left: -18px;
            top: 0;
            width: 36px;
            height: 36px;
            background: white;
            border: 4px solid var(--solidpro-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .timeline-dot-solidpro i {
            color: var(--solidpro-primary);
            font-size: 14px;
        }
        
        .timeline-content-solidpro {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: var(--solidpro-shadow);
            border: 1px solid #e2e8f0;
            position: relative;
        }
        
        .timeline-content-solidpro h4 {
            color: var(--solidpro-text-dark);
            font-weight: 700;
            margin-bottom: 15px;
            font-size: 1.3rem;
        }
        
        .timeline-content-solidpro p {
            color: var(--solidpro-text-light);
            line-height: 1.6;
        }
        
        /* ========== VALUES - SOLIDPRO STYLE ========== */
        .values-solidpro {
            padding: 40px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        }
        
        .value-card-solidpro {
            background: white;
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: var(--solidpro-shadow);
            border: 2px solid transparent;
            transition: all 0.3s ease;
            height: 100%;
            position: relative;
            overflow: hidden;
        }
        
        .value-card-solidpro:hover {
            transform: translateY(-10px);
            border-color: var(--solidpro-primary);
            box-shadow: var(--solidpro-shadow-lg);
        }
        
        .value-icon-solidpro {
            width: 80px;
            height: 80px;
            margin: 0 auto 25px;
            background: var(--solidpro-gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }
        
        .value-icon-solidpro i {
            font-size: 32px;
            color: white;
        }
        
        .value-card-solidpro h4 {
            color: var(--solidpro-text-dark);
            font-weight: 700;
            margin-bottom: 15px;
			font-size:18px;
        }
        
        .value-card-solidpro p {
            color: var(--solidpro-text-light);
            line-height: 1.6;
        }
        
        /* ========== CTA SECTION - SOLIDPRO STYLE ========== */
        .cta-solidpro {
            padding: 120px 0;
            background: linear-gradient(rgba(30, 41, 59, 0.95), rgba(15, 23, 42, 0.98)),
                        url('https://images.unsplash.com/photo-1581094794329-c8112a89af12?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            text-align: center;
            position: relative;
        }
        
        .cta-solidpro::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--solidpro-gradient);
            opacity: 0.2;
        }
        
        .cta-title-solidpro {
            font-size: 3.2rem;
            font-weight: 800;
            color: white;
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
        }
        
        .cta-subtitle-solidpro {
            font-size: 1.2rem;
            color: #cbd5e1;
            max-width: 600px;
            margin: 0 auto 40px;
            line-height: 1.6;
            position: relative;
            z-index: 2;
        }
        
        .cta-button-solidpro {
            display: inline-flex;
            align-items: center;
            gap: 15px;
            background: var(--solidpro-gradient);
            color: white;
            padding: 18px 45px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
            position: relative;
            z-index: 2;
            border: none;
            cursor: pointer;
        }
        
        .cta-button-solidpro:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(37, 99, 235, 0.4);
            color: white;
        }
        
        .cta-button-solidpro i {
            transition: transform 0.3s ease;
        }
        
        .cta-button-solidpro:hover i {
            transform: translateX(10px);
        }
        
        /* ========== RESPONSIVE DESIGN ========== */
        @media (max-width: 1200px) {
            .hero-title-solidpro {
                font-size: 3.5rem;
            }
            
            .cta-title-solidpro {
                font-size: 2.8rem;
            }
        }
        
        @media (max-width: 768px) {
            .hero-title-solidpro {
                font-size: 2.8rem;
            }
            
            .hero-subtitle-solidpro {
                font-size: 1.1rem;
            }
            
            .stat-number-solidpro {
                font-size: 2.8rem;
            }
            
            .timeline-solidpro .section-title h2 {
                font-size: 2.2rem;
            }
            
            .cta-title-solidpro {
                font-size: 2.2rem;
            }
            
            .vision-card-solidpro,
            .capability-card-solidpro,
            .value-card-solidpro {
                padding: 30px 20px;
            }
            
            .timeline-container-solidpro {
                padding-left: 20px;
            }
            
            .timeline-item-solidpro {
                padding-left: 20px;
            }
        }
        
        @media (max-width: 576px) {
            .hero-title-solidpro {
                font-size: 2.2rem;
            }
            
            .hero-badge-solidpro {
                padding: 10px 20px;
                font-size: 12px;
            }
            
            .stat-card-solidpro {
                padding: 30px 15px;
            }
            
            .stat-number-solidpro {
                font-size: 2.2rem;
            }
        }
        
        /* ========== ANIMATION CLASSES ========== */
        .fade-in-up {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        
        .fade-in-up.animated {
            opacity: 1;
            transform: translateY(0);
        }
        
        .delay-100 { transition-delay: 0.1s; }
        .delay-200 { transition-delay: 0.2s; }
        .delay-300 { transition-delay: 0.3s; }
        .delay-400 { transition-delay: 0.4s; }
        .delay-500 { transition-delay: 0.5s; }
		
		/* ===== ICON BASED BELIEF DESIGN ===== */

.solidpro-about-tabs .belief-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: #f9fcfe;
    border: 1px solid #e2ecf2;
    border-radius: 20px;
    padding: 24px;
    transition: all 0.3s ease;
}

.solidpro-about-tabs .belief-card:hover {
    background: #ffffff;
    border-color: #0a3144;
    box-shadow: 0 12px 30px rgba(10, 49, 68, 0.08);
    transform: translateY(-4px);
}

.solidpro-about-tabs .belief-icon {
    min-width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #0a3144, #2a6d8c);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.solidpro-about-tabs .belief-content h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0a3144;
    margin-bottom: 8px;
}

.solidpro-about-tabs .belief-content p {
    font-size: 0.92rem;
    color: #4a6579;
    margin: 0;
    line-height: 1.6;
}


        .solidpro-about-tabs {
            max-width: 1400px;
            margin: 0 auto;
            background: white;
            border-radius: 32px;
            box-shadow: 0 20px 40px rgba(0,20,40,0.04);
            padding: 40px;
            border: 1px solid #eaedf0;
            font-family: 'Inter', sans-serif;
        }

        .solidpro-about-tabs .tabs-header {
            display: flex;
            gap: 12px;
            border-bottom: 2px solid #e2e9f0;
            padding-bottom: 16px;
            margin-bottom: 36px;
        }

        .solidpro-about-tabs .tab-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 14px 32px;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
        }

        .solidpro-about-tabs .tab-item.active {
            background: #0a3144;
            color: white;
        }

        .solidpro-about-tabs .tab-content { display: none; }
        .solidpro-about-tabs .tab-content.active { display: block; }

        .solidpro-about-tabs .tab-flex {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 40px;
            align-items: center;
        }
		
		
		.solidpro-about-tabs .what-we-do.tab-flex {
            display: grid;
            grid-template-columns: 4fr;
            gap: 40px;
            align-items: center;
        }

		.lead-text {
			margin-bottom:30px;
		}
        .solidpro-about-tabs .tab-image img {
            width: 100%;
            border-radius: 24px;
            box-shadow: 0 20px 40px rgba(0, 20, 40, 0.08);
        }

        .solidpro-about-tabs .beliefs-grid,
        .solidpro-about-tabs .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }

        .solidpro-about-tabs .belief-card,
        .solidpro-about-tabs .service-card {
            background: #f9fcfe;
            border-radius: 24px;
            padding: 24px;
            border: 1px solid #e2ecf2;
        }

        @media (max-width: 1000px) {
            .solidpro-about-tabs .tab-flex {
                grid-template-columns: 1fr;
            }
            .solidpro-about-tabs .beliefs-grid,
            .solidpro-about-tabs .services-grid {
                grid-template-columns: 1fr;
            }
        }

/* =========================================
   WORLD PRESENCE SECTION
========================================= */

.world-presence-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f7fbfd 0%, #ffffff 100%);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Section Header */

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0c3346;
    margin-bottom: 10px;
}

.section-header p {
    font-size: 16px;
    color: #fff;
}

/* =========================================
   MAP WRAPPER
========================================= */

.map-wrapper {
    background: #ffffff;
    border-radius: 24px;
    padding: 30px;
    border: 1px solid #e0ecf2;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.map-container {
    position: relative;
    width: 100%;
}

.world-map-img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.9;
}

/* =========================================
   MAP PINS
========================================= */

.map-pin {
    position: absolute;
    width: 14px;
    height: 14px;
    background: #D93B4A;
    border-radius: 50%;
    border: 3px solid #ffffff;
    box-shadow: 0 0 0 6px rgba(217, 59, 74, 0.2);
    cursor: pointer;
    animation: pulse 2s infinite;
}

/* Hover Label */
.map-pin span {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: #0c3346;
    color: #ffffff;
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    transition: 0.3s ease;
}

.map-pin:hover span {
    opacity: 1;
}

/* =========================================
   PIN POSITIONS
   (Adjust slightly if needed)
========================================= */

/* =========================================
   CORRECTED PIN POSITIONS
   (Optimized for Wikimedia world map)
========================================= */

/* United States (Central USA) */
.usa-pin {
    top: 38%;
    left: 20%;
}



/* United Kingdom */
.uk-pin {
    top: 27%;
    left: 47.5%;
}

/* Ireland */
.ireland-pin {
    top: 26%;
    left: 45.8%;
}

/* India */
.india-pin {
    top: 45%;
    left: 70%;
}


/* =========================================
   PULSE ANIMATION
========================================= */

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(217, 59, 74, 0.4);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(217, 59, 74, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(217, 59, 74, 0);
    }
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 768px) {
    .world-presence-section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 26px;
    }

    .map-wrapper {
        padding: 15px;
    }
}

.flag-icon {
    width: 32px;
    height: 24px;
    border-radius: 2px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.usa-flag {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='24' viewBox='0 0 32 24'%3E%3Crect width='32' height='24' fill='%231B3D82'/%3E%3Cpath fill='%23FFF' d='M0 0h32v2H0zM0 4h32v2H0zM0 8h32v2H0zM0 12h32v2H0zM0 16h32v2H0zM0 20h32v2H0z'/%3E%3Crect width='13.33' height='13.33' fill='%231B3D82'/%3E%3Cpath fill='%23FFF' d='M1.33 1.33h1.33v1.33H1.33zM5.33 1.33h1.33v1.33H5.33zM9.33 1.33h1.33v1.33H9.33zM2.67 2.67h1.33v1.33H2.67zM6.67 2.67h1.33v1.33H6.67zM10.67 2.67h1.33v1.33H10.67zM1.33 4h1.33v1.33H1.33zM5.33 4h1.33v1.33H5.33zM9.33 4h1.33v1.33H9.33zM2.67 5.33h1.33v1.33H2.67zM6.67 5.33h1.33v1.33H6.67zM10.67 5.33h1.33v1.33H10.67zM1.33 6.67h1.33v1.33H1.33zM5.33 6.67h1.33v1.33H5.33zM9.33 6.67h1.33v1.33H9.33z'/%3E%3C/svg%3E");
}

.uk-flag {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='24' viewBox='0 0 32 24'%3E%3Crect width='32' height='24' fill='%2300246A'/%3E%3Cpath fill='%23FFF' d='M0 0L32 24M32 0L0 24' stroke='%23FFF' stroke-width='3'/%3E%3Cpath fill='%23C8102E' d='M0 0L32 24M32 0L0 24' stroke='%23C8102E' stroke-width='2'/%3E%3Crect x='15' width='2' height='24' fill='%23C8102E'/%3E%3Crect y='11' width='32' height='2' fill='%23C8102E'/%3E%3C/svg%3E");
}

.ireland-flag {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='24' viewBox='0 0 32 24'%3E%3Crect width='10.67' height='24' fill='%2316914B'/%3E%3Crect x='10.67' width='10.66' height='24' fill='%23FFF'/%3E%3Crect x='21.33' width='10.67' height='24' fill='%23FF883E'/%3E%3C/svg%3E");
}

.india-flag {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='24' viewBox='0 0 32 24'%3E%3Crect width='32' height='8' fill='%23FF9933'/%3E%3Crect y='8' width='32' height='8' fill='%23FFF'/%3E%3Crect y='16' width='32' height='8' fill='%23138754'/%3E%3Ccircle cx='16' cy='12' r='2' fill='%23000080'/%3E%3C/svg%3E");
}

.region-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #e5e7eb;
}

.region-item:last-child {
    border-bottom: none;
}

.region-name {
    font-size: 1.1rem;
    font-weight: 500;
    color: #1f2937;
}


/* ===== Promise Section - Spotlight Reveal Effect ===== */

.promise-container {
    position: relative;
    padding: 120px 20px;
    background: #0b0f19;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Moving spotlight beam */
.promise-container::before {
    content: "";
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 600px;
    background: radial-gradient(ellipse at center, rgba(59,130,246,0.25) 0%, transparent 70%);
    animation: spotlightMove 6s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes spotlightMove {
    0% { transform: translateX(-60%) rotate(-5deg); }
    100% { transform: translateX(-40%) rotate(5deg); }
}

.promise-content {
    position: relative;
    max-width: 850px;
    width: 100%;
    padding: 50px;
    background: linear-gradient(145deg, #17479e, #17479e);
    border-radius: 10px;
    text-align: center;
    box-shadow: 
        0 0 0 1px rgba(255,255,255,0.05),
        0 40px 80px rgba(0,0,0,0.6);
    transition: 0.5s ease;
    z-index: 2;
}

/* Side accent bars */
.promise-content::before,
.promise-content::after {
    content: "";
    position: absolute;
    width: 4px;
    height: 0%;
    background: linear-gradient(to bottom, #3b82f6, #06b6d4);
    transition: height 0.6s ease;
}

.promise-content::before {
    left: 0;
    top: 0;
}

.promise-content::after {
    right: 0;
    bottom: 0;
}

.promise-content:hover::before,
.promise-content:hover::after {
    height: 100%;
}

.promise-content:hover {
    transform: translateY(-10px);
}

.promise-text {
    font-size: 1.7rem;
    line-height: 1.9;
    font-weight: 500;
    color: #e2e8f0;
    letter-spacing: 0.5px;
    position: relative;
}

/* Elegant underline animation */
.promise-text::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    margin: 30px auto 0;
    background: linear-gradient(to right, #3b82f6, #06b6d4);
    transition: width 0.4s ease;
}

.promise-content:hover .promise-text::after {
    width: 120px;
}

.promise-footer {
    margin-top: 45px;
}

.promise-label {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #fff;
    opacity: 0.8;
    transition: 0.3s ease;
}

.promise-content:hover .promise-label {
    letter-spacing: 6px;
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .promise-content {
        padding: 50px 25px;
    }

    .promise-text {
        font-size: 1.3rem;
    }
}

        /* Ultra-Premium Timeline Section CSS */
.history-timeline-section {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
    background: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #0a0f1a 0%, #111827 100%);
    border-radius: 40px;
    box-shadow: 
        0 50px 100px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 100px rgba(59, 130, 246, 0.2);
}

/* Premium Background Effects */
.bg-effects {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: premiumFloat 25s infinite ease-in-out;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.8) 0%, 
        rgba(139, 92, 246, 0.8) 50%,
        rgba(59, 130, 246, 0.8) 100%);
    top: -250px;
    right: -250px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, 
        rgba(6, 182, 212, 0.7) 0%,
        rgba(16, 185, 129, 0.7) 50%,
        rgba(6, 182, 212, 0.7) 100%);
    bottom: -200px;
    left: -200px;
    animation-delay: 12s;
}

@keyframes premiumFloat {
    0%, 100% { 
        transform: translate(0, 0) rotate(0deg) scale(1); 
        filter: blur(80px);
    }
    33% { 
        transform: translate(50px, -80px) rotate(120deg) scale(1.2); 
        filter: blur(100px);
    }
    66% { 
        transform: translate(-30px, 60px) rotate(240deg) scale(0.8); 
        filter: blur(60px);
    }
}

/* Premium Header */
.section-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.section-header h2 {
    font-size: 30px;
    font-weight: 900;
    background: linear-gradient(135deg, 
        #fff 0%, 
        #fff 30%, 
        #fff 70%,
        #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 4px;
    position: relative;
    display: inline-block;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: titleGlow 3s infinite alternate;
}

@keyframes titleGlow {
    0% {
        text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3),
                     0 0 0 rgba(96, 165, 250, 0);
    }
    100% {
        text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3),
                     0 0 30px rgba(96, 165, 250, 0.5),
                     0 0 60px rgba(96, 165, 250, 0.2);
    }
}

.section-header h2::before {
    content: 'OUR EVOLUTION';
    position: absolute;
    top: 4px;
    left: 4px;
    background: linear-gradient(135deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.15) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    z-index: -1;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 6px;
    background: linear-gradient(90deg, 
        transparent, 
        #60a5fa, 
        #a855f7, 
        #ec4899,
        transparent);
    border-radius: 3px;
    box-shadow: 0 0 30px rgba(96, 165, 250, 0.7);
    animation: shimmer 3s infinite linear;
}

@keyframes shimmer {
    0% { background-position: -200px 0; }
    100% { background-position: 200px 0; }
}

.section-subtitle {
    font-size: 1.4rem;
    color: #94a3b8;
    max-width: 800px;
    margin: 50px auto 0;
    line-height: 1.8;
    font-weight: 300;
    letter-spacing: 1px;
    position: relative;
    padding: 20px;
    border-left: 3px solid #3b82f6;
    border-right: 3px solid #8b5cf6;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(59, 130, 246, 0.1) 50%,
        transparent 100%);
}

/* Premium 3D Timeline */
.timeline-3d {
    position: relative;
    height: 700px;
    margin: 100px 0;
    perspective: 1800px;
    z-index: 2;
}

.timeline-track {
    position: absolute;
    top: 50%;
    left: 100px;
    right: 100px;
    height: 8px;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0.05) 0%, 
        rgba(255, 255, 255, 0.15) 50%, 
        rgba(255, 255, 255, 0.05) 100%);
    transform: translateY(-50%);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 
        inset 0 0 20px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(0, 0, 0, 0.3);
}

.timeline-progress {
    height: 100%;
    width: 20%;
    background: linear-gradient(90deg, 
        #3b82f6 0%, 
        #8b5cf6 50%, 
        #ec4899 100%);
    border-radius: 4px;
    position: relative;
    transition: width 1s cubic-bezier(0.34, 1.56, 0.64, 1.55);
    box-shadow: 
        0 0 60px rgba(59, 130, 246, 0.7),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.timeline-progress::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.5), 
        transparent);
    animation: progressShine 2s infinite;
    transform: translateX(-100%);
}

.timeline-progress::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 
        0 0 40px rgba(59, 130, 246, 1),
        0 0 80px rgba(59, 130, 246, 0.8),
        0 0 120px rgba(59, 130, 246, 0.4),
        inset 0 0 20px rgba(255, 255, 255, 0.5);
    animation: progressPulse 2s infinite;
    z-index: 3;
}

@keyframes progressPulse {
    0%, 100% { 
        transform: translateY(-50%) scale(1);
        box-shadow: 
            0 0 40px rgba(59, 130, 246, 1),
            0 0 80px rgba(59, 130, 246, 0.8),
            0 0 120px rgba(59, 130, 246, 0.4);
    }
    50% { 
        transform: translateY(-50%) scale(1.2);
        box-shadow: 
            0 0 60px rgba(59, 130, 246, 1.2),
            0 0 100px rgba(59, 130, 246, 1),
            0 0 140px rgba(59, 130, 246, 0.6);
    }
}

.timeline-years-3d {
    position: absolute;
    top: 50%;
    left: 100px;
    right: 100px;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    z-index: 4;
}

.year-node {
    position: relative;
    width: 120px;
    text-align: center;
    cursor: pointer;
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1.55);
    transform-style: preserve-3d;
}

.year-node.active {
    transform: translateY(-60px) scale(1.4);
    z-index: 10;
}

.year-node:hover:not(.active) {
    transform: translateY(-30px) scale(1.2);
    filter: drop-shadow(0 20px 30px rgba(59, 130, 246, 0.4));
}

.year-dot-3d {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #1e293b, #334155);
    border: 5px solid #475569;
    border-radius: 50%;
    margin: 0 auto 25px;
    position: relative;
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1.55);
    z-index: 2;
    box-shadow: 
        inset 0 0 15px rgba(0, 0, 0, 0.5),
        0 10px 25px rgba(0, 0, 0, 0.4);
}

.year-node.active .year-dot-3d {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6, #ec4899);
    border-color: #93c5fd;
    transform: scale(2);
    box-shadow: 
        0 0 60px rgba(59, 130, 246, 1),
        0 0 100px rgba(59, 130, 246, 0.6),
        0 0 140px rgba(59, 130, 246, 0.3),
        inset 0 0 30px rgba(255, 255, 255, 0.4);
    animation: activeGlow 2s infinite alternate;
}

@keyframes activeGlow {
    0% { 
        box-shadow: 
            0 0 60px rgba(59, 130, 246, 1),
            0 0 100px rgba(59, 130, 246, 0.6),
            0 0 140px rgba(59, 130, 246, 0.3);
    }
    100% { 
        box-shadow: 
            0 0 80px rgba(59, 130, 246, 1.2),
            0 0 120px rgba(59, 130, 246, 0.8),
            0 0 160px rgba(59, 130, 246, 0.5);
    }
}

.year-label-3d {
    font-size: 1.8rem;
    font-weight: 900;
    color: #cbd5e1;
    transition: all 0.5s ease;
    margin-bottom: 15px;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    letter-spacing: 2px;
}

.year-node.active .year-label-3d {
    color: #ffffff;
    transform: scale(1.5);
    text-shadow: 
        0 0 30px rgba(96, 165, 250, 1),
        0 0 60px rgba(96, 165, 250, 0.6),
        0 0 90px rgba(96, 165, 250, 0.3);
    animation: textPulse 2s infinite alternate;
}

@keyframes textPulse {
    0% { 
        text-shadow: 
            0 0 30px rgba(96, 165, 250, 1),
            0 0 60px rgba(96, 165, 250, 0.6);
    }
    100% { 
        text-shadow: 
            0 0 40px rgba(96, 165, 250, 1.2),
            0 0 80px rgba(96, 165, 250, 0.8),
            0 0 120px rgba(96, 165, 250, 0.4);
    }
}

.year-subtitle-3d {
    font-size: 1rem;
    color: #64748b;
    transition: all 0.5s ease;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    min-height: 40px;
    padding: 8px 15px;
    border-radius: 20px;
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(10px);
}

.year-node.active .year-subtitle-3d {
    color: #93c5fd;
    transform: scale(1.2);
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(147, 197, 253, 0.3);
    box-shadow: 0 0 20px rgba(147, 197, 253, 0.4);
}

/* Premium Navigation */
.timeline-nav-3d {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 80px 0 100px;
    z-index: 2;
    position: relative;
}

.nav-btn-3d {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, 
        rgba(30, 41, 59, 0.9) 0%,
        rgba(15, 23, 42, 0.9) 100%);
    border: 3px solid rgba(148, 163, 184, 0.3);
    color: #94a3b8;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1.55);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.nav-btn-3d::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, 
        #3b82f6, #8b5cf6, #ec4899, #3b82f6);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.6s;
}

.nav-btn-3d::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: linear-gradient(135deg, 
        rgba(30, 41, 59, 0.9) 0%,
        rgba(15, 23, 42, 0.9) 100%);
    border-radius: 50%;
    z-index: -1;
}

.nav-btn-3d:hover {
    color: #ffffff;
    transform: translateY(-10px) scale(1.15);
    border-color: transparent;
}

.nav-btn-3d:hover::before {
    opacity: 1;
    animation: rotateBorder 3s linear infinite;
}

@keyframes rotateBorder {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.nav-btn-3d:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
    border-color: rgba(148, 163, 184, 0.3);
}

.nav-btn-3d:disabled:hover::before {
    opacity: 0;
    animation: none;
}

/* Premium Content Slider */
.content-slider {
    position: relative;
    min-height: 500px;
    margin: 60px 0;
    z-index: 2;
}

.timeline-card {
    position: absolute;
    width: 100%;
    background: linear-gradient(135deg,
        rgba(30, 41, 59, 0.9) 0%,
        rgba(15, 23, 42, 0.9) 100%);
    border-radius: 35px;
    padding: 60px;
    display: flex;
    align-items: center;
    gap: 60px;
    opacity: 0;
    transform: translateY(80px) scale(0.9);
    transition: all 1s cubic-bezier(0.34, 1.56, 0.64, 1.55);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 40px 80px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.timeline-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, 
        #3b82f6, #8b5cf6, #ec4899, #3b82f6);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1.2s 0.4s;
    animation: borderShimmer 3s infinite linear;
    background-size: 200% 100%;
}

.timeline-card.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.timeline-card.active::before {
    transform: scaleX(1);
}

@keyframes borderShimmer {
    0% { background-position: -100% 0; }
    100% { background-position: 100% 0; }
}

/* Premium Card Year */
.card-year-glow {
    flex: 0 0 300px;
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.2) 0%,
        rgba(139, 92, 246, 0.2) 50%,
        rgba(236, 72, 153, 0.2) 100%);
    border-radius: 30px;
    padding: 50px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        inset 0 0 40px rgba(0, 0, 0, 0.4),
        0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-year-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.1) 50%, 
        transparent 100%);
    transform: translateX(-100%) rotate(45deg);
    transition: transform 1s;
}

.timeline-card.active .card-year-glow::before {
    transform: translateX(200%) rotate(45deg);
}

.card-year-big {
    font-size: 6.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, 
        #60a5fa 0%, 
        #a855f7 33%, 
        #ec4899 66%,
        #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 20px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 1;
    animation: yearGlow 3s infinite alternate;
}

@keyframes yearGlow {
    0% { 
        filter: drop-shadow(0 5px 15px rgba(96, 165, 250, 0.3));
    }
    100% { 
        filter: drop-shadow(0 5px 30px rgba(96, 165, 250, 0.6));
    }
}

.card-phase {
    font-size: 1.8rem;
    font-weight: 700;
    color: #e2e8f0;
    position: relative;
    z-index: 1;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

/* Premium Card Content */
.card-content {
    flex: 1;
    padding-right: 50px;
    position: relative;
    z-index: 1;
}

.card-icon-3d {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6, #ec4899);
    border-radius: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
    position: relative;
    transform-style: preserve-3d;
    animation: premiumFloat3D 4s infinite ease-in-out;
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 0 2px rgba(255, 255, 255, 0.1),
        inset 0 0 30px rgba(255, 255, 255, 0.2);
}

@keyframes premiumFloat3D {
    0%, 100% { 
        transform: translateY(0) rotateX(0) rotateY(0); 
    }
    33% { 
        transform: translateY(-20px) rotateX(10deg) rotateY(10deg); 
    }
    66% { 
        transform: translateY(10px) rotateX(-5deg) rotateY(-5deg); 
    }
}

.card-icon-3d i {
    font-size: 4rem;
    color: white;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.4));
    animation: iconSpin 10s infinite linear;
}

@keyframes iconSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.card-text {
    font-size: 1.5rem;
    line-height: 1.9;
    color: #e2e8f0;
    position: relative;
    padding-left: 30px;
    font-weight: 300;
    letter-spacing: 0.5px;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.card-text::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: linear-gradient(180deg, 
        #3b82f6, #8b5cf6, #ec4899, #3b82f6);
    border-radius: 3px;
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.7);
    animation: textGlow 3s infinite alternate;
}

@keyframes textGlow {
    0% { 
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
    }
    100% { 
        box-shadow: 0 0 40px rgba(59, 130, 246, 0.9),
                    0 0 60px rgba(59, 130, 246, 0.4);
    }
}

/* Enhanced Particle System */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    border-radius: 50%;
    animation: particleFloatEnhanced 20s infinite linear;
    box-shadow: 0 0 20px currentColor;
}

@keyframes particleFloatEnhanced {
    0% { 
        transform: translateY(100vh) translateX(0) rotate(0deg) scale(0);
        opacity: 0; 
    }
    10% { 
        opacity: 1; 
        transform: translateY(90vh) translateX(10px) rotate(36deg) scale(1);
    }
    90% { 
        opacity: 1; 
        transform: translateY(10vh) translateX(90px) rotate(324deg) scale(1);
    }
    100% { 
        transform: translateY(-100px) translateX(100px) rotate(360deg) scale(0);
        opacity: 0; 
    }
}

/* Enhanced JavaScript for Particle Creation */
function createEnhancedParticles() {
    const particlesContainer = document.getElementById('particles');
    const colors = ['#60a5fa', '#a855f7', '#ec4899', '#06b6d4', '#10b981'];
    
    for (let i = 0; i < 100; i++) {
        const particle = document.createElement('div');
        particle.classList.add('particle');
        
        // Random size
        const size = 2 + Math.random() * 6;
        particle.style.width = `${size}px`;
        particle.style.height = `${size}px`;
        
        // Random position
        particle.style.left = `${Math.random() * 100}%`;
        particle.style.top = `${Math.random() * 100}%`;
        
        // Random color
        const color = colors[Math.floor(Math.random() * colors.length)];
        particle.style.backgroundColor = color;
        particle.style.color = color;
        
        // Random animation
        particle.style.animationDelay = `${Math.random() * 20}s`;
        particle.style.animationDuration = `${15 + Math.random() * 20}s`;
        
        particlesContainer.appendChild(particle);
    }
}

// Replace the createParticles function in your script with createEnhancedParticles

/* Responsive Design */
@media (max-width: 1200px) {
    .timeline-3d {
        height: 600px;
    }
    
    .section-header h2 {
        font-size: 4rem;
    }
    
    .card-year-big {
        font-size: 5.5rem;
    }
}

@media (max-width: 992px) {
    .timeline-card {
        flex-direction: column;
        text-align: center;
        gap: 50px;
        padding: 50px 40px;
    }
    
    .card-content {
        padding-right: 0;
    }
    
    .card-text::before {
        display: none;
    }
    
    .timeline-3d {
        height: 550px;
    }
    
    .timeline-track,
    .timeline-years-3d {
        left: 60px;
        right: 60px;
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 3rem;
    }
    
    .timeline-3d {
        height: 500px;
    }
    
    .timeline-track,
    .timeline-years-3d {
        left: 40px;
        right: 40px;
    }
    
    .year-node {
        width: 90px;
    }
    
    .nav-btn-3d {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .history-timeline-section {
        padding: 60px 20px;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .timeline-3d {
        height: 450px;
    }
    
    .card-icon-3d {
        width: 100px;
        height: 100px;
    }
    
    .card-icon-3d i {
        font-size: 3rem;
    }
}

    .transformation-approach-section {
        background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
        border-radius: 24px;
        padding: 40px;
        margin: 60px 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        border: 1px solid #e2e8f0;
        position: relative;
        overflow: hidden;
    }
    
    .transformation-approach-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 6px;
        height: 100%;
        background: linear-gradient(to bottom, #4c6ef5, #3b5bdb);
        border-radius: 0 3px 3px 0;
    }
    
    .approach-header {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .approach-header h2 {
        font-size: 2.4rem;
        color: #1a202c;
        margin-bottom: 8px;
        font-weight: 700;
    }
    
    .approach-header h2 .highlight {
        background: linear-gradient(135deg, #4c6ef5, #3b5bdb);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        padding: 0 5px;
    }
    
    .approach-header .subtitle {
        font-size: 1.3rem;
        color: #4a5568;
        margin-bottom: 20px;
        font-weight: 600;
    }
    
    .approach-header .intro-text {
        font-size: 1.1rem;
        color: #718096;
        max-width: 800px;
        margin: 0 auto;
        line-height: 1.6;
    }
    
   
    .flow-title {
        text-align: center;
        font-size: 1.5rem;
        font-weight: 700;
        color: #2d3748;
        margin-bottom: 30px;
        position: relative;
        display: inline-block;
        left: 50%;
        transform: translateX(-50%);
        padding: 0 20px;
    }
    
    .flow-title::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 0;
        width: 100%;
        height: 3px;
        background: linear-gradient(90deg, #4c6ef5, #3b5bdb);
        border-radius: 3px;
    }
    
    .flow-steps {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 30px;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .flow-step {
        display: flex;
        flex-direction: column;
        align-items: center;
        flex: 1;
        min-width: 120px;
        position: relative;
    }
    
    .step-icon {
        width: 70px;
        height: 70px;
        border-radius: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        color: white;
        margin-bottom: 15px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }
    
    .flow-step:hover .step-icon {
        transform: translateY(-5px);
        box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
    }
    
    .vision-step {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    }
    
    .capabilities-step {
        background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    }
    
    .processes-step {
        background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    }
    
    .technology-step {
        background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    }
    
    .performance-step {
        background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    }
    
    .step-label {
        font-size: 1.2rem;
        font-weight: 600;
        color: #2d3748;
        text-align: center;
    }
    
    .flow-arrow {
        font-size: 1.8rem;
        color: #cbd5e0;
        padding: 0 10px;
    }
    
    .flow-description {
        text-align: center;
        font-size: 1.1rem;
        color: #4a5568;
        max-width: 700px;
        margin: 0 auto;
        line-height: 1.6;
        padding-top: 20px;
        border-top: 1px solid #e2e8f0;
		margin-top:100px;
    }
    
    .promise-container {
        background: linear-gradient(135deg, #fff, #fff);
        border-radius: 18px;
        padding: 40px;
        color: white;
        position: relative;
        overflow: hidden;
        box-shadow: 0 0px 0px rgba(76, 110, 245, 0.2);
    }
    
    .promise-container::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 200px;
        height: 200px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
    }
    
    .promise-container::after {
        content: '';
        position: absolute;
        bottom: -30%;
        left: -30%;
        width: 150px;
        height: 150px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 50%;
    }
    
    .promise-content {
        position: relative;
        z-index: 2;
    }
    
    .quote-icon {
        font-size: 2.5rem;
        color: rgba(255, 255, 255, 0.3);
        margin-bottom: 15px;
    }
    
    .promise-text {
        font-size: 1.4rem;
        line-height: 1.7;
        margin-bottom: 20px;
        font-weight: 500;
        font-style: italic;
    }
    
    .promise-footer {
        display: flex;
        justify-content: flex-end;
    }
    
    .promise-label {
        font-size: 1.2rem;
        font-weight: 700;
        background: rgba(255, 255, 255, 0.2);
        padding: 8px 20px;
        border-radius: 12px;
    }
    
@media (max-width: 767px) {

    .solidpro-essence h2 , .hero-badge-solidpro , .solidpro-essence {
        text-align: center!important;
    }
    .transformation-approach-section {

        display: none!important;
    }
}
    /* Responsive adjustments */
    @media (max-width: 992px) {
        .flow-steps {
            justify-content: center;
            gap: 30px;
        }
        
        .flow-arrow {
            display: none;
        }
        
        .flow-step {
            min-width: 100px;
        }
    }
    
    @media (max-width: 768px) {
        .transformation-approach-section {
            padding: 30px 20px;
        }
        
        .approach-header h2 {
            font-size: 2rem;
        }
        
        .flow-step {
            min-width: 80px;
        }
        
        .step-icon {
            width: 60px;
            height: 60px;
            font-size: 1.5rem;
        }
        
        .promise-container {
            padding: 30px 20px;
        }
        
        .promise-text {
            font-size: 1.2rem;
        }
    }
    
    @media (max-width: 576px) {
        .flow-steps {
            flex-direction: column;
            gap: 25px;
        }
        
        .flow-step {
            flex-direction: row;
            width: 100%;
            justify-content: flex-start;
            gap: 20px;
            min-width: auto;
        }
        
        .step-icon {
            margin-bottom: 0;
            width: 50px;
            height: 50px;
            font-size: 1.3rem;
        }
        
        .step-label {
            font-size: 1.1rem;
        }
        
        .promise-text {
            font-size: 1.1rem;
        }
    }
	
	.partners-regions-section {
           
            width: 100%;
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease;
        }
        
        .partners-regions-section:hover {
            transform: translateY(-5px);
        }
        
        .section-header {
            background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
            color: white;
            padding: 40px 50px;
            position: relative;
            overflow: hidden;
        }
        
        .section-header::before {
            content: "";
            position: absolute;
            width: 150px;
            height: 150px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            top: -50px;
            right: -50px;
        }
        
        .section-header h1 {
            font-size: 2.8rem;
            margin-bottom: 15px;
            font-weight: 700;
            position: relative;
            z-index: 1;
            color:#fff;
        }
        
        .section-header p {
            font-size: 1.2rem;
            max-width: 1200px;
            line-height: 1.6;
            opacity: 0.9;
            position: relative;
            z-index: 1;
        }
        
        .content-container {
            display: flex;
            flex-wrap: wrap;
            padding: 0;
        }
        
        .partners-section, .regions-section {
            flex: 1;
            min-width: 300px;
            padding: 40px 50px;
        }
        
        .partners-section {
            background-color: #f8fafc;
            border-right: 1px solid #e2e8f0;
        }
        
        .section-title {
            color: #1e40af;
            font-size: 1.8rem;
            margin-bottom: 25px;
            padding-bottom: 12px;
            border-bottom: 3px solid #3b82f6;
            display: inline-block;
            font-weight: 600;
        }
        
        .partner-categories {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 25px;
        }
        
        .category {
            flex: 1;
            min-width: 220px;
            background: white;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-top: 4px solid #3b82f6;
        }
        
        .category:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 20px rgba(59, 130, 246, 0.15);
        }
        
        .category h3 {
            color: #1e3a8a;
            font-size: 1.3rem;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .category h3 i {
            color: #3b82f6;
        }
        
        .category p {
            color: #4b5563;
            line-height: 1.5;
        }
        
        .regions-section {
            background-color: white;
        }
        
        .region-list {
            list-style-type: none;
            margin-top: 10px;
        }
        
        .region-item {
            padding: 18px 0;
            border-bottom: 1px solid #e5e7eb;
            display: flex;
            align-items: center;
            gap: 15px;
            transition: padding-left 0.2s ease;
        }
        
        .region-item:hover {
            padding-left: 10px;
            background-color: #f0f9ff;
            border-radius: 8px;
            margin-left: -10px;
            padding-left: 20px;
        }
        
        .region-item:last-child {
            border-bottom: none;
        }
        
        .region-flag {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }
        
        .region-name {
            font-size: 1.2rem;
            font-weight: 500;
            color: #1f2937;
        }
        
        .region-desc {
            color: #6b7280;
            font-size: 0.9rem;
            margin-top: 5px;
        }
        
        .globe-icon {
            font-size: 1.8rem;
            color: #3b82f6;
            margin-right: 10px;
        }
        
        @media (max-width: 900px) {
            .partners-section, .regions-section {
                flex: 100%;
                border-right: none;
                border-bottom: 1px solid #e2e8f0;
            }
            
            .section-header {
                padding: 30px 35px;
            }
            
            .section-header h1 {
                font-size: 2.2rem;
            }
        }
        
        @media (max-width: 600px) {
            .section-header {
                padding: 25px 30px;
            }
            
            .section-header h1 {
                font-size: 1.8rem;
            }
            
            .partners-section, .regions-section {
                padding: 30px 35px;
            }
            
            .section-title {
                font-size: 1.5rem;
            }
        }
        
        .footer-note {
            text-align: center;
            padding: 25px;
            background-color: #f1f5f9;
            color: #64748b;
            font-size: 0.95rem;
            border-top: 1px solid #e2e8f0;
        }
        
        .highlight {
            color: #1e40af;
            font-weight: 600;
        }
