:root {
    --safari-gold: #69c02f;
    --forest-green: #2d4628;
    --deep-earth: #1a1a1a;
    --light-cream: #f9f7f2;
--primary-gold: #ffc107;
        --deep-forest: #1a2e1a;
        --glass-bg: rgba(255, 255, 255, 0.1);
        --card-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
--sticky-offset: 100px;

}

body {
    font-family: 'Inter', sans-serif;
    color: var(--deep-earth);
    background-color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    /* font-family: 'Caveat', cursive; */
}

a {
    text-decoration: none;
}

.main-heading {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: #191919;
    font-weight: 700;

}

span {
    color: var(--safari-gold);
}

.sub-heading {
    font-size: 1.4rem;
    color: var(--forest-green);
    font-weight: 600;
}

.box {
    background: #f8f8f8;
    padding: 20px 0;

}

p {
    color: var(--deep-earth);
    text-align: justify;
    font-size: 16px;
    line-height: 1.8rem;
    letter-spacing: 0.6px;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

ul li {

    color: #444;
    margin-bottom: 8px;
}

ul.card-list {
    list-style: none;
    padding: 0;
}

ul.card-list li {
    background: #ffffff;
    padding: 10px 14px;
    border-radius: 8px;
    margin-bottom: 10px;
    border-left: 4px solid #69c02f;

}




.tour-heading {
    font-size: 19px;
    font-weight: 600;

    color: var(--forest-green);
}

.card-heading {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #4B4B4B;
}

.gallary-img {
    width: 100%;
    overflow: hidden;
    border: 2px dotted #000;
    border-radius: 12px;
    height: 240px;
    margin-bottom: 20px;

}

.img-wrap {
    width: 100%;
    overflow: hidden;
    border: #000 dotted 2px;

    border-radius: 20px;
    margin-bottom: 10px;
}

.img-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

/* header page css */

 
        /* Navbar */
        .custom-navbar {
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(12px);
            padding: 10px 0;

        }

        /* Brand */
        .navbar-brand {
            font-weight: 700;
            font-size: 22px;
            color: #000000 !important;
        }

        .navbar-brand i {
            color: #ffc107;
            margin-right: 6px;
        }

        /* Links */
        .nav-link {
            color: #000000 !important;
            margin-left: 20px;
            position: relative;
            font-weight: 600;
            font-size: 16px;
        }

        /* Hover */
        .nav-link:hover {
            color: #262525 !important;
        }

        /* Underline Animation */
        .nav-link::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -6px;
            width: 0%;
            height: 3px;
            background: #ffc107;
            transition: 0.3s;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        /* Active */
        .nav-link.active {
            color: #000000 !important;
        }

        .nav-link.active::after {
            width: 100%;
        }

        /* Scroll Effect */
        .custom-navbar.scrolled {
            background: #000;
            padding: 8px 0;
        }

        .welcome-section {
            background: #000000;
            color: #fff;
            text-align: center;

        }

        .num-links {
            background-color: #ffc107;
        }

        /* Navbar Logo */

        .navbar-brand {
            display: flex;
            align-items: center;
        }

        .navbar-logo {
            height: 60px;
            width: auto;
            object-fit: contain;

        }

        /* Mobile Responsive */
        @media (max-width: 768px) {

            .navbar-logo {
                height: 60px;
            }

            .num-links {
                display: none;
            }
        }

        .welcome-section {
            background: #0b2d1f;
            padding: 6px 0;
            display: none;
            border-top: 1px solid #fff;
            border-bottom: 1px solid #fff;
        }

        .head-box {
            padding: 6px 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 10px;
        }

        /* Phone Number */
        .head-box div a {
            color: #fff;
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
        }

        /* Buttons */
        .tour-btn,
        .safari-btn {
            padding: 6px 14px;
            font-size: 13px;
            font-weight: 600;
            border-radius: 8px;
            color: #fff;
            text-decoration: none;
            display: inline-block;
        }

        /* Different Colors */
        .tour-btn {
            background: linear-gradient(90deg, #ff5f6d, #ff7b54);
        }

        .safari-btn {
            background: linear-gradient(90deg, #56ab2f, #a8e063);
        }

        /* Mobile Only */
        @media (max-width: 767px) {

            .welcome-section {
                display: block;
            }

            .welcome-section .row {
                display: flex;
                flex-direction: row;
            }

            .welcome-section .col-sm-6 {
                width: 50%;
                padding: 0;
            }

            .head-box {
                flex-direction: column;
                justify-content: center;
                text-align: center;
                gap: 5px;

            }

            .welcome-section .col-sm-6:last-child .box {
                border-right: none;
            }

            .head-box div a {
                font-size: 13px;
            }
        }
    





/* home page css */

.hero {
    position: relative;
    height: 60vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.tour {
    position: relative;
    height: 60vh;
    overflow: hidden;

    display: flex;
    justify-content: center;
    align-items: center;
}

.tour-img {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.overlay {
    position: absolute;
    inset: 0;

}

.box-tour-package {
    position: relative;
    padding: 40px 0;
    background: #f8f8f8;
}



.tour-package-card {
    position: relative;
    overflow: hidden;
    border-radius: 3px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);

    background: #fff;

}

.tour-package-card .content {
    padding: 20px;
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
    border-bottom: 5px solid #69c02f;
}

.tour-package-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    border-radius: 3px;
    border-bottom: 2px solid #69c02f;

}


.about-section {
    min-height: 200px;

    background:
        linear-gradient(to right,
            rgba(255, 255, 255, 1) 15%,
            rgba(255, 255, 255, 0.7) 30%,
            rgba(255, 255, 255, 0) 90%),

        url('../images/about-img.png');

    background-size: cover;
    background-position: center;

    padding: 0px;
}

.about-content {
    padding-right: 20px;
}

.custom-card {
    background-color: white;
    border: none;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    position: relative;

    height: 100%;
}

.custom-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;

}

.custom-card .card-content {
    padding: 15px;
    background: white;
    text-align: center;
}

.custom-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--deep-earth);
}

