/* -------------------------------------------------------------
   V-SQUARE HOLIDAYS - Style Sheets Configuration
   Colors: Navy (#0a1c3a), Orange (#ff9000), Warm Cream (#fafaf9)
------------------------------------------------------------- */

/* Root tokens */
:root {
    --color-navy: #D6A330;
    --color-navy-light: #162a4a;
    --color-orange: #D7A330;
    --color-orange-dark: #D7A330;
    --color-bg-cream: #fafaf9;
    --color-bg-white: #ffffff;
    --color-text-dark: #012765;
    --color-text-gray: #7f8c8d;
    --color-text-light: #95a5a6;
    --color-border: #eaeded;
 /*   --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;*/
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 15px 35px rgba(10, 28, 58, 0.1);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.25s ease;
}



/* Reset and Core Settings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 18px;
    background-color: var(--color-bg-cream);
    color: var(--color-text-dark);
    /*  font-family: var(--font-body);*/
    font-family: "Be Vietnam Pro", sans-serif;
}

body {
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    font-size: 18px;
  font-family: "Be Vietnam Pro", sans-serif;
    font-weight: 300;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f2f6;
}

::-webkit-scrollbar-thumb {
    background: var(--color-navy);
    border-radius: 5px;
    border: 2px solid #f1f2f6;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-orange);
}

section {
    padding: 60px 0px;
    overflow: hidden;
}

/* General Layouts */
.container {
    margin: 0 auto;
    position: relative;
    max-width: 1600px;

    position: relative;
    z-index: 1;
}

.container-fluid{
    width:100%;
    padding:0;
}


a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

p {
    margin-bottom: 1.5em;
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.6;
    color: #222;
}

button,
select,
input,
textarea {
    font-family: inherit;
}

/* Global Typography & Tags */
h1,
h2,
h3,
h4,
h5,
h6 {
    /* font-family: var(--font-heading); */
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.25;
}

.orange-tag {
    /* font-family: var(--font-heading); */
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--color-orange);
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 10px;
}


.dark-title {
    font-size: 2.5rem;
    color: var(--color-navy);
    font-weight: 800;
}

.accent-orange {
    color: var(--color-orange);
}

.subtitle {
   font-family: "Kaushan Script", cursive;
    
    font-size: 40px;
    color: #000;
    margin-bottom: 10px;
   line-height: 50px;
    font-weight: 600;
    display: inline-block;
}


.maintitle {
    font-size: 48px;
    font-weight: 700;
    color: #000;
    margin-bottom: 14px;
    line-height: 60px;
    margin: 0 0 16px;
}
.maintitle-inner{font-size: 42px;}
.title-inner{}

/* Section Header Configurations */
.section-header-center {
    text-align: center;
     margin-bottom: 40px; 
}

.heading-underline {
    width: 70px;
    height: 4px;
    background-color: var(--color-orange);
    margin: 15px auto 0 auto;
    border-radius: 2px;
}

.section-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

/* Standard Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    transition: var(--transition-smooth);
    padding: 15px 30px;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    /*line-height: normal;*/
    line-height: 20px;
    background-color: #012765;color: #fff;
}

/*.btn-default {
    text-transform: uppercase;
    padding: 15px 25px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}*/

.btn-grey {
    background-color: #e6e4e4;
    color: #031636;
}


.btn-orange {
    background-color: var(--color-orange);
    color: var(--color-bg-white);
}

.btn-orange:hover {
    background-color: var(--color-navy);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 144, 0, 0.2);
}

.btn-white {
    background-color: var(--color-bg-white);
    color: var(--color-navy);
}

.btn-white:hover {
    background-color: var(--color-orange);
    color: var(--color-bg-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.15);
}

.btn-navy {
    background-color: var(--color-navy);
    color: var(--color-bg-white);
}
.btn-whatsapp{  background-color: #05C335;
    color: var(--color-bg-white);}
.btn-submit{font-size: 18px;font-weight: 300;}

.btn-navy:hover {
    background-color: var(--color-orange);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(10, 28, 58, 0.2);
}
.btn:hover{ transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(10, 28, 58, 0.2);}

.btn-block {
    width: 100%;
}

.icon-right {
    margin-left: 10px;
}

/* -------------------------------------------------------------
   Top Social Ribbon Bar
------------------------------------------------------------- */
.fixed-header .top-bar {
    display: none;
}

.header-bar {
    height: 58px;
    width: 100%;
    background: linear-gradient(130deg, transparent 58%, #f7931a 58%);
    background-position-x: 0%, 0%;
    background-position-y: 0%, 0%;
    background-size: auto, auto;
    background-size: cover;
    background-position: left center;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 40px;
    margin-top: 15px;


}

.social-icons {
    display: flex;
    gap: 30px;
}

.social-icons a {
    color: #fff;
    font-size: 22px;
    text-decoration: none;
    transition: 0.3s;
}

/* .contact-details {
    display: flex;
    align-items: center;
}

.contact-details span {
    margin-right: 15px;
}

.contact-details i {
    color: var(--color-orange);
    margin-right: 6px;
} */

.top-bar .separator {
    color: rgba(255, 255, 255, 0.2);
    margin-right: 15px;
}

.social-ribbon {
    display: flex;
    gap: 18px;
    background-color: var(--color-orange);
    height: 100%;
    padding: 0 40px 0 30px;
    align-items: center;
    transform: skewX(-14deg);
    margin-right: -30px;
    /* Offset margin to line up with edge */
}

.social-ribbon a {
    color: var(--color-bg-white);
    transform: skewX(14deg);
    /* Keep icons perfectly upright */
    font-size: 0.88rem;
}

.social-ribbon a:hover {
    color: var(--color-navy);
}

/* -------------------------------------------------------------
   Premium Header Navigation
------------------------------------------------------------- */

header {
    position: relative;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;background: #132048;
    /*  
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);*/
}


.header-menu{background: #0D2160; padding: 7px 0px;}




.fixed-header {
    position: fixed !important;
    top: 0 !important;
    left: 0;
    right: 0;
    box-shadow: 0 5px 5px #0003;
    background-color: #fff !important;
    z-index: 9999;
    animation: 1s .1s fadeInDown both;
}

.fixed-header .container {
    /* max-width: 100%; */
}


.fixed-header .logo img {
    max-height: 62px;
}

/* header .container {
    text-align: right;
    display: flex;
    justify-content: space-between;
    align-items: center;
} */



.mainHeader {
    background-color: #fff;
    position: sticky;
    top: 0;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 0 0px 0px;
}



/* --------------------------------------------------------
       1. Top Header Bar (Location, Email, Socials)
       -------------------------------------------------------- */

.topbar {
    background: #fff;
    padding: 20px 0px 20px 0px;
   
}


    .top-header-bar {
        background: #ffffff;
        padding: 10px 0 6px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    }

    .top-header-bar .container-fluid {
        padding-left: 30px;
        padding-right: 35px;
    }

    .top-header-content {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: 50px;
    }

    .top-header-info {
        display: flex;
        align-items: center;
        gap: 28px;
    }

    .top-info-item {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        color: #012765;
        font-size: 16px;
        font-weight: 500;
    }

    .top-info-item i {
        color: var(--st-text-dark);
        font-size: 20px;
    }

    .top-info-item a {
        color: var(--st-text-dark);
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: color 0.25s ease;
    }

    .top-info-item a:hover {
        color: #ca9523;
    }

    .top-info-item a:hover i {
        color: #ca9523;
    }

    .top-social-links {
        display: flex;
        align-items: center;
        gap: 27px;
        padding-left: 10px;
    }

    .top-social-links a {
        color: var(--st-text-dark);
        font-size: 20px;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        transition: all 0.25s ease;
    }

    .top-social-links a:hover {
        color: #ca9523;
        transform: translateY(-2px);
    }


/* Correct skew inside logo so text is upright */



.logo-box {
    background: #fff;
    padding: 0px 35px 0px 5%;
   /* clip-path: polygon(0 0, 93% 0, 100% 50%, 93% 100%, 0 100%);*/
}


.logo {

    display: flex;
    flex-direction: column;
    justify-content: center;
}

/*.logo img{max-height: 100px;}*/
.logo img{max-height: 100%;}



.brand-square {
    color: var(--color-navy);
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
}

.sub-logo {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.4em;
    color: var(--color-orange);
    margin-top: -3px;
    text-transform: uppercase;
    text-align: right;
}

/* Navigation Links */
.nav-menu {
    display: flex;
    align-items: center;
}

/* Semantic ul wrapper */
.nav-list {
    display: flex;
    align-items: center;
    gap: 34px;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Each li item */
.nav-item {
    /* display: flex;
    align-items: center; */
}

.nav-link {
    color: rgba(255, 255, 255, 0.85);
   /* padding: 8px 24px;*/
    position: relative;
    display: block;font-weight: 400;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-orange);
    
}

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

.btn-book-nav {
    background: transparent;
    color: var(--color-bg-white);
    border: 2px solid var(--color-bg-white);
    padding: 10px 22px;
    border-radius: 4px;
    /* Slightly rounded block corners like design */
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-left: 10px;
    transition: var(--transition-fast);
}

.btn-book-nav:hover {
    background-color: var(--color-orange);
    border-color: var(--color-orange);
    color: var(--color-bg-white);
}

.btn-book-nav::after {
    display: none;
}

/* Mobile drawer trigger button */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: auto;
}

.mobile-nav-toggle .bar {
    display: block;
    width: 28px;
    height: 3px;
    margin: 6px 0;
    background-color: #0a1c39;
    transition: var(--transition-smooth);
}

#menubtn {
   order: 3;
    margin-left: 0;
color: #0a1c39;font-size: 24px;
    
    padding: 0;
    cursor: pointer;
   /*
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .02em;
    width: 40px;
    text-align: center;*/
}
#menubtn {
    display: none;
}

@media only screen and (max-width: 992px) {
  #menubtn {
    display: inline-block;
    float: right;
  }
}


/* -------------------------------------------------------------
   Floating Search Board
------------------------------------------------------------- */
/* .search-board-container {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 30;
    width: 100%;
} */


/* .search-board-container {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 30;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(6px);
    padding: 8px;
    border-radius: 16px;
    max-width: 1200px;
    margin: 0 auto;
} */

.search-board-container {
    position: absolute;
    bottom: -55px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 30;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.search-board {
    background-color: var(--color-bg-white);
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.25);
    display: grid;
    grid-template-columns: 140px 1fr 1fr 1fr 200px;
    gap: 15px;
    padding: 30px 40px;
    align-items: flex-end;
    border-bottom: none;
    background: #FFFFFF;
    border-radius: 20px;
    padding: 40px 20px;align-items: center;
}
.inqu-text{font-size: 18px;font-weight: 400;color: #222;text-transform: uppercase;}

.search-field {
    display: flex;
    flex-direction: column;
}

.search-field input, .search-field select {
    padding: 0px 14px;
    background-color: #fff;
    color: var(--color-text-dark);
    width: 100%;
    outline: none;
    transition: var(--transition-fast);
    line-height: 20px;
    height: 52px;
    border: 1px solid #A8A8A8;
    border-radius: 10px;font-size: 16px;
}
.search-field input:focus,
.search-field select:focus {
    border-color: var(--color-orange);
    background-color: var(--color-bg-white);
}

.btn-search {
    background-color: #05C335;
    color: var(--color-bg-white);
    font-size: 18px;
    font-weight: 500;
    padding: 16px 15px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    line-height: 20px;
}

.btn-search:hover {
    background-color: var(--color-navy);
}



/* -------------------------------------------------------------
   About Us & Polaroid Photo Collage Section
------------------------------------------------------------- */
.about-section {
   background: linear-gradient(180deg, #FFFFFF 0%, #F0F0F0 62.08%);
    background-size: cover;
    border-bottom: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;padding: 100px 0px 60px 0px;
}


/*.about-section::after {
    position: absolute;
    width: 406px;
    height: 541px;
    background: url(../images/shape.png);
    background-size: 100%;
    bottom: -50px;
    right: 80px;
    content: '';
    background-repeat: no-repeat;
}
*/
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 60px;
    align-items: center;
}


 /* Mission Vision */

        .about-box {
            width: 100%;
            min-height: 83px;
           border: 0.6px solid rgba(0, 53, 102, 0.53);
border-radius: 20px;
            padding: 18px 27px;
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 16px;
        }
        /* Frame 2568 */


        .about-icon {
            width: 72px;
            height: 72px;
            min-width: 72px;            
            display: flex;
            align-items: center;
            justify-content: center;
          
        }

  
        .about-box-content p {
           /* color: #555555;
            font-size: 16px;
            line-height:26px;
            padding-top: 10px;margin: 0;*/
        }


  .about-images {
            position: relative;
            width: 100%;
            height: 430px;
        }

        .about-img {
            position: absolute;
            overflow: hidden;
        }

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

        /* Left image */

        .about-img-left {
            width: 365px;
            height: 541px;
            left: 5px;
            top: 0;
           box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.25);
border-radius: 100px 20px;
background: #AF5C5C;


            z-index: 1;
        }


        /* Right image */

        .about-img-right {
             width: 365px;
    height: 541px;
            right: 0;
            bottom: 0;
            background: #AF5C5C;
box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.25);
border-radius: 100px 20px;
            z-index: 1;
        }


        /* Center circular image */

        .about-img-center {
            width: 430px;
            height: 430px;
            left: 50%;
            top: -60px;
            transform: translateX(-50%);
            border-radius: 50%;
           background: #FFFFFF;
border: 20px solid #FFFFFF;
            box-shadow: 0px 4px 14px rgba(21, 161, 200, 0.26);
            z-index: 3;
        }



        .about-img-center img {
            border-radius: 50%;
        }

                    @media (max-width: 1200px) {
     .about-img-left {
    width: 200px;
    height: 295px;
    bottom: 0;
    top: unset;
}
.about-img-right {
    width: 200px;
    height: 295px;
    top: 0;
    bottom: unset;
}

            .about-img-center {
                width: 235px;
                height: 235px;
                border-width: 9px;
            }
            .about-images {
               /* width: 55%;*/
                height: 370px;
            }
            }

            @media (max-width: 992px) {
     .about-img-left {
    width: 200px;
    height: 295px;
    bottom: 0;
    top: unset;
}
.about-img-right {
    width: 200px;
    height: 295px;
    top: 0;
    bottom: unset;
}

            .about-img-center {
                width: 235px;
                height: 235px;
                border-width: 9px;
            }
            .about-images {
               /* width: 55%;*/
                height: 370px;
            }
            }

            @media (max-width: 768px) {

                .about-images {
                width: 100%;
                max-width: 550px;
                height: 350px;
                margin: 0 auto;
            }
            .about-img-right {
                width: 38%;
                height: 275px;
                right: 0;
                top: 0;
            }

            .about-img-center {
                width: 225px;
                height: 225px;
                top: 35px;
            }
            .about-img-left {
    width: 42%;
    height: 275px;
    left: 0;
    bottom: 0;top: unset;
}

.section-header-center{margin-bottom: 20px;}



}
 @media (max-width: 600px) {

.about-box {
    flex-direction: column;
    text-align: center;
}
}
 @media (max-width: 480px) {



 .about-images {
                height: 285px;
            }
             .about-img-right {
                width: 39%;
                height: 220px;
                border-radius: 20px;
            }

            .about-img-center {
                width: 175px;
                height: 175px;
                border-width: 8px;
                top: 25px;
            }
            .about-img-left {
    width: 44%;
    height: 220px;
    border-radius: 20px;
}

.star-tour-info, .tour-bottom{flex-direction: column;gap: 10px}

}














