.hero {
    background-position: center;
    background-size: cover;
}

.navbar .nav-item .nav-link {
    transition: all 0.3s ease;
    color: #fff;
}

.navbar .nav-item .nav-link:hover {
    color: #3AC5C9;
}

/* Section Styling */
.why-choose-us {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.why-choose-us h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #172C48;
    /* Dark blue for the title */
    margin-bottom: 30px;
}

/* Card Styling */
.why-choose-us .card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

/* Hover Effect on Cards */
.why-choose-us .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Card Body */
.why-choose-us .card-body {
    text-align: center;
    padding: 30px;
}

/* Icon Styling */
.why-choose-us .card-body i {
    color: #172C48;
    /* Dark blue color for the icons */
    margin-bottom: 20px;
}

/* Card Title Styling */
.why-choose-us .card-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #172C48;
    margin-bottom: 15px;
}

/* Card Text Styling */
.why-choose-us .card-text {
    font-size: 1rem;
    color: #6c757d;
    /* Lighter gray text */
    line-height: 1.5;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .why-choose-us h2 {
        font-size: 2rem;
        /* Slightly smaller font for mobile */
    }

    .why-choose-us .card-body {
        padding: 20px;
    }

    .why-choose-us .card-title {
        font-size: 1.3rem;
        /* Slightly smaller title for mobile */
    }

    .why-choose-us .card-text {
        font-size: 0.9rem;
        /* Adjust text size for better readability on mobile */
    }
}

/*Top Cruise Destination*/
.top-destinations h2 {
    color: #172C48;
}

.top-destinations .card-body i {
    color: #3AC5C9;
    transition: transform 0.3s ease;
}

.top-destinations .card:hover i {
    transform: scale(1.2);
    color: #172C48;
}

/*Upcoming Cruise Deals*/
.featured-deals-section {
    background-color: #f7f9fc;
}

.deal-card:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.deal-card i {
    transition: color 0.3s ease;
}

.deal-card:hover i {
    color: #3AC5C9;
}

/*Exclusive Deals*/
.border:hover {
    background-color: #f8f9fa;
    transition: background 0.3s ease;
}
/*breathtaking destination*/
.destination-card img {
    transition: transform 0.4s ease;
  }
  
  .destination-card:hover img {
    transform: scale(1.05);
  }
  
/*Footer Footer Section*/
footer {
    background: #172C48;
}

footer a:hover {
    color: #3AC5C9;
}