.custom-card a {
    text-decoration: none;
    color: var(--safari-gold);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;

}



.feature-card .icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: rgba(105, 192, 47, 0.1);
    color: var(--safari-gold);
    transition: all 0.3s ease;
}

.feature-card:hover .icon-wrapper {
    background-color: var(--safari-gold);
    color: white;
}


.text-warning {
    color: var(--safari-gold) !important;
}

.btn-warning {
    background-color: var(--safari-gold);
    border-color: var(--safari-gold);
    color: white;
}

.btn-warning:hover {
    background-color: #a6813d;
    border-color: #a6813d;
    color: white;
}

.hero {
    background-attachment: fixed !important;
}

.navbar-brand {
    font-size: 1.5rem;
}

.hotel-card {
    position: relative;
    overflow: hidden;
    border-radius: 25px 0px 30px 30px;
    border: 4px dotted #63e80a;
}

/* Image */
.hotel-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: 0.5s;
}

/* Overlay Content */
.hotel-card .content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 14px;

    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.8),
            transparent);

    color: #fff;
}

/* Heading */
.hotel-card .content h4 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    color: #edebeb;
}



/* Hover Zoom */
.hotel-card .content h4 i {
    color: #6fd12e;

}

.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--safari-gold);
}

.footer {
    background-color: var(--deep-earth);
}

/* Custom Safari Form Styling */
.safari-booking-form {
    padding: 20px;
    background: #fff;
    border-radius: 15px;
}

.form-control:focus {
    border-color: var(--safari-gold);
    box-shadow: 0 0 0 0.25rem rgba(195, 154, 75, 0.25);
}

.tiger-card {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: none;
    border-radius: 20px;
    background: #fff;
    overflow: hidden;
}



.tiger-card .card-img-top {
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
}



.tiger-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--safari-gold);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.tiger-story-content {
    padding: 15px;
}

.tiger-name {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 5px;
    color: var(--deep-earth);
}