.about-grid .collage-wrapper {
    background: url(../images/map.png);
    background-repeat: no-repeat;
    background-position: 70px bottom;
    background-size: 50%;
}

.polaroid {
    background-color: var(--color-bg-white);
    padding: 8px;
    box-shadow: 0 15px 35px rgba(10, 28, 58, 0.12);
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: absolute;
    transition: var(--transition-smooth);
}

.polaroid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
}

.polaroid-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--color-navy);
    margin-top: 15px;
    text-align: center;
}

.main-polaroid {
    width: 50%;
    height: 98%;
    right: 0;
    top: 20px;
    transform: rotate(2deg);
    z-index: 2;
}

.mini-polaroid {
    width: 50%;
    height: 64%;
    left: 0;
    bottom: 10%;
    transform: rotate(-2deg);
    z-index: 1;
}

.polaroid:hover {
    transform: rotate(0deg) scale(1.03);
    z-index: 5;
}

/* Custom spinning stamp seal decoration */
.circular-seal {
    position: absolute;
    top: 50px;
    right: 150px;
    width: 90px;
    height: 90px;
    background-color: var(--color-orange);
    color: var(--color-bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    box-shadow: 0 8px 20px rgba(255, 144, 0, 0.3);
    border: 2px dashed rgba(255, 255, 255, 0.4);
}

.seal-inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.seal-inner i {
    font-size: 1.6rem;
    margin-bottom: 4px;
    animation: rotateCompass 8s infinite linear;
}

@keyframes rotateCompass {
    to {
        transform: rotate(360deg);
    }
}

.about-text-panel {
    position: relative;
}

.about-para {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-navy);
    margin: 20px 0 15px 0;
    font-weight: 500;
}

.about-para-secondary {
    font-size: 0.95rem;
    color: var(--color-text-gray);
    margin-bottom: 35px;
    line-height: 1.8;
}

/* Flight Path floating decoration */
/* .flying-flight-path {
    position: absolute;
    right: -20px;
    bottom: -60px;
    font-size: 3rem;
    color: rgba(255, 144, 0, 0.05);
    transform: rotate(-35deg);
    pointer-events: none;
} */


.about-badges {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.about-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f4f7ff;
    border: 1px solid rgba(1, 39, 101, 0.1);
    border-radius: 30px;
    padding: 8px 18px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--color-text-dark);
    transition: var(--transition-fast);
}

.about-badge:hover {
    background: var(--color-text-dark);
    color: #fff;
    border-color: var(--color-text-dark);
}

.about-badge i {
    color: var(--color-orange);
    font-size: 0.85rem;
}

.about-badge:hover i {
    color: #fff;
}
/* ── Stats / Counter Section ── */
.stats-section {
    background: linear-gradient(135deg, var(--color-text-dark) 0%, #1a3a70 60%, #0d2550 100%);
  
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: rgba(214, 163, 48, 0.08);
    border-radius: 50%;
}

.stats-section::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 220px;
    height: 220px;
    background: rgba(214, 163, 48, 0.06);
    border-radius: 50%;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}


.stat-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(6px);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--color-orange), #ffb347);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.stat-item:hover { background: rgba(255, 255, 255, 0.1); transform: translateY(-5px); }
.stat-item:hover::before { transform: scaleX(1); }

.stat-icon {
    font-size: 1.8rem;
    color: var(--color-orange);
    margin-bottom: 14px;
}

.stat-number {
    font-size: 40px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    display: inline-block;
}

.stat-plus {
    font-size: 40px;
    font-weight: 900;
    color: var(--color-orange);
    display: inline-block;
    vertical-align: top;
    line-height:40px ;
}

.stat-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-top: 8px;
}
.mv-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.mv-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 16px;
    border-radius: 30px;
    background: rgba(1, 39, 101, 0.08);
    color: var(--color-text-dark);
}

.vision-card .mv-tag {
    background: rgba(214, 163, 48, 0.14);
    color: #9c6e00;
}

.mv-subtag {
    font-size: 0.76rem;
    font-weight: 600;
    color: var(--color-text-gray);
}

.mv-header-group {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

@media(max-width:1200px) { 
 .stat-number { font-size: 30px;}
.stat-plus{font-size: 30px;line-height: 30px;}


}
@media(max-width:900px) { .stats-grid {    
    grid-template-columns: repeat(2, 1fr); 


}  
 .stat-number { font-size: 30px;}
.stat-plus{font-size: 30px;line-height: 30px;}


}
@media(max-width:479px) {
    .stats-grid {
    
    grid-template-columns: repeat(1, 1fr);
   
}}


/* -------------------------------------------------------------
   Why Choose Us
------------------------------------------------------------- */
/*.why-choose-section {
    background: url(../images/why-choose-bg.jpg);
    position: relative;
    overflow: hidden;
}

.why-choose-section:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: url(../images/holiday-bg.png) right top no-repeat;
    animation: 1s .1s fadeInRight both;
    top: -30px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.feature-box {
    background-color: #FCFCFC;
    padding: 30px 50px;
    box-shadow: 0px 1px 11px rgba(109, 109, 109, 0.1);
    border-radius: 12px;
    border: 1px solid #E8E8E8;
    text-align: center;
    transition: var(--transition-smooth);
}

.feature-box:hover {
    border-color: var(--color-orange);
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.feat-icon-circle {
    display: flex;
    margin: 0 auto 25px auto;
    transition: var(--transition-smooth);
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 20px;
    width: 140px;
    height: 140px;
    background: rgba(255, 243, 228, 0.35);
    border-radius: 20px;
}

.feat-icon-circle img {
    display: block;
    max-width: 100%;
}

.feature-box:hover .feat-icon-circle {
    background-color: #132048;
  
}

.feature-box h3 {
    font-size: 1.25rem;
    color: #E37806;
    margin-bottom: 12px;
}

.feature-box p {
    font-size: 0.9rem;
    color: #555555;
    line-height: 1.6;
    margin: 0px;
}*/

/* -------------------------------------------------------------
   Popular Tour Packages (Owl Carousel)
------------------------------------------------------------- */
.tours-section {
    background: #FFF7EF;
    background-size: cover;
    background-position: center bottom;position: relative;
}
.package-detail-box{background: #FFF7EF;}

.tours-section::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 338px;
    background-color: #D7A330;
    background-image: url(../images/popular-img-bg.png);
    background-repeat: repeat;
    z-index: 0;
}

.package-card {
    background-color: var(--color-bg-white);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-soft);
    margin: 10px 5px;
    transition: var(--transition-smooth);
}

.package-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-medium);
}

.pkg-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.pkg-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.package-card:hover .pkg-img-wrapper img {
    transform: scale(1.06);
}

.pkg-duration-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    color: var(--color-bg-white);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
}

.bg-blue {
    background-color: var(--color-navy);
    border-bottom: 2px solid var(--color-orange);
}

.bg-orange {
    background-color: var(--color-orange);
    border-bottom: 2px solid var(--color-navy);
}

.pkg-body {
    padding: 25px;
}

.pkg-body .stars {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #f1c40f;
    font-size: 0.82rem;
    margin-bottom: 12px;
}

.pkg-body .review-count {
    color: var(--color-text-light);
    margin-left: 6px;
    font-size: 0.8rem;
}

.pkg-title {
    font-size: 1.2rem;
    color: var(--color-navy);
    margin-bottom: 12px;
    min-height: 48px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pkg-desc {
    font-size: 0.88rem;
    color: var(--color-text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 60px;
}

.pkg-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--color-border);
    padding-top: 15px;
}

.pkg-location {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    gap: 6px;
}

.pkg-location i {
    color: var(--color-orange);
}

.pkg-price {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--color-orange);
}

.per-person {
    font-size: 0.75rem;
    color: var(--color-text-light);
    font-weight: 500;
}

/* Custom Dots for Slider */
.tours-section .owl-theme .owl-dots {
    margin-top: 40px;
}

.tours-section .owl-theme .owl-dots .owl-dot span {
    width: 8px;
    height: 8px;
    background: #e2e8f0;
    margin: 0 5px;
    transition: var(--transition-smooth);
}

.tours-section .owl-theme .owl-dots .owl-dot.active span {
    background: var(--color-orange);
    transform: scale(1.3);
}

/* CARD */

/* Frame 2668 */

.car-section {
    position: relative;
}


.car-card {

        overflow: hidden;
        background: #FFFFFF;
        border: 1px solid rgba(220, 193, 177, 0.3);
        box-shadow: 0px 4px 10px rgba(26, 26, 26, 0.12);
        border-radius: 12px;

        margin: 30px 0px 20px 0px;
        transition: 0.3s;border-top: 3px solid #D7A330;
}



.car-card:hover {
    transform: translateY(-8px);
}

.car-img {
    background: #fff;
    height: 240px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;

}

.car-img img {
    width: 100%;
   
    height: auto;
    /* object-fit:contain;*/
    object-fit: inherit;
}

.car-content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;width: 100%;
}

.car-name-rating{display: flex;align-items: center;flex-wrap: wrap;justify-content: space-between;position: relative;padding-bottom: 10px;}

.car-name-rating::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 6px;
    width: 60px;
    height: 2px;
    background: #173b73;
}
.inqu-btn{margin-top: 10px;border-radius: 8px;font-size: 16px;}

h4 {
    /*font-size: 18px;
    font-weight: 500;
    color: #000;*/
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;font-size: 22px;
}



.car-content h4 {
    text-transform: uppercase;color: #222;font-size: 20px; ;
}

.info {
    display: flex;
    gap: 7px;
    align-items: center;color: #222;font-size: 13px;
}

.rating {
    display: flex;
    gap: 5px;
    align-items: center;color: #222;background: rgba(243, 243, 243, 1);justify-content: center;
align-items: center;
border-radius: 20px;padding: 8px 18px;line-height: 18px;font-size: 16px;
}


.car-seat-cng{display: flex;gap: 30px;justify-content: flex-start;}
.car-seat-cng img {
    width: 38px !important;
    height: 38px !important;
    margin-bottom: 0px !important;
}


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

.rating span {
    color: #fbbf24;
    margin-right: 6px;
}


/* Owl Dots */

.owl-theme .owl-dots {
    margin-top: 30px;
}

.owl-theme .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    background: #cbd5e1;
    transition: 0.3s;
}

.owl-theme .owl-dots .owl-dot.active span {
    width: 35px;
    border-radius: 20px;
    background: #1e3a8a;
}

/* Responsive */

@media(max-width:768px) {

    .section-title h2 {
        font-size: 36px;
    }

    .section-title p {
        font-size: 16px;
    }

    .car-content h3 {
        font-size: 22px;
    }

}



.pb-0{padding-bottom: 0px;}
.mb-0{margin-bottom: 0px;}
.border-0{border: 0px;}



/* -------------------------------------------------------------
   Stat Counter Strip
------------------------------------------------------------- */
.stat-strip-section {
    background-color: var(--color-navy);
    color: var(--color-bg-white);

}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}


@media (max-width: 767px) {


    .counter-grid {

        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

}

@media (max-width: 414px) {


    .counter-grid {

        grid-template-columns: repeat(1, 1fr);

    }

}

.counter-item {
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 10px;

}

.counter-main {
    display: flex;
    gap: 10px;
    justify-content: center;
}


.counter-item:last-child {
    border-right: none;
}

.cou-icon {
    display: flex;
    gap: 5px;
    justify-content: flex-start;
}

.counter-number {
    font-size: 38px;
    font-weight: 700;
    color: #fff;
    line-height: 48px;
    margin-bottom: 0;
    margin-top: 10px;
}

.countericon {
    font-size: 38px;
    font-weight: 700;
    color: #fff;
    line-height: 48px;
    margin-bottom: 0;
    margin-top: 10px;
}

.counter-number1 {
    font-size: 48px;
    font-weight: 700;
    color: #156A9A;
    line-height: 48px;
    margin-bottom: 0;
}

.counter-icon {
    display: inline;
    width: 64px;
    height: auto;
}

.counter-icon img {
    display: block;
    max-width: 100%;
    width: 62px;
    margin: auto;
}

.counter-label {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
}

.counter-sublabel {
    font-size: 16px;
    color: #fff;
    font-weight: 500;
}






/* Video--Section */

.travel-video-section{
    padding-bottom: 80px;
    background:
        url("../images/video-section-img.png") left bottom / clamp(220px, 28vw, 260px) no-repeat,
        radial-gradient(circle at 10% 20%, rgba(120, 112, 187, 0.12), transparent 22%),
        radial-gradient(circle at 92% 14%, rgba(251, 175, 92, 0.18), transparent 20%),
        linear-gradient(233.18deg, rgba(251, 251, 251, 0.14) 20.53%, rgba(5, 3, 123, 0.14) 71.17%);
    position: relative;
    overflow: visible;
}

.travel-video-bg-art{
    display: none;
}

.travel-video-bg-art img{
    display: none;
}



.travel-video-shell{
     max-width: 1418px;
    margin: 0 auto;
    border-radius: 34px;
    overflow: hidden;
    box-shadow: 0 22px 65px rgba(18, 28, 54, 0.12);
    position: relative;
    z-index: 1;
}

.travel-video-feature{
    background: #0d2145;
}

.travel-video-media{
    position: relative;
    height: 100%;
    min-height: 610px;
    /* padding-bottom: 140px; */
}

.travel-video-media::before{
    content: "";
    position: absolute;
    top: 22px;
    left: 22px;
    right: 22px;
    bottom:140px;
    border: 6px solid rgba(255, 255, 255, 0.28);
    border-radius: 26px 26px;
    pointer-events: none;
    z-index: 2;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.travel-video-media img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 1;
}

.travel-video-media::after{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 18, 40, 0.02) 0%, rgba(6, 18, 40, 0.12) 52%, rgba(6, 18, 40, 0.28) 100%);
    z-index: 1;
}

