﻿:root {
    --primary: #18A9CC;
    --secondary: #1e40af;
    --accent: #ff6b35;
    --light: #f8fafc;
    --dark: #0f172a;
    --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f8fafc;
    min-height: 100vh;
   
    color: #334155;
}

.main-content {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
/* Contact Section */
.contact-section {
    display: flex;
    margin: 50px 0;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.contact-info {
    flex: 1;
    background: linear-gradient(rgba(26, 42, 108, 0.9), rgba(26, 42, 108, 0.8)), url('https://images.unsplash.com/photo-1503220317375-aaad61436b1b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80');
    background-size: cover;
    background-position: center;
    padding: 50px 40px;
    color: white;
}

    .contact-info h2 {
        font-size: 2.2rem;
        margin-bottom: 30px;
        position: relative;
        padding-bottom: 15px;
    }

        .contact-info h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 70px;
            height: 3px;
            background: #ff9800;
        }

.info-item {
    display: flex;
    margin-bottom: 30px;
    align-items: flex-start;
}

    .info-item i {
        font-size: 1.5rem;
        color: #ff9800;
        margin-right: 20px;
        min-width: 30px;
    }

.info-text h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.social-links {
    display: flex;
    margin-top: 40px;
}

    .social-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        margin-right: 15px;
        color: white;
        font-size: 1.3rem;
        transition: all 0.3s;
    }

        .social-links a:hover {
            background: #ff9800;
            transform: translateY(-5px);
        }

.contact-form {
    flex: 1;
    padding: 50px 40px;
}

    .contact-form h2 {
        font-size: 2.2rem;
        margin-bottom: 30px;
        color: #1a2a6c;
        position: relative;
        padding-bottom: 15px;
    }

        .contact-form h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 70px;
            height: 3px;
            background: #ff9800;
        }

.form-group {
    margin-bottom: 25px;
}

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 500;
        color: #444;
    }

.form-control {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

    .form-control:focus {
        outline: none;
        border-color: #ff9800;
        box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.2);
    }

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    background: linear-gradient(to right, #1a2a6c, #b21f1f);
    color: white;
    border: none;
    padding: 14px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
}

    .submit-btn i {
        margin-left: 10px;
        transition: transform 0.3s;
    }

    .submit-btn:hover {
        background: linear-gradient(to right, #ff9800, #ff6f00);
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

        .submit-btn:hover i {
            transform: translateX(5px);
        }

/* Map Section */
.map-section {
    margin: 50px 0;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

    .map-section h2 {
        text-align: center;
        padding: 25px;
        background: #1a2a6c;
        color: white;
        font-size: 1.8rem;
    }

.map-container {
    height: 400px;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(26, 42, 108, 0.1), rgba(26, 42, 108, 0.1)), url('https://images.unsplash.com/photo-1514214246283-d427a95c5d2f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1330&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    text-align: center;
    padding: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
/* Header Styling Without Underline */
#menu {
    background: #fff !important;
    border-bottom: none !important;
    box-shadow: var(--shadow);
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.bi-airplane-fill {
    font-size: 1.8rem;
    transition: transform 0.5s ease;
}

.navbar-brand:hover .bi-airplane-fill {
    transform: rotate(45deg);
}

/* Nav link styles without underline */
.nav-link {
    font-weight: 600;
    color: var(--dark) !important;
    position: relative;
    margin: 0 0.1rem;
    padding: 0.2rem 1rem !important;
    border-radius: 50px;
    transition: all 0.3s ease;
}

    /* REMOVED UNDERLINE EFFECT */
    /* .nav-link::after removed */

    .nav-link:hover,
    .nav-link.active {
        color: var(--primary) !important;
        background: rgba(37, 99, 235, 0.05);
    }

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: var(--bs-nav-pills-link-active-color) #fff;
    background-color: rgba(46, 128, 236, 0.1) !important;
}
.dropdown-menu {
    border: none;
    box-shadow: var(--shadow);
    border-radius: 10px;
    padding: 0.5rem;
    margin-top: 0.5rem;
}

.dropdown-item {
    border-radius: 8px;
    padding: 0.5rem 1rem;
    margin: 0.2rem 0;
    font-weight: 500;
    transition: all 0.2s ease;
}

    .dropdown-item:hover {
        background: var(--gradient);
        color: white !important;
        transform: translateX(5px);
    }

.dropdown-divider {
    margin: 0.4rem 0;
}

.btn-primary {
    background: var(--gradient);
    border: none;
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
}

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 15px rgba(37, 99, 235, 0.4);
    }

/* Responsive Adjustments */
@media (max-width: 992px) {
    .navbar-collapse {
        background: white;
        padding: 1.5rem;
        border-radius: 15px;
        box-shadow: var(--shadow);
        margin-top: 1rem;
    }

    .nav-link {
        margin: 0.3rem 0;
        padding: 0.8rem !important;
    }

    .dropdown-menu {
        box-shadow: none;
        border: 1px solid rgba(0,0,0,0.05);
        margin: 0.5rem 0 0.5rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .text-gradient {
        font-size: 1.3rem;
    }

    .bi-airplane-fill {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.3rem;
    }

    .btn-primary {
        width: 100%;
        margin-top: 1rem;
    }
}
        
/* Demo content */
.hero-section {
    background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.8)), url('https://images.unsplash.com/photo-1503220317375-aaad61436b1b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    height: 500px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem auto;
    max-width: 1200px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.hero-content {
    text-align: center;
    max-width: 700px;
    padding: 2rem;
}

    .hero-content h1 {
        font-size: 3.5rem;
        font-weight: 800;
        background: var(--gradient);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 1.5rem;
        line-height: 1.1;
    }

    .hero-content p {
        font-size: 1.2rem;
        color: var(--dark);
        margin-bottom: 2rem;
        font-weight: 500;
    }

.section-header {
    text-align: center;
    margin: 3rem auto;
    max-width: 800px;
}

    .section-header h2 {
        font-size: 2.5rem;
        font-weight: 800;
        color: var(--dark);
        margin-bottom: 1rem;
        position: relative;
        display: inline-block;
    }

        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--accent);
            border-radius: 10px;
        }

.features {
    max-width: 1200px;
    margin: 0 auto 5rem;
    padding: 0 2rem;
}

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
}

    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.12);
    }

