/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background: #F4F9FF;
    color: #222222;
    line-height: 1.6;
    scroll-behavior: smooth;
}

/* Stylish Navbar Styles */
.navbar {
    position: sticky;
    top: 0;
    background: linear-gradient(135deg, #3A86FF, #00BFA6);
    padding: 1.2rem 2rem;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.navbar .logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.navbar .logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    color: #FFFFFF;
    text-decoration: none;
    margin-left: 2rem;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-links a::before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: #FF6B35;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover::before {
    width: 100%;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #FF6B35;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
}

.hero h1 {
    font-size: 3.5rem;
    color: #FFFFFF;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.hero h1:hover {
    transform: scale(1.02);
}

.hero p {
    font-size: 1.4rem;
    color: #FFFFFF;
    margin-bottom: 2rem;
    transition: opacity 0.3s ease;
}

.hero p:hover {
    opacity: 0.9;
}

.cta-button {
    background: #FF6B35;
    color: #FFFFFF;
    padding: 0.8rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background: #00BFA6;
    box-shadow: 0 6px 15px rgba(0, 191, 166, 0.6);
    transform: scale(1.1);
}

/* Section Styles */
.section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, #F4F9FF, #E0F7FF);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.section h2 {
    font-size: 2.5rem;
    color: #3A86FF;
    text-align: center;
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.section h2:hover {
    color: #00BFA6;
}

.section-divider {
    width: 120px;
    height: 3px;
    background: linear-gradient(to right, #3A86FF, #00BFA6);
    margin: 1rem auto;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.section-divider:hover {
    width: 150px;
}

/* Intro Section */
.intro {
    text-align: center;
    padding: 2rem;
}

.intro p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    transition: color 0.3s ease;
}

.intro p:hover {
    color: #3A86FF;
}

/* Route Breakdown Grid */
.route-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.route-card {
    background: #FFFFFF;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.route-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 191, 166, 0.3);
}

.route-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.route-card:hover img {
    transform: scale(1.05);
}

.route-content {
    padding: 1.5rem;
}

.route-content h3 {
    color: #3A86FF;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.route-content h3:hover {
    color: #FF6B35;
}

.route-content p {
    font-size: 1rem;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.route-content p:hover {
    color: #00BFA6;
}

.route-content .details {
    font-size: 0.9rem;
    color: #222222;
    line-height: 1.8;
    transition: background 0.3s ease;
}

.route-content .details:hover {
    background: rgba(0, 191, 166, 0.1);
    border-radius: 5px;
    padding: 0.5rem;
}

/* Enhanced Carousel Section */
.carousel-section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, #E0F7FF, #F4F9FF);
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    margin-bottom: 3rem;
}

.carousel-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 15px;
}

.carousel {
    display: flex;
    width: 900%; /* Adjusted for 9 slides */
    transition: transform 0.6s ease-in-out;
}

.carousel-slide {
    width: 11.1111111111%; /* 100% / 9 for 9 slides */
    position: relative;
    height: 450px;
    background: linear-gradient(45deg, #3A86FF, #00BFA6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 2rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
}

.carousel-slide:hover {
    transform: scale(1.03) rotate(2deg);
    box-shadow: 0 10px 30px rgba(58, 134, 255, 0.4);
    background: linear-gradient(45deg, #00BFA6, #FF6B35);
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel-title {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #FFFFFF;
    font-size: 2rem;
    font-weight: bold;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
    background: rgba(255, 107, 53, 0.8);
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    transition: all 0.4s ease;
    z-index: 2;
}

.carousel-slide:hover .carousel-title {
    background: rgba(0, 191, 166, 0.9);
    transform: translateX(-50%) scale(1.1);
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.9);
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 2;
}

.carousel-nav label {
    width: 15px;
    height: 15px;
    background: rgba(255, 255, 255, 0.7);
    border: 2px solid #3A86FF;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s ease;
}

.carousel-nav label:hover {
    background: #FF6B35;
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.6);
}

/* Swipe Buttons */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3A86FF, #00BFA6);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.8rem;
    transition: all 0.4s ease;
    z-index: 2;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.carousel-arrow:hover {
    background: linear-gradient(135deg, #00BFA6, #FF6B35);
    transform: translateY(-50%) scale(1.2);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.7);
}

.arrow-left {
    left: 10px;
}

.arrow-right {
    right: 10px;
}

/* Radio Inputs for Carousel */
.carousel-radio {
    display: none;
}

#radio1:checked ~ .carousel { transform: translateX(0); }
#radio2:checked ~ .carousel { transform: translateX(-11.1111111111%); }
#radio3:checked ~ .carousel { transform: translateX(-22.2222222222%); }
#radio4:checked ~ .carousel { transform: translateX(-33.3333333333%); }
#radio5:checked ~ .carousel { transform: translateX(-44.4444444444%); }
#radio6:checked ~ .carousel { transform: translateX(-55.5555555555%); }
#radio7:checked ~ .carousel { transform: translateX(-66.6666666666%); }
#radio8:checked ~ .carousel { transform: translateX(-77.7777777777%); }
#radio9:checked ~ .carousel { transform: translateX(-88.8888888888%); }

#radio1:checked ~ .carousel-nav label:nth-child(1),
#radio2:checked ~ .carousel-nav label:nth-child(2),
#radio3:checked ~ .carousel-nav label:nth-child(3),
#radio4:checked ~ .carousel-nav label:nth-child(4),
#radio5:checked ~ .carousel-nav label:nth-child(5),
#radio6:checked ~ .carousel-nav label:nth-child(6),
#radio7:checked ~ .carousel-nav label:nth-child(7),
#radio8:checked ~ .carousel-nav label:nth-child(8),
#radio9:checked ~ .carousel-nav label:nth-child(9) {
    background: #FF6B35;
    border-color: #FF6B35;
}

/* Arrow Navigation Logic */
#radio1:checked ~ .arrow-left label[for="radio9"],
#radio2:checked ~ .arrow-left label[for="radio1"],
#radio3:checked ~ .arrow-left label[for="radio2"],
#radio4:checked ~ .arrow-left label[for="radio3"],
#radio5:checked ~ .arrow-left label[for="radio4"],
#radio6:checked ~ .arrow-left label[for="radio5"],
#radio7:checked ~ .arrow-left label[for="radio6"],
#radio8:checked ~ .arrow-left label[for="radio7"],
#radio9:checked ~ .arrow-left label[for="radio8"],
#radio1:checked ~ .arrow-right label[for="radio2"],
#radio2:checked ~ .arrow-right label[for="radio3"],
#radio3:checked ~ .arrow-right label[for="radio4"],
#radio4:checked ~ .arrow-right label[for="radio5"],
#radio5:checked ~ .arrow-right label[for="radio6"],
#radio6:checked ~ .arrow-right label[for="radio7"],
#radio7:checked ~ .arrow-right label[for="radio8"],
#radio8:checked ~ .arrow-right label[for="radio9"],
#radio9:checked ~ .arrow-right label[for="radio1"] {
    display: flex;
}