.travel-video-copy{
    position: absolute;
    top: 18%;
    right: 6%;
    z-index: 2;
    text-align: right;
    color: #fff;
    max-width: 460px;
}

.travel-video-kicker{
    font-family: "Kaushan Script", cursive;
    font-size: 66px;
    line-height: 1;
    margin-bottom: 10px;
    color: #fff;
    font-weight: 400;
}

.travel-video-copy h2{
    font-size: clamp(2.1rem, 3.5vw, 3.5rem);
    line-height: 1.05;
    color: #fff;
    text-shadow: 0 3px 18px rgba(0,0,0,.22);
}

.travel-video-copy h2 span{
    color: #0f3c91;
    font-family: "Kaushan Script", cursive;
    font-size: 1.15em;
}

.travel-video-play{
    position: absolute;
    inset: 0;
    z-index: 3;
    display: grid;
    place-items: center;
}

.travel-video-play-ring{
    position: absolute;
    width: 122px;
    height: 122px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.65);
    background: rgba(255,255,255,.18);
    backdrop-filter: blur(4px);
}

.travel-video-play-btn{
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: rgba(10, 28, 58, 0.72);
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 30px;
    box-shadow: 0 16px 30px rgba(0,0,0,.25);
}


.play-button {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(60,60,60,0.65);
    border: 2px solid rgba(255,255,255,0.45);
    z-index: 5;

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

    cursor: pointer;
    transition: 0.3s ease;
}

.play-button::before {
    content: "";
    position: absolute;
    inset: -8px;
    border: 1px solid rgba(255,255,255,0.45);
    border-radius: 50%;
}

.play-button i {
    color: #fff;
    font-size: 30px;
    margin-left: 4px;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.08);
    background: rgba(20,20,20,0.8);
}

.video-popup{
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 24px;
}

.video-popup.active{
    display: flex;
}

.video-popup-backdrop{
    position: absolute;
    inset: 0;
    background: rgba(6, 14, 32, 0.82);
    backdrop-filter: blur(6px);
}

.video-popup-dialog{
    position: relative;
    z-index: 1;
    width: min(980px, 100%);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.24);
    border-radius: 22px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
    overflow: hidden;
}

.video-popup-frame-wrap{
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}

.video-popup-frame-wrap iframe{
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.video-popup-close{
    position: absolute;
    top: 12px;
    right: 12px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 0;
    background: rgba(255,255,255,0.16);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    z-index: 2;
}

.video-popup-close:hover{
    background: rgba(255,255,255,0.28);
}






.travel-video-footer{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: center;
    background: rgba(1, 39, 101, 0.69);
    /* backdrop-filter: blur(8px); */
    -webkit-backdrop-filter: blur(8px);    
    padding: 28px 40px;
    width: 100%;
    margin: 0 auto;
    border-radius: 0 0 34px 34px;
    justify-items: center;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 4;
}

.travel-video-stat{
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
    text-align: left;
}

.travel-video-stat .counter-number,
.travel-video-stat .countericon{
    margin-top: 0;
    line-height: 1;
    font-size: 40px;
}

.travel-video-stat .counter-icon img{
    width: 64px;
}

@media (max-width: 991px){
    .travel-video-media{
        padding-bottom: 160px;
    }

    .travel-video-media::before{
        bottom: -150px;
    }
.travel-video-stat .counter-number,
.travel-video-stat .countericon{
    margin-top: 0;
    line-height: 1;
    font-size: 20px;
}
   
}
@media (max-width: 767px){
.travel-video-footer{
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 22px 24px;
        justify-items: flex-start;
    }
    }

@media (max-width: 575px){
    .travel-video-media{
        padding-bottom: 190px;min-height: 409px;
    }
.play-button i {    
    font-size: 10px;  
}
.play-button {
    position: absolute;
    left: 50%;
    top: 20%;  
    width: 20px;
    height: 20px;
   
}
 
.travel-video-stat .counter-number,
.travel-video-stat .countericon{
    margin-top: 0;
    line-height: 1;
    font-size: 20px;
}

.travel-video-media{}

    .travel-video-media::before{
        bottom: -178px;
    }

    .travel-video-stat{
        justify-content: flex-start;
    }
    .travel-video-copy{display: none;}

}





/* =============================================================
   HOME SECTION — Steps For Booking
   ============================================================= */
.steps-for-booking {
    position: relative;
    padding-bottom: 160px;
    background: #fff;
    overflow: hidden;
}

.steps-for-booking::before,
.steps-for-booking::after {
    content: '';
    position: absolute;
    pointer-events: none;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    z-index: 0;
}

.steps-for-booking::before {
    left: -10px;
    bottom: 22px;
    width: 230px;
    height: 230px;
    background-image: url('../images/steps-for-booking-bg-img-1.png');
}

.steps-for-booking::after {
    right: 0;
    bottom: -12px;
    width: 330px;
    height: 240px;
    background-image: url('../images/steps-for-booking-bg-img-2.png');
}

.steps-for-booking-inner {
    position: relative;
    z-index: 1;
}



.steps-view-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    padding: 18px 34px;
    margin-top: 18px;
    border-radius: 999px;
    background: #0f3175;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 16px 30px rgba(15, 49, 117, 0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.steps-view-more:hover {
    transform: translateY(-2px);
    background: #0a275d;
    box-shadow: 0 18px 34px rgba(15, 49, 117, 0.24);
}

.steps-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    align-items: stretch;
}

.booking-step-card {
    position: relative;
    height: 560px;
    padding: 42px 38px 34px;
    border-radius: 30px;
    overflow: hidden;
    color: #fff;
    /* box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08); */
}

.booking-step-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 35%, rgb(255, 255, 255) 100%);
    pointer-events: none;
}

.booking-step-blue {
    background: linear-gradient(180deg, #2aa1cf 0%, #4db0d8 55%, #f2f7fb 100%);
    margin-top: 160px;

}

.booking-step-pink {
    background: linear-gradient(180deg, #ff6f94 0%, #ff86ab 58%, #fff1f5 100%);
    margin-top: 80px;
}

.booking-step-green {
    background: linear-gradient(180deg, #0b6a74 0%, #2a8288 58%, #f2f8f8 100%);
}

.step-badge {
    position: relative;
    z-index: 1;
    width: 82px;
    height: 82px;
    margin: 6px auto 34px;
    border-radius: 50%;
    background: #fff;
    display: grid;
    place-items: center;
    box-shadow: 0 0 0 10px rgba(35, 94, 115, 0.31);
}




.step-badge img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.step-content {
    position: relative;
    z-index: 1;    
    margin-top: 8px;
}

.step-content h3 {
    margin: 0 0 10px;
    font-size: 32px;
    line-height: 42px;
    font-weight: 500;
    color: #fff;
}

.step-content p {
    margin: 0;
    font-size: 20px;
    line-height: 30px;
    color: rgba(255, 255, 255);
    font-weight: 300;
}

.step-illustration {
    position: absolute;
    left: 26px;
    bottom: 22px;
    width: min(58%, 260px);
    height: auto;
    z-index: 1;
    object-fit: contain;
    filter: drop-shadow(0 16px 16px rgba(0, 0, 0, 0.08));
}

.booking-step-green .step-illustration {
    left: 20px;
    bottom: 18px;
    width: min(66%, 290px);
}

.step-number {
    position: absolute;
    right: 30px;
    bottom: 60px;
    z-index: 1;
    font-size: 60px;
    line-height: 1;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.98);
    text-shadow: 0 5px 10px rgba(0, 0, 0, 0.18);
}

@media (max-width: 1100px) {
    .steps-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .steps-view-more {
        margin-top: 0;
    }

   

    .booking-step-card {
        min-height: 450px;
    }

    .steps-for-booking::before {
        width: 170px;
        height: 170px;
        left: -18px;
        bottom: -10px;
    }

    .steps-for-booking::after {
        width: 240px;
        height: 180px;
    }
}

@media (max-width: 768px) {
   

    .steps-kicker {
        font-size: 2.3rem;
    }

    .steps-subtitle {
        font-size: 1rem;
    }

    .steps-view-more {
        min-width: 170px;
        padding: 15px 26px;
    }

    .booking-step-card {
        padding: 34px 22px 22px;
        min-height: 420px;
    }

    .step-content {
        max-width: 100%;
    }

    .step-illustration {
        left: 14px;
        bottom: 16px;
        width: min(56%, 200px);
    }
     .steps-cards {
        grid-template-columns: 1fr;
    }

    .booking-step-green .step-illustration {
        width: min(60%, 210px);
    }

    .step-number {
        right: 18px;
        bottom: 18px;
    }

    .steps-for-booking::before,
    .steps-for-booking::after {
        opacity: 0.45;
    }

.booking-step-blue, .booking-step-pink{margin-top: 0px;}
   .booking-step-card {
        min-height: 500px;
        border-radius: 24px;height: auto;
    }

}

@media (max-width: 480px) {
    .steps-kicker {
        font-size: 2rem;
    }

    .steps-title {
        font-size: 2rem;
    }

    .booking-step-card {
        min-height: 390px;
        border-radius: 24px;height: auto;
    }

    .step-badge {
        width: 68px;
        height: 68px;
        margin-bottom: 26px;
    }

    .step-badge img {
        width: 36px;
        height: 36px;
    }

    .step-content h3 {
        font-size: 1.3rem;
    }

    .step-content p {
        font-size: 0.94rem;
    }

    .step-illustration {
        width: min(54%, 170px);
    }

    .booking-step-green .step-illustration {
        width: min(58%, 185px);
    }

    .steps-for-booking::before {
        width: 120px;
        height: 120px;
    }

    .steps-for-booking::after {
        width: 175px;
        height: 135px;
    }
}

.steps-subtitle{padding-top: 15px;max-width: 800px;margin-bottom: 0px;}

/* =============================================================
   HOME SECTION — Best Memorable Gallery
   ============================================================= */
.best-memorable-gallery {
    position: relative;
  
    overflow: hidden;
        background: linear-gradient(233.41deg, #7373FA 4.93%, rgba(255, 223, 191, 0.08) 45.35%, rgba(255, 223, 191, 0.08) 78.43%);
}

.best-memorable-gallery::before,
.best-memorable-gallery::after {
    content: '';
    position: absolute;
    /* border-radius: 50%; */
    pointer-events: none;
   /* filter: blur(0.2px);*/
}

.star-travel-bg {
    position: relative;
    margin-bottom: 100px;
}
.star-travel-bg::before {
    content: '';
    background: url(../images/flight-bg-img.png) no-repeat center;
    left: 0;
    bottom: -100px;
    position: absolute;
    height: 100%;
    width: 100%;
}

.best-memorable-gallery::before {
    left: -104px;
    bottom: 34px;
    width: 211px;
    height: 306px;
    background: url(../images/best-memorable-bg-img-1.png) no-repeat center;
    background-size: cover;
    opacity: 0.95;
   animation: balloonLeft 4s ease-in-out infinite;
}
@keyframes balloonLeft {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-100px);
    }

    100% {
        transform: translateY(0);
    }
}


.best-memorable-gallery::after {
    right: -6px;
    top: 32%;
    width: 110px;
    height: 166px;
    border-radius: 0;
    background: url(../images/best-memorable-bg-img-2.png) no-repeat center;
    background-size: cover;
    opacity: 0.88;
     animation: balloonRight 4s ease-in-out infinite;
    
}

@keyframes balloonRight {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(100px);
    }

    100% {
        transform: translateY(0);
    }
}






.memorable-gallery-wrap {
    position: relative;
    z-index: 1;
}

.memorable-top-decor {
    position: absolute;
    top: 60px;
    right: 0;
    /* transform: translateX(-50%); */
    width: unset;
    height: auto;
    pointer-events: none;
    z-index: 0;
    opacity: 0.98;
}

.memorable-gallery-heading {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 34px;
    padding-top: 54px;
}

.memorable-kicker {
    margin: 0 0 10px;
    font-family: 'Tinos', serif;
    font-style: italic;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1;
    color: #0d0d0d;
}

.memorable-title {
    margin: 0;
    font-size: clamp(2.2rem, 4vw, 4.2rem);
    line-height: 1.05;
    font-weight: 800;
    color: #0b0b0b;
}

.memorable-title span,
.memorable-bottom-title span {
    color: #dca62c;
}

.memorable-subtitle {
    margin: 14px 0 0;
    font-size: 1.05rem;
    color: #5f5f5f;
}


.memorable-bottom-copy {
    text-align: right;
    margin-top: 28px;
    padding-right: 8px;
}

.memorable-bottom-subtitle {
    margin: 0 0 4px;
    font-size: 1.45rem;
    font-weight: 700;
    color: #0b0b0b;
}

.memorable-bottom-title {
    margin: 0;
    font-size: clamp(3rem, 6vw, 5.2rem);
    line-height: 0.95;
    font-weight: 800;
    color: #0b0b0b;
}

