*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.why-us-slider .feature-card {
    margin: 0 12px;
}

.slick-dots {
    bottom: -35px;
}

.enquiry-modal {
    border-radius: 8px;
    padding: 10px;
    position: relative;
}

.modal-logo {
    width: 80px;
    height: auto;
}

.custom-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #6c757d;
    opacity: 1;
    filter: invert(1);
    border-radius: 4px;
    z-index: 999;
}

.form-control {
    height: 48px;
    font-size: 14px;
}

.phone-field {
    position: relative;
}

.phone-field .flag {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
}

.btn-primary {
    background-color: #0c6ea8;
    border: none;
}

.btn-primary:hover {
    background-color: #095c8c;
}

:root {
    --primary-color: #1a5f7a;
    --secondary-color: #2980b9;
    --accent-color: #e67e22;
    --dark-color: #2c3e50;
    --light-bg: #f8f9fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    overflow-x: hidden;
}

/* Header Styles */
.top-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 15px 0;
}

.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.navbar-brand img {
    height: 50px;
}

.navbar-nav .nav-link {
    color: var(--dark-color);
    font-weight: 500;
    margin: 0 15px;
    transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

/* Hero Banner */
.hero-banner{
    cursor: pointer;
}
.hero-content h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.cta-button {
    background: #23527c;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgb(35 82 124,0.6);
}

.cta-button:hover {
    background: #23527c;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgb(35 82 124,0.6);
}

/* Section Styling */
.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 15px;
}

.section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background: #23527c;
    display: block;
    margin: 20px auto;
}

/* Why Choose Us */
.why-choose-us {
    padding: 80px 0;
    background: var(--light-bg);
}

.feature-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 15px;
    transition: all 0.3s;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    min-height: 280px;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.feature-card h4 {
    color: var(--dark-color);
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 18px;
}

/* Parallax */
/* .parallax-section {
    position: relative;
    background-image: url("img/parallax-img.webp");
    min-height: 100vh;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.parallax-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.parallax-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 20px;
}

.parallax-content h2 {
    font-size: 42px;
    font-weight: 700;
}

.parallax-content p {
    font-size: 18px;
    margin-top: 15px;
} */

/* Package Section */
.packages {
    padding: 80px 0 0;
}

.package-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    height: 100%;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.package-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 30px;
    text-align: center;
}

.package-header h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.package-price {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 15px 0;
}

.package-body {
    padding: 30px;
}

.package-feature {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.package-feature i {
    color: var(--accent-color);
    margin-right: 10px;
}

.package-button {
    background: #23527c;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    width: 100%;
    font-weight: bold;
    transition: all 0.3s;
}

.package-button:hover {
    background: #23527c;
    transform: scale(1.05);
}

/* Accommodation Section */
.accommodation {
    padding: 80px 0;
    background: var(--light-bg);
}

.accommodation-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    margin-bottom: 30px;
}

.accommodation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.accommodation-img {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.accommodation-content {
    padding: 10px 25px 25px;
}

.accommodation-content h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

/* Inclusion/Exclusion */
.inclusions-exclusions {
    padding: 40px 0 80px 0;
}

.info-box {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.info-box h3 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: bold;
}

.info-box.inclusion {
    border-left: 5px solid #27ae60;
}

.info-box.exclusion {
    border-left: 5px solid #e74c3c;
}

.info-item {
    padding: 12px 0;
    display: flex;
    align-items: flex-start;
}

.info-item i {
    margin-right: 12px;
    margin-top: 3px;
    font-size: 1.1rem;
}

.info-item.inclusion i {
    color: #27ae60;
}

.info-item.exclusion i {
    color: #e74c3c;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 50px 0 20px;
}

.footer h5 {
    color: #fff;
    margin-bottom: 20px;
}

.footer a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: white;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: #0c6ea8;
    transform: translateY(-3px);
}

.package-cards {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.package-cards:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.package-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.package-body {
    padding: 20px;
}

.stars {
    color: #ffa500 !important;
    font-size: 12px;
    margin-left: 5px;
}

.duration-info {
    background: #f0f8ff;
    padding: 5px;
    border-radius: 5px;
    margin-bottom: 15px;
}

.date-badge {
    display: inline-block;
    background: white;
    border: 1px solid #2a5bb4;
    color: #2a5bb4;
    padding: 2px 12px;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 8px;
    margin-bottom: 10px;
    font-size: 11px;
}

.departure {
    font-size: 11px;
}

.package-icons {
    width: 15px;
    margin-right: 8px;
}

.package-title {
    color: var(--primary-color);
    font-size: 20px;
}

.iti {
    width: 100% !important;
}

.contact-icon {
    color: #fff;
    text-decoration: none;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .top-header {
        display: none;
    }

    .section-title h2 {
        font-size: 1.5rem;
    }
    .info-box {
        padding: 20px;
    }
}
.package-details span{
    font-size: 15px;
}
.contact h2{
    font-size: 26px;
}