.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

    .feature-icon i {
        font-size: 2rem;
        color: var(--primary);
    }

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.feature-card p {
    color: #64748b;
}

.copyright {
    text-align: center;
    padding: 2rem;
    color: #64748b;
    border-top: 1px solid rgba(0,0,0,0.05);
    margin-top: 3rem;
}
/* Base button styles */
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    z-index: 10;
}

/* Hover effects */
.carousel-control:hover {
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    transform: translateY(-50%) scale(1.1);
}

/* Icon styling */
.carousel-control i {
    font-size: 1.5rem;
    transition: transform 0.2s ease;
}

/* Previous button specific */
.prev-btn {
    left: 15px;
}

/* Next button specific */
.next-btn {
    right: 15px;
}

/* Optional: Add a subtle pulse animation on hover */
.carousel-control:hover i {
    animation: pulse 0.5s ease;
}

.carousel-caption1 {
    position: absolute;
    right: 15%;
    bottom: 1.25rem;
    left: 15%;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    color: #000;
    text-align: left;
}

.carousel-caption1 .fw-900 {
    font-weight: 900;
}

.carousel-caption1 h1 {
    color: #088178 !important;
}

.carousel-caption1 .shopbtn {
    background: #088178 !important;
    color: #fff !important;
}

.carousel-control-prev-icon {
    background: #088178 !important;
    border-radius: 50%;
}

.carousel-control-next-icon {
    background: #088178 !important;
    border-radius: 50%;
}

.carousel-control-prev-icon .visually-hidden {
    color: #000 !important;
}


.bi-arrow-left-circle-fill, .bi-arrow-right-circle-fill {
    font-size: 25px !important;
    color: #088178 !important;
}

.carousel-container {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}


.carousel-card {
    flex: 0 0 16.66%;
    padding: 10px;
}

    .carousel-card .card {
        height: 100%;
    }

#carouselTrack1 .carousel-card {
    flex: 0 0 25%;
    padding: 10px;
}

#carouselTrack2 .carousel-card {
    flex: 0 0 25%;
    padding: 10px;
}

#carouselTrack3 .carousel-card {
    flex: 0 0 25%;
    padding: 10px;
}

#carouselTrack4 .carousel-card {
    flex: 0 0 25%;
    padding: 10px;
}

#carouselTrack5 .carousel-card {
    flex: 0 0 25%;
    padding: 10px;
}

#carouselTrack6 .carousel-card {
    flex: 0 0 25%;
    padding: 10px;
}


:root {
    --primary-color: #2E80EC;
    --secondary-color: #FE9D3D;
    --dark-color: #001D25;
    --light-color: #F4F5F9;
    --text-dark: #333;
    --text-light: #fff;
    --text-muted: #6c757d;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Gradient Text */
.text-gradient {
    background: linear-gradient(to right, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Header Styles */
#topbar {
    background-color: #001d25;
    color: var(--text-light);
    font-size: 0.9rem;
}

    #topbar .nav-link {
        color: var(--text-light) !important;
        padding: 0.2rem 0.5rem;
    }

/* Navigation */
#menu .navbar {
    background-color: var(--text-light);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

#menu .navbar-brand {
    font-weight: 800;
    font-size: 1.75rem;
}

#menu .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 1rem;
    position: relative;
}

    #menu .nav-link:after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: 0;
        left: 0;
        background-color: var(--primary-color);
        transition: var(--transition);
    }

    #menu .nav-link:hover:after,
    #menu .nav-link.active:after {
        width: 100%;
    }

#menu .dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}