@media (max-width: 1100px) {
  

    .memorable-bottom-copy {
        text-align: center;
    }
}


  .gallery-container {
            position: relative;
            z-index: 2;          

            display: grid;

            grid-template-columns: 470px 1fr;

            grid-template-rows:
                232px
                232px
                242px;

            gap: 28px;
        }
         /* =====================================
           LEFT TWO IMAGES
        ===================================== */

        .gallery-left {
            grid-column: 1;
            grid-row: 1 / 3;

            display: flex;
            flex-direction: column;
            gap: 28px;
        }

        .gallery-small {
            width: 100%;
            height: 232px;

            border-radius: 18px;

            overflow: hidden;
        }

        .gallery-small img {
            width: 100%;
            height: 100%;

            display: block;

            object-fit: cover;
        }


  .gallery-main {
            grid-column: 2;
            grid-row: 1 / 3;

            height: 496px;

            border-radius: 18px;

            overflow: hidden;
        }

        .gallery-main img {
            width: 100%;
            height: 100%;

            display: block;

            object-fit: cover;
        }


        /* =====================================
           BOTTOM LARGE IMAGE
        ===================================== */

        .gallery-bottom {
            grid-column: 1 / 3;
            grid-row: 3;

            width: 64%;
            height: 242px;

            border-radius: 18px;

            overflow: hidden;
        }

        .gallery-bottom img {
            width: 100%;
            height: 100%;

            display: block;

            object-fit: cover;
        }


        /* =====================================
           RIGHT SMALL IMAGES
        ===================================== */

        .gallery-side-images {
            position: absolute;

            right: 0;
            bottom: 0;

            width: calc(35% - 10px);

            height: 242px;

            display: grid;

            grid-template-columns: 1fr 1fr;

            gap: 28px;
        }

        .gallery-side-images .side-image {
            width: 100%;
            height: 100%;

            border-radius: 18px;

            overflow: hidden;
        }

        .gallery-side-images img {
            width: 100%;
            height: 100%;

            object-fit: cover;

            display: block;
        }
         /* =====================================
           RESPONSIVE - TABLET
        ===================================== */

        @media (max-width: 1100px) {

            .gallery-container {
                width: calc(100% - 40px);

                grid-template-columns:
                    40% 1fr;

                grid-template-rows:
                    210px
                    210px
                    220px;

                gap: 20px;
            }

            .gallery-left {
                gap: 20px;
            }

            .gallery-small {
                height: 210px;
            }

            .gallery-main {
                height: 440px;
            }

            .gallery-bottom {
                height: 220px;
            }

            .gallery-side-images {
                height: 220px;

                gap: 20px;
            }


           
        }


        /* =====================================
           RESPONSIVE - MOBILE
        ===================================== */

        @media (max-width: 767px) {

            .travel-gallery {
                padding:
                    15px
                    0
                    60px;
            }

            .gallery-container {
                width: calc(100%);

                display: flex;

                flex-direction: column;

                gap: 18px;
            }


            .gallery-left {
                display: flex;

                flex-direction: column;

                gap: 18px;
            }


            .gallery-small {
                height: 200px;
            }


            .gallery-main {
                height: 300px;
            }


            .gallery-bottom {
                width: 100%;
                height: 200px;
            }


            .gallery-side-images {
                position: static;

                width: 100%;
                height: 180px;

                gap: 18px;
            }

.best-memorable-gallery::before, .best-memorable-gallery::after{display: none;}


          
        }


        /* =====================================
           SMALL MOBILE
        ===================================== */

        @media (max-width: 480px) {

            .gallery-small {
                height: 170px;
            }

            .gallery-main {
                height: 250px;
            }

            .gallery-bottom {
                height: 170px;
            }

            .gallery-side-images {
                height: 150px;
            }


        }


/* -------------------------------------------------------------
   Footer Layout
------------------------------------------------------------- */
/*.footer {
    background-color: #FBFBFB;
    color: #222222;padding-top: 40px;
}
*/
.footer {
  position: relative;
  overflow: hidden;
  background: url('../images/footer-bg.png') center/cover no-repeat;
  color: #fff;
  padding: 60px 0% 0px 0%;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #012765e0;
  pointer-events: none;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 0.8fr 1fr 1fr;
    gap: 60px;
    padding: 0px 0px 50px 0px ;
}

.footer-col-large {
    padding-right: 55px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 15px 0px;
    border-bottom: 1px solid #cfcfcf;
}

.tourism-logo {
    flex: 1;
    text-align: center;
}

.social-section {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    flex: 1;
    justify-content: flex-end;
}

.social-section h3 {
    font-size: 18px;
    font-weight: 500;
}

.social-icons {
    display: flex;
    gap: 14px;
}

.social-icons a {
    width: 42px;
    height: 42px;  
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    border: 1px solid #DADADA;
filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
border-radius: 40px;color: #fff;

}
 .social-icons a:hover{background: #D6A330;
    color: white;}


.footer-logo {
    background: #FFFFFF;
    border-radius: 10px;
    padding: 10px;
    text-align: center;margin-bottom: 22px;
}

.footer-logo img{max-height: 70px;}

.social-circles {
    display: flex;
    gap: 12px;
}

.social-circles a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.social-circles a:hover {
    background-color: var(--color-orange);
    border-color: var(--color-orange);
    color: var(--color-bg-white);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 26px;
    color: #fff;
    position: relative;
    padding-bottom: 18px;
    text-transform: uppercase;
}

.footer-contact p, .footer-about-text{color: #fff;}


.footer-list li {
    margin-bottom: 12px;
}

.footer-list li a {
    color: #fff
}

.footer-list li a:hover {
    color: var(--color-orange);
    padding-left: 5px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}
.contact-item  a:hover{ color: var(--color-orange);}
.contact-item i {
    color: #fff;
    font-size: 20px;
    margin-top: 4px;
}

.contact-item p,
.contact-item a {
    margin-bottom: 0px;
}

.contact-item strong {
    color: #fff;
    font-weight: 300;
}

.footer-bottom {
    
    padding: 16px 0;border-top: 1px solid #fff;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Left: copyright + pipe + credit */
.footer-bottom-copy {
    margin-bottom: 0;
    color: #c5cee0;
    font-size: 14px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    line-height: 1.5;
}

.footer-bottom-copy a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s;
}

.footer-bottom-copy a:hover {
    color: var(--color-orange, #f90);
}

.footer-divider {
    color: rgba(255, 255, 255, 0.35);
    margin: 0 4px;
    font-weight: 300;
}

/* Right: Payment Methods */
.footer-payment {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;font-size: 16px;
}
.footer-payment a:hover{
 
 color: var(--color-orange);}

.payment-label {
    color: #c5cee0;
    font-size: 14px;
    white-space: nowrap;
}

.payment-icons {
    display: flex;
    align-items: center;
    gap: 6px;
}

.payment-icons img {
    height: 24px;
    width: auto;
    object-fit: contain;
    border-radius: 4px;
    opacity: 0.9;
    transition: opacity 0.2s;
}

.payment-icons img:hover {
    opacity: 1;
}

.footer-legal-links {
    display: flex;
    gap: 10px;
}

.footer-bottom p {
    margin-bottom: 0px;
    color: #fff;
    font-size: 16px;
}

.footer-bottom p a {
    text-decoration: underline;
}

.footer-legal-links a:hover {
    color: var(--color-bg-white);
}

.footer-legal-links .dot {
    color: rgba(255, 255, 255, 0.2);
}

/* -------------------------------------------------------------
   Client / Partner Logos Carousel (Footer)
------------------------------------------------------------- */
.client-logos-section {
   /* background-color: #f5f7fa;
    border-top: 1px solid #e3e8ef;
    border-bottom: 1px solid #e3e8ef;*/
    padding: 30px 0 60px 0px;
}

.client-logos-label {
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #8a95a8;
    margin-bottom: 22px;
}

.client-logo-item {
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e8ecf3;
    height: 150px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.client-logo-item:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.09);
    transform: translateY(-3px);
}

.client-logo-item img {
    max-width: 100%;
    max-height: 130px;
    width: auto;
    object-fit: contain;
   /* filter: grayscale(100%) opacity(0.65);*/
    transition: filter 0.35s ease;
}

.client-logo-item:hover img {
    filter: grayscale(0%) opacity(1);
}

.client-logos-carousel.owl-carousel .owl-stage {
    display: flex;
    align-items: center;
}

/* Right */


.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #fff;
    flex: 1;
    background: #012765;
    padding: 31px 6% 31px 50px;
    border-radius: 100px 0px 0px 100px;
}

.header-right{
    display:flex;
    align-items:center;
    gap:16px;
    color:#fff;justify-content: space-between;
}

.header-right a{
    color:#fff;
    text-decoration:none;
   
}
.fixed-header .header-right{background: #fff;padding: 10px 4% 10px 50px;}
.fixed-header .header-right .nav-list a {
    color: #012765;
    text-decoration: none;font-weight: 500;
}
.fixed-header .header-right .nav-list a:hover{color: var(--color-orange);}

.fixed-header .header-right .nav-list .has-submenu a:hover{color: #fff;}

/* -------------------------------------------------------------
   Responsive Configurations (Mobile-First Logic overrides)
------------------------------------------------------------- */
@media (max-width: 1600px) {
    .container{padding: 0px 35px;}

}


/* Tablet Settings */
@media (max-width: 1024px) {
    .logo-wrapper {
        padding-right: 35px;
    }

    .nav-menu {
        gap: 15px;
    }

    .overlay-title {
        font-size: 2.3rem;
    }

    .search-board {
        grid-template-columns: 1fr 1fr 1fr;
        padding: 20px;
    }

  /*  .btn-search {
        grid-column: span 3;
    }*/

    .destination-grid {
        grid-template-columns: repeat(2, 1fr);
    }



    .collage-container {
        height: 400px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-strip-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }


}

@media (max-width: 992px) {
 /* Mobil navigation toggle drawer styles */
    .mobile-nav-toggle {
        display: block;
        z-index: 9999;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--color-navy);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        z-index: 1000;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.4);
        padding: 40px;
        transition: var(--transition-smooth);
    }
    .header-right a {
    color: #222;
    text-decoration: none;
}

 

    .nav-menu.active {
        right: 0;
    }

      .nav-menu.active {
        transform: translateX(0);
    }

    .nav-list {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .nav-item {
        width: 100%;border-bottom: 1px solid #dcdcdc;
    }



    .nav-link {
        color: var(--color-bg-white);
        font-size: 1.1rem;
    }

    .btn-book-nav {
        margin-left: 0;
        width: 100%;
        text-align: center;
    }

    /* Hamburger active animations */
    .mobile-nav-toggle.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .mobile-nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .mobile-nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 0;
        padding: 80px 30px 40px;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
        z-index: 1100;
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
    }



    .nav-menu a {
        width: 100%;
        padding: 14px 0;
        font-size: 16px;
        font-weight: 600;
        border-bottom: 1px solid #f0f4ff;
        color: #111;
        text-align: left;
    }

    .nav-menu a:last-child {
        border-bottom: none;
    }

    .nav-menu a:hover,
    .nav-menu a.active {
        color: #f68e1e;padding: 14px 0px;
    }



    .top-bar {
        display: none;
    }

.container, .container-fluid {
        padding: 0px 15px;

    }
   .footer-container{padding: 15px;}

    header .container {
        text-align: right;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .header-container {
        height: 80px;
    }
 .logo img {
        max-height: 70px;
    }


    #mainHeader .btn {
        display: none;
    }

    .mainHeader {
        background-color: transparent;
        padding: 0;
        width: 100%;
    }
    .logo-box {
        padding: 10px 0px;

    }
    .testimonial-slidebox {
        padding: 0;
    }

    .testi-box {
        overflow: hidden;
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 100%;
        background: #FFFFFF;
        border: 1px solid #E4E6E8;
        box-shadow: none;
        border-radius: 32px;
        padding: 30px 15px;
    }
    .testimonial-section .owl-carousel.owl-drag .owl-item {
    padding: 0;
}

    .testimonial-slidebox .owl-item {
        padding: 0;
    }
    .footer-bottom-container {
        flex-direction: column;
        align-items: center;
        gap: 14px;
        text-align: center;
    }
    .footer-bottom-copy {
        justify-content: center;
        font-size: 13px;
    }
    .footer-payment {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
      .footer-container {
        grid-template-columns: 1.5fr 1fr;
        gap: 40px;
      /*  padding: 30px 15px;*/
    }
        .car-section::before {
        width: 150px;
        height: 1050px;
        left: 0;

    }

    .car-section::after {
        width: 150px;
        height: 150px;
        right: 0;
    }
   .search-board-container {
       
        margin-top: -135px;
    }
     .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }

}


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

    .destinations-section::before{background-size: 40%;}
    
    .categories-section::before {
    background-size: 20%;
}
   

    /* Hero items adjustments */
    .hero-section {
        height: 80vh;
    }

    .hero-dark-overlay {
        padding: 40px 20px;
        background: rgba(10, 28, 58, 0.88);

        max-width: 100%;
    }


    .overlay-title {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }

    .overlay-actions {
        flex-direction: column;
        gap: 10px;
    }

    .overlay-actions .btn {
        width: 100%;
    }

    /* Search board responsive collapse */
    .search-board-container {
        position: relative;
        bottom: 0;
        transform: none;
        left: 0;
        padding: 30px 15px;
        margin-top: -30px;
    }

 
    .btn-search {
        grid-column: span 1;
    }

    /* Sections general reductions */
    .destinations-section {
        padding: 50px 0;
    }



    .dark-title {
        font-size: 2rem;
    }

    .destination-grid {
        grid-template-columns: 1fr;
    }

   

    .feature-box{padding: 20px;}

  
    .circular-seal {
        top: 10px;
        right: 80px;
        width: 70px;
        height: 70px;
    }

    .car-section::before {
        width: 100px;
        height: 100px;
        left: 0;

    }

    .car-section::after {
        width: 100px;
        height: 100px;
        right: 0;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .testi-circle-orbit {
        width: 250px;
        height: 250px;
    }

    .orbit-pic {
        width: 50px;
        height: 50px;
    }

    .categories-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .stat-strip-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .inquiry-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form-panel {
        padding: 25px 20px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
      /*  padding: 30px 15px;*/
    }

    .footer-col-large {
        padding-right: 0px;
        ;
    }



    
    .bottom-area {
        flex-direction: column;
    }
  

    .logo img {
        max-width: 100px;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

}

@media (max-width: 600px) {
    .footer-top {
        flex-direction: column;
    }
     .main-polaroid {
        width: 100%;
        height: auto;
        left: 0;
        transform: none;position: relative;
    }
      .mini-polaroid {
        display: none;
    }

    .experience-badge{left :auto;right: 0px}
     .collage-container {
        height: auto;
    }
       .search-board {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .footer-container {
        grid-template-columns:  1fr;
        gap: 30px;
      /*  padding: 30px 15px;*/
    }

}

@media (max-width: 479px) {




    .footer-logo img {
        max-width: 100%;
    }

    .social-section {
        justify-content: center;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;

    }

    .features-grid {
        grid-template-columns: 1fr ;
    }

        .destinations-section::before{background-size: 40%;}
    
    .categories-section::before {
    background-size: 20%;
}

}







/* Grid */
.tours-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 1100px) {
  
}

@media (max-width: 600px) {
    .tours-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 26px;
    }
       .tour-container {
        grid-template-columns: 1fr;
    }

}