/* Hide all arrow labels by default */
.carousel-arrow label {
    display: none;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

/* Summary Section */
.summary {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
    transition: box-shadow 0.3s ease;
}

.summary:hover {
    box-shadow: 0 8px 20px rgba(58, 134, 255, 0.3);
}

.summary p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.summary p:hover {
    color: #3A86FF;
}

/* Wave Divider */
.wave-divider {
    width: 100%;
    height: 50px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113.64,28.06,1200,39.06V0H0Z" fill="%23F4F9FF"></path></svg>') no-repeat center center/cover;
    margin: 2rem 0;
    transition: transform 0.3s ease;
}

.wave-divider:hover {
    transform: scale(1.01);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .navbar {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-links a {
        margin: 0.5rem;
    }

    .section h2 {
        font-size: 2rem;
    }

    .route-grid {
        grid-template-columns: 1fr;
    }

    .carousel-slide {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 0.6rem 1.5rem;
    }

    .section, .carousel-section {
        padding: 3rem 1rem;
    }

    .navbar .logo {
        font-size: 1.5rem;
    }

    .carousel-slide {
        height: 250px;
    }

    .carousel-title {
        font-size: 1.2rem;
        padding: 0.4rem 0.8rem;
    }

    .carousel-arrow {
        width: 30px;
        height: 30px;
        font-size: 1.2rem;
    }
}


/* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }

        body {
            background: #F4F9FF;
            color: #222222;
            line-height: 1.6;
            scroll-behavior: smooth;
        }

        /* Navbar Styles */
        .navbar {
            position: sticky;
            top: 0;
            background: linear-gradient(135deg, #3A86FF, #00BFA6);
            padding: 1.2rem 2rem;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        }

        .navbar .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #FFFFFF;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease;
        }

        .navbar .logo:hover {
            transform: scale(1.05);
        }

        .nav-links {
            display: flex;
            align-items: center;
        }

        .nav-links a {
            color: #FFFFFF;
            text-decoration: none;
            margin-left: 2rem;
            font-size: 1rem;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            position: relative;
            transition: all 0.3s ease;
        }

        .nav-links a::before {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 50%;
            background: #FF6B35;
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-links a:hover::before {
            width: 100%;
        }

        .nav-links a:hover {
            background: rgba(255, 255, 255, 0.1);
            color: #FF6B35;
            transform: translateY(-2px);
        }

        /* Contact Section */
        .contact-section {
            padding: 5rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
            background: linear-gradient(135deg, #E0F7FF, #F4F9FF);
            border-radius: 15px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
            position: relative;
            overflow: hidden;
            margin-bottom: 3rem;
            animation: fadeIn 1.5s ease-in-out;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .contact-section h2 {
            font-size: 2.5rem;
            color: #3A86FF;
            text-align: center;
            margin-bottom: 1.5rem;
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            transition: color 0.3s ease;
        }

        .contact-section h2:hover {
            color: #00BFA6;
            text-shadow: 0 4px 10px rgba(0, 191, 166, 0.3);
        }

        .contact-section .section-divider {
            width: 120px;
            height: 4px;
            background: linear-gradient(to right, #3A86FF, #00BFA6);
            margin: 1rem auto;
            border-radius: 2px;
            transition: width 0.3s ease;
        }

        .contact-section .section-divider:hover {
            width: 150px;
            box-shadow: 0 0 10px rgba(58, 134, 255, 0.4);
        }

        .contact-content {
            text-align: center;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .contact-content:hover {
            transform: scale(1.02);
        }

        .contact-content p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            color: #222222;
            transition: color 0.3s ease;
        }

        .contact-content p:hover {
            color: #3A86FF;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            max-width: 500px;
            margin: 0 auto;
            gap: 1.5rem;
        }

        .contact-form input,
        .contact-form textarea {
            padding: 0.8rem;
            border: 2px solid #3A86FF;
            border-radius: 5px;
            font-size: 1rem;
            background: rgba(255, 255, 255, 0.8);
            transition: all 0.3s ease;
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            border-color: #00BFA6;
            box-shadow: 0 0 10px rgba(0, 191, 166, 0.4);
            outline: none;
        }

        .contact-form input:hover,
        .contact-form textarea:hover {
            background: rgba(224, 247, 255, 0.9);
            transform: scale(1.01);
        }

        .contact-form button {
            padding: 0.8rem 2rem;
            background: #FF6B35;
            color: #FFFFFF;
            border: none;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }

        .contact-form button:hover {
            background: #00BFA6;
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(0, 191, 166, 0.6);
        }

        /* Background Animation */
        .contact-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(58, 134, 255, 0.1) 0%, rgba(0, 191, 166, 0.1) 70%, transparent 100%);
            animation: rotate 15s linear infinite;
            z-index: -1;
        }

        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .contact-section h2 {
                font-size: 2rem;
            }

            .contact-form {
                max-width: 400px;
            }
        }

        @media (max-width: 480px) {
            .contact-section {
                padding: 3rem 1rem;
            }

            .contact-section h2 {
                font-size: 1.5rem;
            }

            .contact-form input,
            .contact-form textarea {
                padding: 0.6rem;
                font-size: 0.9rem;
            }

            .contact-form button {
                padding: 0.6rem 1.5rem;
            }
        }



         .footer {
            background: linear-gradient(135deg, #0D0D0D, #1A1A2E);
            color: #E0F7FF;
            padding: 1rem;
            text-align: center;
            font-size: 0.9rem;
            box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.3);
        }