:root{
    /* COLORS */
    --cream-color: #ffecd6;
    --dark-green-color: #64a137;
    --deep-blue-color: #006cb7;
    --deep-brown-color: #a78356;
    --light-green-color: #a4cf57;
    --sky-color: #28c1de;
    --orange-color: #f47a44;
    --red-color: #d82c25;
    --light-brown-color: #dc7a57fa;
    --pink-color: #f08ab6;

    --white-color: #ffffff;
    --black-color: #000000;
    --gray-color: #808080;
    --light-gray-color: #e6e6e6;
    --dark-gray-color: #333333;

    --success-color: #2ecc71;
    --warning-color: #f1c40f;
    --danger-color: #e74c3c;
    --info-color: #3498db;

    /* FONT WEIGHTS */
    --font-weight-100: 100;
    --font-weight-200: 200;
    --font-weight-300: 300;
    --font-weight-400: 400;
    --font-weight-500: 500;
    --font-weight-600: 600;
    --font-weight-700: 700;
    --font-weight-800: 800;
    --font-weight-900: 900;
    --font-weight-bold: bold;
    --font-weight-bolder: bolder;

    /* FONT SIZES (PX → REM) */
    --font-size-10px: 0.625rem;   /* 10px */
    --font-size-12px: 0.75rem;    /* 12px */
    --font-size-14px: 0.875rem;   /* 14px */
    --font-size-16px: 1rem;       /* 16px */
    --font-size-18px: 1.125rem;   /* 18px */
    --font-size-20px: 1.25rem;    /* 20px */
    --font-size-24px: 1.5rem;     /* 24px */
    --font-size-32px: 2rem;       /* 32px */
    --font-size-40px: 2.5rem;     /* 40px */
    --font-size-48px: 3rem;       /* 48px */

    /* SPACING (PX → REM) */
    --space-5px: 0.3125rem;       /* 5px */
    --space-10px: 0.625rem;       /* 10px */
    --space-15px: 0.9375rem;      /* 15px */
    --space-20px: 1.25rem;        /* 20px */
    --space-30px: 1.875rem;       /* 30px */
    --space-40px: 2.5rem;         /* 40px */

    /* BORDER RADIUS (PX → REM) */
    --border-radius-4px: 0.25rem;       /* 4px */
    --border-radius-8px: 0.5rem;        /* 8px */
    --border-radius-12px: 0.75rem;      /* 12px */
    --border-radius-20px: 1.25rem;      /* 20px */
    --border-radius-round: 50%;         /* unchanged */

    /* SHADOWS */
    --shadow-sm: 0 0.0625rem 0.1875rem rgba(0,0,0,0.1);  /* 1px 3px */
    --shadow-md: 0 0.1875rem 0.375rem rgba(0,0,0,0.15);  /* 3px 6px */
    --shadow-lg: 0 0.625rem 1.25rem rgba(0,0,0,0.2);      /* 10px 20px */
    --special-shadow: 2px 2px 3px #a8a6a6;

    /* TRANSITIONS */
    --transition-fast: 0.2s ease-in-out;
    --transition-normal: 0.4s ease-in-out;
    --transition-slow: 0.7s ease;

    /* Z INDEX */
    --z-index-1: 1;
    --z-index-10: 10;
    --z-index-100: 100;
    --z-index-500: 500;
    --z-index-1000: 1000;
}

