:root {
    --primary-color: #05738e;
    --primary-dark: #046077;
    --secondary-color: #ff6b00;
    --secondary-dark: #e05e00;
    --dark-color: #0f172b;
    --light-color: #f8f9fa;
    --gradient-primary: linear-gradient(
        135deg,
        #05738e 0%,
        #026b9a 40%,
        #193d72 100%
    );
    --gradient-primary-hover: linear-gradient(
        135deg,
        #046077 0%,
        #015a82 40%,
        #142d5a 100%
    );
}



#content {
    opacity: 0;
    transition: opacity 0.5s ease-in;
    text-align: center;
}

/* Base Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Primary Solid Button */
.btn-primary {
    background: var(--primary-color);
    color: white;
}
.text-primary {
    color: var(--primary-color);
}

.btn-light {
    background: var(--light-color);
    color: var(--primary-color);
}
.btn-light:hover {
    background: var(--light-color);
    color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: white;
    box-shadow: 0 4px 12px rgba(5, 115, 142, 0.3);
    transform: translateY(-2px);
}

.btn-primary:active {
    transform: translateY(0);
}

.bg-gradient{
    background: var(--gradient-primary);

}
/* Primary Gradient Button */
.btn-gradient {
    background: var(--gradient-primary);
    color: white;
    background-size: 200% auto;
}

.btn-gradient:hover {
    background: var(--gradient-primary-hover);
    color: white;
    box-shadow: 0 4px 12px rgba(5, 115, 142, 0.3);
    transform: translateY(-2px);
    background-position: right center;
}

