/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    color: #F1F1F1;
    background: #0F2027;
    /* Dark Gradient */
}

h1,
h2,
h4 {
    font-family: 'Helvetica', sans-serif;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?ixlib=rb-4.0.3&amp;auto=format&amp;fit=crop&amp;w=1950&amp;q=80') center center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #F1F1F1;
    text-align: center;
}

.hero-overlay {
    /* background: rgba(0, 0, 0, 0.5); */
    padding: 20px;
    border-radius: 10px;
}

.hero-overlay h1 {
    font-size: 4rem;
    font-weight: 700;
}

.hero-overlay p {
    font-size: 1.2rem;
}

.hero-overlay .btn-primary {
    background-color: #00B4DB;
    border: none;
    padding: 10px 20px;
    text-transform: uppercase;
    border-radius: 5px;
    font-size: 1rem;
}

/* Cruise Packages Section */
.packages {
    background: #203A43;
    padding: 60px 0;
}

.package-card {
    background: #2C5364;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
    margin-bottom: 30px;
}

.package-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.package-card:hover {
    transform: scale(1.05);
}

.package-card h5 {
    font-size: 1.5rem;
    margin-top: 10px;
}

.package-card .btn-secondary {
    background-color: #2BC0E4;
    border: none;
    padding: 10px 20px;
    margin-bottom: 20px;
    text-transform: uppercase;
    border-radius: 5px;
}

/* About Section */
.about {
    background: #2C5364;
    padding: 60px 0;
}

.about .fa-3x {
    color: #00B4DB;
    margin-bottom: 10px;
}

/*Hot Deals*/
.hot-deals .card {
    transition: transform 0.3s ease;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.hot-deals .card:hover {
    transform: translateY(-10px);
}

.hot-deals .badge {
    font-size: 0.85rem;
    padding: 8px 12px;
    border-radius: 0 0.5rem 0.5rem 0;
}

/*World best Cruise Line*/
.grayscale {
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.grayscale:hover {
    filter: grayscale(0%);
}

.best-cruise-lines p {
    font-size: 14px;
    color: #333;
}

.best-cruise-lines img {
    width: 196px;
    height: 261px;
}

/*Cruise By Month */
.inner-head-main4 .inner-head-breadcrumb-main {
    background-color: #016bce;
    padding: 6px 0;
    text-align: center;
}

.inner-head-main4 .inner-head-breadcrumb {
    margin-bottom: 0px;
    display: inline-block;
}

.inner-head-main4 .inner-head-breadcrumb li {
    display: inline-block;
}

.inner-head-main4 .inner-head-breadcrumb li a {
    color: #fff;
}

.inner-head-main4 .inner-head-title-main {
    background-color: #0055a5;
}

.inner-head-main4 .inner-head-title-main .title h1 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    line-height: 44px;
    text-transform: uppercase;
}

.by-page-thumlist-main {
    background-color: #eef4f9;
    padding: 30px 30px 10px 30px;
    border-radius: 20px;
}

.by-page-thumlist-box .image {
    width: 100%;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 10px;
}

.by-page-thumlist-box {
    border: 1px solid #dbe4eb;
    border-radius: 14px;
    width: 100%;
    background-color: #fff;
    position: relative;
    display: inline-block;
    text-align: center;
    padding: 16px;
    height: 100%;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

a {
    text-decoration: none;
}

.by-page-thumlist-box .des .title {
    color: #015cb3;
    font-size: 22px;
    font-weight: 600;
}

.by-page-thumlist-box .des .info {
    color: #64748b;
    font-size: 16px;
}

.by-page-thumlist-box .des p {
    color: #000;
    line-height: 24px;
    margin-bottom: 0px;
    text-align: center;
    margin-top: 10px;
}

/* Footer */
.footer {
    background: #0F2027;
    padding: 40px 0;
    color: #F1F1F1;
}

.footer h5 {
    margin-bottom: 20px;
}

.footer a {
    color: #F1F1F1;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

.footer .social-icon {
    margin: 0 10px;
    font-size: 1.5rem;
    color: #F1F1F1;
}

.footer .social-icon:hover {
    color: #00B4DB;
}

/* Responsive */
@media (max-width: 767px) {
    .navbar-nav {
        text-align: center;
    }
}