body{
    font-family: "IBM Plex Sans", sans-serif;
    padding: 0px;
    margin: 0px;
    background-color: var(--cream-color);
}
header{
    padding: 0.625rem 0;    
    position: fixed;
    left: 0;
    right: 0;
    z-index: var(--z-index-1000);
    /* transition:all 0.35s ease-in-out; */

    transition:
        padding 0.35s ease-in-out,
        background-color 0.35s ease-in-out,
        border-color 0.35s ease-in-out,
        box-shadow 0.35s ease-in-out;
}
header.scrolled{
    padding: 0;
    background-color: var(--cream-color);
    border-bottom: 1px solid #dadce0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}
.header_outter_div{
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 3rem;
    background-color: var(--cream-color);
    padding: 0.2rem 3rem;
}
.header_image_div img{
    width: 5.25rem;
}
.header_nav_ul{
    display: flex;
    padding: 0px;
    margin: 0px;
    align-items: center;
    justify-content: center;
    list-style-type: none;
}
.header_nav_ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    color: var(--dark-green-color)!important;
    padding: 1rem;
    position: relative;
}
.header_nav_ul li a::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0%;
    height: 5px;
    background-color: var(--dark-green-color);
    transition: all  var(--transition-normal);
}

.header_nav_ul li a:hover::after {
    width: 100%;
} 
.header_book_now_button a{
    background-color: var(--dark-green-color);
    border-radius: 3rem;
    padding: 0.61rem 1.3rem;
    text-decoration: none;
    color: var(--cream-color);
    font-weight: var(--font-weight-500);
    transition: all  var(--transition-normal);
}
.header_book_now_button a:hover{
    background-color: #497926;  
    box-shadow: var(--special-shadow);
}

.header_nav_li{
            position: relative;
        }
        .dropdown_menu {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: var(--white-color);
            min-width: 220px;
            border-radius: 0.5rem;
            box-shadow: 0 8px 16px rgba(0,0,0,0.15);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all var(--transition-normal);
            padding: 0.5rem 0;
            margin-top: 0.5rem;
        }

        .header_nav_ul li:hover .dropdown_menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown_menu li {
            list-style: none;
        }

        .dropdown_menu li a {
            display: block;
            padding: 0.75rem 1.5rem;
            color: var(--dark-gray-color);
            text-decoration: none;
            transition: all var(--transition-fast);
            font-weight: var(--font-weight-400);
        }

        .dropdown_menu li a::after {
            display: none;
        }

        .dropdown_menu li a:hover {
            background-color: var(--cream-color);
            color: var(--dark-green-color);
            padding-left: 2rem;
        }
        .hamburger_menu{
            display: none;
        }
        .offcanvas{
            max-width: 80%;
            background-color: var(--cream-color);
        }
        .offcanvas-header{
            border-bottom: 2px solid var(--deep-blue-color);
        }
        .offcanvas-body{
            padding: 0px;
            position: relative;
        }
        .mobile_nav_item{
            margin-top: 0.5rem;
        }
        .mobile_nav_item .mobile_nav_link{
            width: 100%;
            display: flex;
            padding: 0.5rem 0.7rem;
            
            
            text-decoration: none;
            align-items: center;
            justify-content: space-between;
            background-color: #64a13773;
            color:var(--black-color)
        }
         .collapse_menu{
            display: flex;
            flex-direction: column;
            padding: 0.5rem 0rem 0.5rem 2rem;
            gap: 0.2rem;
        }
        .mobile_nav_item a{
            text-decoration: none;
            color: black;
        }
        .mobile_book_button{
            display: flex;
            align-items: center;
            justify-content: center;
            position: absolute;
            bottom: 25px;
            left: 12%;
        }
        .mobile_book_button a{
            padding: 0.7rem 3.5rem;
            background-color: var(--dark-green-color);
            border-radius: 30px;
            color: var(--cream-color);
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            font-weight: bold;
        }
        @media (max-width: 360px) {
            .hamburger_menu{
                display: flex;
            }
            .header_nav_div{
                display: none;
            }
            .header_book_now_button{
                display: none;
            }
            .header_image_div img {
                width: 4.25rem;
            }
            .header_outter_div{
                padding: 0.2rem 1.5rem;
            }
        }


        @media (max-width: 575.98px) {
            .hamburger_menu{
                display: flex;
            }
            .header_nav_div{
                display: none;
            }
            .header_book_now_button{
                display: none;
            }
            .header_image_div img {
                width: 4.25rem;
            }
            .header_outter_div{
                padding: 0.2rem 1.5rem;
            }
        }


        @media (min-width: 576px) and (max-width: 767.98px) {
            .hamburger_menu{
                display: flex;
            }
            .header_nav_div{
                display: none;
            }
            .header_book_now_button{
                display: none;
            }
            .header_image_div img {
                width: 4.25rem;
            }
            .header_outter_div{
                padding: 0.2rem 1.5rem;
            }
        }

        @media (min-width: 769px) and (max-width: 991.98px) {

        }