.tiger-title {
    color: var(--safari-gold);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.tiger-desc {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 100%;
    padding-left: 60px;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 7px;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #000000, #000000);
}

/* Timeline Item */
.timeline-item {
    position: relative;
    margin-bottom: 25px;
    background: #f4f4f4;
    padding: 15px 18px;

    border-radius: 10px 0px 20px 0px;

}

/* Icon Circle */
.timeline-item::before {
    position: absolute;
    left: -60px;
    top: 15px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
}

/* Icons + Colors */
.timeline-item:nth-child(1)::before {
    content: "📅";
    background: #007bff;
}

.timeline-item:nth-child(2)::before {
    content: "⏰";
    background: #28a745;
}

.timeline-item:nth-child(3)::before {
    content: "🏨";
    background: #ff7e00;
}

.timeline-item:nth-child(4)::before {
    content: "🚙";
    background: #6f42c1;
}

.timeline-item:nth-child(5)::before {
    content: "🎫";
    background: #dc3545;
}

.timeline-item:nth-child(6)::before {
    content: "🧭";
    background: #17a2b8;
}

.timeline-item:nth-child(7)::before {
    content: "🎒";
    background: #343a40;
}

/* Highlight Box */
.highlight-box {
    background: #ddf4c5;
    border-left: 5px solid #69c02f;
    padding: 15px;
    border-radius: 10px;
    margin: 15px 0;
}

/* how to rech  */
/* Default circle */
.timeline-item::before {
    position: absolute;
    left: -79px;
    top: 15px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 38px;

}

/* Train */
.timeline-item.train::before {
    content: "🚆";
    background: #007bff;
}

/* Air */
.timeline-item.air::before {
    content: "✈️";
    background: #28a745;
}

/* Road */
.timeline-item.road::before {
    content: "🚗";
    background: #ff7e00;
}


/* Wrapper */
.table-wrap {
    overflow-x: auto;
    margin: 20px 0;
}

/* Table */
.custom-table {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
    border-radius: 10px;
    overflow: hidden;
}

/* Header */
.custom-table thead {
    background: linear-gradient(135deg, var(--safari-gold), var(--forest-green));
}

.custom-table th {
    color: #fff;
    font-weight: 600;
    text-align: center;
    padding: 14px;
    font-size: 16px;
    border: 1px solid #ddd;
}

/* Body */
.custom-table td {
    padding: 12px;
    text-align: center;
    border: 1px solid #ddd;
    font-size: 15px;
    color: #333;
}

/* Zebra Rows */
.custom-table tbody tr:nth-child(even) {
    background: var(--light-cream);
}

.custom-table tbody tr:nth-child(odd) {
    background: #ffffff;
}

/* Hover Effect */
.custom-table tbody tr:hover {
    background: #edffea;

}

/* First Column (Month) Bold */
.custom-table td:first-child {
    font-weight: 500;
}

/* Responsive */
@media (max-width: 600px) {

    .custom-table th,
    .custom-table td {
        padding: 10px;
        font-size: 13px;
    }
}

.policy-section {
    background: #f8f8f8;
}

.title-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.title-divider span {
    width: 120px;
    height: 2px;
    background: #d5a24c;
}

.title-divider i {
    color: #d5a24c;
    font-size: 20px;
}

.policy-wrapper {
    background: #ffffff;

    border-radius: 2%;
    padding: 10px;
}

.policy-item {
    padding: 15px 0;
    border-bottom: 1px dashed #ddd;
}

.icon-box {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #faf5ec;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box i {
    font-size: 28px;
    color: #c7892d;
}




@media(max-width:768px) {
    .hero {
        height: 24vh;
    }

    .main-heading {
        font-size: 1.25rem;
    }

    .sub-heading {
        font-size: 1.1rem;
    }


    .policy-item {
        text-align: center;
    }

    .content-box {
        padding-left: 0;
        margin-top: 20px;
    }

    .content-box::before {
        display: none;
    }


    /* Hotel Filter Styles */
    .filter-select {
        border-radius: 8px;
        padding: 0.75rem 1rem;
        border: 1px solid #e0e0e0;
        font-weight: 500;
        transition: all 0.3s ease;
        cursor: pointer;
        background-color: #fff;
    }

    .filter-select:focus {
        border-color: #a3c1ff;
        box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.1);
        outline: none;
    }

    .filter-select:hover {
        border-color: #c0c0c0;
    }

    #noResults {
        animation: fadeIn 0.5s ease-in;
    }

}

.list-content {
    background: #fff;
    padding: 10px;
    border-radius: 12px;
    border: 2px solid #69c02f;
}

.box-geo {
    background: #69c02f21;

    padding: 30px 0;
}


.rt-cta-box {
    position: relative;
    padding: 20px 25px;

    overflow: hidden;
    background:
        linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)),
        url('assets/images/amazing-bengal-tigers-nature.jpg');

    background-size: cover;
    background-position: center;

}

.rt-cta-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rt-cta-list li {
    margin-bottom: 10px;
}

.rt-cta-list li:last-child {
    margin-bottom: 0;
}

