        /* Advanced Graphics Animations & Eye-Catching Effects */
        
        /* Animated Background Particles */
        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
            overflow: hidden;
        }
        
        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: rgba(30, 58, 138, 0.3);
            border-radius: 50%;
            animation: float 20s infinite linear;
        }
        
        @keyframes float {
            0% {
                transform: translateY(100vh) translateX(0) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100vh) translateX(100px) rotate(720deg);
                opacity: 0;
            }
        }
        
        /* Gradient Animation */
        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        .animated-gradient {
            background: linear-gradient(-45deg, #1e3a8a, #0d9488, #f97316, #3b82f6);
            background-size: 400% 400%;
            animation: gradientShift 15s ease infinite;
        }
        
        /* Glow Effects */
        .glow {
            box-shadow: 0 0 20px rgba(30, 58, 138, 0.3);
            transition: all 0.3s ease;
        }
        
        .glow:hover {
            box-shadow: 0 0 30px rgba(30, 58, 138, 0.5);
            transform: translateY(-2px);
        }
        
        /* Pulse Animation */
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        .pulse {
            animation: pulse 2s infinite;
        }
        
        /* Shimmer Effect */
        .shimmer {
            position: relative;
            overflow: hidden;
        }
        
        .shimmer::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            animation: shimmer 3s infinite;
        }
        
        @keyframes shimmer {
            0% { left: -100%; }
            100% { left: 100%; }
        }
        
			/* Morphing Shapes */
        .morph {
            border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
            animation: morph 8s ease-in-out infinite;
        }
        
        @keyframes morph {
            0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
            50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
        }
        
        /* Text Animations */
        .text-gradient {
            background: linear-gradient(45deg, #1e3a8a, #0d9488, #f97316);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            background-size: 200% 200%;
            animation: gradientShift 3s ease infinite;
            text-align: justify;
        }
        
        /* Floating Elements */
        .float-animation {
            animation: floatUpDown 3s ease-in-out infinite;
        }
        
        @keyframes floatUpDown {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }
        
        /* Rotating Elements */
        .rotate-slow {
            animation: rotate 20s linear infinite;
        }
        
        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        
        /* Section Styles */
        .section {
            padding: 45px 0;
            scroll-margin-top: 80px;
            position: relative;
        }
        
       .section-alt {
    background: #ffffff;
}
        
        /* Enhanced Navigation Dots */
       /* ==========================================
   Navigation Icon Menu
========================================== */

.navigation-dots{
    position:fixed;
    right:25px;
    top:50%;
    transform:translateY(-50%);
    z-index:1000;
    display:none;
}

@media (min-width:1024px){
    .navigation-dots{
        display:flex;
        flex-direction:column;
        gap:15px;
    }
}

.nav-dot{
    width:50px;
    height:50px;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    cursor:pointer;

    background:rgba(255,255,255,.15);
    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);

    border:2px solid rgba(255,255,255,.25);

    color:#1e3a8a;

    transition:.35s ease;
    position:relative;
}

.nav-dot i{
    font-size:20px;
    pointer-events:none;
}

.nav-dot:hover{
    transform:scale(1.15);
    background:var(--primary-color);
    color:#fff;
    box-shadow:0 10px 25px rgba(30,58,138,.35);
}