/* ++++++++++++++++++++++++++++++++++++++++++++++ */

.hero_section{
    height: 100vh;
    background-image: url("../images/hero_image.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.hero_inner_div {
    
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        180deg, 
        rgba(255, 236, 214, 0.6) 0%,    /* cream at top for text readability */
        rgba(6, 108, 183, 0.25) 50%,   /* deep blue transparent in middle */
        rgba(100, 161, 55, 0.35) 100%  /* dark green at bottom for depth */
    );
}
.hero_overlay{
    
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 90%;
    height: 100%

}
.hero_inner_div h1{
    font-size: 6rem;
    font-weight: var(--font-weight-700);
    color: var(--white-color);
    text-shadow: 2px 2px 6px rgba(0,0,0,0.4);
    text-align: center;
}
.hero_inner_div p{
    color: white;
    margin: 0px;
    font-size: 2rem;
    max-width: 80%;
    text-align: center;
}


@media (max-width: 360px) {
    .hero_section{
        height: 80vh;
    }
    .hero_overlay{
        align-items: flex-start;
    }
    .hero_inner_div h1{
        font-size: 2.5rem;
        text-align: left;
    }
    .hero_inner_div p{
        font-size: 1rem;
        text-align: left;
    }
}


@media (max-width: 575.98px) {
        .hero_section{
        height: 80vh;
    }
    .hero_overlay{
        align-items: flex-start;
    }
    .hero_inner_div h1{
        font-size: 2.5rem;
        text-align: left;
    }
    .hero_inner_div p{
        font-size: 1rem;
        text-align: left;
    }
}


@media (min-width: 576px) and (max-width: 767.98px) {
    .hero_section{
        height: 80vh;
    }
    .hero_overlay{
        align-items: flex-start;
    }
    .hero_inner_div h1{
        font-size: 4.5rem;
        text-align: left;
    }
    .hero_inner_div p{
        font-size: 1.5rem;
        text-align: left;
    }
}

@media (min-width: 769px) and (max-width: 991.98px) {
    .hero_section{
        height: 70vh;
    }
    .hero_inner_div h1{
        font-size: 4.5rem;
        text-align: center;
    }
}
/* ============================================================================= */

.slide_item img{
    width: 100%;
}

@media (max-width: 360px) {

}


@media (max-width: 575.98px) {

}


@media (min-width: 576px) and (max-width: 767.98px) {

}

@media (min-width: 769px) and (max-width: 991.98px) {

}

/* ------------------------------------------------------------------------------ */


.our_location_section{
    background-color: var(--deep-blue-color);
}
.ol_inner_div{
    padding: 2rem 0rem;
}
.ol_heading{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.ol_heading p{
    margin: 0px;
}
.ol_heading .sub_heading{
    color: var(--light-green-color);
    font-size: var(--font-size-24px);
    font-weight: var(--font-weight-700);
}
.ol_heading .heading{
    font-size: var(--font-size-32px);
    font-weight: var(--font-weight-bold);
    color:var(--cream-color)
}
.ol_card{
    margin-top: 2rem;
}
.slider_card{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 384px;
    margin-right: 1rem;
    padding: 1rem;
}
.slider_card a{
    text-decoration: none;
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 1.3rem;
}
.slider_card img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all  var(--transition-normal);
}
.slider_card_overlay{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.45) 40%,
        rgba(0, 0, 0, 0.15) 70%,
        rgba(0, 0, 0, 0) 100%
    );
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: column;
    padding: 1rem;

}
.slider_card a:hover img{
    transform: scale(1.1);
}
.slider_card_overlay p{ 
    margin: 0px;
    color: white;
}
.slider_card_overlay .slider_card_heading{
    font-size: 1.5rem;
    color: white;
    font-weight: bold;
}
.slider_card a:hover .slider_card_heading{
    color:var(--cream-color);
}