.rt-cta-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 10px;
    border-radius: 12px;

    background: rgba(255, 255, 255, 0.06);

}

.rt-cta-list a:hover {
    background: #f59e0b;
    color: #fff;
}

.rt-cta-list a i {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;

}

.rt-cta-list a:hover i {
    background: #fff;
    color: #f59e0b;
}

@media(max-width:991px) {

    .rt-cta-box {
        padding: 20px 15px;
    }

    .rt-cta-list {
        margin-bottom: 15px;
    }

    .rt-cta-list a {
        font-size: 15px;
        padding: 9px 12px;
    }
}


.gallery-section {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: auto;
}

.main-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

/* Floating Images */
.floating-img {
    position: absolute;
    background: #fff;
    padding: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.floating-img img {
    width: 100%;
    display: block;
}

/* Top Image */
.top-img {
    width: 220px;
    top: 30px;
    left: 30px;
}

/* Bottom Image */
.bottom-img {
    width: 220px;
    bottom: 30px;
    right: 30px;
}

.box-best-time {
    background: #def9de90;
    padding: 20px;

}

.best-time-container {
    border-radius: 12px;
    border: 2px solid #69c02f;
    padding: 20px;
}

.about-tiger {
    margin-top: 43px;
    border-radius: 1px 20px 0px 30px;
    overflow: hidden;
    border: 2px solid #69c02f;

}

about-tiger img {
    width: 100%;
}

.box-how-to-reach {

    padding: 20px;

}

.box-places-to-visit {
    background: #f8f5ef;
}

/* Card */
.place-card {
    background: #fff;
    border-radius: 0px 25px 0px 25px;
    overflow: hidden;
    border: 2px dotted #69c02f;
    height: 100%;
    padding: 5px;
    text-align: center;
    /* content center */
}

/* Icon Circle */
.place-icon {
    width: 90px;
    height: 90px;
    background: #69c02f;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    border-radius: 10%;
    font-size: 38px;
    margin-top: 20px;
}

/* Content */
.place-content {
    padding: 20px;
}

.place-content p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.5px;
    color: #3d3d3d;
    text-align: justify;
}


/* Bottom Content */
.tour-package-content {
    background: #fff;
    padding: 20px;
    border-left: 5px solid #69c02f;
    border-radius: 14px;

}



/* Mobile */
@media(max-width:768px) {

    .place-card img {
        height: 220px;
    }

    .about-tiger{
    margin-top: 10px;
}


    .place-content {
        padding: 16px;
    }



}

/* FAQ */
.accordion-button::after {
    display: none;
}

.custom-accordion-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-icon {
    font-size: 18px;
    color: #69c02f;
    transition: 0.4s;
}

/* Open State */
.accordion-button:not(.collapsed) .faq-icon {
    transform: rotate(45deg);
}

/* FAQ Section */
.faq-section {
    background: #f8fafc;
    padding: 30px 0;
}

/* Accordion Item */
.custom-faq .accordion-item {
    border: 1px solid #dbe3ea;
    border-radius: 12px !important;
    overflow: hidden;
    margin-bottom: 18px;
    background: #fff;
    transition: 0.3s;
}

/* Active Border */
.custom-faq .accordion-item:has(.accordion-button:not(.collapsed)) {
    border: 1px solid #4caf50;
    box-shadow: 0 5px 20px rgba(76, 175, 80, 0.08);
}

/* Accordion Button */
.custom-faq .accordion-button {
    background: #fff;
    font-size: 17px;
    font-weight: 700;
    color: #020202;
    padding: 22px 24px;
    box-shadow: none !important;
    border: none;
}

/* Remove Bootstrap Default Icon */
.custom-faq .accordion-button::after {
    display: none;
}

/* Plus Icon */
.custom-faq .accordion-button .faq-plus {
    margin-left: auto;
    font-size: 28px;
    font-weight: 700;
    color: #2e7d32;
    transition: 0.3s;
}

/* Rotate Icon On Open */
.custom-faq .accordion-button:not(.collapsed) .faq-plus {
    transform: rotate(45deg);
}

/* Accordion Body */
.custom-faq .accordion-body {
    font-size: 15px;
    line-height: 28px;
    color: #5b6470;
    padding: 0 24px 22px 24px;
    background: #fff;
}