.nav-dot.active{
    background:linear-gradient(135deg,#8a731e,#f6b000);
    color:#fff;
    border-color:#fff;
    transform:scale(1.15);
    box-shadow:0 10px 30px rgba(37,99,235,.5);
}

.nav-dot::after{
    content:attr(data-title);

    position:absolute;
    right:65px;
    top:50%;
    transform:translateY(-50%);

    background:#111827;
    color:#fff;

    padding:8px 14px;

    border-radius:8px;

    font-size:13px;
    font-weight:600;

    white-space:nowrap;

    opacity:0;
    visibility:hidden;

    transition:.3s;
}

.nav-dot:hover::after{
    opacity:1;
    visibility:visible;
}
        
        /* Enhanced Reveal Animations */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }
        
        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }
        
        .reveal-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.8s ease;
        }
        
        .reveal-left.active {
            opacity: 1;
            transform: translateX(0);
        }
        
        .reveal-right {
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.8s ease;
        }
        
        .reveal-right.active {
            opacity: 1;
            transform: translateX(0);
        }
        
        .reveal-scale {
            opacity: 0;
            transform: scale(0.8);
            transition: all 0.8s ease;
        }
        
        .reveal-scale.active {
            opacity: 1;
            transform: scale(1);
        }
        
        .reveal-rotate {
            opacity: 0;
            transform: rotate(-10deg) scale(0.8);
            transition: all 0.8s ease;
        }
        
        .reveal-rotate.active {
            opacity: 1;
            transform: rotate(0) scale(1);
        }
        
        /* Advanced Hero Section Styles */
        .hero {
            position: relative;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            background: #050a1a;
        }

        .hero-slider {
            position: relative;
            z-index: 0;
            width: 100%;
            aspect-ratio: 2.85 / 1;
            min-height: 560px;
            max-height: 720px;
            overflow: hidden;
        }
        
        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 93%;
            opacity: 0;
            visibility: hidden;
            transition: all 1s ease-in-out;
        }
        
        .hero-slide.active {
            opacity: 1;
            visibility: visible;
        }
        
        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 150%;
            z-index: -2;
        }
        
        .hero-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transform: scale(1.1);
            transition: transform 10s ease-in-out;
        }
        
        .hero-slide.active .hero-image {
            transform: scale(1);
        }
        
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background:
                linear-gradient(100deg,
                    rgba(2, 6, 18, 0.94) 0%,
                    rgba(3, 8, 22, 0.9) 22%,
                    rgba(4, 10, 26, 0.78) 38%,
                    rgba(4, 10, 26, 0.5) 52%,
                    rgba(4, 10, 26, 0.22) 64%,
                    rgba(4, 10, 26, 0) 78%);
            z-index: -1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            color: white;
            width: 100%;
            height: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            padding-top: 78px;
            padding-bottom: 20px;
            box-sizing: border-box;
        }

        /* Shared left-aligned text panel used by every slide */
        .hero-panel {
            position: relative;
            max-width: 720px;
            text-align: left;
            z-index: 2;
        }

        .hero-index {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0;
            margin-bottom: 0.85rem;
            padding: 0;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 1.5px solid rgba(108, 182, 255, 0.85);
            background: rgba(3, 8, 22, 0.55);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .hero-index-num {
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 0.5px;
            color: #ffffff;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
        }

        .hero-index-total {
            display: none;
            color: rgba(255, 255, 255, 0.5);
        }

        .hero-title .accent {
            color: #6cb6ff;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.95), 0 0 12px rgba(0, 0, 0, 0.8), 0 2px 22px rgba(0, 0, 0, 0.6);
        }

        /* Slide 1 - Split Layout */
        .hero-left {
            flex: 1;
            text-align: left;
            padding-right: 3rem;
        }

        .hero-right {
            position: absolute;
            right: 1rem;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(10, 15, 36, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            padding: 0.5rem 1.1rem;
            border-radius: 50px;
            margin-bottom: 1rem;
            box-shadow: none;
        }

        .hero-badge::before {
            content: '';
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #4da3ff;
            box-shadow: 0 0 10px rgba(77, 163, 255, 0.9);
            animation: dotPulse 2s ease-in-out infinite;
        }

        .badge-text {
            color: #ffffff;
            font-weight: 600;
            font-size: 0.85rem;
            letter-spacing: 1.5px;
            text-transform: uppercase;
        }


        
        /* Slide 2 - Center Focus */
        .hero-icon {
            display: none;
        }

        .hero-icon i {
            font-size: 1.6rem;
            color: white;
        }

        .hero-achievements {
            display: flex;
            gap: 0.6rem;
            justify-content: flex-start;
            margin-top: 0.5rem;
            flex-wrap: wrap;
        }
        
        .achievement {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(4, 9, 26, 0.4);
            padding: 0.6rem 1.1rem;
            border-radius: 50px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.16);
        }
        
        .achievement i {
  color: #fcca02;
  font-size: 1.2rem;
}
        
        /* Slide 3 - Feature Cards */
        .hero-header {
            margin-bottom: 0.25rem;
        }

        .hero-features {
            display: flex;
            gap: 0.6rem;
            max-width: 720px;
            margin: 0;
            flex-wrap: wrap;
        }

        .feature-card {
            flex: 1 1 175px;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            background: rgba(4, 9, 26, 0.45);
            padding: 0.55rem 0.75rem;
            border-radius: 12px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.16);
            text-align: left;
            transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-6px);
            background: rgba(4, 9, 26, 0.6);
            box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
        }

        .feature-icon {
            width: 32px;
            height: 32px;
            background: linear-gradient(135deg, #1e3a8a, #0d9488);
            border-radius: 9px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 0 0.4rem;
            flex-shrink: 0;
        }

        .feature-icon i {
            font-size: 0.9rem;
            color: white;
        }

        .feature-card h3 {
            color: white;
            margin-bottom: 0.4rem;
            font-size: 1.05rem;
        }

        .feature-card p {
            opacity: 0.8;
            line-height: 1.35;
            font-size: 0.78rem;
            display: -webkit-box;
            -webkit-line-clamp: 1;
            line-clamp: 1;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* Slide 4 - World Map Style */
        .global-header {
            margin-bottom: 1rem;
        }

        .global-regions {
            display: flex;
            gap: 0.85rem;
            justify-content: flex-start;
            flex-wrap: wrap;
        }

        .region {
            text-align: left;
            background: rgba(4, 9, 26, 0.45);
            padding: 1.1rem 1.4rem;
            border-radius: 16px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.16);
            position: relative;
        }

        .region-dot {
            width: 10px;
            height: 10px;
            background: #FFD700;
            border-radius: 50%;
            margin: 0 0 0.6rem;
            animation: dotPulse 2s ease-in-out infinite;
        }

        .region-name {
            display: block;
            font-size: 1.05rem;
            font-weight: 600;
            color: white;
            margin-bottom: 0.3rem;
        }

        .region-count {
            color: #FFD700;
            font-size: 0.85rem;
        }

        /* Slide 5 - Call to Action */
        .hero-cta {
            display: block;
            opacity: 1;
            transform: none;
            animation: none;
        }
        
        .cta-badge {
            display: inline-block;
            background: linear-gradient(135deg, #FF6B6B, #DDA0DD);
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            margin-bottom: 2rem;
        }
        
        .cta-badge span {
            color: white;
            font-weight: 600;
            font-size: 0.9rem;
            letter-spacing: 1px;
        }
        
        .cta-buttons {
            display: flex;
            gap: 1.25rem;
            justify-content: flex-start;
            margin: 2rem 0 0;
            flex-wrap: wrap;
        }
        
        .cta-buttons .btn {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .cta-trust {
            display: flex;
            gap: 2rem;
            justify-content: center;
            margin-top: 2rem;
            flex-wrap: wrap;
        }
        
        .trust-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: white;
            opacity: 0.9;
        }
        
        .trust-item i {
            color: #4ECDC4;
        }
        
       
        
        /* New Animations */
        @keyframes badgePulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }
        
        @keyframes iconRotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        @keyframes dotPulse {
            0%, 100% { 
                transform: scale(1);
                box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
            }
            50% { 
                transform: scale(1.2);
                box-shadow: 0 0 0 10px rgba(255, 215, 0, 0);
            }
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-content {
                flex-direction: column;
                text-align: center;
                padding: 2rem 1rem;
            }
            
            .hero-left {
                padding-right: 0;
                margin-bottom: 2rem;
            }
            
            .hero-right {
                flex: none;
                width: 100%;
            }
            
            .hero-stats {
                flex-direction: column;
                gap: 1rem;
            }
            
            .hero-achievements,
            .global-regions,
            .cta-trust {
                flex-direction: column;
                gap: 1rem;
            }
            
            .hero-features {
                grid-template-columns: 1fr;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
        }
        
        .hero-content h1.hero-title {
            font-family: 'Inter', 'Segoe UI', sans-serif;
            font-size: clamp(2rem, 3.6vw, 3.1rem);
            font-weight: 800;
            line-height: 1.2;
            letter-spacing: -0.5px;
            margin: 0 0 0.6rem;
            color: #ffffff;
            background: none;
            background-clip: border-box;
            -webkit-background-clip: border-box;
            -webkit-text-fill-color: currentColor;
            -webkit-text-stroke: 0 transparent;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8), 0 4px 24px rgba(0, 0, 0, 0.55);
            transform: translateY(40px);
            opacity: 0;
            animation: heroTitleSlide 0.9s ease forwards 0.2s;
        }

        .hero-content .hero-subtitle {
            display: inline-block;
            max-width: 620px;

            font-family: 'Inter', 'Trebuchet MS', sans-serif;
            font-size: clamp(1rem, 1.6vw, 1.2rem);
            font-weight: 400;
            line-height: 1.5;
            letter-spacing: 0.1px;

            color: rgba(255, 255, 255, 0.92);
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.85), 0 2px 16px rgba(0, 0, 0, 0.6);

            margin-bottom: 1.1rem;
            margin-top: 0;

            background: rgba(10, 15, 36, 0.55);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: none;
            border-radius: 12px;
            padding: 0.7rem 1.1rem;

            transform: translateY(30px);
            opacity: 0;
            animation: heroSubtitleSlide 0.9s ease forwards 0.45s;
        }

        .hero-actions {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
            transform: translateY(30px);
            opacity: 0;
            animation: heroActionsSlide 1s ease forwards 0.9s;
        }

        @keyframes subtitleRightLine {
            0%, 100% { 
                background-position: 0% 50%;
                opacity: 0.3;
            }
            50% { 
                background-position: 100% 50%;
                opacity: 1;
            }
        }
        
        .hero-time-image {
            position: relative;
            z-index: 3;
        }
        
        .time-animation {
            width: 220px;
            height: 220px;
            object-fit: contain;
            filter: drop-shadow(0 0 50px rgba(255, 215, 0, 0.6))
                      drop-shadow(0 0 100px rgba(255, 140, 0, 0.4));
            animation: timeRotate 20s linear infinite,
                       timeGlow 3s ease-in-out infinite,
                       timePulse 4s ease-in-out infinite;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            padding: 25px;
            backdrop-filter: blur(5px);
            border: 4px solid rgba(255, 215, 0, 0.3);
        }
        
                
        @keyframes titlePulse {
            0%, 100% { 
                transform: scale(1);
                filter: brightness(1) saturate(1);
            }
            50% { 
                transform: scale(1.05);
                filter: brightness(1.3) saturate(1.5);
            }
        }
        
        @keyframes titleFloat {
            0%, 100% { transform: translateY(0); }
            25% { transform: translateY(-5px); }
            75% { transform: translateY(3px); }
        }
        
                
        @keyframes subtitleColorWave {
            0% { background-position: 0% 50%; }
            25% { background-position: 25% 50%; }
            50% { background-position: 50% 50%; }
            75% { background-position: 75% 50%; }
            100% { background-position: 100% 50%; }
        }
        
        @keyframes subtitleGlow {
            0%, 100% { 
                filter: brightness(1) drop-shadow(0 0 15px rgba(255, 107, 107, 0.3));
            }
            33% { 
                filter: brightness(1.2) drop-shadow(0 0 25px rgba(78, 205, 196, 0.5));
            }
            66% { 
                filter: brightness(1.1) drop-shadow(0 0 20px rgba(150, 206, 180, 0.4));
            }
        }
        
        @keyframes timeImageFloat {
            0%, 100% { 
                transform: translateY(-50%) translateX(0) rotate(0deg);
            }
            25% { 
                transform: translateY(-50%) translateX(-10px) rotate(2deg);
            }
            50% { 
                transform: translateY(-50%) translateX(5px) rotate(-1deg);
            }
            75% { 
                transform: translateY(-50%) translateX(-5px) rotate(1deg);
            }
        }
        
        @keyframes timeRotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        @keyframes timeGlow {
            0%, 100% { 
                filter: drop-shadow(0 0 50px rgba(255, 215, 0, 0.6))
                       drop-shadow(0 0 100px rgba(255, 140, 0, 0.4))
                       brightness(1);
            }
            50% { 
                filter: drop-shadow(0 0 60px rgba(255, 215, 0, 0.8))
                       drop-shadow(0 0 120px rgba(255, 140, 0, 0.6))
                       brightness(1.3);
            }
        }
        
        @keyframes timePulse {
            0%, 100% { 
                transform: scale(1);
                border-color: rgba(255, 215, 0, 0.3);
            }
            50% { 
                transform: scale(1.1);
                border-color: rgba(255, 215, 0, 0.6);
            }
        }
        
        @keyframes subtitleBounce {
            0%, 100% { transform: translateY(0); }
            25% { transform: translateY(-3px); }
            50% { transform: translateY(0); }
            75% { transform: translateY(-1px); }
        }
        
        @keyframes subtitleLeftLine {
            0%, 100% { 
                background-position: 0% 50%;
                opacity: 0.3;
            }
            50% { 
                background-position: 100% 50%;
                opacity: 1;
            }
        }
        
        @keyframes subtitleRightLine {
            0%, 100% { 
                background-position: 0% 50%;
                opacity: 0.3;
            }
            50% { 
                background-position: 100% 50%;
                opacity: 1;
            }
        }
        
        @keyframes titleColorShift {
            0% { background-position: 0% 50%; }
            25% { background-position: 25% 50%; }
            50% { background-position: 50% 50%; }
            75% { background-position: 75% 50%; }
            100% { background-position: 100% 50%; }
        }
        
        @keyframes titleGlow {
            0%, 100% { 
                filter: brightness(1) drop-shadow(0 0 20px rgba(255, 107, 107, 0.5));
                transform: scale(1);
            }
            25% { 
                filter: brightness(1.1) drop-shadow(0 0 30px rgba(78, 205, 196, 0.6));
                transform: scale(1.02);
            }
            50% { 
                filter: brightness(1.2) drop-shadow(0 0 25px rgba(69, 183, 209, 0.7));
                transform: scale(1.01);
            }
            75% { 
                filter: brightness(1.15) drop-shadow(0 0 35px rgba(150, 206, 180, 0.6));
                transform: scale(1.02);
            }
        }
        
        @keyframes subtitleWave {
            0%, 100% { 
                background-position: 0% 50%;
                transform: translateY(0);
            }
            25% { 
                background-position: 25% 50%;
                transform: translateY(-2px);
            }
            50% { 
                background-position: 50% 50%;
                transform: translateY(0);
            }
            75% { 
                background-position: 75% 50%;
                transform: translateY(-1px);
            }
        }
        
        @keyframes subtitlePulse {
            0%, 100% { 
                filter: brightness(1) drop-shadow(0 0 10px rgba(255, 107, 107, 0.3));
            }
            33% { 
                filter: brightness(1.1) drop-shadow(0 0 15px rgba(78, 205, 196, 0.4));
            }
            66% { 
                filter: brightness(1.05) drop-shadow(0 0 12px rgba(69, 183, 209, 0.35));
            }
        }
        
        @keyframes underlineGlow {
            0%, 100% { 
                background-position: 0% 50%;
                box-shadow: 0 0 10px rgba(255, 107, 107, 0.3);
            }
            50% { 
                background-position: 100% 50%;
                box-shadow: 0 0 20px rgba(78, 205, 196, 0.5);
            }
        }
        
                
        @keyframes heroTitleSlide {
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }
        
        @keyframes heroSubtitleSlide {
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }
        
        @keyframes heroActionsSlide {
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }
        
        .btn-large {
            padding: 0.9rem 1.75rem;
            font-size: 1rem;
            font-weight: 600;
            border-radius: 10px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .btn-primary {
            background: #2563eb;
            color: white;
            border: none;
        }

        .btn-primary:hover {
            background: #1d4ed8;
            transform: translateY(-2px);
            box-shadow: 0 10px 24px rgba(37, 99, 235, 0.4);
        }
        
        .btn-secondary {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
        }
        
        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
        }
        
        .slider-controls {
            top: auto;
            bottom: auto;
            left: auto;
            right: auto;
            transform: none;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            gap: 2rem;
            padding: 1.1rem 0;
        }
        
        .slider-dots {
            display: flex;
            gap: 1rem;
        }
        
        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            border: 2px solid rgba(255, 255, 255, 0.6);
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .slider-dot:hover {
            background: rgba(255, 255, 255, 0.6);
            transform: scale(1.2);
        }
        
        .slider-dot.active {
            background: white;
            transform: scale(1.3);
            box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
        }
        
        .slider-dot.active::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 6px;
            height: 6px;
            background: #1e3a8a;
            border-radius: 50%;
        }
        
        .slider-arrows {
            display: flex;
            gap: 1rem;
            transform: scale(1.1);
            box-shadow: 0 5px 20px rgba(255, 255, 255, 0.2);
        }
        
        /* Floating Elements */
        .hero-floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }
        
        .floating-element {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .floating-element:nth-child(1) {
            width: 80px;
            height: 80px;
            top: 10%;
            left: 10%;
            animation: float1 15s infinite ease-in-out;
        }
        
        .floating-element:nth-child(2) {
            width: 120px;
            height: 120px;
            top: 20%;
            right: 10%;
            animation: float2 20s infinite ease-in-out;
        }
        
        .floating-element:nth-child(3) {
            width: 60px;
            height: 60px;
            bottom: 20%;
            left: 15%;
            animation: float3 18s infinite ease-in-out;
        }
        
        .floating-element:nth-child(4) {
            width: 100px;
            height: 100px;
            bottom: 30%;
            right: 15%;
            animation: float4 22s infinite ease-in-out;
        }
        
        @keyframes float1 {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            25% { transform: translate(30px, -40px) rotate(90deg); }
            50% { transform: translate(-20px, -60px) rotate(180deg); }
            75% { transform: translate(-40px, -20px) rotate(270deg); }
        }
        
        @keyframes float2 {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            33% { transform: translate(-40px, 30px) rotate(120deg); }
            66% { transform: translate(30px, -40px) rotate(240deg); }
        }
        
        @keyframes float3 {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            50% { transform: translate(50px, -30px) rotate(180deg); }
        }
        
        @keyframes float4 {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            25% { transform: translate(-30px, 40px) rotate(90deg); }
            50% { transform: translate(40px, 30px) rotate(180deg); }
            75% { transform: translate(-20px, -40px) rotate(270deg); }
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-title {
                font-size: clamp(2rem, 8vw, 3rem);
            }
            
            .hero-subtitle {
                font-size: clamp(1rem, 3vw, 1.2rem);
            }
            
            .hero-actions {
                flex-direction: column;
                align-items: center;
                gap: 1rem;
            }
            
            .btn-large {
                width: 250px;
                text-align: center;
                justify-content: center;
            }
            
            .slider-controls {
                gap: 1rem;
            }
            
            .floating-element {
                display: none;
            }
        }
        
        
        /* Compact form styles for single page */
        .compact-form {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: var(--shadow-md);
            max-width: 600px;
            margin: 0 auto;
        }
        
        .compact-form .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            margin-bottom: 1rem;
        }
        
        .compact-form .form-group {
            margin-bottom: 1rem;
        }
        
        .compact-form .form-group.full-width {
            grid-column: 1 / -1;
        }
        
        .compact-form input,
        .compact-form select,
        .compact-form textarea {
            width: 100%;
            padding: 0.75rem;
            border: 2px solid var(--border-color);
            border-radius: 6px;
            font-family: inherit;
            transition: border-color 0.3s ease;
        }
        
        .compact-form input:focus,
        .compact-form select:focus,
        .compact-form textarea:focus {
            outline: none;
            border-color: var(--primary-color);
        }
        
        .compact-form label {
            display: block;
            color: var(--text-dark);
            font-weight: 500;
            margin-bottom: 0.5rem;
            font-size: 0.9rem;
        }
        
        .compact-form .form-actions {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin-top: 1.5rem;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .compact-form .form-row {
                grid-template-columns: 1fr;
            }
            
            .section {
                padding: 60px 0;
            }
        }
		.section-title::after {
  content: '';
  width: 90px;
  height: 4px;
  background: #2d89ef;

  display: block;
  margin: 12px auto;

  border-radius: 5px;

}
.section-header h2 {
  font-size: 2.5rem;
  color: #1e293b;
  margin-bottom: 0.8rem;
}
.text-gradient {
  background: linear-gradient(45deg, #1e3a8a, #81b1ff, #fac401);

    background-size: auto;
    background-clip: border-box;

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradientShift 3s ease infinite;

  text-align: center;
}
/* Chatbot Styles */
        .chatbot-widget {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 9999;
        }

        .chatbot-toggle {
            position: relative;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #1e293b, #3b82f6);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(240, 123, 12, 0.3);
            transition: all 0.3s ease;
            animation: botPulse 2s ease-in-out infinite;
        }

        .chatbot-toggle:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 25px rgba(240, 123, 12, 0.4);
        }

        .chatbot-toggle.hidden {
            opacity: 0;
            pointer-events: none;
        }

        .chatbot-toggle i {
            font-size: 1.5rem;
            color: white;
        }

        .chat-tooltip {
            position: absolute;
            right: 70px;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.8);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }

        .chatbot-toggle:hover .chat-tooltip {
            opacity: 1;
        }

        .chatbot-container {
            position: absolute;
            bottom: 80px;
            right: 0;
            width: 350px;
            height: 500px;
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
            display: flex;
            flex-direction: column;
            opacity: 0;
            transform: scale(0.8) translateY(20px);
            pointer-events: none;
            transition: all 0.3s ease;
        }

        .chatbot-container.active {
            opacity: 1;
            transform: scale(1) translateY(0);
            pointer-events: all;
        }

        .chatbot-header {
            background: linear-gradient(135deg, #1e293b, #3b82f6);
            padding: 1rem 1.5rem;
            border-radius: 20px 20px 0 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .chatbot-title {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: white;
            font-weight: 600;
        }

        .chatbot-title i {
            font-size: 1.2rem;
        }

        .chatbot-close {
            background: none;
            border: none;
            color: white;
            font-size: 1.2rem;
            cursor: pointer;
            padding: 0.25rem;
            border-radius: 50%;
            transition: background 0.3s ease;
        }

        .chatbot-close:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        .chatbot-messages {
            flex: 1;
            padding: 1rem;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .chat-message {
            display: flex;
            gap: 0.75rem;
            align-items: flex-start;
        }

        .message-avatar {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            flex-shrink: 0;
        }

        .ai-message .message-avatar {
            background: linear-gradient(135deg, #1e293b, #3b82f6);
            color: white;
        }

        .user-message .message-avatar {
            background: #e9ecef;
            color: #495057;
        }

        .message-content {
            flex: 1;
        }

        .message-content p {
            margin: 0;
            padding: 0.75rem 1rem;
            border-radius: 15px;
            font-size: 0.9rem;
            line-height: 1.4;
        }

        .ai-message .message-content p {
            background: #f8f9fa;
            color: #333;
            border-bottom-left-radius: 5px;
        }

        .user-message .message-content p {
            background: linear-gradient(135deg, #1e293b, #3b82f6);
            color: white;
            border-bottom-right-radius: 5px;
            margin-left: auto;
            max-width: 80%;
        }

        .chat-questions {
            margin-top: 1rem;
        }

        .question-title {
            font-size: 0.9rem;
            font-weight: 600;
            color: #666;
            margin-bottom: 0.75rem;
        }

        .question-btn {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            width: 100%;
            padding: 0.75rem;
            margin-bottom: 0.5rem;
            background: #f8f9fa;
            border: 1px solid #e9ecef;
            border-radius: 10px;
            text-align: left;
            font-size: 0.85rem;
            color: #333;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .question-btn:hover {
            background: linear-gradient(135deg, #1e293b, #3b82f6);
            color: white;
            transform: translateX(5px);
        }

        .question-btn i {
            font-size: 1rem;
        }

        .chatbot-input-container {
            padding: 1rem;
            border-top: 1px solid #e9ecef;
            display: flex;
            gap: 0.5rem;
        }

        .chatbot-input {
            flex: 1;
            padding: 0.75rem;
            border: 1px solid #e9ecef;
            border-radius: 25px;
            font-size: 0.9rem;
            outline: none;
            transition: border-color 0.3s ease;
        }

        .chatbot-input:focus {
            border-color: #f07b0c;
        }

        .chatbot-send {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #1e293b, #3b82f6);
            border: none;
            border-radius: 50%;
            color: white;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .chatbot-send:hover {
            transform: scale(1.1);
        }

        @keyframes botPulse {
            0%, 100% { 
                transform: scale(1);
                box-shadow: 0 4px 20px rgba(240, 123, 12, 0.3);
            }
            50% { 
                transform: scale(1.05);
                box-shadow: 0 6px 25px rgba(240, 123, 12, 0.5);
            }
        }

        /* Responsive Design */
        @media (max-width: 480px) {
            .chatbot-widget {
                bottom: 20px;
                right: 20px;
            }

            .chatbot-container {
                width: calc(100vw - 40px);
                height: 60vh;
                right: -10px;
            }

            .chat-tooltip {
                display: none;
            }
        }
/* Video Modal Styles */
        .video-modal {
            display: none;
            position: fixed;
            z-index: 10000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            animation: fadeIn 0.3s ease;
        }

        .video-modal.active {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .modal-content {
            position: relative;
            width: 90%;
            max-width: 900px;
            background: transparent;
        }

        .close-modal {
            position: absolute;
            top: -40px;
            right: 0;
            color: white;
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
            z-index: 10001;
            transition: all 0.3s ease;
        }

        .close-modal:hover {
            color: #0d9488;
            transform: scale(1.1);
        }

        .video-container {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
        }

        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @media (max-width: 768px) {
            .modal-content {
                width: 95%;
            }

            .close-modal {
                top: -35px;
                font-size: 35px;
            }
        }

        /* ===== Chairman's Message - Redesigned ===== */
        .chairman-section {
            padding: 110px 0;
            background: linear-gradient(180deg, #f8fafc 0%, #eef2f9 100%);
            position: relative;
            overflow: hidden;
        }

        .chairman-section::before {
            content: '';
            position: absolute;
            top: -120px;
            right: -120px;
            width: 420px;
            height: 420px;
            background: radial-gradient(circle, rgba(30, 58, 138, 0.07) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .chairman-section::after {
            content: '';
            position: absolute;
            bottom: -140px;
            left: -140px;
            width: 380px;
            height: 380px;
            background: radial-gradient(circle, rgba(13, 148, 136, 0.06) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .chairman-card {
            max-width: 820px;
            margin: 0 auto;
            background: #ffffff;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 25px 60px rgba(15, 23, 42, 0.12);
            position: relative;
            z-index: 1;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }

        .chairman-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 30px 70px rgba(15, 23, 42, 0.16);
        }

        .chairman-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #1e3a8a, #0d9488, #f9a11b);
        }

        .chairman-quote-mark {
            position: absolute;
            top: 1.5rem;
            left: 2.25rem;
            font-family: "Bookman Old Style", Bookman, serif;
            font-size: 5.5rem;
            font-style: italic;
            background: linear-gradient(135deg, #1e3a8a, #f9a11b);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            opacity: 0.16;
            line-height: 0;
        }

        .chairman-message {
            padding: 4.5rem 3.25rem 3rem;
            position: relative;
        }

        .chairman-message h3 {
            font-family: 'Lora', serif;
            font-style: italic;
            font-size: 2.00rem;
            font-weight: 600;
            color: #1d2a0f;
            text-align: center;
            margin: 0 0 1.75rem;
        }

        .chairman-message p {
            font-family: calibri, sans-serif;
            font-size: 1.19rem;
            line-height: 1.2;
            color: #0b0b0b;
            margin-bottom: 1.15rem;
        }

        .chairman-message p:first-of-type::first-letter {
            font-family: 'Lora', serif;
            font-size: 2.9rem;
            font-weight: 700;
            color: #1e3a8a;
            float: left;
            line-height: 1;
            padding-right: 0.5rem;
            padding-top: 0.3rem;
        }

        .signature {
            display: flex;
            align-items: center;
            gap: 1.25rem;
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 2px solid rgba(30, 58, 138, 0.12);
        }

        .signature-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 3px;
            height: 46px;
            flex-shrink: 0;
            border-radius: 2px;
            background: linear-gradient(180deg, #1e3a8a, #f9a11b);
        }

        .signature-icon i {
            display: none;
        }

        .signature-text {
            line-height: 1.1;
        }

        .signature h4 {
            font-family: 'Dancing Script', cursive;
            font-size: 2.5rem;
            font-weight: 700;
            color: #1e3a8a;
            margin-bottom: 0.15rem;
            line-height: 1;
        }

        .signature span {
            color: #64748b;
            font-size: 0.8rem;
            letter-spacing: 1.5px;
            text-transform: uppercase;
        }

        @media (max-width: 900px) {
            .chairman-message {
                padding: 4rem 1.75rem 2.5rem;
            }

            .chairman-quote-mark {
                left: 1.75rem;
            }
        }

        /* ===== Footer - Redesigned ===== */
        .footer {
            position: relative;
            background: linear-gradient(160deg, #0a0f24 0%, #0d1b3d 55%, #0b2a3d 130%);
            color: rgba(255, 255, 255, 0.85);
            padding: 80px 0 0;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, #1e3a8a, #0d9488, #f9a11b);
        }

        .footer .container {
            position: relative;
            z-index: 1;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
            gap: 2.5rem;
            padding-bottom: 3rem;
        }

        .footer-logo img {
            display: inline-block;
            height: 130px;
            width: auto;
            margin-bottom: 1.1rem;
            background: rgba(255, 255, 255, 0.95);
            padding: 8px 14px;
            border-radius: 10px;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
        }

        .footer-logo p {
            color: rgba(255, 255, 255, 0.65);
            line-height: 1.7;
            font-size: 0.95rem;
            max-width: 320px;
            margin-bottom: 1.5rem;
        }

        .footer-social {
            display: flex;
            gap: 0.75rem;
        }

        .social-link {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }

        .social-link:hover {
            background: linear-gradient(135deg, #1e3a8a, #0d9488);
            border-color: transparent;
            transform: translateY(-3px);
        }

        .footer-section h4 {
            position: relative;
            color: #fff;
            font-size: 1.05rem;
            font-weight: 600;
            letter-spacing: 0.3px;
            margin-bottom: 1.5rem;
            padding-bottom: 0.75rem;
        }

        .footer-section h4::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 32px;
            height: 3px;
            border-radius: 2px;
            background: linear-gradient(90deg, #f9a11b, #0d9488);
        }

        .footer-links {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 0.85rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.65);
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.25s ease, padding-left 0.25s ease;
        }

        .footer-links a:hover {
            color: #f9a11b;
            padding-left: 4px;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            opacity: 1;
            animation: none;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 0.85rem;
            color: rgba(255, 255, 255, 0.75);
            font-size: 0.9rem;
            background: none;
            padding: 0;
            transform: none;
        }

        .contact-item:hover {
            background: none;
            transform: none;
        }

        .contact-item i {
            width: 34px;
            height: 34px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 10px;
            color: #f9a11b;
            font-size: 0.85rem;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 1.75rem 0;
        }

        .footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer-bottom-content p {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.85rem;
            margin: 0;
        }

        .footer-bottom-links {
            display: flex;
            gap: 2rem;
        }

        .footer-bottom-links a {
            color: rgba(255, 255, 255, 0.5);
            text-decoration: none;
            font-size: 0.85rem;
            transition: color 0.25s ease;
        }

        .footer-bottom-links a:hover {
            color: #fff;
        }

        @media (max-width: 900px) {
            .footer-content {
                grid-template-columns: 1fr 1fr;
            }

            .footer-brand {
                grid-column: 1 / -1;
            }
        }

        @media (max-width: 560px) {
            .footer-content {
                grid-template-columns: 1fr;
            }

            .footer-bottom-content {
                flex-direction: column;
                text-align: center;
            }
        }

        /* ===== Quick View Modal (large image only) ===== */
        .quickview-modal {
            display: none;
            position: fixed;
            z-index: 10001;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.92);
            align-items: center;
            justify-content: center;
            animation: quickFadeIn 0.3s ease;
        }

        .quickview-modal.active {
            display: flex;
        }

        .quickview-content {
            position: relative;
            max-width: 90vw;
            max-height: 90vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .quickview-image {
            max-width: 90vw;
            max-height: 85vh;
            width: auto;
            height: auto;
            object-fit: contain;
            border-radius: 10px;
            box-shadow: 0 10px 50px rgba(0, 0, 0, 0.6);
            background: #fff;
            padding: 10px;
        }

        .quickview-close {
            position: absolute;
            top: -45px;
            right: 0;
            color: white;
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
            z-index: 10002;
            line-height: 1;
            transition: color 0.3s ease, transform 0.3s ease;
        }

        .quickview-close:hover {
            color: #f07b0c;
            transform: scale(1.1);
        }

        @keyframes quickFadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @media (max-width: 768px) {
            .quickview-close {
                top: -40px;
                font-size: 35px;
            }
        }
    

    