/* Section Headers */
.section-header {
    margin-bottom: 3rem;
    text-align: center;
}

    .section-header .badge {
        background-color: rgba(46, 128, 236, 0.1);
        color: var(--primary-color);
        font-weight: 500;
        padding: 0.5rem 1.25rem;
        border-radius: 50px;
    }

    .section-header h2 {
        font-weight: 700;
        margin: 1rem 0;
    }

/* Cards */
.card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

    .card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

.card-img-top {
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover .card-img-top {
    transform: scale(1.05);
}

.card-body {
    padding: 1.5rem;
}

.card-title {
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.price-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--secondary-color);
    color: var(--text-light);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-weight: 600;
    z-index: 1000;
}

.rating {
    color: #FFC107;
}

/* /* Carousel Controls */
/* .carousel-control {
															width: 40px;
															height: 40px;
															background-color: rgba(255, 255, 255, 0.8);
															border-radius: 50%;
															color: var(--primary-color);
															display: flex;
															align-items: center;
															justify-content: center;
															top: 50%;
															transform: translateY(-50%);
															opacity: 0;
															transition: var(--transition);
														}
												 */
/* .carousel-container:hover .carousel-control {
															opacity: 1;
														}  */

/* Testimonials */
.testimonial-card {
    background-color: var(--text-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-img {
    height: 250px;
    object-fit: cover;
}

.testimonial-profile {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--text-light);
    /* 			position: absolute;
					top: -40px;
					left: 50%;
		 */ /* transform: translateX(-50%); */
}

/* Footer */
#footer {
    background-color: var(--dark-color);
    color: var(--text-light);
    padding: 4rem 0 2rem;
}

    #footer a {
        color: var(--text-light);
        text-decoration: none;
        transition: var(--transition);
    }

        #footer a:hover {
            color: var(--secondary-color);
        }

    #footer .social-icon {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.1);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-right: 0.5rem;
        transition: var(--transition);
    }

        #footer .social-icon:hover {
            background-color: var(--primary-color);
        }

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    font-weight: 500;
}

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

    .btn-outline-primary:hover {
        background-color: var(--primary-color);
    }


.carousel-container {
															overflow: hidden;
															position: relative;
															width: 100%;
														}

														.carousel-track {
															display: flex;
															transition: transform 0.5s ease-in-out;
														}


														.carousel-card {
															flex: 0 0 25%;
															padding: 10px;
														}

														#carouselTrack3 .carousel-card {
															flex: 0 0 33.33%;
															padding: 10px;
														}

														#carouselTrack2 .cardimage {
															padding: 0 !important;
															border-radius: 0 !important;
														}

														#carouselTrack2 .carousel-card {
															flex: 0 0 25%;
															padding: 10px;
														}


														#carouselTrack2 .card-image {
															flex: 0 0 25%;
															padding: 10px;
														}

														#carouselTrack2 .Price {
															position: absolute;
															top: 10px;
															right: 25px;
															color: #fff;
															border-radius: 25%;
															background: var(--btn-bg);
															padding: 5px;
															font-weight: 500;
															font-size: 16px !important;
															z-index: 10000;
														}



														#carouselTrack2 .card-title {
															font-weight: 600;
															font-size: 18px !important;
															color: var(--btn-bg)
														} 

#carouselTrack2 h5 {
																					position: absolute;
																					top: 15px;
																					left: 5px;
																					color: var(--btn-bg);
																				}

																				#carouselTrack2 h6 {
																					color: var(--btn-bg);
																					font-weight: 500;
																				} 




 .carousel-card .card {
															height: 100%;
														}

														#carouselTrack4 .carousel-card {
															flex: 0 0 25%;
															padding: 10px;
														}

														#carouselTrack4 .rating {
															font-size: 14px;
														}

														#carouselTrack4 .card-title {
															font-size: 18px;
														}


														#carouselTrack5 .carousel-card {
															flex: 0 0 25%;
															padding: 10px;
														}



														#carouselTrack5 .rating {
															font-size: 14px;
														}



														#carouselTrack6 .carousel-card {
															flex: 0 0 25%;
															padding: 10px;
														}

														#carouselTrack6 .rating {
															font-size: 14px;
														}
/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 500px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        height: 400px;
    }

    #menu .navbar-brand {
        font-size: 1.5rem;
    }


}

.destination-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: #fff;
    position: relative;
    height: 100%;
}

    .destination-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
    }

.card-image-container {
    position: relative;
    overflow: hidden;
    height: 180px;
}

.card-img-top {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.destination-card:hover .card-img-top {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 50%);
    opacity: 0.7;
}

.card-body {
    position: relative;
    z-index: 1;
    padding: 1.25rem;
}

.card-title {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.card-hover-content {
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.destination-card:hover .card-title {
    color: #fff;
    transform: translateY(-15px);
}

.destination-card:hover .card-hover-content {
    opacity: 1;
    height: auto;
    transform: translateY(-10px);
}

.card-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

@media (max-width: 768px) {
			.card-image-container

		{
			height: 150px;
		}

		} 