/* Mobile Responsive */
@media(max-width:991px) {

    .faq-section {
        padding: 20px 0;
    }

    .custom-faq .accordion-item {
        margin-bottom: 14px;
    }

    .custom-faq .accordion-button {
        font-size: 14px;
        padding: 16px;
        line-height: 24px;
    }

    .custom-faq .accordion-body {
        font-size: 13px;
        line-height: 24px;
        padding: 0 16px 18px 16px;
    }

    .custom-faq .accordion-button .faq-plus {
        font-size: 22px;
    }

}

/* Blog Section Redesign */
.box-blog {
    background-color: #fcfaf5;
}

.blog-card {
    border: none;
    background: transparent;
    position: relative;
    margin-bottom: 40px;
}

.blog-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 10px;

    z-index: 1;
}

.blog-card img {
    height: 220px;
    /* Reduced from 350px */
    width: 100%;
    object-fit: cover;

}

.blog-content-overlap {
    background: #fff;
    margin: -30px 20px 0;
    /* Adjusted overlap */
    padding: 20px;
    border-radius: 5px;
    position: relative;
    z-index: 2;
}

.blog-category {
    display: inline-block;
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.blog-read-time {
    font-size: 0.75rem;
    color: #888;
    margin-bottom: 8px;
    display: block;
}

.blog-card .btn-warning {
    color: #fff;
    font-weight: 700;
    padding: 6px 20px;
    font-size: 0.85rem;
    border-radius: 20px 20px 0px 20px;

}

.blog-date-badge {
    position: absolute;
    top: 4px;
    /* reduced */
    left: 4px;
    /* reduced */
    background: rgba(255, 255, 255, 0.9);
    padding: 3px 4px;

    border-radius: 6px;

    text-align: center;
    z-index: 3;
    color: #0e0e0e;
}

.blog-date-badge .day {
    display: block;
    font-size: 0.9rem;

    font-weight: 700;
    line-height: 1;
}

.blog-date-badge .month {
    font-size: 0.55rem;

    line-height: 1;

}

box-history {
    background: #f8f1e4;
    padding: 30px 0;
}

/* online safari booking */

.safari-info {
    background: #ffffff;
    padding: 20px;
    border-radius: 20px 40px 20px 0px;
    border: 2px solid #69c02f;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.safari-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.safari-list li {
    position: relative;
    padding: 14px 18px 14px 50px;
    margin-bottom: 15px;
    background: #fff8ef;
    border-left: 5px solid #d4a017;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);

}

.safari-list li::before {
    content: "✔";
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    background: #d4a017;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.safari-img-box {
    position: relative;
    width: 250px;
    overflow: hidden;
}

.safari-img-box img {
    width: 100%;
    height: 270px;
    object-fit: cover;
    display: block;
}

/* White Border Frame */
.safari-img-box::after {
    content: "";
    position: absolute;
    top: 18px;
    left: 18px;
    right: 18px;
    bottom: 18px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    pointer-events: none;
}

/* Left Image Design */
.left-img {
    background: var(--safari-gold);
    padding: 12px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 92%);
}

/* Right Image Design */
.right-img {
    background: #d9dac4;
    padding: 12px;
    margin-left: 20px;
    clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%, 0 8%);
}

/* Responsive */
@media (max-width: 768px) {

    .safari-img-box {
        width: 100%;
    }

    .right-img {
        margin-left: 0;
    }

    .safari-img-box img {
        height: 476px;

    }

  .hide-mobile{
        display: none;
    }
}

.section-safari-top {
    background: #f8f1e4;
    padding: 30px 0;
}

.table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
    background: #fff;
}

.table thead {
    background: var(--forest-green);
    color: #fff;
}

.table th,
.table td {
    padding: 15px;
    border: 1px solid #000000;
    font-size: 15px;

}

.table tbody tr:hover {
    background: rgba(105, 192, 47, 0.08);
}

/* =========================
   BOOKING CARD
========================= */
.card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
}

.card-body {
    padding: 25px;
    background: #fff;
}


.cal-header-panel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--forest-green);
    color: #fff;
    padding: 16px 18px;
    border-radius: 12px 12px 0 0;
}

.cal-header-panel h4 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.cursor-pointer {
    cursor: pointer;
    transition: 0.3s;
}

.cursor-pointer:hover {
    color: var(--safari-gold);
}

/* 
   DAYS HEADER */
