.custom-ul-1 {
    list-style: none;
    margin: 0;
    padding: 0;
}

.custom-ul-1 li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 100;
    color: #000000;
}

/* Arrow Box */
.custom-ul-1 li::before {
    content: "➜"; /* Stylish thin arrow */
    position: absolute;
    left: 0;
    top: 5px;
    width: 24px;
    height: 24px;
    background: #d99a00; /* Mustard orange */
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px; /* Soft rounded */
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.custom-hr {
    border: none;
    height: 2px;
    background: #d99a00;
    position: relative;
    margin: 30px 0;
}

.custom-hr::after {
    content: "";
    position: absolute;
    left: 50%;
    top: -4px;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background: #d99a00;
    border-radius: 50%;
}

.small-heading {
    font-size: 18px;
    color: #333;
    position: relative;
    padding-left: 14px;
    margin-bottom: 5px;
}

.small-heading::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #d99a00; /* mustard */
    border-radius: 2px;
}

.ol-circle {
    list-style: none;
    counter-reset: number;
    padding-left: 0;
}

.ol-circle li {
    counter-increment: number;
    margin-bottom: 12px;
    padding-left: 38px;
    position: relative;
    font-weight: 100;
    color: #000000;
}

.ol-circle li::before {
    content: counter(number);
    position: absolute;
    left: 0;
    top: 0;
    width: 26px;
    height: 26px;
    background: #fff;
    border: 2px solid #d99a00;
    color: #d99a00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
}


.form-margin {
    margin-top: -200px !important;
}

/* Tablets (768px and below) */
@media (max-width: 768px) {
    .form-margin {
        margin-top: -120px !important;
    }
}

/* Large mobile phones (576px and below) */
@media (max-width: 576px) {
    .form-margin {
        margin-top: -60px !important;
    }
}

/* Small phones (420px and below) */
@media (max-width: 420px) {
    .form-margin {
        margin-top: -60px !important;
    }
}

/* Very small screens (360px and below) */
@media (max-width: 360px) {
    .form-margin {
        margin-top: -10px !important;
    }
}

.sub-heading {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    padding-left: 12px;
    border-left: 4px solid #d99a00; /* mustard */
    margin-bottom: 12px;
}


.dark-text{
    color: #000000 !important;
}

.bold-text{
    font-weight: 600;
}

.max-width p{
    max-width: 100% !important;

}
.about-info-area::after{
    content: none !important;
}

.pTag{
    line-height: 1.6;        /* normal readable line height */
    padding: 10px 15px;      /* top/bottom = 10px, left/right = 15px */
    color: #111;             /* dark gray/near-black text color */
    font-weight: 100;
}

/*buttons section css*/
.action-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.btn-action {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.btn-action .arrow {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

/* Default colors */
.call-btn {
    background: #0cb857;     /* green */
}

.book-btn {
    background: #ff6b00;     /* orange */
}

/* Hover — both become black with white text */
.btn-action:hover {
    background: #000;
    color: #fff;
}

.btn-action:hover .arrow {
    transform: translateX(5px);
}


/*images section css*/

.image-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    padding: 20px 0;
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    display: block;
}

/* Tablets (4 → 2 images per row) */
@media(max-width: 900px) {
    .image-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile (2 → 1 image per row) */
@media(max-width: 500px) {
    .image-gallery {
        grid-template-columns: 1fr;
    }
}


/* Container must be relative so the button stays inside the image area */
.tour-package-thumb {
    position: relative;
    overflow: hidden; /* Keeps the button from leaking out if you have rounded corners */
}

/* The WhatsApp Icon Styling */
.wa-image-link {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 10;
    background-color: #25d366;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.wa-image-link img {
    width: 22px !important; /* Forces icon size */
    height: 22px !important;
}

/* Hover Effect */
.wa-image-link:hover {
    transform: scale(1.15);
    background-color: #128c7e;
}

/* Mobile Friendly: make it slightly smaller on small screens */
@media (max-width: 768px) {
    .wa-image-link {
        width: 30px;
        height: 30px;
        top: 8px;
        left: 8px;
    }
    .wa-image-link img {
        width: 18px !important;
        height: 18px !important;
    }
}

 /* Scoped styles using specific class names */
        .unique-stat-bar-wrapper {
            width: 100%;
            padding: 20px 10px;
            display: flex;
            justify-content: center;
        }

        .unique-stat-container {
            background-color:  #FF9933; /* Dark teal background to make #d99a00 pop */
            border-radius: 100px; /* pill shape */
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            max-width: 1100px;
            overflow: hidden; /* Clips the image to the border radius */
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            position: relative;
        }

        .unique-stat-content {
            display: flex;
            flex: 1;
            justify-content: space-around;
            align-items: center;
            padding: 15px 40px;
        }

        .unique-stat-item {
            text-align: center;
            color: #ffffff;
        }

        .unique-stat-number {
            margin: 0;
            font-size: 2.2rem;
            font-weight: 800;
            /*color: #0d2c33;*/
            color: #ffffff;
            line-height: 1;
        }

        .unique-stat-label {
            margin: 5px 0 0;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            opacity: 0.9;
            color: #ffffff;
        }

       .unique-stat-divider {
    width: 1px;
    height: 50px;
    /*background: rgba(255, 255, 255, 0.3); */
    background: #ffffff; /* White divider */
}


        .unique-stat-image-box {
            width: 300px;
            height: 120px;
            position: relative;
        }

        .unique-stat-image-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            /* Creating the curved cut-out effect on the left of the image */
            clip-path: ellipse(100% 100% at 100% 50%);
        }

        /* RESPONSIVE DESIGN */

        /* Medium Screens */
        @media (max-width: 992px) {
            .unique-stat-image-box {
                width: 200px;
            }
            .unique-stat-number {
                font-size: 1.8rem;
            }
        }

        /* Small Screens (Mobile) */
        @media (max-width: 768px) {
            .unique-stat-container {
                flex-direction: column;
                border-radius: 30px;
                padding-bottom: 0;
            }

            .unique-stat-content {
                flex-direction: column;
                gap: 20px;
                padding: 30px;
            }

            .unique-stat-divider {
                width: 60px;
                height: 1px;
            }

            .unique-stat-image-box {
                width: 100%;
                height: 150px;
            }

            .unique-stat-image-box img {
                clip-path: none; /* Remove clip on mobile for better visibility */
            }
        }
        
        /* Makes all titles take up the same space even if text is short */
.tour-package-content .title {
    min-height: 75px; /* Adjust this value based on your longest title */
    display: flex;
    align-items: center;
    justify-content: center;
}