body {
    font-family: 'poppins', sans-serif;
    background-color: #f0f8ff;
}

.navbar {
    background: linear-gradient(to right, #00416A, #E4E5E6);
}

.navbar-brand span {
    font-weight: bold;
    color: #FFD700;
}

.hero {
    background: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.5rem;
}

.btn-gold {
    background-color: #FFD700;
    color: #000;
}

.btn-gold:hover {
    background-color: #FFC107;
}

.features-icon {
    font-size: 2.5rem;
    color: #00416A;
}

/* Packages & Deals Section */


#packages h2 {
    font-weight: 700;
    color: #172C48;
    /* Deep navy for titles */
}

#packages .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
}

#packages .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

#packages .card-img-top {
    height: 180px;
    object-fit: cover;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

#packages .card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0E4D92;
}

#packages .card-text {
    font-size: 0.95rem;
    color: #555;
}

#packages .btn-outline-primary {
    border-radius: 30px;
    font-size: 0.875rem;
    padding: 6px 18px;
    transition: 0.3s ease;
}

#packages .btn-outline-primary:hover {
    background-color: #0E4D92;
    color: #fff;
    border-color: #0E4D92;
}

.cruise-card {
    display: none;
}

.cruise-card.show {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/*Cruise offers*/

#seasonal-offers .offer-card .badge {
    font-size: 0.75rem;
    padding: 6px 10px;
    border-radius: 0.5rem;
}

#seasonal-offers h2 {
    color: #172C48;
    font-weight: bold;
}

/*Aos Animation*/
[data-aos] {
    transition: transform 0.6s ease, opacity 0.6s ease;
}

/*why choose us-feature*/
.feature-box:hover {
    background-color: #f8f9fa;
    transition: 0.3s;
}

/*Contact Us*/
.contact-hero {
    background: linear-gradient(rgba(27, 20, 100, 0.7), rgba(27, 20, 100, 0.7)), url('https://images.unsplash.com/photo-1607746882042-944635dfe10e') center/cover no-repeat;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.contact-hero h1 {
    font-size: 48px;
    font-weight: 600;
}

.contact-form input,
.contact-form textarea {
    border: none;
    border-bottom: 2px solid #ccc;
    border-radius: 0;
    background: transparent;
    padding-left: 0;
    box-shadow: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #1B1464;
    outline: none;
}

.contact-form label i {
    margin-right: 10px;
    color: #1B1464;
}

.btn-send {
    background: #1B1464;
    color: white;
    transition: 0.3s;
}

.btn-send:hover {
    background: #FFD700;
    color: #1B1464;
}

.map-responsive {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
}

.map-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* footer */
footer {
    background-color: #00416A;
    color: white;
}

footer a {
    color: #FFD700;
    text-decoration: none;
}