/* Card */
.tour-card {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(13, 27, 75, 0.10);
    transition: box-shadow 0.25s, transform 0.25s;
    height: 100%;
}

.tour-card:hover {
    box-shadow: 0 12px 40px rgba(13, 27, 75, 0.18);
    transform: translateY(-4px);
}

/* Image */
.card-image-wrap {
    position: relative;
    width: 100%;
    height: 290px;
    overflow: hidden;
}

.card-image-wrap:before {

    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;

    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 75%);
    transform: rotate(180deg);
    pointer-events: none;
}




.card-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.tour-card:hover .card-image-wrap img {
    transform: scale(1.06);
}

.card-title a:hover{color: var(--color-orange);}

/* Sale badge */
.badge-sale {
    position: absolute;
    top: 15px;
    left: 0;
    background: #EF5311;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 5px 14px;
    border-bottom-right-radius: 0;
}

/* Heart button — pure CSS checkbox toggle */
.heart-toggle {
    display: none;
    /* hidden checkbox */
}

.heart-label {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    z-index: 2;
    transition: transform 0.15s;
}

.heart-label:hover {
    transform: scale(1.15);
}

.heart-label i {
    font-size: 15px;
    color: #9ca3af;
    transition: color 0.2s, transform 0.2s;
}

/* When checkbox is checked → heart turns red */
.heart-toggle:checked+.heart-label i {
    color: #e53935;
    transform: scale(1.2);
}

/* Price tag */
.price-tag {
    color: #D7A330;
    font-size: 22px;
    font-weight: 700;
}

/* Card body */
.card-body {
    padding: 16px 18px 20px;
}

.card-category {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #353844;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 9px;
}

.card-subline{padding-bottom: 10px;font-size: 16px;color: #000;font-weight: 400;}
.tour-duration {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #000;
    font-size: 12px;
    white-space: nowrap;
}
.border-btn {
    border: 1px solid #05037B;
    background: transparent;
    color: #05037B;
    font-weight: 500;
    padding: 12px 20px;
}

.explore-all{text-align: center;margin-top: 20px;}















.tour-duration i{font-size: 20px;}

.tour-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.star-tour-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 12px;
}

.card-subline:hover{color: #D7A330;}

.card-category .location-icon {
    font-size: 13px;
    color: #6b7280;
}

.card-title {
    font-size: 18px;
    font-weight: 600;
    color: #020615;
    line-height: 1.4;
    margin-bottom: 12px;
    min-height: 44px;
}

/* Stars & review */
.card-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stars {
    display: flex;
    gap: 2px;
}

.stars i {
    font-size: 14px;
    color: #f5a623;
}

.stars i.empty {
    color: #d1d5db;
}

.review-count {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #020615;
    font-weight: 400;
}

.review-count i {
    font-size: 12px;
    color: #9ca3af;
}

@media (max-width: 1200px) {
     .tours-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


@media (max-width: 1023px) {
    header {
        background: #fff;
    }

  .tours-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 768px) {


    .hero-carousel-wrapper {
        margin-top: 66px;       
        height: 80vh;
    }
    .slide-item{height: 80vh;}

    .maintitle {
        font-size: 40px;
        line-height: 50px;
    }

    .section-header-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 20px;
    }

    .section-header-row div {
        margin-bottom: 20px;
    }


    section, .about-section {
        padding: 30px 0px;
    }
      .tours-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer{padding: 30px 0px;}

}

@media (min-width: 601px) and (max-width: 767px) {
    .star-tour-info{flex-direction: column;}
.tour-bottom{flex-direction: column;}
}

@media  (max-width: 600px) {
       .tours-grid {
        grid-template-columns: repeat(1, 1fr);
    } 
}

@media (max-width: 479px) {


  
    .maintitle {
        font-size: 30px;
        line-height: 40px;
    }
    .subtitle{font-size: 20px;line-height: 30px;}

    .destinations-section:before {
        background-size: 50%;
    }

    .testimonial-img img {
        max-width: 100%;
    }
    .tours-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}



/* ─────────────────────────────────────────────────────────────────────────────
   FLOATING UTILITY BUTTONS (WhatsApp on Left, Scroll to Top on Right)
   ───────────────────────────────────────────────────────────────────────────── */
.floating-utilities {
    position: fixed;
    bottom: 25px;
    left: 0;
    right: 0;
    pointer-events: none; /* Let clicks pass through empty spaces */
    z-index: 99999;
}

.whatsapp-float, .scroll-to-top {
    position: fixed;
    bottom: 25px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: auto; /* Re-enable pointer events for the buttons */
    text-decoration: none;
    border: none;
    cursor: pointer;
}

/* WhatsApp Float (Bottom Left) */
.whatsapp-float {
    left: 25px;
    background-color: #25D366;
    color: #ffffff;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.3);
    color: #ffffff;
}

/* Tooltip for WhatsApp */
.whatsapp-tooltip {
    position: absolute;
    left: 65px;
    background-color: #333333;
    color: #ffffff;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.whatsapp-tooltip::before {
    content: '';
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent #333333 transparent transparent;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Pulse animation for WhatsApp */
.whatsapp-float::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25D366;
    opacity: 0.4;
    z-index: -1;
    animation: whatsapp-pulse 2s infinite;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* Scroll to Top Float (Bottom Right) */
.scroll-to-top {
    right: 25px;
    background-color: var(--color-orange, #F68E1E);
    color: #ffffff;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background-color: var(--color-navy, #132048);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 30px rgba(246, 142, 30, 0.3);
    color: #ffffff;
}

/* Mobile Responsiveness for Floating Utilities */
@media (max-width: 767px) {
    .whatsapp-float, .scroll-to-top {
        width: 48px;
        height: 48px;
        font-size: 22px;
        bottom: 20px;
    }
    .whatsapp-float {
        left: 20px;
    }
    .scroll-to-top {
        right: 20px;
    }
    .whatsapp-tooltip {
        display: none; /* Hide tooltips on mobile */
    }
}

@media (min-width: 1200px) and (max-width: 1550px) {
    .container {
    padding: 0px 15px;
}
.mainHeader {
    padding: 0px 15px 0px 0px;
}
    .logo-box {
    padding: 20px 20px 20px 25px;
}
.logo img{
    height: 50px;
}
.nav-link {
    
    padding: 8px 12px;
}
.nav-menu {
    gap: 4px;
    font-size: 16px;
}
.nav-link:hover, .nav-link.active {
    padding: 8px 12px;
}
.social-icons a {
    width: 32px;
    height: 32px;   
}
.social-icons a {
    color: #fff;
    font-size: 16px;
}
.social-icons {
    display: flex;
    gap: 10px;
}
.header-bar{
  height: 48px;
}
.btn {
    padding: 10px 15px;
    font-size: 14px;
}
.fixed-header .container {
    max-width: 100%;
    padding: 0;
}
.feature-box h3 {
    font-size: 1.1rem;
}
.feature-box {  
    padding: 20px 30px;
}
.card-category {
    display: flex;
    align-items: start;
    gap: 6px;
    margin-bottom: 9px;
    line-height: normal;
}
.card-category img{
    position: relative;
    top: 6px;
}
.card-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 12px;
    min-height: 44px;
}
.car-content h4 {
    text-transform: uppercase;
    font-size: 16px;
}
.car-content {
    padding: 20px;
}
.info {
    display: flex;
    gap: 7px;
    align-items: center;
    font-size: 16px;
}

.tour-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}
.tour-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}
.tour-content {
    flex: 1;
    padding: 5px 10px 5px 0px;
}
.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
    gap: 50px;
    padding: 30px 15px !important;
}
.footer-col-large {
    padding-right: 0;
}
.footer-title {
    font-size: 20px;
    padding-bottom: 18px;
}
.footer-list li {
    margin-bottom: 8px;
}
p {
    margin-bottom: 1.5em;
    font-size: 16px;
    line-height: 26px;
}
 body {
        font-size: 16px;
    }
    .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}
.nav-list{gap: 5px}
}


@media (min-width: 993px) and (max-width: 1199px) {
    body {
        font-size: 16px;
    }
    .container {
    padding: 0px 15px;
}
.mainHeader {
    padding: 0px 0px 0px 0px;
}
    .logo-box {
    padding: 20px 20px 20px 25px;
}
.logo img{
    height: 40px;
}
.nav-link {
    
    padding: 8px 4px;
}
.nav-menu {
    gap: 4px;
    font-size: 12px;
}
.nav-list{gap: 24px}
.nav-link:hover, .nav-link.active {
    padding: 8px 4px;
}
.social-icons a {
    width: 32px;
    height: 32px;   
}
.social-icons a {
    color: #fff;
    font-size: 16px;
}
.social-icons {
    display: flex;
    gap: 10px;
}
.header-bar{
  height: 48px;
}
.btn {
    padding: 10px 15px;
    font-size: 14px;
}
.fixed-header .container {
    max-width: 100%;
  /*  padding: 0;*/
}

.slide-title {
    font-size: 28px;
    line-height: 40px;
}
.maintitle {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 54px;
}
.search-board {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    padding: 20px;
}
.dest-subtitle {
    font-size: 16px;
    line-height: 28px;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.main-polaroid {
    width: 50%;
    height: auto;
    right: 0;
    top: 88px;
    transform: rotate(2deg);
    z-index: 2;
}
.mini-polaroid {
    width: 50%;
    height: 46%;
    left: 0;
    bottom: 18%;
    transform: rotate(-2deg);
    z-index: 1;
}
p {
    font-size: 16px;
    line-height: 26px;
}
.feature-box {
    padding: 20px 20px;
}
.feature-box h3 {
    font-size: 1.1rem;
}
.card-category {
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 9px;
    line-height: 22px;
    align-items: start;
}
.card-category img{
    top: 5px;
    position: relative;
}
.card-title {
    font-size: 16px;
    font-weight: 600;
}
.car-content h4 {
    text-transform: uppercase;
    font-size: 16px;
}

.tour-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
    gap: 50px;
    padding: 30px 15px !important;
}
.footer-col-large {
    padding-right: 0;
}
.footer-title {
    font-size: 20px;
    padding-bottom: 18px;
}
.footer-list li {
    margin-bottom: 8px;
}

.experience-badge .year {   
    width: 60px;
    height: 60px;   
}
.experience-badge {   
    top: 0;
    left: 115px;
    width: 90px;
    height: 90px;   
}

}


/* Loader */
 #page-loader {
            position: fixed;
            inset: 0;
            z-index: 99999;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: #fff;
            transition: opacity 0.6s ease, visibility 0.6s ease;
        }

        #page-loader.loaded {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }

        /* Glowing decorative ring */
        .loader-ring {
            position: relative;
            width: 130px;
            height: 130px;
            margin-bottom: 30px;
        }

        .loader-ring::before,
        .loader-ring::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 50%;
        }

        /* Outer rotating arc */
        .loader-ring::before {
            border: 4px solid transparent;
            border-top-color: #D7A330;
            border-right-color: #D7A330;
            animation: spin 1s linear infinite;
        }

        /* Inner slower counter-rotating arc */
        .loader-ring::after {
            inset: 12px;
            border: 3px solid transparent;
            border-bottom-color: rgba(246,142,30,0.45);
            border-left-color: rgba(246,142,30,0.45);
            animation: spin 1.6s linear infinite reverse;
        }

        /* Logo inside the ring */
        .loader-logo-wrap {
            position: absolute;
            inset: 22px;
            border-radius: 50%;
            background: rgba(255,255,255,0.06);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            backdrop-filter: blur(4px);
        }

        .loader-logo-wrap img {
            width: 64px;
            height: 64px;
            object-fit: contain;
            animation: pulse-logo 1.8s ease-in-out infinite;
        }

       
    
        /* Animated fill */
        .loader-progress-fill {
            height: 100%;
            width: 0%;
            background: linear-gradient(90deg, #F68E1E, #ffb347);
            border-radius: 10px;
            animation: progress-fill 2.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
        }

        /* Subtle dot particles */
        .loader-dots {
            display: flex;
            gap: 8px;
            margin-top: 20px;
        }

        .loader-dots span {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #D7A330;
            animation: dot-bounce 1.4s ease-in-out infinite;
        }

        .loader-dots span:nth-child(2) { animation-delay: 0.2s; }
        .loader-dots span:nth-child(3) { animation-delay: 0.4s; }

        /* Keyframes */
        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        @keyframes pulse-logo {
            0%, 100% { transform: scale(1);   opacity: 1; }
            50%        { transform: scale(0.92); opacity: 0.8; }
        }

        @keyframes progress-fill {
            0%   { width: 0%; }
            40%  { width: 55%; }
            70%  { width: 78%; }
            100% { width: 100%; }
        }

        @keyframes dot-bounce {
            0%, 80%, 100% { transform: translateY(0);   opacity: 0.4; }
            40%            { transform: translateY(-8px); opacity: 1; }
        }

        /* Prevent scroll while loader is visible */
     /*   body.loading {
            overflow: hidden;
        }*/






  /* Dropdown wrapper */
.nav-item.has-dropdown {
    position: relative;
}

/* Arrow icon */
.nav-link .arrow {
    font-size: 10px;
    margin-left: 4px;
    display: inline-block;
    transition: transform 0.3s ease;
}

/* Arrow rotate on open */
.nav-item.has-dropdown.open .arrow {
    transform: rotate(180deg);
}

/* ── DESKTOP dropdown ── */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 230px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    border-top: 2px solid #d7a330;
    border-radius: 10px;
    z-index: 999;
    list-style: none;
    padding: 8px 0;
    margin: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 18px;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s;font-weight: 300;
}

