/* General Styles */
body {
    font-family: Poppins, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f4f7fc;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #004080;
    padding: 15px 20px;
}

.navbar .logo {
    color: white;
    font-size: 24px;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin: 0 15px;
    position: relative;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background: white;
    list-style: none;
    padding: 10px;
    top: 100%;
    left: 0;
    width: 150px;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    text-align: center;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.hero video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero h1 {
    font-size: 3rem;
    font-weight: bold;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-top: 10px;
}

.owl-nav {
    font-size: 50px;
}

/* Search Section */

.search-box-query-form {
    top: -110px;
    background: #f0f8ff94;
    position: relative;
    border-radius: 20px;
}

.search-section {
    text-align: center;
    padding: 40px 20px;
}

.search-form input {
    padding: 10px;
    margin: 10px;
    border: 1px solid #ccc;
}

.search-form button {
    padding: 10px 20px;
    background: #004080;
    color: white;
    border: none;
    cursor: pointer;
}

/* Cruise Deals*/

.section-title {
    font-size: 28px;
    font-weight: bold;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: "";
    width: 50px;
    height: 3px;
    background-color: #dc3545;
    position: absolute;
    bottom: -5px;
    left: 0;
}

/*why-choose-us*/
.feature-card {
    background: #fff;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.icon {
    width: 60px;
    height: 60px;
}

.section-title {
    font-size: 2rem;
    font-weight: bold;
}

.section-subtitle {
    font-size: 1.1rem;
}

* Featured Cruise Lines Section */ #featured-cruise-lines {

    padding: 60px 0;
}

#featured-cruise-lines h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
}

#featured-cruise-lines p {
    color: #555;
}

/* Cruise Logos */
#featured-cruise-lines .row div {
    display: flex;
    justify-content: center;
    align-items: center;
}

#featured-cruise-lines img {
    max-width: 120px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/*contact-us*/
.custom-border {
    border: none !important;
    border-bottom: 2px solid #007CC3 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    transition: border-color 0.3s;
}

.btn-danger {
    font-weight: bold;
    border-radius: 50px;
    padding: 10px 20px;
    transition: background 0.3s ease-in-out;
}