/* General Reset */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-color: #f8f9fa;
}

/* Logo */
.logo {
    font-weight: 700;
    font-size: 1.8rem;
    color: white;
}

/* Navigation */
.nav-link {
    font-weight: 500;
    transition: 0.3s ease;
}

.nav-link:hover {
    color: #ffe600 !important;
}

/* Hover dropdown for desktop */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
    /* Remove default gap */
}

.dropdown-menu {
    background: #007B9E;
    border: none;
}

.dropdown-menu .dropdown-item {
    color: white;
}

.dropdown-menu .dropdown-item:hover {
    background-color: #00B4DB;
}

/* Custom Button */
.custom-btn {
    background: linear-gradient(to right, #00B4DB, #0083B0);
    color: white;
    border: none;
    border-radius: 50px;
    transition: 0.3s ease-in-out;
}

.custom-btn:hover {
    background: linear-gradient(to right, #0083B0, #00B4DB);
    color: #fff;
}

/* Hero Section Text Styling */
.hero-section h1 {
    font-size: 3.2rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

.hero-section p.lead {
    font-size: 1.25rem;
    margin-top: 1rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* Why Choose Us */
.why-choose h2 {
    font-weight: 700;
    color: #0083B0;
}

.why-choose .shadow {
    transition: transform 0.3s ease;
}

.why-choose .shadow:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 131, 176, 0.2);
}

/* Call to Action */
.cta-section h2 {
    font-size: 2rem;
    font-weight: 600;
}

/*OWL Carousel CSS*/
.owl-carousel .card {
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.owl-carousel .card:hover {
    transform: scale(1.03);
}

.owl-carousel .card img {
    height: 200px;
    object-fit: cover;
}

.owl-nav button.owl-prev,
.owl-nav button.owl-next {
    position: absolute;
    top: 35%;
    background: #0083B0 !important;
    color: #fff !important;
    padding: 8px 12px !important;
    border-radius: 50%;
    font-weight: bold;
}

.owl-nav button.owl-prev {
    left: -25px;
}

.owl-nav button.owl-next {
    right: -25px;
}


/*Our recommedations*/

.card img {
    height: 180px;
    object-fit: cover;
}

.card-title {
    font-size: 1.1rem;
    font-weight: 600;
}

.card-text {
    font-size: 0.95rem;
    color: #555;
}

/* Popular Cruise Info */
.popular-info {
    background: #ffffff;
    padding: 60px 0;
    border-top: 6px solid #0e4d92;
    /* Using your original blue color */
    margin-bottom: 50px;
    /* Adding space between sections */
}

.popular-info h3 {
    font-size: 28px;
    color: #0e4d92;
    /* Original blue color */
    margin-bottom: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 3px solid #0e4d92;
    /* Original blue color */
    padding-bottom: 15px;
    text-align: center;
}

.popular-info ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.popular-info ul li {
    font-size: 18px;
    color: #333;
    padding: 10px 0;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
    font-weight: 500;
    padding-left: 30px;
}

.popular-info ul li:before {
    content: "►";
    position: absolute;
    left: 0;
    font-size: 18px;
    color: #0e4d92;
    /* Original blue color */
    opacity: 0;
    transition: opacity 0.3s ease;
}

.popular-info ul li:hover {
    color: #fff;
    background-color: #0e4d92;
    /* Original blue color */
    transform: translateX(10px);
    padding-left: 40px;
}

.popular-info ul li:hover:before {
    opacity: 1;
}

.popular-info .row {
    margin-bottom: 50px;
}

.popular-info .col-md-4 {
    /* margin-bottom: 30px;
    padding: 30px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden; */
    text-align: center;
}

.popular-info .col-md-4:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.popular-info .col-md-4:hover .card-content {
    opacity: 1;
    transform: translateY(0);
}

.popular-info .col-md-4 .card-content {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.popular-info .col-md-4::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 5px;
    background-color: #0e4d92;
    /* Original blue color */
    border-radius: 50px;
}

.popular-info .container {
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .popular-info .col-md-4 {
        margin-bottom: 20px;
        padding: 20px;
    }

    .popular-info h3 {
        font-size: 24px;
    }
}

/* Adding custom hover effect for entire section */
.popular-info:hover {
    background: #f7f7f7;
    transition: background 0.3s ease;
}

/* Trending Cruise Itinerary*/
/* Trending Cruise Itinerary Section */
.trending-cruise-itinerary {
    padding: 60px 0;
    background-color: #f4f4f4;
}

.trending-cruise-itinerary .section-title {
    font-size: 32px;
    color: #0e4d92;
    /* Using the original blue color */
    text-align: center;
    margin-bottom: 40px;
    font-weight: 600;
    text-transform: uppercase;
}

.cruise-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    text-align: center;
    transition: all 0.3s ease;
}

.cruise-card img {
    width: 100%;
    height: auto;
    border-bottom: 3px solid #0e4d92;
}

.cruise-info {
    padding: 20px;
}

.cruise-info h4 {
    font-size: 20px;
    color: #0e4d92;
    margin-bottom: 15px;
    font-weight: 600;
}

.cruise-info p {
    font-size: 16px;
    color: #333;
}

/* Hover Effect for Cards */
.cruise-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .cruise-card {
        margin-bottom: 20px;
    }
}


/* Footer */
footer h5 {
    font-weight: 600;
    margin-bottom: 1rem;
}

footer a:hover {
    text-decoration: underline;
    color: #ffe600 !important;
}

/* Responsive Heading Size */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.2rem;
    }

    .hero-section p.lead {
        font-size: 1rem;
    }
}