.dropdown-menu li a:hover {
    background-color: #ca9624;
    color: #fff;
}

/* Desktop: show on hover via CSS */
@media (min-width: 769px) {
    .nav-item.has-dropdown:hover > .dropdown-menu {
        display: block;
    }
    .nav-item.has-dropdown:hover .arrow {
        transform: rotate(180deg);
    }
}

/* ── MOBILE dropdown ── */
@media (max-width:992px) {
    .dropdown-menu {
        position: static;
        box-shadow: none;
        border-top: none;
        border-left: 3px solid #d7a330;
        background-color: #f9f9f9;
        padding: 4px 0 4px 12px;
        width: 100%;
        /* NO display:none here — JS slideToggle manages it */
    }

    .has-dropdown .dropdown-menu li a:hover{background: transparent;color: #f68e1e;}
}


/* Desktop: dropdown parent link gets active style on hover */
@media (min-width: 769px) {
 /*   .nav-item.has-dropdown:hover > .dropdown-toggle {
        color: var(--color-orange);
        background: #fff;
        border-radius: 50px;
        padding: 8px 24px;
    }*/
}



/* ── Dropdown Submenu Styles ── */
.dropdown-menu li {
    position: relative;
}

/* Arrow indicator for submenus */
.dropdown-menu .has-submenu > .submenu-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-menu .has-submenu > .submenu-toggle::after {
    content: "\f054"; /* FontAwesome right chevron */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 10px;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

/* Rotate arrow on open (primarily for mobile) */
.dropdown-menu .has-submenu.open > .submenu-toggle::after {
    transform: rotate(90deg);
}

/* Desktop layout for submenu */
@media (min-width: 993px) {
    .dropdown-menu .submenu {
        display: none;
        position: absolute;
        top: -8px; /* align with parent top padding */
        left: 100%;
        background-color: #fff;
        min-width: 240px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.12);
        border-top: 2px solid #d7a330;
        border-radius: 10px;
        z-index: 1000;
        list-style: none;
        padding: 8px 0;
        margin: 0;
        margin-left: 2px; /* tiny gap */
    }

    .dropdown-menu li.has-submenu:hover > .submenu {
        display: block;
    }
    
    .dropdown-menu li.has-submenu:hover > .submenu-toggle::after {
        color: #fff;
    }
}

/* Mobile layout for submenu */
@media (max-width: 992px) {
    .dropdown-menu .submenu {
        display: none; /* controlled by JS slideToggle */
        position: static;
        box-shadow: none;
        background-color: #f5f5f5;
        border-left: 2px solid #d7a330;
        padding: 4px 0 4px 12px;
        width: 100%;
        list-style: none;
        margin: 4px 0;
    }
    
    .dropdown-menu .submenu li a {
        padding: 8px 12px;
        font-size: 13px;
        color: #555;
    }
    
    .dropdown-menu .submenu li a:hover {
        background: transparent;
        color: #d7a330;
    }
}




/* Search */

.search-box{
    flex:1;
    max-width:520px;
    position:relative;
}

.search-box input{
    width:100%;
    height:42px;
    border:none;
    border-radius:5px;
    padding:0 45px 0 15px;
    outline:none;
    font-size:14px;
}

.search-box button{
    position:absolute;
    right:0;
    top:0;
    width:45px;
    height:42px;
    border:none;
    background:none;
    cursor:pointer;
    color:#555;
    font-size:16px;
}
@media (max-width: 1200px) {
.search-box{max-width:420px;}
}

.phone{
    display:flex;
    align-items:center;
    gap:8px;
  
}

.phone i{
    font-size:16px;
}

.header-right .fa-whatsapp:hover{
    color:#25D366;
}

.header-right .fa-facebook-f:hover{
    color:#1877F2;
}

.header-right .fa-linkedin-in:hover{
    color:#0A66C2;
}

.header-right .fa-instagram:hover{
    color:#E4405F;
}

.break{display: block;}

/* =====================================================================
   MOBILE SEARCH ICON BUTTON
   ===================================================================== */

/* Hide on desktop by default */
.mobile-search-icon {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: #fff;
    font-size: 20px;
    padding: 8px 10px;
    transition: color 0.25s ease;
    margin-left: auto;
}
.mobile-search-icon:hover {
    color: var(--color-orange, #f5a623);
}

/* =====================================================================
   MOBILE SEARCH POPUP
   ===================================================================== */

.mobile-search-popup {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(10, 20, 50, 0.97);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 80px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-search-popup.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-search-popup-inner {
    width: 100%;
    max-width: 600px;
    padding: 0 20px;
    transform: translateY(-30px);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-search-popup.active .mobile-search-popup-inner {
    transform: translateY(0);
}

.mobile-search-close {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -50px;
    right: 20px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    font-size: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
    z-index: 100000;
}

.mobile-search-close:hover {
    background: rgba(255,255,255,0.25);
    transform: rotate(90deg);
}

.mobile-search-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.mobile-search-form input {
    width: 100%;
    height: 54px;
    border: 2px solid rgba(255,255,255,0.25);
    border-radius: 8px;
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-size: 17px;
    padding: 0 18px;
    outline: none;
    transition: border-color 0.25s ease;
}

.mobile-search-form input::placeholder {
    color: rgba(255,255,255,0.45);
}

.mobile-search-form input:focus {
    border-color: var(--color-orange, #f5a623);
    background: rgba(255,255,255,0.12);
}

.mobile-search-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 50px;
    border: none;
    border-radius: 8px;
    background: var(--color-orange, #f5a623);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.15s ease;
}

.mobile-search-submit:hover {
    background: #e08800;
    transform: scale(1.02);
}

/* =====================================================================
   NAV DRAWER — SOCIAL ICONS AT BOTTOM
   ===================================================================== */

.nav-social-icons {
    display: none; /* shown only on mobile via media query */
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 30px;
    gap: 18px;
    justify-content: center;
    align-items: center;
    border-top: 1px solid rgba(0,0,0,0.08);
    background: #fff;
}

.nav-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #f0f4ff;
    color: #132048;
    font-size: 17px;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
    border-bottom: none !important;
}

.nav-social-icons a:hover {
    transform: translateY(-3px);
    background: #132048;
    color: #fff;
}

.nav-social-icons .fa-whatsapp:hover { background: #25D366 !important; color: #fff; }
.nav-social-icons .fa-facebook-f:hover { background: #1877F2 !important; color: #fff; }
.nav-social-icons .fa-linkedin-in:hover { background: #0A66C2 !important; color: #fff; }
.nav-social-icons .fa-instagram:hover { background: #E4405F !important; color: #fff; }

/* =====================================================================
   RESPONSIVE RULES — MOBILE (≤992px)
   ===================================================================== */

@media (max-width: 992px) {

    /* Show mobile search icon, hide desktop search bar */
    #desktopSearchBox {
        display: none !important;
    }
    .mobile-search-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        color: #000;
        margin-right: 10px;
        order: 2; /* sits between logo and hamburger */
    }

    /* Push hamburger after search icon */
    .mobile-nav-toggle {
        order: 3;
        margin-left: 0;
    }
    .header-menu{background: transparent;padding: 0px;}

    /* Header layout tweaks */
    .mainHeader {
        padding: 0 15px 0 0;
        flex-wrap: nowrap;
    }

    /* Hide desktop header-right social icons (they appear in nav drawer) */
    .header-right {
       /* display: none !important;*/
       background: transparent;padding: 0px;
    }

    /* Mobile nav menu — extend height to show social icons area */
    .nav-menu {
        padding-bottom: 90px; /* leave room for pinned social icons */
    }

    /* Show social icons bar in mobile nav */
    .nav-social-icons {
        display: flex;
    }
}

/* =====================================================================
   FOOTER-BOTTOM — RESPONSIVE (≤768px)
   ===================================================================== */
@media (max-width: 768px) {

    .footer-bottom {
        padding: 14px 0;
    }

    .footer-bottom-container {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        text-align: center;
    }

    /* Copyright line: hide pipe divider, wrap naturally */
    .footer-bottom-copy {
        justify-content: center;
        font-size: 12.5px;
        gap: 4px;
        flex-wrap: wrap;
    }

    .footer-divider {
        display: none; /* pipe looks awkward on narrow screens */
    }

    /* Payment row: centre-stacked */
    .footer-payment {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .payment-label {
        font-size: 12px;
    }

    .payment-icons {
        gap: 6px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .payment-icons img {
        height: 22px;
    }
}

/* =====================================================================
   FOOTER-BOTTOM — RESPONSIVE (≤480px — small phones)
   ===================================================================== */
@media (max-width: 480px) {

    .footer-bottom-copy {
        font-size: 11.5px;
        text-align: center;
    }

    /* Hide "Payment Methods :" label on very small screens to save space */
    .payment-label {
        display: none;
    }

    .payment-icons {
        gap: 5px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .payment-icons img {
        height: 20px;
    }
}




/* -------------------------------------------------------------
   Inner Pages - Common & Specific Styles
   ------------------------------------------------------------- */
.inner-banner {
    background-image: linear-gradient(rgba(19, 32, 72, 0.8), rgba(19, 32, 72, 0.9)), url('../images/banner1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 150px 0 80px 0;
    text-align: center;
    position: relative;
    border-bottom: 4px solid var(--color-orange);
}

.inner-banner-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-bg-white);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.breadcrumbs {
    display: inline-flex;
    align-items: center;
    gap: 8px;
   /* background: rgba(255, 255, 255, 0.1);
    padding: 6px 18px;
    border-radius: 30px;*/
    font-size: 0.9rem;
    color: var(--color-bg-white);
    /*backdrop-filter: blur(5px);*/
    flex-wrap: wrap;
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-fast);
}

.breadcrumbs a:hover {
    color: var(--color-orange);
}

.breadcrumbs span.separator {
    color: rgba(255, 255, 255, 0.4);
}

.breadcrumbs span.current {
    color: var(--color-orange);
    font-weight: 600;
}

/* About Intro Details */
.about-inner-intro {   
    background-color: #fff;
}

.about-inner-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.about-inner-content h3 {
    font-size: 1.8rem;
    color: var(--color-navy);
    margin-bottom: 20px;
    font-family: var(--font-heading);
    position: relative;
    padding-bottom: 10px;
}

.about-inner-content h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: var(--color-orange);
}

.about-inner-content p {
    /*color: #555;
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.7;*/
}

.about-inner-content .highlight-box {
    background-color: var(--color-bg-cream);
    border-left: 4px solid var(--color-orange);
    padding: 20px;
    border-radius: 0 8px 8px 0;
    margin-top: 30px;
}

.about-inner-content .highlight-box p {
    margin-bottom: 0;
    font-style: italic;
    font-weight: 600;
    color: var(--color-navy);
}

.about-inner-images {
    position: relative;
    display: flex;
    justify-content: center;
}

.about-img-box {
    position: relative;
    width: 100%;
   
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

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

/* Mission & Vision Section */
.mission-vision-section {
    background-color: var(--color-bg-cream);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mv-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 42px 38px;
    box-shadow: 0 12px 38px rgba(1, 39, 101, 0.07);
    border: 1px solid rgba(1, 39, 101, 0.08);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--color-text-dark), #2a5298);
    transition: height 0.3s ease;
}
.vision-card::before {
    background:linear-gradient(90deg, #d6a330, #d6a330);
}

.mv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(1, 39, 101, 0.13);
    border-color: rgba(1, 39, 101, 0.16);
}

.vision-card:hover {
    border-color: rgba(214, 163, 48, 0.4);
}
.mv-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--color-text-dark) 0%, #1a3a70 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.45rem;
    flex-shrink: 0;
    box-shadow: 0 10px 24px rgba(1, 39, 101, 0.22);
    transition: transform 0.35s ease;
}

.vision-card .mv-icon {
    background: linear-gradient(135deg, var(--color-orange) 0%, #d6a330 100%);
    box-shadow: 0 10px 24px rgba(214, 163, 48, 0.32);
}

.mv-card:hover .mv-icon {
    transform: scale(1.08) rotate(3deg);
}
.mv-header-group h3 {
    font-size: 1.25rem;
  
    color: var(--color-text-dark);
    line-height: 1.35;
    margin-bottom: 4px;
}
.mv-motto {
    display: block;
    font-size: 0.8rem;
    color: var(--color-orange);
    font-weight: 600;
    font-style: italic;
}

.vision-card .mv-motto {
    color: #012765;
}

.mv-card-footer {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid rgba(1, 39, 101, 0.07);
}

.mv-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-text-dark);
    background: rgba(1, 39, 101, 0.04);
    border: 1px solid rgba(1, 39, 101, 0.08);
    padding: 6px 14px;
    border-radius: 20px;
}

.mv-badge i {
    color: var(--color-orange);
}


.mv-card p {
    /*color: var(--color-text-gray);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;*/
}

/* Core Values Section */
.values-section {
 
    background-color: var(--color-bg-white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 36px 26px 28px;
    border: 1px solid rgba(1, 39, 101, 0.08);
    box-shadow: 0 10px 30px rgba(1, 39, 101, 0.05);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.value-card-shine {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--color-orange), transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 50px rgba(1, 39, 101, 0.12);
    border-color: rgba(214, 163, 48, 0.35);
}

.value-card:hover .value-card-shine {
    transform: scaleX(1);
}

.value-card:hover .value-number {
    color: rgba(214, 163, 48, 0.18);
}

.value-icon-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.value-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: linear-gradient(135deg, #f4f7ff 0%, #e8eeff 100%);
    border: 1px solid rgba(1, 39, 101, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-dark);
    font-size: 1.35rem;
    transition: all 0.35s ease;
}

.value-card:hover .value-icon {
    background: linear-gradient(135deg, var(--color-orange) 0%, #e07f00 100%);
    color: #fff;
    border-color: var(--color-orange);
    transform: scale(1.1) rotate(4deg);
    box-shadow: 0 10px 22px rgba(214, 163, 48, 0.35);
}

.value-pill {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding: 4px 12px;
    border-radius: 20px;
    background: rgba(1, 39, 101, 0.05);
    color: var(--color-text-dark);
    transition: all 0.3s ease;
}

.value-card:hover .value-pill {
    background: rgba(214, 163, 48, 0.15);
    color: #a07203;
}

.value-card h4 {
    font-size: 1.08rem;
    font-weight: 800;
    color: var(--color-text-dark);
    margin-bottom: 12px;
    line-height: 1.35;
}

.value-card p {
 /*   font-size: 0.83rem;*/
    /*color: var(--color-text-gray);*/
  /*  line-height: 1.75;*/
    margin-bottom: 20px;
    flex-grow: 1;
}

.value-footer-line {
    display: flex;
    align-items: center;
    gap: 7px;
    padding-top: 14px;
    border-top: 1px dashed rgba(1, 39, 101, 0.1);
    font-size: 0.74rem;
    font-weight: 700;
    color: var(--color-text-dark);
}

.value-footer-line i {
    color: #10b981;
    font-size: 0.78rem;
}



/* ── Why Choose Star Travels Section ── */
.why-choose-section {
 background: linear-gradient(145deg, #010f2e 0%, #012765 50%, #01205a 100%);
  /*  padding: 90px 0;*/
    position: relative;
    overflow: hidden;
     /*background-color: var(--color-bg-cream);*/
}

.why-choose-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(214, 163, 48, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 10% 80%, rgba(214, 163, 48, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.why-choose-section .section-header-center .subtitle {
    color: var(--color-orange);
}

.why-choose-section .section-header-center .maintitle {
    color: #fff;
}

.section-desc {
    /*max-width: 600px;*/
    margin: 14px auto 0;
   /* font-size: 0.85rem;*/
    color: rgba(255, 255, 255, 0.6);
    /*line-height: 1.8;*/
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

.wc-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: default;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.wc-card:hover {
    transform: translateY(-8px);
}

.wc-card-inner {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 20px;
    padding: 38px 30px 32px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: background 0.4s ease, border-color 0.4s ease;
}

.wc-card:hover .wc-card-inner {
    background: rgba(214, 163, 48, 0.1);
    border-color: rgba(214, 163, 48, 0.35);
}

/* Ghost number watermark */
.wc-number {
    position: absolute;
    top: -10px;
    right: 16px;
    font-size: 5.5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.04);
    line-height: 1;
    transition: color 0.4s ease;
    user-select: none;
    pointer-events: none;
}

.wc-card:hover .wc-number {
    color: rgba(214, 163, 48, 0.12);
}

.wc-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(214, 163, 48, 0.12);
    border: 1px solid rgba(214, 163, 48, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--color-orange);
    margin-bottom: 22px;
    transition: background 0.35s ease, transform 0.35s ease;
}

.wc-card:hover .wc-icon {
    background: var(--color-orange);
    color: #fff;
    transform: scale(1.1) rotate(-4deg);
}

.wc-card-inner h4 {
    font-size: 1.05rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.wc-card-inner p {
    /*font-size: 0.82rem;*/
    color: rgba(255, 255, 255, 0.6);
   /* line-height: 1.85;*/
    position: relative;
    z-index: 1;
    transition: color 0.35s ease;
}

.wc-card:hover .wc-card-inner p {
    color: rgba(255, 255, 255, 0.8);
}

/* Bottom accent line on hover */
.wc-card-inner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-orange), #ffb347);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.wc-card:hover .wc-card-inner::after {
    transform: scaleX(1);
}

/*@media (max-width: 1024px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}*/
@media (max-width: 992px) {

.why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
}

}
@media (max-width: 479px) {
.mv-card {
   
    border-radius: 24px;
    padding: 42px 20px;
   
}
.mv-header-group h3 {
    font-size: 20px;
    color: var(--color-text-dark);
   
}
.why-choose-grid {
    grid-template-columns: repeat(1, 1fr);
}

.cta-buttons a{margin-right: 0px;margin-bottom: 10px;}
.cta-banner{padding: 30px 0px;}
}

/* Call to Action Banner */
.cta-banner {
    
    padding: 80px 0;
    text-align: center;
    
}
/*
.cta-banner {
  background-size: cover;
    background-position: center;
    padding: 80px 0;
    text-align: center;
    color: var(--color-bg-white);
    background-color: #D7A330;
    background-image: url(../images/popular-img-bg.png);
    background-repeat: repeat;
    z-index: 0;
}*/

.cta-banner h2 {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 800;
    color: #000;
    margin-bottom: 15px;
}

.cta-banner p {
    font-size: 18px;
    max-width: 500px;
    margin: 0 auto 30px auto;
    color: #555;
}

/* Responsive Media Queries for Inner Pages */
@media(min-width:993px) and (max-width:1200px) {
    .value-card{padding: 15px;}
.values-grid{gap: 15px}
.value-icon-box {
    flex-direction: column;
    gap: 10px;align-items: flex-start;
}

}


@media (max-width: 992px) {
    .about-inner-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-inner-images {
        order: -1;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .timeline-container::after {
        left: 31px;
    }
    
    .timeline-block {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    
    .timeline-block-left {
        left: 0;
        text-align: left;
    }
    
    .timeline-block-right {
        left: 0;
        text-align: left;
    }
    
    .timeline-pointer {
        left: 21px !important;
        right: auto;
    }
}

@media (max-width: 768px) {
    .inner-banner {
        padding: 130px 0 60px 0;
    }
    
    .inner-banner-title {
        font-size: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-banner h2 {
        font-size: 1.8rem;
    }
}

.cta-buttons .btn-white:hover{background: #012765;}




/* destination page */
.dest-attractions-section {
    background: #fff;
   
}


.destination-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-bottom: 0px;
}
.dest-card-new {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    /* box-shadow: 0 8px 28px rgba(10, 28, 58, 0.09); */
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    border: 1px solid #E6E6E6;position: relative;
}
.dest-img-wrap {
    position: relative;
    width: 100%;
    height: 220px;
    /* overflow: hidden; */
    border-radius: 20px 20px 0 0;
}
.dest-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: block;
}
.dest-name-overlay {
    color: #012765;
    font-size: 22px;
    padding: 15px 15px 0px 15px;
    font-weight: 500;
}

.dest-meta-row {
    display: flex;
   
    gap: 12px;
    padding: 15px ;
}

.dest-meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 15px;
    border-radius: 12px;
    background: #f2f6fb;
    font-size: 14px;
    font-weight: 600;
    color: #243c61;
    white-space: nowrap;
}
.dest-meta-pill:first-child {
    background: #fcf3e3;
    color: #b57d22;
}
.dest-meta-pill i {
    font-size: 15px;
}
.arrow-button-destination {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #c99336;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 7px 16px rgba(201, 147, 54, 0.25);
}

/* ── Travel Guide Section ── */
.dest-guide-section {
   background: #FFF7EF;    
}

.guide-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
    margin-top: 20px;
}

.guide-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 34px 26px;
    border: 1px solid rgba(1, 39, 101, 0.08);
    box-shadow: 0 8px 30px rgba(1, 39, 101, 0.05);
    transition: all 0.35s ease;
}

.guide-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(1, 39, 101, 0.1);
    border-color: rgba(214, 163, 48, 0.35);
}

.guide-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(1, 39, 101, 0.08) 0%, rgba(214, 163, 48, 0.14) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--color-orange);
    margin-bottom: 20px;
    transition: all 0.35s ease;
}

.guide-card:hover .guide-icon {
    background: var(--color-orange);
    color: #ffffff;
    transform: scale(1.1) rotate(4deg);
}

.guide-card h4 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--color-text-dark);
    margin-bottom: 12px;
}