.days-grid-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background: rgba(105, 192, 47, 0.12);
}

.days-grid-header div {
    padding: 12px 0;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--forest-green);
    border: 1px solid #e8e8e8;
}

/* DATES GRID */
.dates-grid-body {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
    padding: 12px;
    background: #fff;
    border: 1px solid #eee;
}

.dates-grid-body div {
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    color: var(--deep-earth);
    transition: 0.3s;
}

.dates-grid-body div:hover {
    background: var(--safari-gold);
    color: #fff;
    transform: translateY(-2px);
}

/*  FORM AREA */
.booking-fields-area {
    margin-top: 20px;
}

.nationality-selection {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.nationality-selection label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: var(--deep-earth);
    cursor: pointer;
}

/* 
   INPUT GRID
 */
.input-row-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.input-row-grid input,
.input-row-grid select {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid #d9d9d9;
    border-radius: 10px;
    outline: none;
    background: #fff;
    font-size: 14px;
    color: var(--deep-earth);
    transition: 0.3s;
}

.input-row-grid input:focus,
.input-row-grid select:focus {
    border-color: var(--safari-gold);
    box-shadow: 0 0 0 3px rgba(105, 192, 47, 0.15);
}

.grid-col-full {
    grid-column: span 2;
}

/* =========================
   ALERT BOX
 */
#closureMsgBox {
    margin-top: 18px;
    padding: 12px;
    border-radius: 10px;
    background: rgba(255, 193, 7, 0.12);
    border: 1px solid rgba(255, 193, 7, 0.3);
    color: #856404;
    display: none;
}

/* 
   BUTTON
 */
.submit-booking-btn {
    width: 100%;
    margin-top: 20px;
    padding: 14px;
    border: none;
    border-radius: 10px;
    background: var(--safari-gold);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s;
}

.submit-booking-btn:hover {
    background: var(--forest-green);
    transform: translateY(-2px);
}

/*
   RESPONSIVE
 */
@media (max-width: 768px) {

    .main-heading {
        font-size: 24px;
    }

    .input-row-grid {
        grid-template-columns: 1fr;
    }

    .grid-col-full {
        grid-column: span 1;
    }

    .days-grid-header div,
    .dates-grid-body div {
        font-size: 12px;
    }

    .cal-header-panel h4 {
        font-size: 16px;
    }

    .card-body {
        padding: 18px;
    }
}



/* ENQUIRY CARD */
.enquiry-card {
    background: linear-gradient(135deg, #1f4d2e, #2e7d32);
    color: #fff;
}

/* INPUTS */
.custom-input {
    border-radius: 12px;
    border: none;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.95);
    font-size: 14px;
    box-shadow: none !important;
    transition: 0.3s ease;
}

.custom-input:focus {
    border: none;

    background: #fff;
}

/* TEXTAREA */
.custom-textarea {
    height: 110px;
    resize: none;
}

/* BUTTON */
.submit-btn {
    background: #ffb703;
    color: #000;
    border: none;
    padding: 12px 45px;
    border-radius: 0px;
    font-weight: 600;
    transition: 0.3s ease;
}

.submit-btn:hover {
    background: #fff;

}

/* INFO CARD */
.info-card {
    background: #fff;
}

/* SIDE MENU */
.side-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.side-menu li {
    margin-bottom: 12px;
    border-bottom: 2px dotted #2e7d32;
}

.side-menu li:last-child {
    margin-bottom: 0;
}

.side-menu li a {
    text-decoration: none;
    color: #333;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 2px;
    transition: 0.3s ease;
    background: #f8f9fa;

}

.side-menu li a:hover {
    background: #2e7d32;
    color: #fff;

}

.side-menu li a i {
    color: #69c02f;
    font-size: 14px;
}

.side-menu li a:hover i {
    color: #fff;
}


/* =========================
   FOOTER DESIGN
========================= */

footer {
    background: linear-gradient(155deg, var(--deep-earth), var(--forest-green));
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Top Border */
footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--safari-gold);
}

/* Footer Heading */
footer h5 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 22px !important;
    color: var(--safari-gold);
    position: relative;
}

/* Underline Effect */
footer h5::after {
    content: "";
    width: 45px;
    height: 3px;
    background: var(--safari-gold);
    position: absolute;
    left: 0;
    bottom: -8px;
    border-radius: 10px;
}

