
        .navbar .container {
            max-width: 100%;
            padding-right: 15px;
            padding-left: 15px;
            overflow: visible !important;
        }
        
        /* Navbar base styling */
        .navbar {
            max-width: 100vw;
            overflow: visible;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1030;
            background: rgba(255, 255, 255, 0.95) !important;
            backdrop-filter: blur(10px);
        }
        
        /* FIX 1: NAVIGATION OVERFLOW ON ZOOM */
        /* Adjust for different zoom levels */
        @media (min-width: 992px) and (max-width: 1400px) {
            /* Reduce navigation font sizes and spacing */
            .navbar-nav .nav-link {
                font-size: 0.75rem !important;
                padding: 4px 6px !important;
                margin: 0 2px !important;
                white-space: nowrap;
            }
            
            /* Reduce brand text size */
            .brand-text {
                font-size: 1.5rem !important;
            }
            
            /* Reduce right-side items */
            .nav-right-item {
                font-size: 0.8rem !important;
                margin-left: 10px !important;
            }
            
            .flag-icon {
                width: 20px !important;
                height: 15px !important;
            }
            
            /* Reduce login button size */
            .navbar-nav.ms-auto .btn-outline-dark {
                padding: 6px 12px !important;
                font-size: 0.8rem !important;
            }
        }
        
        /* For very small desktop screens */
        @media (min-width: 992px) and (max-width: 1100px) {
            .navbar-nav .nav-link {
                font-size: 0.7rem !important;
                padding: 3px 4px !important;
                margin: 0 1px !important;
            }
            
            /* Hide less important nav items or reduce to dropdown */
            .navbar-nav .nav-item:nth-last-child(-n+2) {
                display: none;
            }
        }
        
        /* Ensure navbar doesn't exceed viewport */
        .navbar-collapse {
            max-width: 100%;
            overflow: visible;
        }
        
        /* Navigation links - prevent overflow with flex wrapping */
        .navbar-nav {
            flex-wrap: wrap;
            justify-content: center;
        }
        
        @media (min-width: 992px) {
            .navbar-nav .nav-link {
                font-size: 0.85rem;
                padding: 6px 10px;
                margin: 0 3px;
                white-space: nowrap;
            }
            
            /* Make right-side items flexible */
            .navbar-nav.ms-auto {
                flex-shrink: 0;
                min-width: auto;
            }
        }
        
        /* === MOBILE NAVIGATION FIXES === */
        @media (max-width: 991px) {
            .navbar-nav.ms-auto {
                display: flex !important;
                flex-direction: column;
                align-items: center;
                width: 100%;
                margin-top: 10px;
                padding-top: 15px;
                border-top: 1px solid rgba(0,0,0,0.1);
            }
            
            .navbar-nav.ms-auto .nav-item {
                width: 100%;
                text-align: center;
                margin: 5px 0;
            }
            
            .nav-right-item {
                display: flex !important;
                justify-content: center;
                align-items: center;
                width: 100%;
                padding: 10px;
                background: rgba(255, 255, 255, 0.9);
                border-radius: 8px;
                margin: 5px 0;
            }
            
            .navbar-nav.ms-auto .dropdown-menu {
                position: static !important;
                float: none !important;
                width: 100%;
                margin-top: 5px;
                text-align: center;
            }
            
            .navbar-nav.ms-auto .btn-outline-dark {
                width: 80%;
                margin: 10px auto;
                display: block;
            }
            
            #navbarNav {
                max-height: 80vh;
                overflow-y: auto;
            }
        }
        
        /* === NAVIGATION LINKS ENHANCEMENT === */
        .navbar-nav .nav-link {
            position: relative;
            color: #555;
            font-weight: 600;
            font-size: 0.95rem;
            padding: 8px 15px;
            margin: 0 5px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .navbar-nav .nav-link::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
            transition: all 0.3s ease;
            transform: translateX(-50%);
            border-radius: 1px;
        }

        .navbar-nav .nav-link:hover {
            color: var(--secondary-color);
            transform: translateY(-2px);
        }

        .navbar-nav .nav-link:hover::before {
            width: 80%;
        }

        .navbar-nav .nav-link.active {
            color: var(--secondary-color);
            font-weight: 700;
        }

        .navbar-nav .nav-link.active::before {
            width: 80%;
            background: var(--secondary-color);
        }

        /* Mobile navigation adjustments */
        @media (max-width: 991px) {
            .navbar-nav {
                text-align: center;
                margin: 20px 0;
            }
            
            .navbar-nav .nav-link {
                padding: 12px 20px;
                margin: 5px 0;
                display: block;
                background: rgba(255, 255, 255, 0.9);
                border-radius: 8px;
                border-left: 3px solid transparent;
                transition: all 0.3s ease;
            }
            
            .navbar-nav .nav-link:hover {
                background: rgba(40, 167, 69, 0.1);
                border-left-color: var(--secondary-color);
                transform: translateX(5px);
            }
            
            .navbar-nav .nav-link::before {
                display: none;
            }
            
            .navbar-nav .nav-link.active {
                background: rgba(40, 167, 69, 0.15);
                border-left-color: var(--secondary-color);
            }
        }

        /* Floating indicator for current section */
        .current-section-indicator {
            position: fixed;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.95);
            padding: 15px 10px;
            border-radius: 25px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            z-index: 1000;
            display: flex;
            flex-direction: column;
            gap: 10px;
            display: none; /* Hidden by default, shown on desktop */
        }

        @media (min-width: 1200px) {
            .current-section-indicator {
                display: flex;
            }
        }

        .indicator-dot {
            width: 10px;
            height: 10px;
            background: #ddd;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }

        .indicator-dot:hover {
            background: var(--accent-color);
            transform: scale(1.3);
        }

        .indicator-dot.active {
            background: var(--secondary-color);
            transform: scale(1.5);
            box-shadow: 0 0 10px rgba(40, 167, 69, 0.5);
        }

        .indicator-dot::after {
            content: attr(data-tooltip);
            position: absolute;
            right: 25px;
            top: 50%;
            transform: translateY(-50%);
            background: var(--primary-color);
            color: white;
            padding: 5px 10px;
            border-radius: 5px;
            font-size: 0.8rem;
            white-space: nowrap;
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }

        .indicator-dot:hover::after {
            opacity: 1;
        }

        :root {
            --primary-color: #2c3e50;
            --secondary-color: #28a745;
            --accent-color: #ffc107;
            --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        }
        
        body { 
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow-x: hidden;
            padding-top: 70px; /* Offset for fixed navbar */
        }
        
        /* === NAVIGATION BAR === */
        .navbar {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
            padding: 15px 0;
            transition: all 0.3s ease;
        }
        
        .navbar-scrolled {
            padding: 10px 0;
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
        }
        
        .brand-text {
            font-weight: 800;
            font-size: 1.8rem;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-left: 10px;
            letter-spacing: -0.5px;
        }
        
        /* Right Side Nav Items */
        .nav-right-item {
            display: flex;
            align-items: center;
            margin-left: 20px;
            font-weight: 600;
            font-size: 0.95rem;
            color: #555;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .nav-right-item:hover {
            color: var(--secondary-color);
            transform: translateY(-2px);
        }
        
        .flag-icon {
            width: 25px;
            height: 18px;
            object-fit: cover;
            border-radius: 2px;
            margin-right: 8px;
            border: 1px solid #eee;
            transition: transform 0.3s ease;
        }
        
        .flag-icon:hover {
            transform: scale(1.1);
        }

       /* === HERO SECTION - FIXED BUTTON OVERLAP === */
        .hero-section {
            background-image: 
                linear-gradient(135deg, 
                    rgba(0, 0, 0, 0.3) 0%, 
                    rgba(0, 0, 0, 0.1) 50%,
                    rgba(0, 0, 0, 0.4) 100%
                ),
                url('./images/flyer5.webp');
            background-size: cover;
            background-position: center center;
            background-attachment: fixed;
            min-height: 100vh;
            height: auto;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
            animation: backgroundZoom 20s ease-in-out infinite alternate;
            padding: 100px 0 150px 0; /* Added bottom padding to ensure button is visible */
        }

        /* Add animation to background */
        @keyframes backgroundZoom {
            0% {
                transform: scale(1);
                background-position: center center;
            }
            100% {
                transform: scale(1.05);
                background-position: center 30%;
            }
        }

        /* Enhanced overlay for better text readability */
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(44, 62, 80, 0.4) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(40, 167, 69, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(255, 193, 7, 0.2) 0%, transparent 50%);
            z-index: 1;
        }

        .hero-section::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(
                to bottom,
                transparent 0%,
                rgba(0, 0, 0, 0.2) 50%,
                rgba(0, 0, 0, 0.5) 100%
            );
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 900px;
            padding: 60px 40px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 40px;
            margin-top: 20px; /* Ensure content is below navbar */
        }

        /* Hero Text Board - Only for title and description */
        .hero-text-board {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(15px);
            border-radius: 25px;
            border: 2px solid rgba(255, 255, 255, 0.2);
            box-shadow: 
                0 25px 50px rgba(0, 0, 0, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
            padding: 50px 40px;
            width: 100%;
            animation: floatContent 6s ease-in-out infinite;
            margin-bottom: 30px; /* Add space between text and button */
        }

        @keyframes floatContent {
            0%, 100% {
                transform: translateY(0) rotate(0.5deg);
            }
            50% {
                transform: translateY(-10px) rotate(-0.5deg);
            }
        }

        .hero-text-board h2 {
            font-size: 4.5rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 25px;
            text-shadow: 
                2px 2px 5px rgba(0, 0, 0, 0.8),
                0 0 30px rgba(255, 193, 7, 0.5);
            background: linear-gradient(45deg, #fff, #ffd700, #fff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-size: 200% auto;
            animation: shimmer 3s linear infinite;
        }

        @keyframes shimmer {
            0% {
                background-position: 0% center;
            }
            100% {
                background-position: 200% center;
            }
        }

        .hero-text-board p {
            font-size: 1.5rem;
            font-weight: 300;
            line-height: 1.8;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
            color: rgba(255, 255, 255, 0.9);
            margin: 0;
        }

        /* Enhanced Button - Without board - FIXED POSITIONING */
        .btn-join {
            background: linear-gradient(45deg, 
                #28a745 0%, 
                #20c997 25%, 
                #17a2b8 50%, 
                #20c997 75%, 
                #28a745 100%
            );
            background-size: 200% auto;
            color: white;
            font-size: 1.4rem;
            font-weight: 800;
            padding: 20px 60px;
            border-radius: 50px;
            text-transform: uppercase;
            border: none;
            transition: all 0.4s ease;
            box-shadow: 
                0 10px 30px rgba(40, 167, 69, 0.4),
                0 0 0 3px rgba(255, 255, 255, 0.2),
                0 0 20px rgba(255, 215, 0, 0.5);
            text-decoration: none;
            display: inline-block;
            position: relative;
            overflow: hidden;
            letter-spacing: 1.5px;
            animation: pulseGlow 2s ease-in-out infinite;
            z-index: 10; /* Ensure button is above other elements */
            margin-top: 30px; /* Extra space above button */
        }

        @keyframes pulseGlow {
            0%, 100% {
                box-shadow: 
                    0 10px 30px rgba(40, 167, 69, 0.4),
                    0 0 0 3px rgba(255, 255, 255, 0.2),
                    0 0 20px rgba(255, 215, 0, 0.5);
            }
            50% {
                box-shadow: 
                    0 15px 40px rgba(40, 167, 69, 0.6),
                    0 0 0 3px rgba(255, 255, 255, 0.3),
                    0 0 30px rgba(255, 215, 0, 0.7);
            }
        }

        .btn-join:hover {
            background-position: 100% center;
            transform: translateY(-5px) scale(1.05);
            box-shadow: 
                0 20px 50px rgba(40, 167, 69, 0.7),
                0 0 0 5px rgba(255, 255, 255, 0.3),
                0 0 40px rgba(255, 215, 0, 0.8);
            color: white;
        }

        .btn-join::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                to right,
                transparent 20%,
                rgba(255, 255, 255, 0.3) 50%,
                transparent 80%
            );
            transform: rotate(30deg);
            animation: shine 3s infinite linear;
        }

        @keyframes shine {
            0% {
                left: -50%;
            }
            100% {
                left: 100%;
            }
        }

        /* Add floating particles for extra visual appeal */
        .floating-particles {
            position: absolute;
            width: 100%;
            height: 100%;
            z-index: 1;
            pointer-events: none;
        }

        .particle {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            animation: floatParticle 15s infinite linear;
        }

        @keyframes floatParticle {
            0% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100px) rotate(360deg);
                opacity: 0;
            }
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .hero-content {
                padding: 40px 20px;
            }
            
            .hero-text-board {
                padding: 40px 20px;
                margin-bottom: 20px;
            }
            
            .hero-text-board h2 {
                font-size: 2.8rem;
                letter-spacing: 2px;
            }
            
            .hero-text-board p {
                font-size: 1.2rem;
            }
            
            .btn-join {
                padding: 18px 40px;
                font-size: 1.1rem;
                margin-top: 20px;
            }
            
            .hero-section {
                background-attachment: scroll;
                padding: 80px 0 120px 0;
            }
        }

        @media (max-width: 576px) {
            .hero-text-board h2 {
                font-size: 2.2rem;
            }
            
            .hero-text-board p {
                font-size: 1.1rem;
            }
            
            .btn-join {
                padding: 16px 30px;
                font-size: 1rem;
                margin-top: 15px;
            }
            
            .hero-section {
                padding: 70px 0 100px 0;
            }
        }
        
        /* === PROMO TEXT SECTION === */
        .promo-section {
            padding: 100px 0;
            background: var(--gradient-1);
            position: relative;
            overflow: hidden;
        }
        
        .promo-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: float 20s linear infinite;
            z-index: 1;
        }
        
        .promo-content {
            position: relative;
            z-index: 2;
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            color: white;
        }
        
        .promo-icon {
            font-size: 3rem;
            margin-bottom: 30px;
            display: block;
            animation: pulse 2s infinite;
        }
        
        .promo-text {
            font-size: 1.8rem;
            line-height: 1.8;
            margin-bottom: 30px;
            font-weight: 300;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
        }
        
        .promo-highlight {
            font-weight: 700;
            background: linear-gradient(to right, #ffc107, #ff6b6b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: none;
        }
        
        .promo-subtext {
            font-size: 1.2rem;
            opacity: 0.9;
            font-style: italic;
        }

        /* === ANIMATED CAROUSEL === */
        .carousel-section {
            position: relative;
            overflow: hidden;
        }
        
        .carousel-inner {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
        }
        
        .carousel-item {
            height: 80vh;
            background: #000;
            position: relative;
        }
        
        .carousel-item img {
            height: 100%;
            width: 100%;
            object-fit: cover;
            transform: scale(1.1);
            transition: transform 8s ease;
            filter: brightness(0.7);
        }
        
        .carousel-item.active img {
            transform: scale(1);
        }
        
        .carousel-caption {
            bottom: 30%;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(10px);
            padding: 40px;
            border-radius: 20px;
            border-left: 5px solid var(--accent-color);
            transform: translateY(50px);
            opacity: 0;
            transition: all 0.8s ease;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .carousel-item.active .carousel-caption {
            transform: translateY(0);
            opacity: 1;
        }
        
        .carousel-caption h5 {
            font-size: 3.5rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 3px;
            background: linear-gradient(to right, #ffc107, #ff8a00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin: 0;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
        }
        
        .carousel-indicators button {
            width: 15px;
            height: 15px;
            border-radius: 50%;
            margin: 0 8px;
            border: 2px solid white;
            background: transparent;
            transition: all 0.3s ease;
        }
        
        .carousel-indicators button.active {
            background: var(--accent-color);
            transform: scale(1.3);
        }
        
        .carousel-control-prev,
        .carousel-control-next {
            width: 80px;
            height: 80px;
            background: rgba(0, 0, 0, 0.5);
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            margin: 0 20px;
            opacity: 0.7;
            transition: all 0.3s ease;
        }
        
        .carousel-control-prev:hover,
        .carousel-control-next:hover {
            background: rgba(0, 0, 0, 0.8);
            opacity: 1;
            transform: translateY(-50%) scale(1.1);
        }

        /* === SECTION 3: TRIP ROUTE & MAP === */
      
                /* === ENHANCED ROUTE SECTION === */
        .route-section { 
            padding: 100px 0; 
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            position: relative;
        }

        .itinerary-content {
            transition: all 0.5s ease;
        }

        /* Vertical Route Steps */
        .route-steps-vertical {
            padding-left: 40px;
            position: relative;
        }

        .route-steps-vertical::before {
            content: '';
            position: absolute;
            left: 25px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(to bottom, var(--secondary-color), #28a745);
            border-radius: 2px;
        }

        .route-step {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            position: relative;
        }

        .step-marker {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            position: absolute;
            left: -40px;
            z-index: 2;
            border: 3px solid white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .step-content {
            padding: 10px 15px;
            background: rgba(40, 167, 69, 0.05);
            border-radius: 10px;
            border-left: 3px solid var(--secondary-color);
            flex: 1;
            transition: all 0.3s ease;
        }

        .route-step:hover .step-content {
            background: rgba(40, 167, 69, 0.1);
            transform: translateX(5px);
        }

        /* Horizontal Route Steps for Capital */
        .route-steps-horizontal {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 15px;
            padding: 20px;
            background: rgba(0, 123, 255, 0.05);
            border-radius: 15px;
            margin: 20px 0;
            position: relative;
            overflow-x: auto;
        }

        @media (min-width: 992px) {
            .route-steps-horizontal {
                flex-wrap: nowrap;
                overflow-x: visible;
            }
        }

        .route-step-horizontal {
            display: flex;
            flex-direction: column;
            align-items: center;
            min-width: 120px;
            padding: 15px 10px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            position: relative;
            z-index: 1;
        }

        .route-step-horizontal:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            z-index: 2;
        }

        .step-circle {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            margin-bottom: 10px;
            border: 3px solid white;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }

        .step-info {
            text-align: center;
        }

        .step-info h6 {
            font-size: 0.9rem;
            margin-bottom: 5px;
        }

        .step-info small {
            font-size: 0.75rem;
            color: #666;
        }

        .arrow-connector {
            color: var(--primary-color);
            font-size: 1.2rem;
            opacity: 0.7;
            transition: all 0.3s ease;
        }

        .route-step-horizontal:hover + .arrow-connector {
            opacity: 1;
            transform: scale(1.2);
        }

        /* Map Container Enhancement */
        .map-container {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
            border: 10px solid white;
            position: relative;
            transition: all 0.3s ease;
        }

        .map-container:hover {
            transform: translateY(-5px);
            box-shadow: 0 30px 80px rgba(0,0,0,0.2);
        }

        .map-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(
                to bottom,
                transparent 0%,
                rgba(0, 0, 0, 0.1) 50%,
                transparent 100%
            );
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .map-container:hover .map-overlay {
            opacity: 1;
        }

        .map-overlay-text {
            background: rgba(0, 0, 0, 0.8);
            color: white;
            padding: 15px 30px;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            transform: translateY(20px);
            transition: transform 0.3s ease;
        }

        .map-container:hover .map-overlay-text {
            transform: translateY(0);
        }

        /* Button Group Styling */
        .btn-group .btn {
            padding: 10px 25px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-group .btn.active {
            background: linear-gradient(135deg, var(--secondary-color), #20c997);
            color: white;
            border-color: var(--secondary-color);
        }

        .btn-group .btn:not(.active):hover {
            transform: translateY(-2px);
        }

        /* Enhanced Route Card */
        .route-card {
            background: white;
            padding: 40px 30px;
            border-radius: 20px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.08);
            height: 100%;
            position: relative;
            overflow: hidden;
            border: none;
            transition: all 0.3s ease;
        }

        .route-card:hover {
            box-shadow: 0 25px 60px rgba(0,0,0,0.12);
        }

        .route-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
        }

        /* Route Toggle Animation */
        .itinerary-content {
            animation: fadeInUp 0.5s ease forwards;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Horizontal Scrolling for Capital Itinerary */
        .horizontal-scroll-container {
            position: relative;
            overflow: hidden;
            padding: 20px 0;
            margin: 20px 0;
        }

        .horizontal-scroll-wrapper {
            display: flex;
            overflow-x: auto;
            scroll-behavior: smooth;
            padding: 20px 10px;
            scrollbar-width: thin;
            scrollbar-color: var(--secondary-color) transparent;
            position: relative;
            gap: 20px;
        }

        .horizontal-scroll-wrapper::-webkit-scrollbar {
            height: 8px;
        }

        .horizontal-scroll-wrapper::-webkit-scrollbar-track {
            background: rgba(0, 0, 0, 0.05);
            border-radius: 4px;
        }

        .horizontal-scroll-wrapper::-webkit-scrollbar-thumb {
            background: var(--secondary-color);
            border-radius: 4px;
        }

        .horizontal-scroll-wrapper::-webkit-scrollbar-thumb:hover {
            background: var(--primary-color);
        }

        .scroll-navigation {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background: white;
            border: none;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--primary-color);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            opacity: 0.9;
        }

        .scroll-navigation:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-50%) scale(1.1);
            opacity: 1;
        }

        .scroll-prev {
            left: 10px;
        }

        .scroll-next {
            right: 10px;
        }

        .scroll-indicator {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 20px;
            padding: 10px;
        }

        .scroll-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #ddd;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .scroll-dot.active {
            background: var(--primary-color);
            transform: scale(1.3);
        }

        .scroll-dot:hover {
            background: var(--secondary-color);
        }

        .step-card {
            min-width: 180px;
            max-width: 180px;
            padding: 20px 15px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            position: relative;
            flex-shrink: 0;
        }

        .step-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
            border-color: var(--primary-color);
        }

        .step-number {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--primary-color), #0dcaf0);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
            margin: 0 auto 15px;
            box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
        }

        .step-title {
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 8px;
            color: var(--primary-color);
        }

        .step-description {
            font-size: 0.85rem;
            color: #666;
            line-height: 1.4;
            margin-bottom: 10px;
        }

        .step-arrow {
            color: var(--secondary-color);
            font-size: 1.2rem;
            position: absolute;
            right: -25px;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0.7;
            z-index: 1;
        }

        .step-card:last-child .step-arrow {
            display: none;
        }

        /* Responsive adjustments for horizontal scroll */
        @media (max-width: 768px) {
            .step-card {
                min-width: 160px;
                max-width: 160px;
                padding: 15px 10px;
            }
            
            .step-title {
                font-size: 1rem;
            }
            
            .step-description {
                font-size: 0.8rem;
            }
            
            .scroll-navigation {
                width: 35px;
                height: 35px;
                font-size: 1.2rem;
            }
            
            .scroll-prev {
                left: 5px;
            }
            
            .scroll-next {
                right: 5px;
            }
            
            .step-arrow {
                right: -20px;
                font-size: 1rem;
            }
        }

        @media (max-width: 576px) {
            .step-card {
                min-width: 140px;
                max-width: 140px;
                padding: 12px 8px;
            }
            
            .step-number {
                width: 35px;
                height: 35px;
                font-size: 1rem;
            }
            
            .step-title {
                font-size: 0.9rem;
            }
            
            .step-description {
                font-size: 0.75rem;
            }
            
            .scroll-navigation {
                width: 30px;
                height: 30px;
                font-size: 1rem;
            }
        }

        /* === SECTION 4: ADVERTISEMENT TEXT === */
        .ad-section {
            padding: 100px 0;
            background: var(--gradient-3);
            position: relative;
            overflow: hidden;
        }
        
        .ad-box {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 50px 30px;
            margin: 20px 0;
            border-radius: 20px;
            border: 1px solid rgba(255,255,255,0.2);
            transition: all 0.4s ease;
            height: 100%;
            position: relative;
            z-index: 2;
        }
        
        .ad-box:hover { 
            transform: translateY(-10px);
            background: rgba(255,255,255,0.15);
            border-color: rgba(255,255,255,0.4);
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }
        
        .ad-box i {
            background: rgba(255,255,255,0.1);
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            margin: 0 auto 30px;
            border: 2px solid rgba(255,255,255,0.3);
            transition: all 0.3s ease;
        }
        
        .ad-box:hover i {
            transform: scale(1.2) rotate(360deg);
            border-color: white;
        }

        /* === ENHANCED VISION SECTION === */
        .vision-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            position: relative;
            overflow: hidden;
        }

        .vision-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 30% 30%, rgba(76, 175, 80, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(33, 150, 243, 0.05) 0%, transparent 50%);
            z-index: 0;
        }

        .vision-section .container {
            position: relative;
            z-index: 1;
        }

        /* Image Carousel Styles */
        .vision-carousel-container {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
            transform-style: preserve-3d;
            perspective: 1000px;
            height: 500px;
        }

        .vision-carousel {
            height: 100%;
            border-radius: 20px;
            overflow: hidden;
        }

        .vision-carousel .carousel-inner {
            height: 100%;
            border-radius: 20px;
            overflow: hidden;
        }

        .vision-carousel .carousel-item {
            height: 100%;
            transition: transform 1s ease-in-out;
        }

        .vision-carousel .carousel-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            border-radius: 20px;
            transition: transform 8s ease-in-out;
        }

        .vision-carousel .carousel-item.active img {
            transform: scale(1.1);
        }

        /* Carousel Controls */
        .vision-carousel-controls {
            position: absolute;
            bottom: 20px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 10px;
            z-index: 10;
        }

        .vision-carousel-indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            border: 2px solid rgba(255, 255, 255, 0.8);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .vision-carousel-indicator.active {
            background: var(--secondary-color);
            transform: scale(1.3);
            border-color: white;
        }

        .vision-carousel-indicator:hover {
            background: white;
            transform: scale(1.2);
        }

        /* Navigation Arrows */
        .vision-carousel-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.9);
            border: none;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .vision-carousel-arrow:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        }

        .vision-carousel-arrow.prev {
            left: 20px;
        }

        .vision-carousel-arrow.next {
            right: 20px;
        }

        /* Text Content Styles */
        .vision-text {
            padding-left: 60px;
            position: relative;
        }

        .vision-text::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(to bottom, var(--secondary-color), var(--primary-color));
            border-radius: 2px;
        }

        .vision-text h3 {
            font-size: 2.8rem;
            font-weight: 900;
            margin-bottom: 30px;
            color: var(--primary-color);
            line-height: 1.2;
            position: relative;
            padding-bottom: 15px;
        }

        .vision-text h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--secondary-color), #ffc107);
            border-radius: 2px;
        }

        .vision-text p {
            font-size: 1.2rem;
            line-height: 1.8;
            color: #555;
            margin-bottom: 25px;
            font-weight: 400;
        }

        .vision-text p strong {
            color: var(--primary-color);
            font-weight: 700;
        }

        .vision-text p em {
            color: var(--secondary-color);
            font-style: italic;
        }

        /* Vision List Styles */
        .vision-list {
            list-style: none;
            padding: 0;
            margin: 40px 0 0;
        }

        .vision-list li {
            margin-bottom: 20px;
            padding: 20px;
            background: linear-gradient(135deg, rgba(40, 167, 69, 0.05) 0%, rgba(33, 150, 243, 0.05) 100%);
            border-radius: 12px;
            border-left: 4px solid var(--secondary-color);
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
            transform: translateX(0);
        }

        .vision-list li:hover {
            transform: translateX(10px);
            background: linear-gradient(135deg, rgba(40, 167, 69, 0.1) 0%, rgba(33, 150, 243, 0.1) 100%);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        }

        .vision-list li i {
            font-size: 1.5rem;
            color: var(--secondary-color);
            margin-right: 20px;
            flex-shrink: 0;
            transition: transform 0.3s ease;
        }

        .vision-list li:hover i {
            transform: scale(1.2) rotate(5deg);
        }

        .vision-list li span {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--primary-color);
            line-height: 1.6;
        }

        /* Floating Element Animation */
        .floating-element {
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-15px) rotate(1deg);
            }
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .vision-section {
                padding: 70px 0;
            }
            
            .vision-text {
                padding-left: 0;
                padding-top: 40px;
            }
            
            .vision-text::before {
                display: none;
            }
            
            .vision-carousel-container {
                height: 400px;
            }
        }

        @media (max-width: 768px) {
            .vision-carousel-container {
                height: 350px;
            }
            
            .vision-text h3 {
                font-size: 2.2rem;
            }
            
            .vision-text p {
                font-size: 1.1rem;
            }
            
            .vision-carousel-arrow {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }
            
            .vision-list li {
                padding: 15px;
            }
        }

        @media (max-width: 576px) {
            .vision-carousel-container {
                height: 300px;
            }
            
            .vision-text h3 {
                font-size: 1.8rem;
            }
            
            .vision-list li span {
                font-size: 1rem;
            }
        }

        /* === FOOTER === */
        footer { 
            background: var(--primary-color); 
            color: #aaa; 
            padding: 70px 0 20px; 
            position: relative;
            overflow: hidden;
        }
        
        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: var(--gradient-2);
        }
        
        footer h5 { 
            color: white; 
            font-weight: bold; 
            margin-bottom: 25px;
            font-size: 1.3rem;
        }
        
        footer a { 
            color: #aaa; 
            text-decoration: none; 
            display: block; 
            margin-bottom: 12px; 
            transition: all 0.3s ease;
            position: relative;
            padding-left: 20px;
        }
        
        footer a::before {
            content: '›';
            position: absolute;
            left: 0;
            color: var(--secondary-color);
            transition: transform 0.3s ease;
        }
        
        footer a:hover { 
            color: white; 
            transform: translateX(10px);
        }
        
        footer a:hover::before {
            transform: translateX(5px);
        }
        
        /* === RESPONSIVE DESIGN === */
        @media (max-width: 768px) {
            .hero-content h2 { font-size: 2.5rem; }
            .hero-content p { font-size: 1.2rem; }
            .promo-text { font-size: 1.4rem; }
            .carousel-caption h5 { font-size: 2rem; }
            .section-title { font-size: 2.2rem; }
            .nav-right-item { margin-left: 0; margin-bottom: 10px; }
            .carousel-control-prev,
            .carousel-control-next {
                width: 50px;
                height: 50px;
            }
        }
        
        @media (max-width: 576px) {
            .hero-content {
                padding: 20px;
                margin: 20px;
            }
            .hero-content h2 { font-size: 2rem; }
            .btn-join { padding: 15px 30px; font-size: 1rem; }
            .promo-section { padding: 60px 0; }
        }

        /* === ENHANCED VISUALS === */
        .floating-element {
            animation: float 6s ease-in-out infinite;
        }
        
        .text-gradient {
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .glow-effect {
            filter: drop-shadow(0 0 10px rgba(255, 193, 7, 0.3));
        }
        
        /* === CATEGORY CARDS ENHANCEMENT === */
        .category-card {
            transition: all 0.4s ease;
            border: none;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
            height: 100%;
        }
        
        .category-card:hover { 
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 25px 60px rgba(0,0,0,0.2);
        }
        
        /* === PARTNER LOGOS ENHANCEMENT === */
        .partner-box {
            transition: all 0.4s ease;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
        }
        
        .partner-box:hover {
            transform: translateY(-10px) scale(1.05);
            background: rgba(255, 255, 255, 0.2);
            box-shadow: 0 15px 40px rgba(0,0,0,0.3);
        }

        /* === LOADING ANIMATION === */
        .loading-spinner {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--primary-color);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }
        
        .spinner {
            width: 60px;
            height: 60px;
            border: 5px solid rgba(255,255,255,0.1);
            border-top: 5px solid var(--secondary-color);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* === LOGISTICS SECTION === */
        .logistics-section {
            padding: 120px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
            overflow: hidden;
        }

        .logistics-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 50% 50%, rgba(40, 167, 69, 0.05) 0%, transparent 50%);
            z-index: 0;
        }

        .logistics-section .container {
            position: relative;
            z-index: 1;
        }

        .logistics-card {
            background: #ffffff;
            border-radius: 20px;
            padding: 40px 25px;
            text-align: center;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            height: 100%;
            border-left: 6px solid; /* color comes from inline style */
            position: relative;
            overflow: hidden;
        }

        .logistics-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, transparent, var(--bs-primary), transparent);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .logistics-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
        }

        .logistics-card:hover::after {
            opacity: 1;
        }

        .logistics-card i {
            font-size: 4rem;
            margin-bottom: 25px;
            display: block;
            transition: transform 0.4s ease;
        }

        .logistics-card:hover i {
            transform: scale(1.15) rotate(5deg);
        }

        .logistics-card h5 {
            font-weight: 800;
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--primary-color);
        }

        .logistics-card p {
            font-size: 1.05rem;
            line-height: 1.7;
            color: #555;
        }

        /* === CATEGORY SECTION ENHANCEMENTS === */
        .category-section {
            padding: 120px 0;
            background: #ffffff;
        }

        .cat-header {
            padding: 60px 40px;
            text-align: center;
            border-radius: 20px 20px 0 0;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .cat-header.cat-school {
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        }

        .cat-header.cat-military {
            background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
        }

        .cat-header i {
            font-size: 4.5rem;
            margin-bottom: 20px;
        }

        .cat-title {
            font-size: 2.8rem;
            font-weight: 900;
            margin-bottom: 10px;
        }

        .cat-subtitle {
            font-size: 1.3rem;
            opacity: 0.9;
        }

        .cat-body {
            padding: 50px 40px;
            background: #ffffff;
        }

        .cat-list li {
            margin-bottom: 18px;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .cat-list i {
            font-size: 1.4rem;
            flex-shrink: 0;
        }

        .cat-list strong {
            min-width: 80px;
            color: var(--primary-color);
        }

        /* Button enhancement */
        .category-card .btn {
            padding: 14px 35px;
            font-weight: 700;
            transition: all 0.4s ease;
        }

        .category-card .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }

        /* === PARTNERS SECTION === */
        .partners-section {
            padding: 120px 0;
            background: var(--primary-color);
            color: white;
            position: relative;
        }

        .partners-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.05) 0%, transparent 60%);
            z-index: 0;
        }

        .partner-title {
            text-align: center;
            font-size: 3rem;
            font-weight: 900;
            margin-bottom: 70px;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .partner-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

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

        .partner-box {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(12px);
            border-radius: 20px;
            padding: 40px 20px;
            text-align: center;
            transition: all 0.4s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .partner-box:hover {
            transform: translateY(-15px) scale(1.05);
            background: rgba(255, 255, 255, 0.2);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
            border-color: rgba(255, 255, 255, 0.5);
        }

        .partner-logo-img {
            max-width: 140px;
            max-height: 110px;
            object-fit: contain;
            margin-bottom: 25px;
            filter: grayscale(70%) brightness(1.3);
            transition: all 0.4s ease;
        }

        .partner-box:hover .partner-logo-img {
            filter: grayscale(0%) brightness(1);
            transform: scale(1.1);
        }

        .partner-name {
            font-weight: 700;
            font-size: 1.2rem;
            letter-spacing: 0.5px;
        }

        /* === PREPARATION SECTION === */
        .preparation-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
            position: relative;
            overflow: hidden;
        }

        .preparation-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
        }

        .section-subtitle {
            font-size: 1.3rem;
            color: #666;
            margin-top: 10px;
            font-weight: 400;
        }

        /* Timeline Card */
        .preparation-timeline-card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(0, 0, 0, 0.05);
            display: flex;
            align-items: flex-start;
            gap: 30px;
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease;
        }

        .preparation-timeline-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
        }

        .preparation-timeline-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--secondary-color), #4facfe);
        }

        .timeline-icon {
            background: linear-gradient(135deg, var(--secondary-color), #20c997);
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: white;
            font-size: 2rem;
            box-shadow: 0 10px 25px rgba(40, 167, 69, 0.3);
        }

        .timeline-content {
            flex: 1;
        }

        .timeline-date {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }

        .timeline-date i {
            color: var(--secondary-color);
        }

        .timeline-event {
            font-size: 1.2rem;
            color: #333;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            padding: 15px 20px;
            background: linear-gradient(135deg, rgba(40, 167, 69, 0.05), rgba(33, 150, 243, 0.05));
            border-radius: 10px;
            border-left: 4px solid var(--secondary-color);
        }

        .timeline-event i {
            color: var(--accent-color);
        }

        .timeline-event strong {
            color: var(--primary-color);
            margin-right: 5px;
        }

        .timeline-desc {
            color: #555;
            line-height: 1.8;
            font-size: 1.1rem;
            padding-left: 25px;
            border-left: 2px solid #e9ecef;
        }

        /* Gallery Section */
        .gallery-section {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
            margin-top: 40px;
        }

        .gallery-header {
            text-align: center;
        }

        .gallery-header h3 {
            font-size: 2.2rem;
            color: var(--primary-color);
            margin-bottom: 10px;
            font-weight: 700;
        }

        .gallery-subtitle {
            color: #666;
            font-size: 1.1rem;
        }

        /* Gallery Container */
        .gallery-container {
            position: relative;
        }

        .gallery-nav {
            padding: 0 20px;
        }

        .gallery-nav-btn {
            background: linear-gradient(135deg, var(--primary-color), #34495e);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 50px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 600;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .gallery-nav-btn:hover {
            background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        .gallery-info {
            font-size: 1.1rem;
            color: var(--primary-color);
            font-weight: 600;
        }

        /* Gallery Slider */
        .gallery-slider {
            position: relative;
            height: 500px;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .gallery-track {
            display: flex;
            height: 100%;
            transition: transform 0.5s ease-in-out;
        }

        .gallery-slide {
            min-width: 100%;
            height: 100%;
            position: relative;
        }

        .gallery-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        .slide-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            color: white;
            padding: 25px;
        }

        .slide-caption {
            font-size: 1.2rem;
            font-weight: 500;
            margin: 0;
        }

        /* Thumbnails */
        .gallery-thumbnails {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .thumbnail {
            width: 80px;
            height: 60px;
            border-radius: 8px;
            overflow: hidden;
            cursor: pointer;
            opacity: 0.6;
            transition: all 0.3s ease;
            border: 3px solid transparent;
        }

        .thumbnail:hover {
            opacity: 0.8;
            transform: translateY(-3px);
        }

        .thumbnail.active {
            opacity: 1;
            border-color: var(--secondary-color);
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(40, 167, 69, 0.3);
        }

        .thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Outcomes Section */
        .outcomes-section {
            padding-top: 50px;
        }

        .outcome-card {
            text-align: center;
            padding: 30px 20px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            height: 100%;
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 0, 0, 0.03);
        }

        .outcome-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .outcome-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary-color), #4facfe);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: white;
            font-size: 2rem;
        }

        .outcome-card h5 {
            color: var(--primary-color);
            font-weight: 700;
            margin-bottom: 15px;
            font-size: 1.2rem;
        }

        .outcome-card p {
            color: #666;
            line-height: 1.7;
            font-size: 1rem;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .preparation-timeline-card {
                flex-direction: column;
                text-align: center;
            }
            
            .timeline-desc {
                padding-left: 0;
                border-left: none;
                border-top: 2px solid #e9ecef;
                padding-top: 15px;
            }
            
            .gallery-slider {
                height: 400px;
            }
        }

        @media (max-width: 768px) {
            .preparation-section {
                padding: 70px 0;
            }
            
            .gallery-slider {
                height: 300px;
            }
            
            .timeline-event {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
            
            .gallery-nav {
                flex-direction: column;
                gap: 20px;
            }
            
            .gallery-nav-btn {
                width: 100%;
                justify-content: center;
            }
        }

        @media (max-width: 576px) {
            .preparation-timeline-card,
            .gallery-section {
                padding: 25px;
            }
            
            .gallery-slider {
                height: 250px;
            }
            
            .thumbnail {
                width: 60px;
                height: 45px;
            }
        }

        /* === WHATSAPP ICON STYLES === */
       .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: #25D366;
            color: white;
            border-radius: 50%;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.3);
            z-index: 1000;
            transition: transform 0.3s;
        }
        .whatsapp-float:hover {
            transform: scale(1.1);
        }

        /* Enhanced Mobile Navigation */
        .navbar-toggler {
            border: none;
            padding: 10px;
            background: transparent;
            position: relative;
        }

        .navbar-toggler:focus {
            box-shadow: none;
            outline: none;
        }

        .navbar-toggler .navbar-toggler-icon {
            width: 30px;
            height: 2px;
            background: var(--primary-color);
            position: relative;
            transition: all 0.3s ease;
        }

        .navbar-toggler .navbar-toggler-icon::before,
        .navbar-toggler .navbar-toggler-icon::after {
            content: '';
            position: absolute;
            width: 30px;
            height: 2px;
            background: var(--primary-color);
            left: 0;
            transition: all 0.3s ease;
        }

        .navbar-toggler .navbar-toggler-icon::before {
            top: -8px;
        }

        .navbar-toggler .navbar-toggler-icon::after {
            bottom: -8px;
        }

        .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
            background: transparent;
        }

        .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
            transform: rotate(45deg);
            top: 0;
            background: var(--secondary-color);
        }

        .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
            transform: rotate(-45deg);
            bottom: 0;
            background: var(--secondary-color);
        }

        /* Mobile dropdown animation */
        #navbarNav {
            transition: all 0.3s ease;
        }

        #navbarNav.show {
            animation: slideDown 0.3s ease;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Add body padding for mobile navbar */
        @media (max-width: 991px) {
            body {
                padding-top: 60px;
            }
        }
   