.guide-card p {
    font-size: 0.82rem;
    color: var(--color-text-gray);
    line-height: 1.75;
    margin-bottom: 10px;
}

.guide-card p:last-child {
    margin-bottom: 0;
}

@media(min-width:901px) and (max-width:1100px) {
.star-tour-info{flex-direction: column;}
.tour-bottom{flex-direction: column;gap: 10px}

}

@media(max-width:900px) { 

       .attractions-grid,.guide-cards-grid, .destination-grid-new {
   
    grid-template-columns: repeat(2, 1fr);
   
}

}
@media(max-width:600px) {

    .attractions-grid, .guide-cards-grid, .destination-grid-new {
   
    grid-template-columns: repeat(1, 1fr);
   
}
    }



/* packages */

.searchDiv{display:flex;justify-content: center; margin:0 0 50px; flex-wrap:wrap}
.searchDiv .bx{max-width:300px; margin:5px;}
.searchDiv .bx select{width:200px;  font-size:16px;padding: 0px 14px;background-color: #fff; color: var(--color-text-dark);  border: 1px solid #A8A8A8;
    border-radius: 6px;  line-height: 20px;
    height: 40px; outline: none;}
.searchDiv .bx button, .searchDiv .bx input[type=button], .searchDiv .bx input[type=reset], .searchDiv .bx input[type=submit]{padding: 10px 20px; margin:0 5px;font-size: 16px; box-shadow:none; background-color: var(--color-navy);color: var(--color-bg-white); border-color:#ffbd0f; }

/*.dynamicPkgGrid{display:flex; flex-wrap:wrap; margin:0 -10px;}*/
.dynamicPkgGrid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;}
.dynamicPkgGrid .item{background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(13, 27, 75, 0.10);
    transition: box-shadow 0.25s, transform 0.25s;}

    .dynamicPkgGrid .item:hover {
    transform: translateY(-8px);
}

.dynamicPkgGrid.pkgslider .scalebox {padding: 0;}


/*.productImage{padding-top: 130%;position: relative;overflow: hidden;   border: 1px solid #ccc; border-radius: 15px;}*/

.productImage
{
   position: relative;
    width: 100%;
   height: 300px;
    overflow: hidden;

/*
    padding-top: 130%;
    position: relative;
    overflow: hidden;
    border: 1px solid #ccc;
    border-radius: 15px;*/
}

