.navbar-custom {
    background: linear-gradient(90deg, #004aad, #0088ff);
    transition: background 0.5s ease;
}

.navbar-custom .nav-link,
.navbar-custom .navbar-brand {
    color: white !important;
}

.navbar-custom .nav-link:hover {
    color: #ffd700 !important;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba%28255,255,255,0.8%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* CTA Button */
.btn-call {
    background-color: #ffd700;
    color: #003366;
    font-weight: bold;
    border-radius: 50px;
    padding: 6px 20px;
    transition: background 0.3s ease;
}

.btn-call:hover {
    background-color: #ffc107;
    color: #002244;
}

/*Hero Section */
.hero-section h1 {
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

.hero-section ul li {
    transition: transform 0.2s ease;
}

.hero-section ul li:hover {
    transform: scale(1.05);
}

.btn-warning:hover {
    background-color: #ffb300;
    color: #fff;
}

/*Sub-heading Content*/
.widget-title {
    margin-bottom: 20px;

    color: #003a75;
}

/* Flight Search Section */

.flight-form {
    position: relative;
    top: -99px;
    background: white;
    padding: 30px;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.trip-type {
    display: flex;
    gap: 20px;
}

.trip-type input {
    accent-color: #ff9800;
}

.bg-light {
    background-color: #f8f9fa !important;
}

/*Hot Deals*/
.deals {
    background-color: #fff8e1;
    /* subtle yellow */
    color: #333;
}

.deals h3 {
    font-weight: 700;
    color: #d97706;
    /* warm orange */
    margin-bottom: 0.3em;
}

.deals p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #a16207;
}

.deal-card {
    background: white;
    padding: 20px 15px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.deal-card h5 {
    color: #b45309;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.deal-card p {
    font-weight: 700;
    font-size: 1.2rem;
    color: #92400e;
}

.deal-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(217, 119, 6, 0.3);
}

/* Responsive tweaks */
@media (max-width: 991px) {
    .col-md-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 575px) {
    .col-md-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}


/*Testimonials*/
.testimonials {
    background-color: #f8f9fa;
    /* light background */
}

.testimonials h3 {
    font-weight: 700;
    color: #003366;
    letter-spacing: 0.05em;
}

.testimonial-card {
    background: #ffffff;
    padding: 25px 20px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card p {
    font-style: italic;
    color: #555555;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.testimonial-card footer {
    font-weight: 600;
    color: #007bff;
    font-size: 0.9rem;
    text-align: right;
    margin-top: auto;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.25);
}

/* Responsive tweaks */
@media (max-width: 991px) {
    .col-md-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 575px) {
    .col-md-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/*About-us*/
.hero-about {
    background: url('img/airplane.jpg') no-repeat center center/cover;
    /* Default background for desktop */
    min-height: 39vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    position: relative;
    z-index: 1;
}

/*Contact us*/
.contact-form input,
.contact-form textarea {
    border: none;
    border-bottom: 2px solid #0E4D92;
    border-radius: 0;
    background-color: transparent;
}

.contact-form input:focus,
.contact-form textarea:focus {
    box-shadow: none;
    border-bottom: 2px solid #00BFA6;
}

.contact-section {
    background: #f5f5f5;
    padding: 60px 0;
}

/*Footer*/
.web-footer {
    background: #072142;
}

.footer-link {
    color: #ffffffcc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #00bfff;
    text-decoration: underline;
}

.web-footer ul li {
    transition: transform 0.2s ease;
}

.web-footer ul li:hover {
    transform: scale(1.05);
}