/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

/*layout changes*/
html, body {
    overflow-x: hidden;
}

body {
    position: relative;
    width: 100%;
    font-family: 'Poppins', sans-serif;
}

.whatsapp-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

    .whatsapp-icon img {
        width: 60px;
        height: 60px;
    }

@media (max-width: 767px) {
    .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
}
/*end*/
/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;

}


body {
    display: flex;
    flex-direction: column;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Top Bar Styles */
.top-bar {
    background-color: #1a1b2f;
    color: white;
    padding: 10px 0;
}

    .top-bar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.location, .email, .timing {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.social-icons {
    z-index:99;
    display: flex;
    gap: 15px;
}

    .social-icons a {
        color: white;
        transition: color 0.3s;
    }

        .social-icons a:hover {
            color: #ff0000;
        }

/* Header Styles */


.header {
    background: white;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

    .header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .logo img {
        height: 60px;
    }

.nav-menu ul {
    z-index: 1050;
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-menu a {
    z-index: 1050;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

    .nav-menu a.active,
    .nav-menu a:hover {
        color: #ff0000;
    }

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
}

/*.quote-btn {
    background: #ff0000;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}*/

    .quote-btn:hover {
        background: #cc0000;
    }

.phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ff0000;
    font-weight: 600;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Carousel Styles */
.hero-carousel {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.carousel-slides {
    height: 85%;
}

.slide {
    z-index: 10;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 95%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

    .slide.active {
        opacity: 1;
    }

    .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .slide img {
        image-rendering: crisp-edges; /* Optional: improve sharpness */
    }

.slide-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 20px;
    /*    background: rgba(0,0,0,0.5);*/
    background: none;
}
    .slide-content h1, .slide-content h2, .slide-content p {
        text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
    }
.slide-content {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
}


    .slide-content h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .slide-content h1 {
        font-size: 48px;
        margin-bottom: 20px;
    }

    .slide-content p {
        max-width: 800px;
        font-size: 18px;
    }

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    color: white;
    backdrop-filter: blur(4px);
    transition: background-color 0.3s;
}
@media(max-width:768px)
{
    .carousel-btn {
        transform: translateY(90%);
    }
}
    .carousel-btn:hover {
        background: rgba(255,255,255,0.3);
    }

    .carousel-btn.prev {
        left: 20px;
    }

    .carousel-btn.next {
        right: 20px;
    }

/* Responsive Styles */
@media (max-width: 1024px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

        .nav-menu.active {
            display: block;
        }

        .nav-menu ul {
            flex-direction: column;
            gap: 0;
        }

        .nav-menu li {
            border-bottom: 1px solid #eee;
        }

        .nav-menu a {
            display: block;
            padding: 15px;
        }

    .mobile-menu-btn {
        display: block;
    }

    .header-right {
        display: none;
    }

    .slide-content h1 {
        font-size: 36px;
    }

    .slide-content p {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .top-bar-left, .top-bar-right {
        width: 100%;
        justify-content: space-between;
        margin-bottom: 10px;
    }

    .location, .email, .timing {
        font-size: 12px;
    }

    .slide-content h1 {
        font-size: 28px;
    }

    .slide-content h2 {
        font-size: 20px;
    }

    .slide-content p {
        font-size: 14px;
    }

    .hero-carousel {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .top-bar-left, .top-bar-right {
        flex-direction: column;
        align-items: flex-start;
    }

    .social-icons {
        margin-top: 10px;
    }

    .logo img {
        height: 40px;
    }

    .slide-content h1 {
        font-size: 24px;
    }

    .slide-content h2 {
        font-size: 18px;
    }

    .slide-content p {
        font-size: 12px;
    }

    .hero-carousel {
        position: relative;
        height: 65vh;
    }
}

/* top bar warapper start */
/* Top Bar Styles */
.top-bar-wrapper {
    position: relative;
    background-color: #1a1b2f;
}

.top-bar {
    background-color: #1a1b2f;
    color: white;
    padding: 10px 0;
}

    .top-bar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.location, .email, .timing {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

    .social-icons a {
        color: white;
        transition: color 0.3s;
    }

        .social-icons a:hover {
            color: #ff0000;
        }

/* Top Bar Toggle Button */
.top-bar-toggle {
/*    display: none;*/
    width: 100%;
    padding: 10px;
    background-color: #ff0000;
    border: none;
    color: white;
    cursor: pointer;
    text-align: center;
}

    .top-bar-toggle i {
        transition: transform 0.3s ease;
    }

/* Responsive Styles */
@media (max-width: 768px) {
    .top-bar {
/*        display: none;*/
        transition: all 0.3s ease;
    }

    .top-bar-left{
        display:flex;
        justify-content:center;
        align-content:center;
    }

    .top-bar.active {
        display: block;
    }

        .top-bar .container {
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

    .top-bar-left, .top-bar-right {
        width: 100%;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin: 5px 0;
    }

    .social-icons {
        margin-top: 10px;
    }

    .top-bar-toggle {
/*        display: block;*/
    }

        .top-bar-toggle.active i {
            transform: rotate(180deg);
        }
}



/* top bar wraper end */

/* whats app button start*/
/* Floating Button Container */
.floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px; /* Spacing between buttons */
    z-index:1020;
}

/* General Floating Button Style */
.floating-btn {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #25d366;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

    .floating-btn i {
        color: white;
        font-size: 22px;
    }

    /* Hover Effect */
    .floating-btn:hover {
        transform: scale(1.1);
    }

/* WhatsApp Button */
.whatsapp-icon img {
    width: 95%;
    height: 95%;
    border-radius: 25px;
}

/* Book Now Button */
.book-now {
    background: linear-gradient(45deg, #ff6b6b, #ff8e53);
}

/* Call Button */
.call-btn {
    background: linear-gradient(45deg, #6a11cb, #2575fc);
}

/* Mobile Responsive */
@media (max-width: 576px) {
    .floating-buttons {
/*        right: 10px;*/
    }
}

/*.whatsapp-icon {
    position: fixed;
    right: 0;
    top: 85%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #25d366;
    border-radius: 50%;
    text-decoration: none;
}

    .whatsapp-icon img {
        width: 95%;*/ /* Adjusted the width */
        /*height: 95%;*/ /* Adjusted the height */
        /*border-radius: 25px;
    }
@media (max-width: 576px) {
    .whatsapp-icon {
        margin-right: 20px;
    }
}*/
/* whats app buttons end */


    /*logo css start*/
    .logo-img {
        width: 250px; /* Default width */
        height: auto; /* Maintain aspect ratio */
        max-height: 80px; /* Prevents oversized images */
    }

    /* Adjust for medium devices (tablets) */
    @media (max-width: 992px) {
        .logo-img {
            width: 250px;
            height: 200px;
        }
    }

    /* Adjust for small devices (mobile phones) */
    @media (max-width: 768px) {
        .logo-img {
            width: 250px;
            max-height: 90px;
        }
    }

    /* Extra small devices */
    @media (max-width: 480px) {
        .logo-img {
            width: 250px;
            max-height: 50px;
        }
    }

    /*logo css end*/

    /*package start*/
    .package-section {
        padding: 50px 0;
        text-align: center;
    }

    .package-card {
        background: white;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        transition: 0.3s;
    }

        .package-card:hover {
            transform: translateY(-5px);
            box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2);
        }

    .package-img {
        height: 200px;
        width: 100%;
        object-fit: cover;
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
    }

    .package-details {
        padding: 20px;
    }

    .package-title {
        font-size: 18px;
        font-weight: bold;
        color: #e67e22;
    }

    .package-icons {
        font-size: 14px;
        margin: 10px 0;
    }

        .package-icons i {
            margin: 0 5px;
            color: #444;
        }

    .price {
        font-size: 20px;
        font-weight: bold;
        color: green;
    }

    .old-price {
        color: red;
        text-decoration: line-through;
        font-size: 14px;
    }

    .badge-duration {
        background: orange;
        color: white;
        font-size: 14px;
        padding: 5px 10px;
        border-radius: 20px;
        position: absolute;
        top: 10px;
        right: 10px;
    }
    /*package end*/


    /*top bar extra styling start*/
    /* Top Bar Styles */
    .top-bar-wrapper {
        position: relative;
        background-color: #0a0a0a; /* Darker background */
    }

    .top-bar {
        color: white;
        padding: 12px 0;
        font-family: 'Segoe UI', Arial, sans-serif;
    }

        .top-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

    .top-bar-left {
        display: flex;
        align-items: center;
        gap: 30px; /* Increased spacing between elements */
    }

    .location, .email {
        display: flex;
        align-items: center;
        gap: 12px; /* Increased spacing between icon and text */
    }

    /* Icon Styles */
    .top-bar i {
        color: #ff0000; /* Red color for icons */
        font-size: 18px; /* Larger icons */
        width: 20px; /* Fixed width for alignment */
        text-align: center;
        transition: transform 0.3s ease;
    }

    /* Social Icons Specific Styles */
    .social-icons {
        display: flex;
        gap: 20px; /* Increased spacing between social icons */
    }

        .social-icons a {
            color: white;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

            .social-icons a:hover {
                color: #ff0000;
                transform: translateY(-2px);
            }

        .social-icons i {
            color: white; /* Override red color for social icons */
            font-size: 16px;
        }

    /* Text Styles */
    .top-bar span {
        font-size: 14px;
        letter-spacing: 0.3px;
    }

    /* Toggle Button Styles */
    .top-bar-toggle {
        display: none;
        width: 100%;
        padding: 8px;
        background-color: #ff0000;
        border: none;
        color: white;
        cursor: pointer;
        text-align: center;
    }

        .top-bar-toggle i {
            color: white;
            transition: transform 0.3s ease;
        }

    /* Responsive Styles */
    @media (max-width: 768px) {
        .top-bar {
            display: none;
            transition: all 0.3s ease;
        }

            .top-bar.active {
                display: block;
            }

            .top-bar .container {
                flex-direction: column;
                align-items: flex-start;
            }

        .top-bar-left {
            width: 100%;
            flex-direction: column;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 15px;
        }

        .social-icons {
            width: 100%;
            justify-content: center;
            margin-top: 15px;
        }

        .top-bar-toggle {
            display: block;
        }

            .top-bar-toggle.active i {
                transform: rotate(180deg);
            }
    }
    /*top bar extra styling end*/

    /*Header right start */
    /* Header Right Buttons Styles */
    .header-right {
        margin-left: auto;
    }

    /* Get A Quote Button */
    .quote-btn {
        background-color: #e31e24;
        color: white;
        padding: 12px 24px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 200;
        display: inline-flex;
        align-items: center;
        transition: all 0.3s ease;
        border: none;
        font-size: 14px;
    }

        .quote-btn:hover {
            background-color: #c41920;
            color: white;
            transform: translateY(-2px);
        }

        .quote-btn i {
            font-size: 14px;
        }

    /* Phone Button */
    .phone-btn {
        display: flex;
        align-items: center;
        gap: 12px;
        background-color: white;
        padding: 8px;
        border-radius: 50px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

        .phone-btn i {
            background-color: #e31e24;
            color: white;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            font-size: 18px;
        }

        .phone-btn span {
            color: #333;
            font-weight: 500;
            font-size: 16px;
            padding-right: 12px;
        }

    /* Responsive Styles */
    @media (max-width: 991px) {
        .header-right {
            margin-top: 15px;
            width: 100%;
            justify-content: center;
        }
    }

    @media (max-width: 576px) {
        .header-right {
            flex-direction: column;
            align-items: stretch;
        }

        .quote-btn, .phone-btn {
            text-align: center;
            justify-content: center;
        }
    }

    .phone-btn i {
        background-color: #e31e24;
        color: white;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        font-size: 18px;
        /* Add these properties for the border */
        border: 2px solid #e31e24;
        position: relative;
    }

        /* Add outer circle animation */
        .phone-btn i::after {
            content: '';
            position: absolute;
            width: calc(100% + 8px);
            height: calc(100% + 8px);
            border: 2px solid #e31e24;
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

    /* Pulse animation */
    @keyframes pulse {
        0% {
            transform: scale(1);
            opacity: 1;
        }

        50% {
            transform: scale(1.2);
            opacity: 0.5;
        }

        100% {
            transform: scale(1.4);
            opacity: 0;
        }
    }
    /*header right end*/
    /*.package-title {
    background-color: red;*/ /* Red background */
    /*color: white;*/ /* White text */
    /*font-size: 18px;*/ /* Slightly bigger font */
    /*font-weight: bold;*/ /* Make it stand out */
    /*text-align: center;
    padding: 8px 12px;*/ /* Add spacing */
    /*border-radius: 8px;*/ /* Rounded corners */
    /*display: inline-block;
    margin: 10px 0;*/ /* Add spacing */
    /*box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);*/ /* Subtle shadow effect */
    /*}*/

    /*destinations start*/
    .top-destinations {
        padding: 80px 0;
        /*    background-color: #f8f9fa;*/
    }

    .section-title {
        font-size: 2.5rem;
        font-weight: 700;
        color: #333;
        text-align: center;
        margin-bottom: 15px;
        position: relative;
        padding-bottom: 15px;
    }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: #e31e24;
        }

    .section-subtitle {
        font-size: 1.1rem;
        color: #6c757d;
        text-align: center;
        max-width: 700px;
        margin: 0 auto 40px;
    }

    .destination-card {
        z-index:1020;
        background-color: #fff;
        border-radius: 15px;
        overflow: hidden;
/*        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);*/
/*        transition: transform 0.3s ease, box-shadow 0.3s ease;*/
        height: 100%;
        display: flex;
        flex-direction: column;
    }



    .destination-img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .destination-card:hover .destination-img {
/*        transform: scale(1.05);*/
    }

    .destination-content {
        padding: 20px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }

        .destination-content h3 {
            font-size: 1.3rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 10px;
        }

        .destination-content p {
            font-size: 0.9rem;
            color: #6c757d;
            margin-bottom: 15px;
            flex-grow: 1;
        }

    .btn-explore {
        display: inline-block;
        padding: 8px 20px;
        background-color: #e31e24;
        color: #fff;
        text-decoration: none;
        border-radius: 25px;
        transition: background-color 0.3s ease;
        font-weight: 500;
        text-align: center;
        align-self: flex-start;
    }

        .btn-explore:hover {
            background-color: #c41920;
            color: #fff;
        }

    /* Add a gradient overlay to destination images */
    .destination-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.4));
        z-index: 1;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .destination-card:hover::before {
        opacity: 1;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .section-title {
            font-size: 2rem;
        }

        .section-subtitle {
            font-size: 1rem;
        }

        .destination-card {
            margin-bottom: 30px;
        }
    }
    /*destinations end*/

    /*css for pacakages partial view*/
    @media (max-width: 768px) {
        .package-card {
            margin-bottom: 20px;
        }

        .package-img img {
            width: 100%;
            height: auto;
        }

        .package-info h5 {
            font-size: 18px;
        }

        .package-icons i {
            font-size: 16px;
            margin: 5px;
        }

        .package-inclusions p {
            font-size: 14px;
        }

        .price-btn {
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .enquiry-btn {
            width: 100%;
            margin-top: 10px;
        }
    }

    @media (max-width: 576px) {
        .package-card {
            padding: 10px;
        }

        .package-img {
            position: relative;
        }

            .package-img img {
                height: 180px;
                object-fit: cover;
            }

        .discount-badge {
            font-size: 12px;
            padding: 5px 10px;
        }

        .package-info h5 {
            font-size: 16px;
        }

        .package-icons i {
            font-size: 14px;
        }

        .package-inclusions p {
            font-size: 12px;
        }

        .price-btn span {
            font-size: 16px;
        }

        .enquiry-btn {
            padding: 8px;
            font-size: 14px;
        }
    }


    /*about us*/
    /* About Section */
    .about-section {
        margin-top: 0;
        /*    background-color: #f9f9f9;*/
        /*    padding: 60px 0;*/
    }

    /* Section Title */
    .about-title {
        font-size: 18px;
        font-weight: 600;
        color: #d9534f; /* Red color */
        position: relative;
        display: inline-block;
        text-transform: uppercase;
    }

    .about-heading {
        font-size: 36px;
        font-weight: 700;
        color: #333;
    }

    .highlight-text {
        color: #d9534f;
    }

    /* About Text */
    .about-text {
        font-size: 16px;
        line-height: 1.8;
        color: #555;
    }

    /* Counter Boxes */
    .about-box {
        background: white;
        border: 2px solid #ddd;
        border-radius: 10px;
        text-align: center;
        padding: 20px;
        transition: 0.3s;
    }

        .about-box:hover {
            background: #d9534f;
            color: white;
            transform: translateY(-5px);
        }

    .about-icon {
        font-size: 30px;
        margin-bottom: 10px;
        color: #d9534f;
        transition: 0.3s;
    }

    .about-box:hover .about-icon {
        color: white;
    }

    .counter {
        font-size: 24px;
        font-weight: bold;
    }

    .counter-text {
        font-size: 14px;
    }

    /* Explore Button */
    .about-btn {
        display: inline-block;
        background: #d9534f;
        color: white;
        font-size: 18px;
        font-weight: 600;
        padding: 12px 30px;
        border-radius: 8px;
        transition: 0.3s;
        text-decoration: none;
    }

        .about-btn:hover {
            background: #c9302c;
        }

    /* About Images */
    .about-img {
        border-radius: 10px;
        box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
        transition: 0.3s;
    }

        .about-img:hover {
            transform: scale(1.05);
        }

    /*why us start*/
    /* General Styles */
    body {
        font-family: 'Poppins', sans-serif;
        background-color: #fff;
        color: #333;
        margin: 0;
        padding: 0;
        text-align: center;
    }

    /* Section Styling */
    .why-choose {
        padding: 50px 20px;
    }

        .why-choose h2 {
            font-size: 2.5rem;
            color: #b22222; /* Dark Red */
        }

        .why-choose p {
            font-size: 1.2rem;
            color: #555;
            margin-bottom: 40px;
        }

    /* Features Grid */
    .features {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
        max-width: 1100px;
        margin: 0 auto;
    }

    /* Individual Feature Box */
    .feature-box {
        background: #ffe5e5; /* Light Red Background */
        padding: 20px;
        border-radius: 15px;
        text-align: center;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease-in-out;
    }

        .feature-box:hover {
            transform: scale(1.05);
        }

        /* Icons */
        .feature-box i {
            font-size: 50px;
            color: #b22222; /* Dark Red */
            margin-bottom: 15px;
        }

        /* Feature Title */
        .feature-box h3 {
            font-size: 1.5rem;
            color: #b22222;
            margin-bottom: 10px;
        }

        /* Feature Text */
        .feature-box p {
            font-size: 1rem;
            color: #333;
        }

    /*why us end*/

    /*footer start*/
footer {
    background: linear-gradient(to right, #1a1b2f, #25273f);
    color: #ffffff;
    padding: 50px 0 0;
    margin-top: auto;
    font-family: 'Poppins', sans-serif;
}

/* Footer Headings */
.footer-heading {
    color: #e31e24;
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* Footer Text */
.footer p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    color: white;
    font-size: 1.4rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

    .social-icon:hover {
        background: #e31e24;
        transform: scale(1.1);
    }

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
}

    .footer-links li {
        margin-bottom: 12px;
    }

    .footer-links a {
        color: #ffffff;
        text-decoration: none;
        font-size: 1rem;
        transition: color 0.3s ease;
        position: relative;
    }

        .footer-links a::after {
            content: "";
            display: block;
            width: 0;
            height: 2px;
            background: #e31e24;
            transition: width 0.3s;
        }

        .footer-links a:hover::after {
            width: 100%;
        }

/* Contact Icons */
.footer address p {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer address i {
    color: #e31e24;
}

/* Get A Quote Button */
.footer .btn-primary {
    background-color: #e31e24;
    border: none;
    padding: 10px 15px;
    font-size: 1rem;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

    .footer .btn-primary:hover {
        background-color: #c41920;
    }

/* Footer Bottom */
.footer-bottom {
    background-color: #13141f;
    padding: 15px 0;
    margin-top: 30px;
    text-align: center;
    font-size: 0.9rem;
}

    .footer-bottom p {
        margin: 0;
    }

/* Responsive Styling */
@media (max-width: 767px) {
    .footer {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-heading {
        margin-top: 20px;
    }

    .footer address {
        margin-bottom: 20px;
    }
}


    /*.footer {
        background-color: #1a1b2f;
        color: #ffffff;
        padding: 50px 0 0;
        margin-top: auto;
    }

    .footer-heading {
        color: #e31e24;
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 20px;
        text-transform: uppercase;
    }

    .footer p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .social-icons {
        display: flex;
        gap: 15px;
    }

    .social-icon {
        color: #ffffff;
        font-size: 1.2rem;
        transition: color 0.3s ease;
    }

        .social-icon:hover {
            color: #e31e24;
        }

    .footer-links {
        list-style: none;
        padding: 0;
    }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #ffffff;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

            .footer-links a:hover {
                color: #e31e24;
            }

    .footer address p {
        margin-bottom: 5px;
    }

    .footer address i {
        color: #e31e24;
        margin-right: 10px;
        width: 20px;
        text-align: center;
    }

    .footer .btn-primary {
        background-color: #e31e24;
        border-color: #e31e24;
        transition: background-color 0.3s ease;
    }

        .footer .btn-primary:hover {
            background-color: #c41920;
            border-color: #c41920;
        }

    .footer-bottom {
        background-color: #13141f;
        padding: 15px 0;
        margin-top: 30px;
        text-align: center;
    }

        .footer-bottom p {
            margin: 0;
            font-size: 0.8rem;
        }

    @media (max-width: 767px) {
        .footer {
            text-align: center;
        }

        .social-icons {
            justify-content: center;
        }

        .footer-heading {
            margin-top: 20px;
        }

        .footer address {
            margin-bottom: 20px;
        }
    }*/



    /*footer end*/

/*    gallery start*/
/*.gallery-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

    .section-heading::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background-color: #e31e24;
    }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

    .gallery-item:hover {
        transform: translateY(-5px);
    }

    .gallery-item img {
        width: 100%;*/
/*        height: 100%;*/
        /*object-fit: cover;
        transition: transform 0.3s ease;
        cursor: pointer;
    }

    .gallery-item:hover img {
        transform: scale(1.05);
    }*/

.gallery-section {
    margin-bottom:100px;
    padding: 0px;
/*    background-color: #f9f9f9;*/
    text-align: center;
}
@media(max-width:768px)
{
    .gallery-section {
        margin-bottom: 400px;
    }
}

.section-heading {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 20px;
}

.section-subheading {
    font-size: 1.2em;
    color: #777;
    margin-bottom: 30px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

    .gallery-item img:hover {
        transform: scale(1.05);
    }

.popup {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow: auto;
    padding-top: 60px;
}

.popup-content {
    max-width: 80%;
    margin: auto;
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
}

#imageCaption {
    text-align: center;
    color: white;
    font-size: 1.2em;
    margin-top: 20px;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

    .close:hover,
    .close:focus {
        color: #f1f1f1;
        text-decoration: none;
        cursor: pointer;
    }


.popup {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.popup-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    max-height: 80%;
    object-fit: contain;
}

#imageCaption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

    .close:hover,
    .close:focus {
        color: #bbb;
        text-decoration: none;
        cursor: pointer;
    }

.gallery-grid::-webkit-scrollbar {
    width: 10px;
}

.gallery-grid::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.gallery-grid::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 5px;
}

    .gallery-grid::-webkit-scrollbar-thumb:hover {
        background: #555;
    }

@media only screen and (max-width: 768px) {
    .section-heading {
        font-size: 2rem;
    }

    .section-subheading {
        font-size: 1rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

    .gallery-item {
        height: 200px;
    }
}

/* Popup styles */
.popup {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.popup-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    max-height: 80%;
    object-fit: contain;
}

#imageCaption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

    .close:hover,
    .close:focus {
        color: #bbb;
        text-decoration: none;
        cursor: pointer;
    }

@media only screen and (max-width: 700px) {
    .popup-content {
        width: 100%;
    }
}
/*gallery end*/


/*nav link effects start*/
/* Nav link styles */
.navbar-nav .nav-item .nav-link {
    position: relative;
    color: #333;
    transition: color 0.3s ease;
/*    padding: 0.5rem 1rem;*/
}

    .navbar-nav .nav-item .nav-link:hover,
    .navbar-nav .nav-item .nav-link:focus,
    .navbar-nav .nav-item .nav-link.active {
        color: #e31e24; /* Change to red on hover/focus/active */
    }

    .navbar-nav .nav-item .nav-link::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px; /* 10% of font-size, assuming 20px font */
        background-color: #e31e24;
        bottom: -2px;
        left: 50%;
        transform: translateX(-50%);
        transition: width 0.3s ease;
    }

    .navbar-nav .nav-item .nav-link:hover::after,
    .navbar-nav .nav-item .nav-link:focus::after,
    .navbar-nav .nav-item .nav-link.active::after {
        width: 100%;
    }

/* Dropdown styles */
.navbar-nav .nav-item.dropdown .dropdown-menu {
/*    border: none;*/
/*    box-shadow: 0 2px 10px rgba(0,0,0,0.1);*/
}

.navbar-nav .nav-item.dropdown .dropdown-item {
/*    color: #333;*/
/*    transition: color 0.3s ease, background-color 0.3s ease;*/
}

    .navbar-nav .nav-item.dropdown .dropdown-item:hover,
    .navbar-nav .nav-item.dropdown .dropdown-item:focus {
        color: #e31e24;
        background-color: rgba(227, 30, 36, 0.1);
    }

/* Responsive styles */
@media (max-width: 991px) {
    .navbar-nav .nav-item .nav-link::after {
        bottom: 0;
    }

    .navbar-nav .nav-item .nav-link:hover::after,
    .navbar-nav .nav-item .nav-link:focus::after,
    .navbar-nav .nav-item .nav-link.active::after {
        width: 50px; /* Fixed width for mobile */
    }
}

/*nav link effects end*/

/*new packages code as per yousuf sir*/
.package-title-label {
    background-color: red;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    display: inline-block;
    font-weight: bold;
    font-size: 1.2rem;
    margin-top: 10px;
}

.package-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

    .package-card:hover {
        transform: scale(1.05);
    }

.package-img {
    position: relative;
}

    .package-img img {
        width: 100%;
        height: auto;
    }

.discount-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: yellow;
    padding: 5px 10px;
    font-weight: bold;
    border-radius: 5px;
}

.package-info {
    padding: 15px;
    background: #fff;
}

.package-icons i {
    margin-right: 10px;
    color: orange;
}

.price-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #fff;
}

.enquiry-btn {
    background-color: #e31e24;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

    .enquiry-btn:hover {
        background: darkorange;
    }

/* .package-inclusions { */
/*     padding: 10px; */
/*     background: #f9f9f9; */
/*     font-size: 14px; */
/*     display: flex; */
/*     flex-wrap: wrap; */
/*     align-items: center; */
/*     justify-content: space-between; */
/* } */

/*     .package-inclusions p { */
/*         margin: 5px 0; */
/*     } */

/* .read-more { */
/*     color: blue; */
/*     cursor: pointer; */
/*     text-decoration: underline; */
/*     margin-left: auto; */
/* } */

.package-inclusions {
    padding: 10px;
    background: #f9f9f9;
    font-size: 14px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

    .package-inclusions p {
        margin: 5px 0;
        display: flex;
        align-items: center;
    }

        .package-inclusions p::before {
            content: '\2192'; /* Right arrow symbol */
            color: red; /* Red color for the arrows */
            margin-right: 10px; /* Space between arrow and text */
            font-size: 16px; /* Size of the arrow */
        }

.read-more {
    text-decoration: none;
    color: #fff;
    cursor: pointer;
    text-decoration: underline;
    margin-left: auto;
    display: inline-flex;
    align-items: center;
}

    .read-more a {
        text-decoration: none;
        color: red;
    }

    .read-more::before {
        content: '\2192'; /* Right arrow symbol */
        margin-right: 5px; /* Spacing between arrow and text */
    }

    .read-more:hover {
        color: #007BFF; /* Change to a brighter blue on hover */
        text-decoration: none; /* Remove underline on hover */
    }

.package-img img {
    height: 200px;
    width: 100%;
    object-fit: cover;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}
/*packages css end*/


/*Send mail spiner css start*/

/*.loader {
    position: fixed;*/ /* Ensure it covers the full screen */
    /*top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);   
    display: flex;*/ /* Using Flexbox for center alignment */
    /*justify-content: center;
    align-items: center;
    z-index: 99999;*/ /* Ensure spinner is behind the content */
/*}*/
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Ensure the loader is in front */
    visibility: hidden; /* Initially hidden */
    opacity: 0;
    transition: opacity 0.5s ease-in-out, visibility 0s 0.5s; /* Smooth transition */
}

    .loader.show {
        visibility: visible;
        opacity: 1;
        transition: opacity 0.5s ease-in-out;
    }
/* Add some extra styling to the spinner if needed */
#spinnerBtn i {
    margin-right: 8px; /* Space between spinner and text */
}


.typewriter {
    --blue: #5C86FF;
    --blue-dark: #275EFE;
    --key: #fff;
    --paper: #EEF0FD;
    --text: #D3D4EC;
    --tool: #FBC56C;
    --duration: 3s;
    position: relative;
    -webkit-animation: bounce05 var(--duration) linear infinite;
    animation: bounce05 var(--duration) linear infinite;
}

    .typewriter .slide {
        width: 92px;
        height: 20px;
        border-radius: 3px;
        margin-left: 14px;
        transform: translateX(14px);
        background: linear-gradient(var(--blue), var(--blue-dark));
        -webkit-animation: slide05 var(--duration) ease infinite;
        animation: slide05 var(--duration) ease infinite;
    }

        .typewriter .slide:before, .typewriter .slide:after,
        .typewriter .slide i:before {
            content: "";
            position: absolute;
            background: var(--tool);
        }

        .typewriter .slide:before {
            width: 2px;
            height: 8px;
            top: 6px;
            left: 100%;
        }

        .typewriter .slide:after {
            left: 94px;
            top: 3px;
            height: 14px;
            width: 6px;
            border-radius: 3px;
        }

        .typewriter .slide i {
            display: block;
            position: absolute;
            right: 100%;
            width: 6px;
            height: 4px;
            top: 4px;
            background: var(--tool);
        }

            .typewriter .slide i:before {
                right: 100%;
                top: -2px;
                width: 4px;
                border-radius: 2px;
                height: 14px;
            }

    .typewriter .paper {
        position: absolute;
        left: 24px;
        top: -26px;
        width: 40px;
        height: 46px;
        border-radius: 5px;
        background: var(--paper);
        transform: translateY(46px);
        -webkit-animation: paper05 var(--duration) linear infinite;
        animation: paper05 var(--duration) linear infinite;
    }

        .typewriter .paper:before {
            content: "";
            position: absolute;
            left: 6px;
            right: 6px;
            top: 7px;
            border-radius: 2px;
            height: 4px;
            transform: scaleY(0.8);
            background: var(--text);
            box-shadow: 0 12px 0 var(--text), 0 24px 0 var(--text), 0 36px 0 var(--text);
        }

    .typewriter .keyboard {
        width: 120px;
        height: 56px;
        margin-top: -10px;
        z-index: 1;
        position: relative;
    }

        .typewriter .keyboard:before, .typewriter .keyboard:after {
            content: "";
            position: absolute;
        }

        .typewriter .keyboard:before {
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 7px;
            background: linear-gradient(135deg, var(--blue), var(--blue-dark));
            transform: perspective(10px) rotateX(2deg);
            transform-origin: 50% 100%;
        }

        .typewriter .keyboard:after {
            left: 2px;
            top: 25px;
            width: 11px;
            height: 4px;
            border-radius: 2px;
            box-shadow: 15px 0 0 var(--key), 30px 0 0 var(--key), 45px 0 0 var(--key), 60px 0 0 var(--key), 75px 0 0 var(--key), 90px 0 0 var(--key), 22px 10px 0 var(--key), 37px 10px 0 var(--key), 52px 10px 0 var(--key), 60px 10px 0 var(--key), 68px 10px 0 var(--key), 83px 10px 0 var(--key);
            -webkit-animation: keyboard05 var(--duration) linear infinite;
            animation: keyboard05 var(--duration) linear infinite;
        }

@keyframes bounce05 {
    85%, 92%, 100% {
        transform: translateY(0);
    }

    89% {
        transform: translateY(-4px);
    }

    95% {
        transform: translateY(2px);
    }
}

@keyframes slide05 {
    5% {
        transform: translateX(14px);
    }

    15%, 30% {
        transform: translateX(6px);
    }

    40%, 55% {
        transform: translateX(0);
    }

    65%, 70% {
        transform: translateX(-4px);
    }

    80%, 89% {
        transform: translateX(-12px);
    }

    100% {
        transform: translateX(14px);
    }
}

@keyframes paper05 {
    5% {
        transform: translateY(46px);
    }

    20%, 30% {
        transform: translateY(34px);
    }

    40%, 55% {
        transform: translateY(22px);
    }

    65%, 70% {
        transform: translateY(10px);
    }

    80%, 85% {
        transform: translateY(0);
    }

    92%, 100% {
        transform: translateY(46px);
    }
}

@keyframes keyboard05 {
    5%, 12%, 21%, 30%, 39%, 48%, 57%, 66%, 75%, 84% {
        box-shadow: 15px 0 0 var(--key), 30px 0 0 var(--key), 45px 0 0 var(--key), 60px 0 0 var(--key), 75px 0 0 var(--key), 90px 0 0 var(--key), 22px 10px 0 var(--key), 37px 10px 0 var(--key), 52px 10px 0 var(--key), 60px 10px 0 var(--key), 68px 10px 0 var(--key), 83px 10px 0 var(--key);
    }

    9% {
        box-shadow: 15px 2px 0 var(--key), 30px 0 0 var(--key), 45px 0 0 var(--key), 60px 0 0 var(--key), 75px 0 0 var(--key), 90px 0 0 var(--key), 22px 10px 0 var(--key), 37px 10px 0 var(--key), 52px 10px 0 var(--key), 60px 10px 0 var(--key), 68px 10px 0 var(--key), 83px 10px 0 var(--key);
    }

    18% {
        box-shadow: 15px 0 0 var(--key), 30px 0 0 var(--key), 45px 0 0 var(--key), 60px 2px 0 var(--key), 75px 0 0 var(--key), 90px 0 0 var(--key), 22px 10px 0 var(--key), 37px 10px 0 var(--key), 52px 10px 0 var(--key), 60px 10px 0 var(--key), 68px 10px 0 var(--key), 83px 10px 0 var(--key);
    }

    27% {
        box-shadow: 15px 0 0 var(--key), 30px 0 0 var(--key), 45px 0 0 var(--key), 60px 0 0 var(--key), 75px 0 0 var(--key), 90px 0 0 var(--key), 22px 12px 0 var(--key), 37px 10px 0 var(--key), 52px 10px 0 var(--key), 60px 10px 0 var(--key), 68px 10px 0 var(--key), 83px 10px 0 var(--key);
    }

    36% {
        box-shadow: 15px 0 0 var(--key), 30px 0 0 var(--key), 45px 0 0 var(--key), 60px 0 0 var(--key), 75px 0 0 var(--key), 90px 0 0 var(--key), 22px 10px 0 var(--key), 37px 10px 0 var(--key), 52px 12px 0 var(--key), 60px 12px 0 var(--key), 68px 12px 0 var(--key), 83px 10px 0 var(--key);
    }

    45% {
        box-shadow: 15px 0 0 var(--key), 30px 0 0 var(--key), 45px 0 0 var(--key), 60px 0 0 var(--key), 75px 0 0 var(--key), 90px 2px 0 var(--key), 22px 10px 0 var(--key), 37px 10px 0 var(--key), 52px 10px 0 var(--key), 60px 10px 0 var(--key), 68px 10px 0 var(--key), 83px 10px 0 var(--key);
    }

    54% {
        box-shadow: 15px 0 0 var(--key), 30px 2px 0 var(--key), 45px 0 0 var(--key), 60px 0 0 var(--key), 75px 0 0 var(--key), 90px 0 0 var(--key), 22px 10px 0 var(--key), 37px 10px 0 var(--key), 52px 10px 0 var(--key), 60px 10px 0 var(--key), 68px 10px 0 var(--key), 83px 10px 0 var(--key);
    }

    63% {
        box-shadow: 15px 0 0 var(--key), 30px 0 0 var(--key), 45px 0 0 var(--key), 60px 0 0 var(--key), 75px 0 0 var(--key), 90px 0 0 var(--key), 22px 10px 0 var(--key), 37px 10px 0 var(--key), 52px 10px 0 var(--key), 60px 10px 0 var(--key), 68px 10px 0 var(--key), 83px 12px 0 var(--key);
    }

    72% {
        box-shadow: 15px 0 0 var(--key), 30px 0 0 var(--key), 45px 2px 0 var(--key), 60px 0 0 var(--key), 75px 0 0 var(--key), 90px 0 0 var(--key), 22px 10px 0 var(--key), 37px 10px 0 var(--key), 52px 10px 0 var(--key), 60px 10px 0 var(--key), 68px 10px 0 var(--key), 83px 10px 0 var(--key);
    }

    81% {
        box-shadow: 15px 0 0 var(--key), 30px 0 0 var(--key), 45px 0 0 var(--key), 60px 0 0 var(--key), 75px 0 0 var(--key), 90px 0 0 var(--key), 22px 10px 0 var(--key), 37px 12px 0 var(--key), 52px 10px 0 var(--key), 60px 10px 0 var(--key), 68px 10px 0 var(--key), 83px 10px 0 var(--key);
    }
}

/*send mail spinner cs end*/


/*packages section font start*/
.package-section {
    font-family: 'Poppins', sans-serif;
}

    .package-section h2 {
        font-family: 'Playfair Display', serif;
        font-weight: 700;
        font-size: 2.5rem;
        color: #333;
        margin-bottom: 1rem;
    }

    .package-section .text-muted {
        font-size: 1.1rem;
        font-weight: 300;
        max-width: 800px;
        margin: 0 auto 3rem;
    }

.package-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .package-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

.package-info h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.package-info p {
    font-size: 0.9rem;
    color: #666;
}

.package-info .text-danger {
    font-weight: 600;
}

.package-icons {
    margin: 1rem 0;
}

    .package-icons i {
        font-size: 1.2rem;
        color: #ff6b6b;
        margin-right: 0.5rem;
    }

.package-inclusions p {
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
}

.package-inclusions strong {
    font-weight: 600;
}

.price-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: #f8f9fa;
}

    .price-btn span {
        font-size: 1.2rem;
        color: #333;
    }

.enquiry-btn {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
/*    background: linear-gradient(45deg, #ff6b6b, #ff8e53);*/
    border: none;
    border-radius: 25px;
    color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .enquiry-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(255, 107, 107, 0.3);
    }

.discount-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #ff6b6b;
    color: white;
    padding: 0.3rem 0.6rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .package-section h2 {
        font-size: 2rem;
    }

    .package-section .text-muted {
        font-size: 1rem;
    }

    .package-info h5 {
        font-size: 1.1rem;
    }

    .price-btn {
        flex-direction: column;
        align-items: flex-start;
    }

        .price-btn span {
            margin-bottom: 0.5rem;
        }
}
/*packages section font end*/

/*top bar font start*/
.top-bar-wrapper {
    font-family: 'Montserrat', sans-serif;
}
/*topbar font end*/

/*footer font start*/
.footer {
    font-family: 'Poppins', sans-serif;
}

.footer-heading {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.footer p,
.footer-links,
.footer address {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}

.footer-bottom p {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}


/*footer font end*/