.productImage img {
/* display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    padding: 0;
    margin: auto;
    bottom: 0;
    width: 100%;*/
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.pkgslider .flexText{display:flex; margin:10px 0 0;padding: 16px 18px 20px;}
.pkgslider .flexText .fleft{flex:1}
.pkgslider .flexText .fleft .packageName{font-size:16px; color:#000; font-weight:500}
.pkgslider .flexText .fleft .packageCount{font-size:14px; color:rgba(0,0,0,.56)}
.pkgslider .flexText .fright{text-align:right;color:#f68e1e; font-size:16px}
    
  @media (max-width: 1020px) {
  .dynamicPkgGrid {
    grid-template-columns: repeat(3, 1fr);
  }
} 
 

  @media (max-width: 767px) {
  .dynamicPkgGrid {
    grid-template-columns: repeat(2, 1fr);
  }
} 
  


  @media (max-width: 479px) {
  .dynamicPkgGrid {
    grid-template-columns: repeat(1, 1fr);
  }
  .searchDiv .bx{width: 100%;max-width: 100%;}
  .searchDiv .bx select{width: 100%;}
} 
   
  

 .content-with-sidebar {
    display: flex;
    justify-content: space-between;gap: 30px;
}

.sidebar {
  width: 30%;
  height: 850px;
  min-height: 200px;
  overflow: auto;
  position: sticky;
  top: 5%;
  background-color:#fff;
  /*box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);*/
 
  color: #222;
  padding: 25px;


    box-shadow: 0 4px 24px rgba(13, 27, 75, 0.10);
    border-radius: 14px;
    background: #fff;


}
.sidebar h2{margin: 0 0 15px;font-weight: 800;}
.main-content {
    width: 70%;    
}



table.pkg {background-color: #fff; font-size: 16px; border-top: 1px solid #c2c2c2; border-left: 1px solid #c2c2c2; }
table.pkg td {padding: 10px; border-bottom: 1px solid #c2c2c2; border-right: 1px solid #c2c2c2; color: #1a1a1a; }
table.pkg td:first-child {background-color: #f1f1f1; }

.html5gallery-elem-0 {
    overflow: hidden;
    /* padding: 4px; */
    -moz-box-shadow: none;
   -webkit-box-shadow: none;
     box-shadow: none !important;

    /* border-radius: 14px;*/
     background: transparent;
     }

.priceDetails{    -moz-box-shadow: 0 4px 24px rgba(13, 27, 75, 0.10);
   -webkit-box-shadow: 0 4px 24px rgba(13, 27, 75, 0.10);
     box-shadow: 0 4px 24px rgba(13, 27, 75, 0.10);

     border-radius: 14px;
     background: #fff;}

.pkg-day-txt{ 
    margin-bottom:30px;
    box-shadow: 0 4px 24px rgba(13, 27, 75, 0.10);
    border-radius: 14px;
}
.pkg-day-txt.last{padding-bottom:0px; border-bottom:none; margin-bottom:0px;}
.pkgtitle {
    font-size: 22px;
    background: #d6a330;
    color: #222;
    border-radius: 14px;
    display: flex;
    height: 56px;
    line-height: 48px;
    
}
.pkgtitle:before,.pkgtitle:after{content:""; display:block; clear:both}
.roundNum {
    display: flex;
    width: 70px;
    border-radius: 14px;
    background: #012765;
    font-size: 30px;
    text-align: center;
    font-weight: 900;
    color: #d6a330;
    flex-direction: column;
    justify-content: center;
    height: 70px;
    /* clip-path: polygon( 0 0, 100% 0, 100% 82%, 50% 100%, 0 82% ); */
    line-height: 34px;
    position: absolute;
}
.roundNum span{display:block; font-weight:700; line-height:16px; padding:5px 0 0;font-size:16px;color: #fff;}
.titletxtonly{flex:1; padding:5px 0 0 90px;font-size:24px; color:#fff }
.pkgdesc{ clear:both; padding:30px 30px 30px 30px}


.col21 {
    width: 48%;
    display: inline-block;
    margin: 0 2% 0 0;
    float: left;
}
.pkgDetailDesc, .pkgDetailDesc * {
    font-size: 18px !important;
    color: #333; /* Optional */
}
ul.style1,.pkgDetailDesc ul{padding: 0; margin: 0 0 15px 0; list-style-type: none; }
ul.style1 li,.pkgDetailDesc ul li {padding: 0 0 9px 31px; position: relative; margin: 0; }
ul.style1 li:before,.pkgDetailDesc ul li:before {content: ""; width: 24px; height: 24px; background: url(../images/icon-arrow.png) 0 0 no-repeat; padding: 0; margin-left: 0; display: inline-block; position: absolute; left: 0; top: 6px; background-size: 18px; }
.style1.values li:before {position:relative; top:8px; margin-right:5px; }
.style1.values li {padding: 0 0 2px 0; }

.package-detail-box .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.package-detail-box .col21 {
    width: 100%;
    display: inline-block;   
    padding: 30px;
    vertical-align: top;
    box-shadow: 0 4px 24px rgba(13, 27, 75, 0.10);
    border-radius: 14px;
    background: #fff;
    float: none;
}

@media(max-width:1150px){

 .main-content {width: 50%;}
    .sidebar {width: 50%;}

}




@media(max-width:991px){

    .content-with-sidebar{flex-direction: column;}
    .main-content {width: 100%;}
    .sidebar {width: 100%;}
    .package-detail-box .container{grid-template-columns: repeat(1, 1fr);}



}

/* page car rental css */

.car-img-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
    
    .grid-item {
     overflow: hidden;
    background: #FFFFFF;
    border: 1px solid rgba(220, 193, 177, 0.3);
    box-shadow: 0px 4px 10px rgba(26, 26, 26, 0.12);
    border-radius: 12px;

    margin: 30px 0px 20px 0px;
    transition: 0.3s;border-top: 3px solid #D7A330;
    }
    
    .grid-item:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    }
    .grid-item .car-img{height: 300px;}
    
/*    .grid-item img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    margin-bottom: 20px;
    
}*/
.car-seat{margin-bottom: 0px;}

.car-info-grid {
    display: flex;
    gap:20px;
    margin-bottom: 10px;
}


.car-img-left h2 , .car-content-right h2{margin-bottom: 20px;}
.car-img-left {
    width: 48%;
    display: inline-block;
    margin: 0;
    float: right;
}
.car-content-right {
    width: 48%;
    display: inline-block;
    margin: 0 3% 0 0;
    float: left;
}
.border-img {
    max-width: 100%;
    width: auto;
    margin: 0 auto;
    border-radius: 20px;
    display: inline-block;
    overflow: hidden;
}
ul.car-list li:before {
    content: "";
    width: 60px;
    height: 60px;
    background: url(../images/check-circle.svg) 0 0 no-repeat;
    background-size: auto;
    padding: 0;
    margin-left: 0;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 6px;
    background-size: 22px;
}
ul.car-list li {
    padding: 0 0 9px 31px;
    position: relative;
    margin: 0;
}
.mb20 {
    margin-bottom: 20px;
}
@media(max-width:991px){
.car-img-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}
.car-img-left , .car-content-right {
    width: 100%;
}
.car-img-left {
    margin-top: 20px;
}
}

@media(max-width:567px){
.car-img-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
}
}


/* contact page css */

section.fullrow.sm-pt0 {
    background: #F0F0F0;
}
.right-contect{background: #fff;
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;}
.detail-item {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
}
.detail-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(180deg, #c99624 0%, #e2b13a 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.detail-icon i {
    color: #fff;
    font-size: 1.3rem;
}

.contact-flex{
    display:flex;
    gap:40px;
    align-items:stretch;
}

.contact-flex .col21,
.contact-flex .col22{
    float:none;
    width:50%;
}



.formWrap h2,
.col21 h2, .col22 h2{
    margin-bottom:25px;
    font-size:34px;
    color:#222;
    font-weight:700;line-height: 46px;
}

.formWrap .col21,
.formWrap .col22{
    width:48%;
    float:left;
    margin-bottom:20px;
}

.formWrap .col21{
    margin-right:4%;
}

.formWrap .col22{
    margin-right:0;
}

.formWrap .colfull{
    width:100%;
    margin-bottom:20px;
}

.formWrap input[type="text"],
.formWrap input[type="email"],
.formWrap input[type="tel"],
.formWrap input[type="date"],
.formWrap input[type="number"],
.formWrap textarea,
#myresult{
    width:100%;
    height:54px;
    border:1px solid #ddd;
    border-radius:8px;
    padding:0 18px;
    font-size:15px;
    color:#333;
    background:#fafafa;
    transition:.3s;
    box-sizing:border-box;
}

.formWrap textarea{
    height:90px;
    resize:none;
    padding:15px 18px;
}


.form-group{
    margin:15px 0 25px;
    padding:18px;
    border:1px dashed #ddd;
    border-radius:8px;
    background:#fafafa;
}

.field-col1{
    margin-bottom:12px;
    font-size:15px;
    line-height:1.6;
}

/*.btn-grad{
    display:inline-block;
    padding:10px 25px;
    background:#d6a330;
    color:#fff;
    border:none;
    border-radius:8px;
    cursor:pointer;
    font-size:16px;
    font-weight:600;
    transition:.3s;
}
*/
.form-title {
   
    font-size: 2.4rem;
    color: #222;
    margin-bottom: 30px;
}
.contact-details{
    display:flex;
    justify-content:space-between;
    gap:30px;
    flex-wrap:wrap;
}
.detail-text p{margin-bottom: 5px;}

.contact-details .card-details{
    flex:1;
    min-width:280px;
    background:#fff;
    border-radius:12px;
    padding:35px 30px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    border:1px solid #ececec;
    transition:all .35s ease;
    position:relative;
    overflow:hidden;
}

.contact-details .card-details::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background: #D7a330; 
    transform:scaleX(0);
    transition:.35s;
}

.contact-details .card-details:hover::before{
    transform:scaleX(1);
}

.contact-details .card-details:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.contact-details .card-details img{
    width:70px;
    height:70px;
    object-fit:contain;
    margin-bottom:20px;
    padding:15px;
    border-radius:50%;
    background:#f8f8f8;
    border:1px solid #eee;
}

@media (max-width: 1100px) {
.right-contect{padding: 30px 20px;}
.form-title{font-size: 32px;}
/*.header-right{padding: 31px 35px 31px 50px;}*/
}


@media (max-width: 992px) {

.contact-flex {
    flex-direction: column;
}
.contact-flex .col21, .contact-flex .col22 {
    width: 100%;
}
    .nav-menu.open {
        right: 0;
    }

.right-contect{padding: 30px 20px;}
.form-title{font-size: 26px;}


}


/* Mobile drill-in navigation panels */
.mobile-panel-open,
.mobile-panel-back {
    display: none;
}

@media (max-width: 992px) {
    .nav-menu {
        overflow: hidden;
    }

    .nav-list {
        position: relative;
        z-index: 1;
    }

    .nav-item.has-dropdown,
    .dropdown-menu li.has-submenu {
        display: flex;
        align-items: center;
        position: relative;
    }

    .nav-item.has-dropdown > .dropdown-toggle,
    .dropdown-menu .has-submenu > .submenu-toggle {
        flex: 1 1 auto;
        padding-right: 48px;
    }

    .nav-link .arrow,
    .dropdown-menu .has-submenu > .submenu-toggle::after {
        display: none;
    }

    .mobile-panel-open {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 42px;
        height: 42px;
        border: 0;
        border-left: 1px solid #f0f4ff;
        background: transparent;
        color: #132048;
        cursor: pointer;
        z-index: 2;
    }

    .mobile-panel-open i {
        font-size: 13px;
    }
/*
    .dropdown-menu,
    .dropdown-menu .submenu {
        display: block !important;
        position: fixed !important;
        top: 0;
        right: 0;
        bottom: 0;
        left: auto;
        width: 280px;
        max-width: 80vw;
        min-width: 0;
        height: 100vh;
        margin: 0;
        padding: 110px 30px 100px;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        background: #fff;
        list-style: none;
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1200;
    }*/

    .has-dropdown.open > .dropdown-menu,
    .has-submenu.open > .submenu {
        transform: translateX(0);
    }

    .dropdown-menu .submenu {
        background: #fff;
        z-index: 1210;
    }

    .dropdown-menu li,
    .dropdown-menu .submenu li {
        border-bottom: 1px solid #f0f4ff;
    }

    .dropdown-menu li a,
    .dropdown-menu .submenu li a {
        display: block;
        width: 100%;
        padding: 14px 0;
        border-bottom: 0;
        color: #111;
        font-size: 16px;
        font-weight: 600;
        white-space: normal;
    }

    .dropdown-menu li a:hover,
    .dropdown-menu .submenu li a:hover {
        background: transparent;
        color: #d7a330;
    }

    .mobile-panel-back {
        display: flex;
        align-items: center;
        gap: 10px;
        position: absolute;
        top: 60px;
        left: 30px;
        right: 30px;
        min-height: 42px;
        border: 0;
        border-bottom: 1px solid #f0f4ff;
        background: #fff;
        color: #132048;
        font-size: 16px;
        font-weight: 700;
        text-align: left;
        cursor: pointer;
        z-index: 1220;
    }

    .mobile-panel-back i {
        font-size: 13px;
    }




.topbar{display: none;}









}

.mb50{margin-bottom: 50px;}


/* =============================================================
   SECTION 6 — Industries Grid
   ============================================================= */

.industries-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    margin-top: 40px;
}

.industry-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: var(--color-bg-cream);
    border: 1.5px solid var(--color-border);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-navy);
    cursor: default;
    transition: var(--transition-smooth);
}

.industry-pill i {
    color: var(--color-orange);
    font-size: 1rem;
}

.industry-pill:hover {
    background: var(--color-navy);
    color: #fff;
    border-color: var(--color-navy);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(19,32,72,0.15);
}

.industry-pill:hover i {
    color: var(--color-orange);
}





/* =============================================================
   SECTION 7 — Enquiry Form
   ============================================================= */
.corp-enquiry-section {
    padding: 90px 0;
    background-color: var(--color-bg-cream);
}

.corp-enquiry-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 60px;
    align-items: start;
}

.corp-enquiry-info .subtitle { margin-bottom: 6px; }

.corp-enquiry-info > p {
    color: var(--color-text-dark);
    font-size: 1rem;
    line-height: 1.7;
    margin: 18px 0 32px;
}

.corp-contact-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.corp-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.corp-contact-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: var(--color-orange);
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-top: 2px;
}

.corp-contact-item strong {
    display: block;
    font-size: 0.9rem;
    color: var(--color-navy);
    font-weight: 700;
    margin-bottom: 2px;
}

.corp-contact-item a,
.corp-contact-item span {
    font-size: 0.92rem;
    color: var(--color-text-dark);
    line-height: 1.5;
}

.corp-contact-item a:hover { color: var(--color-orange); }

/* Form Styles */
.corp-enquiry-form {
    background: var(--color-bg-white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(19,32,72,0.08);
    border: 1px solid var(--color-border);
}

.corp-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-field-full {
    margin-bottom: 18px;
}

.form-field label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-navy);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--color-border);
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--color-text-dark);
    background: var(--color-bg-cream);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    outline: none;
    font-family: 'Bricolage Grotesque', sans-serif;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--color-orange);
    box-shadow: 0 0 0 3px rgba(246, 142, 30, 0.12);
    background: #fff;
}

.form-field textarea { resize: vertical; }

.corp-form .btn-block {
    width: 100%;
    padding: 15px;
    font-size: 1rem;
    margin-top: 5px;
}

.form-note {
    font-size: 0.78rem;
    color: var(--color-text-gray);
    text-align: center;
    margin-top: 12px;
    margin-bottom: 0;
    line-height: 1.5;
}


/* =============================================
   GALLERY PAGE - Uniform Grid (5 per row)
   ============================================= */
.gallery-page {
  
}

.gallery-uniform-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    padding: 0 0 40px 0;
}

.gallery-uniform-item {
    overflow: hidden;
    border-radius: 6px;
    position: relative;
}

.gallery-uniform-item a {
    display: block;
    width: 100%;
    height: 100%;
}

.gallery-uniform-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease, filter 0.3s ease;
}

.gallery-uniform-item:hover img {
    transform: scale(1.08);
    filter: brightness(0.85);
}

/* Responsive Gallery */
@media (max-width: 1200px) {
    .gallery-uniform-item img {
        height: 220px;
    }
}

@media (max-width: 1100px) {
    .gallery-uniform-grid {
        grid-template-columns: repeat(4, 1fr);
    }  
}

@media (max-width: 992px) {
    .gallery-uniform-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-uniform-item img {
        height: 200px;
    }
}

@media (max-width: 767px) {
    .gallery-uniform-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .gallery-uniform-item img {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .gallery-uniform-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .gallery-uniform-item img {
        height: 150px;
    }
}

 .wrap404 {
    text-align: center;
    padding: 40px 0
}

.wrap404 i {
    font-size: 120px
}

.wrap404 h2 {
    font-size: 60px;
    font-weight: 500;
    margin: 0;
    line-height: inherit
}

.wrap404 h4 {
    font-size: 40px;
    font-weight: 300;
    margin: 0;
    color: #ccc
}

.wrap404 p {
    font-size: 20px
}


@media (max-width: 767px) {
.titletxtonly {
 
    padding: 5px 0 5px 10px;
    font-size: 22px;
   
}
.pkgtitle {   
   
    height: auto;
    min-height: 52px;
    line-height:30px;
}
.roundNum{position: relative;margin: 5px;}
}

@media (max-width: 479px) {
.titletxtonly {
 
    padding: 5px 0 5px 10px;
    font-size: 18px;
   
}
.pkgtitle {   
   
    height: auto;
    min-height: 52px;
    line-height:30px;
}
.roundNum{position: relative;margin: 5px;}
.pkgdesc {padding: 15px;}
.sidebar {padding: 15px;}
}