/* Paragraph */
footer p {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.8;
    font-size: 16px;
}

/* Footer Links */
footer ul li {
    margin-bottom: 12px;
}

footer ul li a {
    color: rgba(255, 255, 255, 0.82) !important;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Hover */
footer ul li a:hover {
    color: var(--safari-gold) !important;

}

/* Icons */
footer ul li i {
    color: var(--safari-gold);

}

/* Contact Info */
footer .fa-map-marker-alt,
footer .fa-phone,
footer .fa-envelope {
    font-size: 16px;
}

/* Divider */
footer hr {
    border-color: rgba(255, 255, 255, 0.12);
    margin: 20px 0;
}

/* Bottom Area */
.footer-bottom {
    text-align: center;
    padding-top: 10px;
}

.footer-bottom p {
    margin-top: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* Disclaimer Box */
.disclaimer-box {
    margin-top: 18px;
    padding: 15px 18px;
    background: rgba(255, 255, 255, 0.06);
    border-left: 2px solid var(--safari-gold);
    border-radius: 2px;
    font-size: 14px;
    line-height: 1.8;
}

/* Responsive */
@media (max-width: 768px) {

    footer {
        text-align: center;
    }

    footer h5::after {
        left: 50%;
        transform: translateX(-50%);
    }

    footer ul li a {
        justify-content: center;
    }

    .disclaimer-box {
        text-align: left;
    }
}



/* =========================
   CONTACT SECTION
========================= */





.contact-info-box .top-text {
    color: #666;
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 35px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
    padding: 22px;
    border-radius: 16px;
    background: rgba(105, 192, 47, 0.06);
}

/* Content Full Width */
.contact-item>div:last-child {
    flex: 1;
}


/* Icon */
.icon-box {
    width: 65px;
    height: 65px;
    min-width: 65px;
    border-radius: 50%;
    background: rgba(105, 192, 47, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c9891f;
    font-size: 24px;
}

/* Phone Active Style */
.contact-item.active-contact .icon-box {
    background: var(--forest-green);
    color: #fff;
}

.contact-item:hover .icon-box {
    background: var(--forest-green);
    color: #fff;
}


/* Divider */
.contact-info-box hr {
    margin: 35px 0;
    border-color: rgba(0, 0, 0, 0.08);
}

/* Follow Us */
.social-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--forest-green);
    margin-bottom: 18px;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 14px;
}

.social-icons a {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid var(--safari-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--safari-gold);
    font-size: 18px;
    transition: 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    background: var(--forest-green);
    border-color: var(--forest-green);
    color: #fff;
    transform: translateY(-4px);
}

/* Responsive */
@media (max-width: 768px) {

    .contact-info-box {
        padding: 25px;
    }

    .contact-info-box h3 {
        font-size: 28px;
    }

    .contact-item {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* =========================
   FACILITIES SECTION
========================= */

.facilities-section {
    background: #fff;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}

/* List */
.facility-list {
    margin: 0;
    padding: 0;
}

/* Item */
.facility-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    margin-bottom: 14px;
    border-radius: 14px;
    background: rgba(105, 192, 47, 0.05);
    transition: 0.3s ease;
    font-size: 17px;
    font-weight: 500;
    color: var(--deep-earth);
}

/* Hover */
.facility-list li:hover {
    background: rgba(105, 192, 47, 0.12);

}

/* Icons */
.facility-list li i {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    background: rgba(105, 192, 47, 0.14);
    color: var(--forest-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;

}

/* Icon Hover */
.facility-list li:hover i {
    background: var(--forest-green);
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {

    .facilities-section {
        padding: 22px;
    }

    .facilities-section .sub-heading {
        font-size: 28px;
    }

    .facility-list li {
        font-size: 15px;
        padding: 12px;
    }
}

/* blogs css */

.blog-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    overflow: hidden;

}

/* Header */
.blog-table thead {
    background: #2d7a32;
    color: #fffF;
}

.blog-table th {
    padding: 16px 20px;
    font-size: 20px;
    font-weight: 600;
    text-align: left;
}

/* Body */
.blog-table td {
    padding: 16px 20px;
    font-size: 18px;
    border-bottom: 1px solid #6d6d6d;
}

/* Date Column Width */
.blog-table th:first-child,
.blog-table td:first-child {
    width: 180px;
    white-space: nowrap;
}

/* Link */
.blog-table td a {
    color: var(--deep-earth);
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.blog-table td a:hover {
    color: var(--forest-green);
    padding-left: 4px;
}

/* Hover only on odd rows */
.blog-table tbody tr:nth-child(odd):hover {
    background: rgba(105, 192, 47, 0.08);
}

/* OR */

/* Hover only on even rows */
.blog-table tbody tr:nth-child(even):hover {
    background: rgba(105, 192, 47, 0.08);
}

/* Hover only on odd rows */
.blog-table tbody tr:nth-child(odd) {
    background: rgba(255, 255, 255, 0.08);
}

/* OR */

/* Hover only on even rows */
.blog-table tbody tr:nth-child(even) {
    background: rgb(241, 255, 233);
}




 /* Package Cards */
    .package-card {
        border: none;
        border-radius: 20px;
        overflow: hidden;
        background: #fff;
        box-shadow: var(--card-shadow);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        height: 100%;
        position: relative;
    }



    .package-img-wrapper {
        position: relative;
        height: 250px;
        overflow: hidden;
    }

    .package-img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

    .duration-badge {
        position: absolute;
        top: 15px;
        left: 15px;
        background: var(--safari-gold);
        color: white;
        padding: 5px 15px;
        border-radius: 50px;
        font-weight: 600;
        font-size: 0.85rem;
        z-index: 2;
    }

    .package-body {
        padding: 25px;
    }

    .package-body h3 {
        font-size: 1.4rem;
        font-weight: 700;

        color: var(--deep-earth);
    }

    .highlights {
        display: flex;
        gap: 15px;
        margin-bottom: 10px;
        flex-wrap: wrap;
    }

    .highlight-item {
        font-size: 0.85rem;
        color: #666;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .highlight-item i {
        color: var(--safari-gold);
    }

    .price-box {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-top: 1px solid #eee;
        padding-top: 20px;
    }

    .starting-at {
        font-size: 0.8rem;
        color: #888;
        display: block;
    }

    .price {
        font-size: 1.5rem;
        font-weight: 800;
        color: var(--safari-gold);
    }

    /* Inquiry Section */
    .inquiry-section {
        background: linear-gradient(rgba(45, 70, 40, 0.9), rgba(45, 70, 40, 0.9)), url('assets/images/amazing-bengal-tigers-nature.jpg');
        background-attachment: fixed;
        background-size: cover;
        padding: 80px 0;
        color: white;
    }

    .glass-form {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        padding: 40px;
        border-radius: 20px;
    }

    






    
    .hotel-tag {
        background: #c58b2b;
        color: white;
        padding: 5px 15px;
        border-radius: 50px;
        font-weight: 600;
        font-size: 0.9rem;
        display: inline-block;
        margin-bottom: 15px;
    }

    .facilities-section {
        background: #fff;
        border-radius: 12px;
        padding: 30px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        border: 1px solid #eee;
    }

    .facility-list li {
        font-size: 1rem;
        color: #444;
        font-weight: 500;
        margin-bottom: 12px;
    }

    .gallery-thumb {
        width: 100px;
        height: 70px;
        object-fit: cover;
        border-radius: 8px;
        cursor: pointer;
        transition: 0.3s;
        border: 3px solid transparent;
        opacity: 0.7;
    }

    .gallery-thumb.active {
        border-color: #007bff;
        opacity: 1;
    }

    .gallery-thumb:hover {
        opacity: 1;
    }

    @media(max-width:991px) {
        .booking-sidebar {
            margin-top: 40px;
        }
    }


.faq-item {
    border: 1px solid #d6d6d6;
    border-radius: 6px;
    margin-bottom: 12px;
    overflow: hidden;
    background: #fff;
}

/* Question */
.faq-question {
    background: #414441;
    color: #fff;
    padding: 14px 18px;
    font-size: 16px;
    font-weight: 600;
}

/* Answer Always Open */
.faq-answer {
    padding: 15px 18px;
    background: #f7f7f7;
    border-top: 1px solid #e5e5e5;
}

.faq-answer p {
    margin: 0;
    color: #444;
    line-height: 1.8;
    font-size: 15px;
}

/* Mobile */
@media (max-width: 767px) {

    .faq-question {
        font-size: 15px;
        padding: 12px 15px;
    }

    .faq-answer {
        padding: 12px 15px;
    }

    .faq-answer p {
        font-size: 14px;
    }
}