.ol_view_div{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top:2rem;
}
.ol_view_all_div a{
    padding: 0.8rem 4rem;
    background-color: var(--dark-green-color);
    border-radius: 12px;
    color: var(--cream-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all var(--transition-normal);
}
.ol_view_all_div a:hover{
    background-color: #497926;
}

@media (max-width: 360px) {
    .ol_heading .heading {
        text-align: center;
    }
}


@media (max-width: 575.98px) {
    .ol_heading .heading {
        text-align: center;
    }
    .slider_card{
        padding: 0px;
        padding-inline: 3px;
    }
}


@media (min-width: 576px) and (max-width: 767.98px) {
    .ol_heading .heading {
        text-align: center;
    }
    .slider_card{
        padding: 0px;
        padding-inline: 3px;
    }
}

@media (min-width: 769px) and (max-width: 991.98px) {

}
/* ------------------------------------------------------------------------------ */


.customize_section{
    background-color: #f5f5dc;
    overflow: hidden;
    position: relative;
}
.cs_inner_div{
    display: flex;
    align-items: center;
    padding: 5rem 0rem;
}
.cs_content_div{
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-evenly;
}
.cs_content_div p{
    margin: 0px;
}
.cs_content_div .sub_heading{
    text-transform: uppercase;
    color: var(--light-green-color);
    font-weight: var(--font-weight-500);
}
.cs_content_div .heading{
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 3.2rem;
}
.cs_content_div .text{
    font-size: 1.125rem;
    line-height: 1.75rem;
}
.cs_content_div a{
    padding: 1rem 1.5rem;
    background-color: var(--dark-green-color);
    border-radius: 12px;
    color: var(--cream-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 1rem;
    transition: all  var(--transition-normal);
}
.cs_content_div a:hover{
    background-color: #497926;  
    box-shadow: var(--special-shadow);
}
.cs_image_div{
    width: 50%;
    position: absolute;
    right: 0;
    overflow: hidden;
    height:100%;
}



@media (max-width: 360px) {
    .cs_inner_div{
        flex-direction: column;
            padding: 2rem 0rem;
    }
    .cs_content_div{
        align-items: center;
        width: 100%;
    }
    .cs_content_div .heading {
        font-size: 2.1rem;
    }
    .cs_image_div{
        display: none;
    }

}


@media (max-width: 575.98px) {
    .cs_inner_div{
        flex-direction: column;
            padding: 2rem 0rem;
    }
    .cs_content_div{
        align-items: center;
        width: 100%;
    }
    .cs_content_div .heading {
        font-size: 2.1rem;
    }
    .cs_image_div{
        display: none;
    }
}


@media (min-width: 576px) and (max-width: 767.98px) {
    .cs_inner_div{
        flex-direction: column;
            padding: 2rem 0rem;
    }
    .cs_content_div{
        align-items: center;
        width: 100%;
    }
    .cs_content_div .heading {
        font-size: 2.1rem;
    }
    .cs_image_div{
        display: none;
    }
}

@media (min-width: 769px) and (max-width: 991.98px) {

}

/* ------------------------------------------------------------------------------------- */

.tour_section_outter_div{
    display: flex;
    flex-direction: column;
}
.ts_heading_outter_div{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.ts_heading p{
    margin: 0px;
}
.ts_sub_heading_text{
    text-transform: uppercase;
    color: var(--light-green-color);
    font-weight: var(--font-weight-500);
}
.ts_heading_text{
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 3.2rem;
}
.slider-btn{
    cursor: pointer;
}
.slider-btn svg {
    fill: none;
    stroke: var(--dark-green-color);
    transition: 0.5s;
}
.slider_buttons{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}
.ts_card_inner_div{
    display: grid;
    grid-template-columns: 24% 24% 24% 24%;
    gap: 1%;
    padding: 2rem 0rem;
}
.ts_card{
    display: flex;
    flex-direction: column;
    height:390px;
    background: #fff;
    border-radius: 16px;
    border:1px solid #e5e7eb;
    margin: 0.5rem;
}
.ts_card_image{
    position: relative;
    height: 66%;
}
.ts_tag{
    position: absolute;
    top: 10px;
    left: 14px;
    
    padding: 0.1rem 0.3rem;
    border-radius: 3px;
    
    font-size: 0.8rem;
}
.ts_tag.green{
    background-color: #2E8B57;
    color: white;
}
.ts_tag.solo{
    background-color: var(--cream-color);
    color: black;
}
.ts_tag.ocean{
    background-color: var(--deep-blue-color);
    color: white;
}
.ts_card_image img{
    width: 100%;
    object-fit: cover;
    object-position: center;
    height: 100%;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}
.ts_card_content{
    padding: 0.5rem 0.7rem;
    border-bottom: 1px solid #e5e7eb;
}
.ts_card_content h3{
    font-size: 1.3rem;
    font-weight: bold;
    margin: 0px;
}
.ts_card_content p{
    font-size: 0.875rem;
    line-height: 1.25rem;
    margin: 0px;
    color:#6b7280;
}
.ts_card_price{
    padding: 0.5rem 0.7rem;
}
.ts_card_price{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    
}
.ts_card_price .price{
    margin: 0px;
    font-weight: bold;
}
.ts_card_price a{
    text-decoration: none;
    color: var(--dark-green-color);
    font-weight: bold;
}
.ts_card_price a:hover{
    color: #497926;
}
.ts_view_div{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top:2.5rem;
}
.ts_view_all_div a{
    padding: 0.8rem 4rem;
    background-color: var(--dark-green-color);
    border-radius: 12px;
    color: var(--cream-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all var(--transition-normal);
}
.ts_view_all_div a:hover{
    background-color: #497926;
    box-shadow: var(--special-shadow);
}


@media (max-width: 360px) {
    .ts_heading_outter_div{
        flex-direction: column;
    }
    .tour_section_outter_div{
        gap: 10px;
    }
    .ts_heading p{
        text-align: center;
    }
    .ts_card{
        margin: 0px;
        margin-inline: 3px;
    }
    .ts_tour_card_div  .container-fluid{
        padding: 0px;
    }
}


@media (max-width: 575.98px) {
    .ts_heading_outter_div{
        flex-direction: column;
    }
    .tour_section_outter_div{
        gap: 10px;
    }
    .ts_heading p{
        text-align: center;
    }
    .ts_card{
        margin: 0px;
        margin-inline: 3px;
    }
    .ts_tour_card_div  .container-fluid{
        padding: 0px;
    }
}


@media (min-width: 576px) and (max-width: 767.98px) {
    .ts_heading_outter_div{
        flex-direction: column;
    }
    .tour_section_outter_div{
        gap: 10px;
    }
    .ts_heading p{
        text-align: center;
    }
    .ts_card{
        margin: 0px;
        margin-inline: 3px;
    }
    .ts_tour_card_div  .container-fluid{
        padding: 0px;
    }
}

@media (min-width: 769px) and (max-width: 991.98px) {

}

/* ------------------------------------------------------------------------------------- */

.latest_news_journal{
    background-color: var(--deep-blue-color);
    height: 26rem;
}
.lnj_outter_div{
    display: flex;
    gap: 2rem;
}
.news_outter_div{
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    padding: 2rem 0rem;
}
.lnj_add_div{
    width:40%;
    padding: 2rem 0rem;
}
.lnj_scroll_div{
    overflow-y: scroll;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    scrollbar-width: none;
}
.lnj_heading{
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 700;
    color: var(--cream-color);
    position: relative;
}
.lnj_heading:before{
    content: "";
    position: absolute;
    height: 2rem;
    width: 0.4rem;
    left: -10px;
    background-color: var(--cream-color);
    border-radius: 1rem;
}
.inj_add_card{
    background: var(--cream-color);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    flex-direction: column;
    padding: 1rem;
    gap:10px;
}
.inj_emoji{
    border-radius: 50%;
    background-color: var(--deep-blue-color);
    padding: 1rem;
    width: 7rem;
    height: 7rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.inj_emoji img{
    width: 100%;
}
.inj_add_card p{
    margin: 0px;
    text-align: center;
}
.inj_add_card a{
    color: var(--light-green-color);
    text-decoration: none;
    font-weight: var(--font-weight-600);
}
.inj_add_card a:hover{
    color:#497926;
}
.lnj_card{
    height: 100%;
    display: flex;
    background-color: var(--cream-color);
    border-radius: 1rem;
    gap: 20px;
    padding: 0.7rem
}
.lnj_card img{
    width: 12rem;
    border-radius: 0.7rem;
    height: 7rem;
}
.inj_card_outter_div{
    
}
.inj_card_tag{
    font-size: 0.85rem;
    line-height: 1rem;
    font-weight: bold;
}
.inj_card_tag.company_news{
    color: var(--dark-green-color);
}
.inj_card_tag.travel_guide{
    color: var(--deep-blue-color);
}
.lnj_card h5{
    margin: 0px;
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: bold;   
}
.lnj_card p{
    margin: 0px;
    font-size: 0.875rem;
    line-height: 1.25rem;
}
.inj_card_link a{
    color: var(--light-green-color);
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    justify-content: flex-start;
    gap: 10px;
    align-items: center;
    font-weight: bold;
}
.inj_card_link a:hover{
    color:#497926;
}




@media (max-width: 360px) {
    .latest_news_journal{
        height: auto;
    }
    .lnj_outter_div{
        flex-direction: column;
        gap: 0px;
    }
    .lnj_add_div{
        width: 100%;
        padding-bottom: 0px;
    }
    .inj_add_card{
        flex-direction: column;
    }
    .lnj_card img{
        width: 100%;
        height: 12rem;
    }
}


@media (max-width: 575.98px) {
    .latest_news_journal{
        height: auto;
    }
    .lnj_outter_div{
        flex-direction: column;
        gap: 0px;
    }
    .lnj_add_div{
        width: 100%;
        padding-bottom: 0px;
    }
    .lnj_card{
        flex-direction: column;
    }
    .lnj_card img{
        width: 100%;
        height: 12rem;
    }
}


@media (min-width: 576px) and (max-width: 767.98px) {
    .latest_news_journal{
        height: auto;
    }
    .lnj_outter_div{
        flex-direction: column;
        gap: 0px;
    }
    .lnj_add_div{
        width: 100%;
        padding-bottom: 0px;
    }
    .lnj_card{
        flex-direction: column;
    }
    .lnj_card img{
        width: 100%;
        height: 12rem;
    }
}

@media (min-width: 769px) and (max-width: 991.98px) {

}




























































/* ------------------------------------------------------------------ */

footer{
    background-color: #f5f5dc;
    margin-top: 3rem;
}
.footer_inner_div{
    display: flex;
    align-items: flex-start;
    /* justify-content: space-evenly; */
    padding: 2rem 0rem;
}
.footer_detail_div{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
    justify-content: flex-start;
    width: 45%;
}
.footer_brand_div img{
    width: 5rem;
    border-radius: 7px;
}
.footer_text_div p{
    margin: 0px;
    width: 65%;
    text-align: justify;
}
.footer_social_links ul{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    list-style-type: none;
    padding: 0px;
    margin: 0px;
}
.footer_social_links ul li a{
    padding: 0.8rem 1rem;
    display: flex;
    text-decoration: none;
    color: white;
    background-color: black;
    border-radius: 7px;
}
.footer_quick_links{
    width: 27.5%;
}
.footer_ql_heading h5{
    font-weight: 600;
}
.footer_ql_div ul{
    padding-left: 11px;
    margin: 0;
    list-style-type: none;
}
.footer_ql_div ul li{
    margin-bottom: 0.4rem;
}
.footer_ql_div ul li a{
    text-decoration: none;
    color: black;
}
.footer_ql_div ul li a:hover{
    text-decoration: underline;
}
.footer_contact{
    width: 27.5%;
}
.footer_contact_div ul{
    list-style-type: none;
    padding: 0px;
    margin: 0px;
    padding-left: 11px;
}
.footer_contact_div ul li{
    margin-bottom: 0.4rem;
}
.footer_contact_div ul li a{
        text-decoration: none;
        color: black;
}
.footer_contact_div ul li a:hover{
    text-decoration: underline;
}
.footer_contact_div ul li a i{
    margin-right: 0.5rem;
}
.bottom_footer{
    border-top: 1px solid;
}
.bottom_footer p{
    margin: 0;
    padding: 0.5rem 2rem;
    text-align: center;
}


@media (max-width: 360px) {
    .footer_inner_div{
        flex-direction: column;
        gap:20px;
    }
    .footer_detail_div{
        width: 100%
    }
    .footer_quick_links{
        width: 100%;
    }
    .footer_contact{
        width: 100%;
    }
    .footer_text_div p{
        width: 100%;
    }
}
@media (max-width: 575.98px) {
    .footer_inner_div{
        flex-direction: column;
        gap:20px;
    }
    .footer_detail_div{
        width: 100%
    }
    .footer_quick_links{
        width: 100%;
    }
    .footer_contact{
        width: 100%;
    } 
    .footer_text_div p{
        width: 100%;
    }  
}
@media (min-width: 576px) and (max-width: 767.98px) {

}

@media (min-width: 769px) and (max-width: 991.98px) {

}

/* ------------------------------------------------ */

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 90px;
    height: 90px;
    z-index: 9999;
    cursor: pointer;
}

.whatsapp-float img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    transition: transform 0.3s ease;
    border:3px solid #cea222;
}

.whatsapp-float:hover img {
    transform: scale(1.1);
}

/* Mobile adjustment */
@media (max-width: 600px) {
.whatsapp-float {
    width: 60px;
    height: 60px;
    bottom: 15px;
    right: 15px;
}
}
.cs_img_div{
    height:100%
}
.cs_img_div img{
    height:100%;
    width:100%;
    max-width:100%;
    object-fit:cover;
}

/* ================================================================= */



.enquiry-float {
        position: fixed;
        bottom: 30px;
        right: 30px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        padding: 15px 25px;
        border-radius: 50px;
        display: flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
        box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
        z-index: 999;
        transition: all 0.3s ease;
        animation: pulse 2s infinite;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        font-weight: 600;
        font-size: 15px;
    }
    
    .enquiry-float:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 30px rgba(102, 126, 234, 0.6);
        animation: none;
    }
    
    .enquiry-float svg {
        width: 24px;
        height: 24px;
    }
    
    @keyframes pulse {
        0%, 100% {
            transform: scale(1);
        }
        50% {
            transform: scale(1.05);
        }
    }
    
    /* Panel */
    .enquiry-panel {
        position: fixed;
        bottom: -100%;
        right: 30px;
        width: 420px;
        max-width: calc(100vw - 40px);
        background: white;
        border-radius: 20px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        z-index: 1000;
        transition: bottom 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        max-height: 90vh;
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }
    
    .enquiry-panel.active {
        bottom: 30px;
    }
    
    .enquiry-header {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        padding: 20px 25px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-radius: 20px 20px 0 0;
    }
    
    .enquiry-header h3 {
        margin: 0;
        font-size: 20px;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        font-weight: 600;
    }
    
    .enquiry-close {
        background: rgba(255, 255, 255, 0.2);
        border: none;
        color: white;
        font-size: 28px;
        width: 35px;
        height: 35px;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        line-height: 1;
    }
    
    .enquiry-close:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: rotate(90deg);
    }
    
    .enquiry-content {
        padding: 25px;
        overflow-y: auto;
        max-height: calc(90vh - 80px);
    }
    
    .enquiry-content::-webkit-scrollbar {
        width: 6px;
    }
    
    .enquiry-content::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }
    
    .enquiry-content::-webkit-scrollbar-thumb {
        background: #667eea;
        border-radius: 10px;
    }
    
    /* Form */
    .enquiry-form {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group label {
        display: block;
        margin-bottom: 8px;
        color: #333;
        font-weight: 500;
        font-size: 14px;
    }
    
    .enquiry-input,
    .enquiry-select,
    .enquiry-textarea {
        width: 100%;
        padding: 12px 15px;
        border: 2px solid #e0e0e0;
        border-radius: 10px;
        font-size: 14px;
        transition: all 0.3s ease;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        box-sizing: border-box;
    }
    
    .enquiry-input:focus,
    .enquiry-select:focus,
    .enquiry-textarea:focus {
        outline: none;
        border-color: #667eea;
        box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    }
    
    .enquiry-select {
        cursor: pointer;
        background: white;
    }
    
    .enquiry-textarea {
        resize: vertical;
        min-height: 100px;
    }
    
    .enquiry-submit {
        width: 100%;
        padding: 15px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        border: none;
        border-radius: 10px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    
    .enquiry-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
    }
    
    .error {
        color: #e74c3c;
        font-size: 12px;
        margin-top: 5px;
        display: block;
    }
    
    /* Success Message */
    .success-message {
        text-align: center;
        padding: 30px 20px;
    }
    
    .success-message svg {
        color: #27ae60;
        margin-bottom: 20px;
    }
    
    .success-message h4 {
        color: #27ae60;
        font-size: 24px;
        margin: 0 0 15px 0;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    
    .success-message p {
        color: #555;
        font-size: 15px;
        line-height: 1.6;
        margin: 0;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    
    /* Overlay */
    .enquiry-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .enquiry-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    /* Responsive */
    @media (max-width: 768px) {
        .enquiry-float {
            bottom: 20px;
            right: 20px;
            padding: 12px 20px;
            font-size: 14px;
        }
        
        .enquiry-float span {
            display: none;
        }
        
        .enquiry-panel {
            right: 20px;
            width: calc(100vw - 40px);
        }
        
        .enquiry-panel.active {
            bottom: 20px;
        }
        
        .enquiry-header h3 {
            font-size: 18px;
        }
        
        .enquiry-content {
            padding: 20px;
        }
    }
    
    @media (max-width: 480px) {
        .enquiry-float {
            bottom: 15px;
            right: 15px;
            padding: 12px;
        }
        
        .enquiry-panel {
            right: 10px;
            left: 10px;
            width: auto;
            max-width: none;
        }
        
        .enquiry-panel.active {
            bottom: 15px;
        }
        
        .enquiry-content {
            padding: 15px;
        }
    }

        
/* ------------------------------------------------------------------------------------------------- */


@media (max-width: 360px) {

}


@media (max-width: 575.98px) {

}


@media (min-width: 576px) and (max-width: 767.98px) {

}

@media (min-width: 769px) and (max-width: 991.98px) {

}