/* Secondary Button */
.btn-secondary {
    background: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background: var(--secondary-dark);
    color: white;
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
    transform: translateY(-2px);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.btn-outline-secondary {
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    background: transparent;
}

.btn-outline-secondary:hover {
    background: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
}

/* Button Sizes */


.btn-sm {
    padding: 0.25rem 0.75rem;
    font-size: 0.85rem;
}

/* Button with Icon */
.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-icon i {
    margin-right: 8px;
    transition: transform 0.3s ease;
}

.btn-icon:hover i {
    transform: translateX(3px);
}

/* Floating Action Button */
.btn-fab {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Button Groups */
.btn-group .btn {
    margin-right: 1px;
}

.btn-group .btn:last-child {
    margin-right: 0;
}

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

/* Header Styles */
.navbar {
    background: var(--gradient-primary);
    color: var(--light-color);
    padding: 15px 0;
    transition: all 0.3s ease;
}



.navbar-brand img {
    height: 40px;
}

.nav-link {
    font-weight: 500;
    margin: 0 10px;
    position: relative;
    color: var(--light-color);
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--light-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    background: var(--gradient-primary);
    background-size: cover;
    background-position: center;
    min-height: 90vh;
    display: flex;
    align-items: center;
    color: var(--light-color);
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Features Section */
.feature-card {
    border-radius: 10px;
    transition: all 0.3s ease;
    background-color: var(--light-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Popular Routes */
.route-card {
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.route-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.route-img {
    height: 200px;
    overflow: hidden;
}


.bg-purple {
    background-color: #6f42c1;
}

.text-purple {
    color: #6f42c1;
}

.bg-teal {
    background-color: #20c997;
}

.text-teal {
    color: #20c997;
}

.bg-orange {
    background-color: #fd7e14;
}

.text-orange {
    color: #fd7e14;
}

.feature-list .icon-wrapper {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card {
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.route-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.route-card:hover .route-img img {
    transform: scale(1.1);
}

.route-price {
    font-weight: 700;
    color: var(--primary-color);
}

/* Testimonials */
.testimonial-card {
    padding: 30px;
    border-radius: 10px;
    background-color: var(--light-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 20px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

/* Download App */
.download-app {
    background: var(--gradient-primary);
    color: var(--light-color);
}

.app-btn {
    display: inline-flex;
    align-items: center;
    background-color: var(--light-color);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.app-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    color: var(--primary-color);
}

.app-btn i {
    font-size: 1.5rem;
    margin-right: 10px;
}

/* Footer */
footer {
    color: var(--light-color);
}
.footer-container {
    background: var(--gradient-primary);
    color: var(--light-color);
}

.footer-logo img {
    height: 40px;
    margin-bottom: 20px;
}

.footer-links h5 {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-weight: 500;
}

.footer-links h5::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links ul {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 15px;
}

.footer-links a {
    color: var(--light-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--light-color);
    padding-left: 5px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--light-color);
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

/* Animations */
.animate-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.5s ease;
}

.animate-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.5s ease;
}

.animate-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.5s ease;
}

.animate-in {
    opacity: 1;
    transform: translate(0);
}

/* Custom Responsive Adjustments */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
        text-align: center;
    }
    .hero-content {
        padding-top: 100px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }
}

/* Custom delay classes for more precise timing */
.animate__delay-1-5s {
    animation-delay: 1.5s !important;
}

@keyframes custom-bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-10px);
    }
}

.moving_animation {
    animation: custom-bounce 3s infinite;
}

.scroll-animate {
    opacity: 0;
    transition: all 0.6s ease-out;
}

.scroll-animate.animated {
    opacity: 1;
}

.fadeInUp.animated {
    transform: translateY(0);
}

.fadeInLeft.animated {
    transform: translateX(0);
}

.fadeInRight.animated {
    transform: translateX(0);
}

.fadeInUp {
    transform: translateY(30px);
}

.fadeInLeft {
    transform: translateX(-50px);
}

.fadeInRight {
    transform: translateX(50px);
}
a.btn:hover i {
    transform: translateX(3px);
}
.download-image {
    margin-top: -140px;
    /* Bigger pop out */
    max-width: 100%;
    height: auto;
}

/* Extra small devices (phones) */
@media (max-width: 576px) {
    .download-image {
        margin-top: -20px;
        margin-bottom: -100px;
        height: auto;
    }
}

/* Small to medium devices (tablets) */
@media (max-width: 768px) {
    .download-image {
        margin-top: -10px;
        height: auto;
    }
}

.service-image {
    max-height: 500px;
    /* Adjust height as you want */
    object-fit: contain;
    /* Keep aspect ratio */
}

/* Base Style - No border by default */
.accordion-button {
    background-color: white;
    border: none; /* No initial border */
    border-radius: 0.5rem !important;
    color: var(--dark-color);
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    padding: 1rem 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Thin border ONLY appears on hover */
.accordion-button:hover {
    border: 1px solid var(--primary-color); /* Thin border */
    box-shadow: 0 2px 8px rgba(5, 115, 142, 0.1);
}

/* Active state - Thin border with stronger color */
.accordion-button:not(.collapsed) {
    border: 1px solid var(--primary-color); /* Thin border */
    background-color: white;
    color: var(--primary-color);
    box-shadow: 0 2px 10px rgba(5, 115, 142, 0.15);
}

/* Focus state - More prominent border */
.accordion-button:focus {
    border: 1px solid var(--primary-dark);
    box-shadow: 0 0 0 0.2rem rgba(5, 115, 142, 0.15);
}

/* Custom indicator icon */
.accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2305738e'%3E%3Cpath d='M8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 1 1 .708-.708L8 10.293z'/%3E%3C/svg%3E");
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.2s ease-out;
}

/* Accordion body styling */
.accordion-body {
    border: none;
    padding: 1.25rem 1.5rem;
    background-color: #f8fafc;
    border-radius: 0 0 0.5rem 0.5rem;
}
    .hover-animate {
        transition: transform 0.3s, box-shadow 0.3s;
    }

    .hover-animate:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    }

    .icon-wrapper i {
        font-size: 1.4rem;
    }

    @media (max-width: 991px) {
        .service-card {
            text-align: left;
        }
    }
    .navbar-nav .dropdown-menu {
    min-width: 200px; /* narrower dropdown */
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    background-color: #fff;
    padding: 8px 0;
    transition: all 0.3s ease;
}

/* Dropdown items as cards */
.navbar-nav .dropdown-item {
    display: flex;
    align-items: center;
    justify-content: space-between; /* arrow on right */
    padding: 10px 15px;
    margin: 4px 8px; /* spacing between items */
    border-radius: 10px;
    color: #212529;
    background-color: #fff;
    transition: all 0.25s;
    position: relative;
}

/* Hover background effect */
.navbar-nav .dropdown-item:hover {
    background-color: #f8f9fa;
}

/* Arrow animation using FontAwesome */
.navbar-nav .dropdown-item::after {
    content: "\f105"; /* FontAwesome chevron-right */
    font-family: "Font Awesome 5 Free";
    font-weight: 900; /* solid style */
    transition: transform 0.3s;
}

.navbar-nav .dropdown-item:hover::after {
    content: "\f178"; /* FontAwesome long-arrow-right */
    transform: translateX(4px);
}

/* Icons inside dropdown items */
.navbar-nav .dropdown-item i {
    min-width: 22px;
    font-size: 1.1rem;
    margin-right: 10px;
    color: inherit;
}

/* Description text */
.navbar-nav .dropdown-item small {
    display: block;
    color: #6c757d;
    font-size: 0.78rem;
    line-height: 1.2;
}

/* Book Now button styling */
.navbar-nav .btn-dark {
    border-radius: 8px;
    transition: background-color 0.2s;
}

.navbar-nav .btn-dark:hover {
    background-color: #343a40;
}