        /*--------------------------------------------------------------
        >>> TABLE OF CONTENTS
        ----------------------------------------------------------------
        1. Normalize & Reset
        2. Typography
        3. Header Styles (Enhanced with Responsive Nested Navigation)
        4. Buttons
        5. Package Cards
        6. Slick Slider
        7. Sections
        8. Testimonials
        9. Footer
        10. Responsive
        ----------------------------------------------------------------*/
        
        /*--------------------------------------------------------------
        1. Normalize & Reset
        ----------------------------------------------------------------*/
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: "Open Sans", sans-serif;
            font-size: 15px;
            color: #383838;
            background-color: #ffffff;
            font-weight: normal;
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: "Raleway", sans-serif;
            color: #101F46;
            margin: 0 0 15px;
            line-height: 1.2;
        }
        
        h1 { font-size: 65px; font-weight: 900; }
        h2 { font-size: 48px; font-weight: 900; }
        h3 { font-size: 23px; font-weight: 700; }
        h4 { font-size: 18px; font-weight: 700; }
        h5 { font-size: 15px; font-weight: 700; }
        
        @media screen and (max-width: 767px) {
            h1 { font-size: 32px; }
            h2 { font-size: 24px; }
            h3 { font-size: 18px; }
        }
        
        a {
            color: #0791BE;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        a:hover {
            color: #2C75BA;
        }
        
        p {
            line-height: 1.6;
            margin-bottom: 15px;
        }
        
        .container {
            max-width: 1170px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .row {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -15px;
        }
        
        [class*="col-"] {
            padding: 0 15px;
        }
        
        .col-md-3 { width: 25%; }
        .col-md-4 { width: 33.33%; }
        .col-md-6 { width: 50%; }
        .col-lg-3 { width: 25%; }
        .col-lg-4 { width: 33.33%; }
        .col-lg-5 { width: 41.66%; }
        .col-lg-7 { width: 58.33%; }
        .col-lg-8 { width: 66.66%; }
        .offset-lg-2 { margin-left: 16.66%; }
        
        @media (max-width: 768px) {
            .col-md-3, .col-md-6, .col-lg-3, .col-lg-4, .col-lg-8, .col-md-4 {
                width: 100%;
            }
            .offset-lg-2 { margin-left: 0; }
        }

        
        .text-center { text-align: center; }
        .text-right { text-align: right; }
        .mt-10 { margin-top: 10px; }
        .mt-20 { margin-top: 20px; }
        .pt-30 { padding-top: 30px; }
        .pb-30 { padding-bottom: 30px; }
        .pt-50 { padding-top: 50px; }
        .pb-50 { padding-bottom: 50px; }
        
        /*--------------------------------------------------------------
        2. Header Styles (Enhanced with Responsive Nested Navigation)
        ---------------------------------------------------------------*/
        .top-header {
            background: #00314c;
            border-bottom: 1px solid rgba(255, 255, 255, 0.25);
            padding: 8px 0;
            color: #fff;
            font-size: 14px;
        }
        
        .header-contact-info ul {
            list-style: none;
            display: flex;
            gap: 20px;
            margin: 0;
            padding: 0;
        }
        
        .header-contact-info ul li a {
            color: #fcfcfc;
            text-decoration: none;
            transition: color 0.4s;
        }
        
        .header-contact-info ul li a:hover {
            color: #2C75BA;
        }
        
        .header-contact-info ul li a i {
            margin-right: 5px;
            color: #F56960;
        }
        
        .header-social ul {
            list-style: none;
            display: flex;
            gap: 15px;
            margin: 0;
            padding: 0;
            justify-content: flex-end;
        }
        
        .header-social ul li a {
            color: #fafafa;
            transition: 0.3s;
            font-size: 14px;
        }
        
        .header-social ul li a:hover {
            color: #2C75BA;
        }
        
        .bottom-header {
            background: #ffffff;
            padding: 15px 0;
            box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .d-flex {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo img {
            max-height: 50px;
    margin-right: 7px;
        }
        
        /* ==============================================
           RESPONSIVE NESTED NAVIGATION - MAIN STYLES
        ============================================== */
        
        /* Navigation Container */
        .main-navigation {
            position: relative;
        }
        
        /* Mobile Toggle Button */
        .menu-toggle {
            display: none;
            background: #F56960;
            border: none;
            color: white;
            font-size: 24px;
            padding: 10px 15px;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.3s;
        }
        
        .menu-toggle:hover {
            background: #2C75BA;
        }
        
        /* Main Menu List */
        .main-menu {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
            gap: 5px;
        }
        
        /* Menu Items */
        .main-menu > li {
            position: relative;
        }
        
        .main-menu > li > a {
            display: block;
            padding: 12px 18px;
            font-family: "Raleway", sans-serif;
            font-weight: 600;
            font-size: 14px;
            color: #101F46;
            text-decoration: none;
            transition: all 0.3s;
            border-radius: 5px;
        }
        
        .main-menu > li > a:hover {
            color: #F56960;
            background: rgba(245, 105, 96, 0.1);
        }
        
        /* Dropdown Indicator (Chevron) */
        .dropdown-indicator {
            margin-left: 5px;
            font-size: 12px;
            transition: transform 0.3s;
        }
        
        .main-menu > li.menu-item-has-children > a .dropdown-indicator {
            display: inline-block;
        }
        
        /* Dropdown Menu (Nested Level 1) */
        .sub-menu {
            position: absolute;
            top: 100%;
            left: 0;
            min-width: 220px;
            background: #ffffff;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            border-radius: 10px;
            padding: 10px 0;
            list-style: none;
            margin: 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            z-index: 100;
            border-top: 3px solid #F56960;
        }
        
        .main-menu > li:hover > .sub-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        /* Submenu Items */
        .sub-menu li {
            position: relative;
        }
        
        .sub-menu li a {
            display: block;
            padding: 10px 20px;
            font-size: 14px;
            color: #383838;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .sub-menu li a:hover {
            background: rgba(245, 105, 96, 0.1);
            color: #F56960;
            padding-left: 25px;
        }
        
        /* Nested Dropdown - Level 3 */
        .sub-menu .sub-menu {
            top: 0;
            left: 100%;
            margin-top: -10px;
        }
        
        .sub-menu li:hover > .sub-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        /* Special styling for nested items with children */
        .sub-menu li.menu-item-has-children > a::after {
            content: "\f054";
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            float: right;
            font-size: 10px;
            margin-top: 4px;
            opacity: 0.6;
        }
        
        /* Active menu item */
        .main-menu li.current-menu-item > a,
        .main-menu li.current-page-ancestor > a {
            color: #F56960;
            background: rgba(245, 105, 96, 0.1);
        }
        
        /* Call-to-action button in menu */
        .menu-cta {
            background: #F56960;
            color: white !important;
            border-radius: 30px;
            padding: 8px 20px !important;
            margin-left: 10px;
        }
        
        .menu-cta:hover {
            background: #2C75BA;
            color: white !important;
        }
        
        /* ==============================================
           MOBILE RESPONSIVE NAVIGATION
        ============================================== */
        
        @media (max-width: 991px) {
            /* Show mobile toggle button */
            .menu-toggle {
                display: block;
            }
            
            /* Main Menu - Mobile Layout */
            .main-menu {
                position: fixed;
                top: 0;
                left: -280px;
                width: 280px;
                height: 100vh;
                background: #ffffff;
                flex-direction: column;
                padding: 70px 20px 20px;
                margin: 0;
                gap: 0;
                box-shadow: 2px 0 30px rgba(0, 0, 0, 0.15);
                transition: left 0.3s ease;
                overflow-y: auto;
                z-index: 1001;
            }
            
            /* Active menu state */
            .main-menu.active {
                left: 0;
            }
            
            /* Mobile menu items */
            .main-menu > li {
                width: 100%;
                border-bottom: 1px solid #eee;
            }
            
            .main-menu > li > a {
                padding: 15px;
                display: flex;
                justify-content: space-between;
                align-items: center;
            }
            
            /* Mobile dropdowns */
            .sub-menu {
                position: static;
                display: none;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                padding-left: 20px;
                background: #f9f9f9;
                border-radius: 0;
                width: 100%;
                border-top: none;
                transition: none;
            }
            
            .sub-menu.active {
                display: block;
            }
            
            .sub-menu .sub-menu {
                padding-left: 15px;
                background: #f0f0f0;
            }
            
            /* Mobile dropdown toggle button */
            .mobile-dropdown-toggle {
                background: none;
                border: none;
                width: 40px;
                height: 40px;
                cursor: pointer;
                color: #F56960;
                font-size: 16px;
                display: flex;
                align-items: center;
                justify-content: center;
                transition: transform 0.3s;
            }
            
            .mobile-dropdown-toggle.rotated {
                transform: rotate(180deg);
            }
            
            /* Overlay when menu is open */
            .menu-overlay {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: rgba(0, 0, 0, 0.5);
                z-index: 1000;
                display: none;
            }
            
            .menu-overlay.active {
                display: block;
            }
            
            /* Close button for mobile menu */
            .mobile-menu-close {
                position: absolute;
                top: 15px;
                right: 20px;
                font-size: 28px;
                cursor: pointer;
                color: #101F46;
                z-index: 1002;
                display: none;
            }
            
            .main-menu.active ~ .mobile-menu-close {
                display: block;
            }
            
            /* Adjust CTA button for mobile */
            .menu-cta {
                margin: 10px 0;
                text-align: center;
            }
        }
        
        /* Desktop specific: Show submenu on hover for desktop, adjust for touch */
        @media (min-width: 992px) {
            .main-menu > li.menu-item-has-children:hover > .sub-menu {
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
            }
            
            /* Delay hover for better usability */
            .sub-menu {
                transition-delay: 0.1s;
            }
        }
        
        /* Touch devices: Better tap handling */
        @media (hover: none) and (pointer: coarse) {
            .main-menu > li.menu-item-has-children > a {
                cursor: pointer;
            }
            
            .sub-menu {
                transition: none;
            }
        }
        
        /*--------------------------------------------------------------
        3. Buttons
        ---------------------------------------------------------------*/
        .button-primary {
            background: #F56960;
            color: #ffffff;
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: background-color 0.3s;
            display: inline-block;
            border: none;
            cursor: pointer;
            font-size: 14px;
        }
        
        .button-primary:hover {
            background: #2C75BA;
            color: #ffffff;
            transform: none;
        }
        
        .btn-wrap {
            display: flex;
            gap: 10px;
            justify-content: center;
        }
        
        .btn-wrap .button-primary {
            padding: 8px 15px;
            font-size: 13px;
        }
        
        /*--------------------------------------------------------------
        4. Hero Video Section
        ---------------------------------------------------------------*/
     /*--------------------------------------------------------------
        4. HERO IMAGE SLIDER SECTION (replaces video)
        ---------------------------------------------------------------*/
        .home-slider-section {
            position: relative;
            height: 85vh;
            overflow: hidden;
        }
        
        /* Swiper-styled slider but using slick for seamless integration (lightweight) */
        .hero-slider {
            width: 100%;
            height: 100%;
        }
        
        .hero-slider .slide-item {
            position: relative;
            height: 85vh;
            background-size: cover;
            background-position: center bottom;
            background-repeat: no-repeat;
            display: flex !important;
            align-items: center;
            justify-content: center;
        }
        
        /* Dark overlay for text readability (like video overlay) */
        .hero-slider .slide-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(14, 3, 3, 0.45);
            z-index: 1;
        }
        
        /* Hero content styling (optional but makes slider meaningful) */
        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
            color: #fff;
        }
        
        .hero-content h1 {
            color: #ffffff;
            font-size: 58px;
            text-shadow: 0 2px 15px rgba(0,0,0,0.3);
            margin-bottom: 20px;
        }
        
        .hero-content p {
            font-size: 18px;
            color: #fefefe;
            margin-bottom: 30px;
        }
        
        .hero-content .button-primary {
            background: #F56960;
            font-size: 16px;
            padding: 14px 38px;
            letter-spacing: 1px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        .hero-content .button-primary:hover {
            background: #2C75BA;
        }
        
        /* Slick Dots & Arrows Overlay customization for hero slider */
        .home-slider-section .slick-prev, 
        .home-slider-section .slick-next {
            z-index: 10;
            width: 45px;
            height: 45px;
            background: rgba(0,0,0,0.5);
            border-radius: 50%;
            transition: 0.3s;
        }
        
        .home-slider-section .slick-prev:hover, 
        .home-slider-section .slick-next:hover {
            background: #F56960;
        }
        
        .home-slider-section .slick-prev:before, 
        .home-slider-section .slick-next:before {
            font-size: 22px;
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            color: #fff;
            opacity: 1;
        }
        
        .home-slider-section .slick-prev:before { content: "\f053"; }
        .home-slider-section .slick-next:before { content: "\f054"; }
        
        .home-slider-section .slick-dots {
            bottom: 25px;
            z-index: 10;
        }
        
        .home-slider-section .slick-dots li button:before {
            font-size: 12px;
            color: #fff;
            opacity: 0.7;
        }
        
        .home-slider-section .slick-dots li.slick-active button:before {
            color: #F56960;
            opacity: 1;
        }
        
        @media (max-width: 768px) {
            .home-slider-section, .hero-slider .slide-item {
                height: 60vh;
            }
            .hero-content h1 {
                font-size: 32px;
            }
            .hero-content p {
                font-size: 14px;
            }
        }





   .home-slider-section {
            position: relative;
            height: 85vh;
            overflow: hidden;
        }
        
        .home-slider-section video {
            width: 100%;
            height: 100%;
            object-fit: cover; 
        }
        
        .home-slider-section:before {
            content: '';
            width: 100%;
            height: 100%;
            background: rgba(14, 3, 3, 0.38);
            position: absolute;
            top: 0;
            left: 0;
        }
        
        /*--------------------------------------------------------------
        5. Section Headings
        ---------------------------------------------------------------*/
        .package-section {
            padding: 60px 0 40px;
        }
        
        .section-heading {
            margin-bottom: 40px;
        }
        
        .section-heading h2 {
            font-size: 32px;
            font-weight: 900;
            text-transform: uppercase;
            color: #101F46;
            margin-bottom: 5px;
        }
        
        .title-icon-divider {
            color: #0791BE;
            line-height: 1;
            position: relative;
            margin-top: 0;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .title-icon-divider:before,
        .title-icon-divider:after {
            content: "....";
            display: inline-block;
            font-size: 37px;
            line-height: 0;
            letter-spacing: 3px;
        }
        
        .title-icon-divider i {
            font-size: 20px;
            margin: 0 10px;
            color: #0791BE;
        }
        
        /*--------------------------------------------------------------
        6. Package Cards
        ---------------------------------------------------------------*/
        .package-wrap {
            background: #ffffff;
            box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.05);
            border-radius: 15px;
            overflow: hidden;
            margin: 15px;
            position: relative;
            transition: transform 0.3s;
        }
        
        .package-wrap:hover {
            transform: translateY(-10px);
        }
        
        .feature-image {
            position: relative;
            overflow: hidden;
        }
        
        .feature-image img {
            width: 100%;
            height: 250px;
           /* object-fit: cover; */
            transition: 0.5s;
        }
        
        .package-wrap:hover .feature-image img {
            transform: scale(1.1);
        }
        
        .package-price {
            background: #F56960;
            position: absolute;
            top: 20px;
            right: 0;
            padding: 8px 16px;
        }
        
        .package-price h6 {
            color: #ffffff;
            font-size: 22px;
            font-weight: 700;
            margin: 0;
        }
        
        .package-price h6 span del {
            font-size: 14px;
            color: rgba(255,255,255,0.7);
        }
        
        .package-meta {
            background: #0791BE;
            margin-top: -25px;
            margin-left: 30px;
            margin-right: 30px;
            padding: 15px 0;
            position: relative;
        }
        
        .package-meta ul {
            list-style: none;
            display: flex;
            justify-content: space-around;
            margin: 0;
            padding: 0;
        }
        
        .package-meta ul li {
            color: #ffffff;
            font-size: 13px;
            position: relative;
        }
        
        .package-meta ul li i {
            margin-right: 5px;
        }
        
        .package-content {
            padding: 20px;
            text-align: center;
        }
        
        .package-content h3 {
            font-size: 18px;
            margin-bottom: 15px;
            font-weight: 700;
        }
        
        .package-content h3 a {
            color: #101F46;
            text-decoration: none;
        }
        
        .package-content h3 a:hover {
            color: #F56960;
        }
        
        /* Badge for Special Offers */
        .badge-dis {
            background: #F56960;
            border-radius: 100%;
            width: 80px;
            height: 80px;
            position: absolute;
            top: 0;
            right: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
        }
        
        .badge-dis span {
            color: #F8F8F8;
            font-weight: 600;
            text-align: center;
        }
        
        .badge-dis strong {
            color: #ffffff;
            font-size: 23px;
            font-weight: 700;
            display: block;
            line-height: 1.2;
        }
        
        /*--------------------------------------------------------------
        7. Slick Slider Customization
        ---------------------------------------------------------------*/
        .trending-package-slider {
            position: relative;
        }
        
        .slick-prev, .slick-next {
            z-index: 1;
            width: 40px;
            height: 40px;
        }
        
        .slick-prev:before, .slick-next:before {
            background: rgba(0, 0, 0, 0.8);
            color: #ffffff;
            border-radius: 100%;
            width: 40px;
            height: 40px;
            line-height: 40px;
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            font-size: 15px;
            transition: background 0.4s;
        }
        
        .slick-prev:hover:before, .slick-next:hover:before {
            background: #2C75BA;
        }
        
        .slick-prev:before {
            content: "\f053";
        }
        
        .slick-next:before {
            content: "\f054";
        }
        
        .slick-prev {
            left: -30px;
        }
        
        .slick-next {
            right: -30px;
        }
        
        .slick-dots li button:before {
            font-size: 12px;
            color: #c6c6c6;
        }
        
        .slick-dots li.slick-active button:before {
            color: #0791BE;
        }
        
        @media (max-width: 768px) {
            .slick-prev { left: 0px; }
            .slick-next { right: 0px; }
            .top-header { display : none; }
        }
        
        /*--------------------------------------------------------------
        8. Callback Section
        ---------------------------------------------------------------*/
        .callback-section {
            background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)), url('https://images.unsplash.com/photo-1530789253388-582c4817e1f1?auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-attachment: fixed;
            color: #fff;
            padding: 70px 0;
            position: relative;
        }
        
        .callback-inner h2 {
            color: #ffffff;
            font-size: 32px;
            margin-bottom: 20px;
        }
        
        .callback-counter-wrap {
            display: flex;
            gap: 30px;
            margin: 30px 0;
            flex-wrap: wrap;
        }
        
        .counter-item {
            text-align: center;
            flex: 1;
        }
        
        .counter-no {
            color: #F56960;
            font-size: 42px;
            font-weight: 800;
            display: block;
        }
        
        .support-area {
            display: flex;
            align-items: center;
            gap: 20px;
            background: #ffffff;
            box-shadow: 0px 15px 55px -15px rgba(0, 0, 0, 0.1);
            padding: 30px;
            margin-top: 20px;
            display: inline-flex;
            border-radius: 10px;
        }
        
        .support-area i {
            font-size: 45px;
            color: #F56960;
        }
        
        .support-area h4 {
            color: #383838;
            font-size: 18px;
            margin-bottom: 5px;
        }
        
        .support-area h3 a {
            color: #F56960;
            text-decoration: none;
            font-size: 28px;
            font-weight: 900;
        }
        
        /*--------------------------------------------------------------
        9. Activity Section
        ---------------------------------------------------------------*/
        .activity-section {
            padding: 50px 0;
            background: #f8f8f8;
        }
        
        .tour-type-slider {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            justify-content: center;
        }
        
        .activity-item {
            text-align: center;
            background: #ffffff;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.08);
            transition: 0.3s;
            cursor: pointer;
            width: 160px;
        }
        
        .activity-item:hover {
            transform: translateY(-5px);
            background: #F56960;
            color: #fff;
        }
        
        .activity-item:hover h4 {
            color: #fff;
        }
        
        .activity-icon img {
            width: 70px;
            height: 70px;
            object-fit: cover;
            border-radius: 50%;
            margin-bottom: 10px;
        }
        
        .activity-item h4 {
            margin-bottom: 0;
            font-size: 15px;
        }


/*---------10. full width section with two equal divs and text and image Sectio ------------*/

.hero-section {
   height:500px;

      width:100%;
      background:linear-gradient(135deg, #0f172a, #6f62c3, #1e293b);
      position:relative;
      overflow:hidden;
    }

    /* Glow Effects */
    .hero-section::before {
      content:'';
      position:absolute;
      width:400px;
      height:400px;
      background:#3b82f6;
      filter:blur(130px);
      border-radius:50%;
      top:-120px;
      left:-100px;
      opacity:.35;
    }

    .hero-section::after {
      content:'';
      position:absolute;
      width:350px;
      height:350px;
      background:#8b5cf6;
      filter:blur(130px);
      border-radius:50%;
      bottom:-120px;
      right:-100px;
      opacity:.35;
    }

    .hero-row{
          height:500px;
      position:relative;
      z-index:2;
    }

    /* LEFT CONTENT */
    .hero-content{
      color:white;
      padding:80px;
    }

    .hero-content h1{
      font-size:4rem;
      font-weight:700;
      line-height:1.2;
      margin-bottom:25px;
    }

    .hero-content h1 span {
      color:#fff;
    }

    .hero-content p {
      color:#cbd5e1;
      font-size:1.1rem;
      line-height:1.9;
      margin-bottom:35px;
      max-width:550px;
    }

    .hero-btn {
      padding:15px 38px;
      border:none;
      border-radius:50px;
      background:linear-gradient(90deg,#3b82f6,#8b5cf6);
      color:white;
      font-weight:600;
      transition:.4s;
      box-shadow:0 12px 35px rgba(59,130,246,0.35);
    }

    .hero-btn:hover {
      transform:translateY(-4px);
      box-shadow:0 18px 45px rgba(139,92,246,0.5);
    }

    /* RIGHT IMAGE */
    .hero-image {
          height:500px;
      position:relative;
box-shadow: 0 0 20px #000;
    }

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

    /* Overlay */
    .image-overlay {
      position:absolute;
      inset:0;
      background:linear-gradient(
        to right,
        rgba(15,23,42,0.2),
        rgba(15,23,42,0.55)
      );
    }

    /* Floating Glass Card */
    .glass-card {
      position:absolute;
      bottom:40px;
      left:40px;
      background:rgba(255,255,255,0.1);
      border:1px solid rgba(255,255,255,0.15);
      backdrop-filter:blur(14px);
      padding:25px;
      border-radius:20px;
      color:white;
      max-width:280px;
      box-shadow:0 10px 40px rgba(0,0,0,0.25);
    }

    .glass-card h5 {
      font-weight:600;
      margin-bottom:10px;
    }

    .glass-card p {
      margin:0;
      color:#e2e8f0;
      font-size:14px;
      line-height:1.6;
    }

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

      .hero-content{
        padding:60px 30px;
        text-align:center;
      }

      .hero-content h1 {
        font-size:2.8rem;
      }

      .hero-content p {
        margin:auto auto 35px;
      }

      .hero-image{
        height:300px;
      }

      .glass-card {
        left:20px;
        right:20px;
        bottom:20px;
        max-width:unset;
      }
    }

    @media(max-width:768px) {

      .hero-content h1{
        font-size:2.1rem;
      }

      .hero-btn {
        width:100%;
      }

      .hero-image {
        height:200px;
      }

    }





section.trip-ad{
  position: relative;
  background: url(../images/adbg.jpg) no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  overflow: hidden;
}

section.trip-ad .container{position: relative; z-index: 2;}

.trip-ad:before{
  position: absolute;
  content: '';
  top: 0;
  left: -12%;
  height: 100%;
  width: 65%;
  background: #fff;
  transform: skew(15deg);
  z-index: 1;
}
.trip-ad:after{
  position: absolute;
  content: '';
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background: rgba(0,0,0,0.5);
}
.ad-title h2{
  text-transform: uppercase;
}
.ad-title span{
  display: block;
  font-size: 40px;
  color: #005294;
}
.trip-ad-btn{
  margin-top: 32px;
}
.ad-price-outer{
  position: relative;
}
.ad-price{
  padding:5px; 
  background: #D60D45;
  border-radius: 50%;
  box-shadow: 1px 1px 5px #000000;
  text-align: center;
  height: 200px;
  width: 200px;
  z-index: 1;
  margin: 13% auto 0;
}
.ad-price-inner{
  height: 190px;
  width: 190px;
  border: 1px dashed #fff;
  border-radius: 50%;
  padding: 45px 0;
  background: #99062f;
}
.ad-price span{
  color: #fff;
  font-size: 25px;
}
span.rate{
  display: block;
  font-size: 50px;
  font-weight: 600;
}

        
        /*--------------------------------------------------------------
        10. Testimonial Section
        ---------------------------------------------------------------*/
        .testimonial-section {
            padding: 60px 0;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            position: relative;
        }
        
        .testimonial-section .section-heading h2 {
            color: #ffffff;
        }
        
        .testimonial-item {
            background: rgba(255,255,255,0.95);
            padding: 40px;
            border-radius: 20px;
            margin: 20px;
            text-align: center;
        }
        
        .testimonial-img img {
            width: 125px;
            height: 125px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 15px;
            border: 2px solid #F56960;
        }
        
        .testimonial-item p {
            font-style: italic;
            font-size: 16px;
            color: #151515;
        }
        
        .testimonial-item cite {
            color: #0791BE;
            font-family: "Raleway", sans-serif;
            font-size: 18px;
            font-weight: 700;
            font-style: normal;
        }
        
        .testimonial-item .company {
            color: #787878;
            display: block;
            font-size: 14px;
            font-weight: 400;
        }
        
        /*--------------------------------------------------------------
        11. Gallery Section
        ---------------------------------------------------------------*/
        .gallery-section {
            padding: 60px 0;
        }
        
        .gallery-img {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            margin-bottom: 20px;
            cursor: pointer;
        }
        
        .gallery-img img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            transition: 0.5s;
        }
        
        .gallery-img:hover img {
            transform: scale(1.1);
        }
        
        .gallery-title {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            opacity: 0;
            transition: 0.3s;
            background: rgba(0,0,0,0.4);
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .gallery-img:hover .gallery-title {
            opacity: 1;
        }
        
        .gallery-title i {
            font-size: 40px;
            color: #fff;
        }
        
        /*--------------------------------------------------------------
        12. Footer
        ---------------------------------------------------------------*/
        .site-footer {
            background-color: #0a6083;
            padding-top: 40px;
        }
        
        .site-footer .widget-title {
            color: #ffffff;
            font-size: 15px;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 18px;
            display: flex;
            align-items: center;
        }
        
        .site-footer .widget-title:before {
            background-color: #0791BE;
            content: "";
            height: 18px;
            width: 3px;
            margin-right: 10px;
        }
        
        .site-footer .textwidget {
            color: #e0e0e0;
            font-size: 14px;
            line-height: 1.6;
        }
        
        .site-footer .textwidget ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .site-footer .textwidget ul li {
            margin-bottom: 12px;
        }
        
        .site-footer .textwidget ul li a {
            color: #e0e0e0;
            text-decoration: none;
            transition: 0.3s;
        }
        
        .site-footer .textwidget ul li a:hover {
            color: #2C75BA;
            padding-left: 5px;
        }
        
        .site-footer .textwidget ul li i {
            margin-right: 8px;
            color: #F56960;
        }
        
        .site-footer .header-social ul {
            list-style: none;
            display: flex;
            gap: 80px;
            padding: 0;
            margin-top: 15px;
            justify-content: center;
        }
        
        .site-footer .header-social ul li a {
            color: #fff;
            background: rgba(255,255,255,0.2);
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: 0.3s;
        }
        
        .site-footer .header-social ul li a:hover {
         
            transform: translateY(-3px);
        }
        
        .site-footer .widget_recent_post ul li {
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        
        .site-footer .widget_recent_post ul li:last-child {
            border-bottom: none;
        }
        
        .site-footer .widget_recent_post ul li h5 a {
            color: #fff;
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
        }
        
        .site-footer .widget_recent_post ul li h5 a:hover {
            color: #2C75BA;
        }
        
        .site-footer .entry-meta {
            font-size: 12px;
            color: #aaa;
        }
        
        .site-footer .buttom-footer {
            background-color: #222222;
            padding: 5px 0;
            margin-top: 40px;
        }
        
        .site-footer .footer-menu ul {
            list-style: none;
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            padding: 0;
            margin: 0;
        }
        
        .site-footer .footer-menu ul li a {
            color: #ffffff;
            font-size: 13px;
            text-decoration: none;
        }
        
        .site-footer .footer-menu ul li a:hover {
            color: #2C75BA;
        }
        
        .site-footer .copy-right {
            color: #ffffff;
            font-size: 13px;
        }
        
        /*--------------------------------------------------------------
        13. Fixed Elements (WhatsApp, Go to Top, Chatbot, FAQ)
        ---------------------------------------------------------------*/
        .whatsapp-fixed {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 999;
        }
        
        .whatsapp-fixed img {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
            transition: 0.3s;
        }
        
        .whatsapp-fixed img:hover {
            transform: scale(1.1);
        }
        
        .to-top-icon {
            position: fixed;
            bottom: 90px;
            right: 20px;
            background: #F56960;
            color: #fff;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            z-index: 999;
            transition: 0.3s;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        
        .to-top-icon:hover {
         /*   background: #2C75BA;   */
            transform: translateY(-3px); 
        }
        
        .fixed_faq {
            position: fixed;
            bottom: 160px;
            right: 20px;
            background: #F56960;
            color: #fff;
            padding: 10px 18px;
            border-radius: 30px;
            text-decoration: none;
            z-index: 999;
            font-weight: 600;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        
        .fixed_faq:hover {
            background: #2C75BA;
        }
        
        /* Chatbot */
        .chatbot-container {
            position: fixed;
            bottom: 240px;
            right: 20px;
            z-index: 1000;
        }
        
        .chatbot-toggle {
            background: #F56960;
            color: #fff;
            width: 55px;
            height: 55px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 2px 15px rgba(0,0,0,0.2);
            transition: 0.3s;
        }
        
        .chatbot-toggle:hover {
            transform: scale(1.1);
            background: #2C75BA;
        }
        
        .chatbot-toggle i {
            font-size: 28px;
        }
        
        .chatbot-window {
            position: fixed;
            bottom: 310px;
            right: 20px;
            width: 350px;
            height: 500px;
            background: #fff;
            border-radius: 15px;
            box-shadow: 0 5px 30px rgba(0,0,0,0.3);
            display: none;
            flex-direction: column;
            overflow: hidden;
            z-index: 1001;
            animation: slideUp 0.3s ease;
        }
        
        .chatbot-window.active {
            display: flex;
        }
        
        @keyframes slideUp {
            from { opacity: 0; transform: translateY(50px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .chatbot-header {
            background: #0791BE;
            color: #fff;
            padding: 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .chatbot-header h4 {
            margin: 0;
            font-size: 16px;
            color: #fff;
        }
        
        .chatbot-close {
            cursor: pointer;
            font-size: 20px;
        }
        
        .chatbot-messages {
            flex: 1;
            padding: 15px;
            overflow-y: auto;
            background: #f5f5f5;
        }
        
        .message {
            margin-bottom: 12px;
            display: flex;
        }
        
        .message.bot { justify-content: flex-start; }
        .message.user { justify-content: flex-end; }
        
        .message-content {
            max-width: 80%;
            padding: 10px 14px;
            border-radius: 18px;
            font-size: 13px;
        }
        
        .message.bot .message-content {
            background: #fff;
            color: #333;
            border: 1px solid #ddd;
        }
        
        .message.user .message-content {
            background: #F56960;
            color: #fff;
        }
        
        .chatbot-input {
            display: flex;
            padding: 12px;
            background: #fff;
            border-top: 1px solid #eee;
        }
        
        .chatbot-input input {
            flex: 1;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 25px;
            outline: none;
            font-size: 13px;
        }
        
        .chatbot-input button {
            background: #F56960;
            color: #fff;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            margin-left: 8px;
            cursor: pointer;
            transition: 0.3s;
        }
        
        .chatbot-input button:hover {
            background: #2C75BA;
        }
        
        /*--------------------------------------------------------------
        14. Modal
        ---------------------------------------------------------------*/
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.8);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }
        
        .modal.active {
            display: flex;
        }
        
        .modal-dialog {
            background: #fff;
            border-radius: 15px;
            width: 500px;
            max-width: 90%;
            animation: modalSlideIn 0.3s ease;
        }
        
        @keyframes modalSlideIn {
            from { transform: translateY(-50px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }
        
        .modal-header {
            background: linear-gradient(135deg, #F56960, #feb47b);
            padding: 20px;
            border-bottom: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-radius: 15px 15px 0 0;
        }
        
        .modal-header h4 {
            color: #fff;
            font-size: 20px;
            margin: 0;
        }
        
        .close {
            font-size: 28px;
            cursor: pointer;
            color: #fff;
            transition: 0.3s;
        }
        
        .close:hover {
            color: #2C75BA;
        }
        
        .modal-body {
            padding: 25px;
            background: #fdfdfd;
        }
        
        .form-group {
            margin-bottom: 18px;
        }
        
        .form-group input, .form-group select {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 14px;
            transition: 0.3s;
        }
        
        .form-group input:focus, .form-group select:focus {
            outline: none;
            border-color: #F56960;
            box-shadow: 0px 0px 8px rgba(245,105,96,0.4);
        }
        
        .btn-submit {
            background: linear-gradient(135deg, #F56960, #feb47b);
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            font-size: 16px;
            font-weight: 600;
            color: #fff;
            width: 100%;
            cursor: pointer;
            transition: 0.3s;
        }
        
        .btn-submit:hover {
            background: linear-gradient(135deg, #feb47b, #F56960);
            transform: translateY(-2px);
        }
		
		
	/* ==================== full width section ===============  */	
		
		 /* main container to mimic realistic travel website segment */
        .callback-section {
            width: 100%;
            margin: 0;
           
            overflow: hidden;
            /* subtle shadow for depth */
            box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.2);
            transition: all 0.2s ease;
        }

        /* container boostrap-like behavior */
        .container {
            width: 100%;
            padding-right: 15px;
            padding-left: 15px;
            margin-right: auto;
            margin-left: auto;
        }

        /* row flex system (standard) */
        .row {
            display: flex;
            flex-wrap: wrap;
            margin-right: -15px;
            margin-left: -15px;
        }

        .col-lg-7 {
            flex: 0 0 58.333333%;
            max-width: 58.333333%;
            padding-right: 15px;
            padding-left: 15px;
            position: relative;
        }

        /* ---------- ORIGINAL SECTION STYLES (preserved) + OVERLAY DARK ---------- */

.callback-inner2 {
  background-image: url('../../banner/ban2.jpg');
            background-size: cover;
            background-position: center 35%;
            background-repeat: no-repeat;

}


.callback-inner1 {
  background-image: url('../../banner/ban3.jpg');
            background-size: cover;
            background-position: center 35%;
            background-repeat: no-repeat;

}

        .callback-inner {
            position: relative;     /* establishes stacking context for overlay pseudo-element */
            
          
            padding: 3rem 2.5rem;
            color: white;
            z-index: 1;
            /* transition for subtle effect (optional) */
            transition: all 0.3s ease;
        }

        /* DARK OVERLAY — using pseudo-element to add rich dark gradient/overlay on top of background image */
        .callback-inner::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.85) 100%);
            /* You can also use a solid dark overlay: background: rgba(0, 0, 0, 0.7); */
            /* Prefer a slightly dramatic gradient for modern travel feel */
           
            z-index: -1;          /* behind text but above background image due to stacking context */
            pointer-events: none;  /* ensures clicks go through to buttons/links if any */
        }

       
        .callback-inner h2,
        .callback-inner p,
        .callback-inner .callback-counter-wrap,
        .callback-inner .support-area,
        .callback-inner .counter-item,
        .callback-inner a {
            position: relative;
            z-index: 2;           /* ensures text sits above overlay */
        }

        /* TYPOGRAPHY & STYLES (match original design but refined) */
        .callback-inner h2 {
            font-size: 2.5rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            line-height: 1.2;
            margin-bottom: 1rem;
            text-transform: uppercase;
            background: linear-gradient(135deg, #FFF, #FFE6B0);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            text-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }

        .callback-inner p {
            font-size: 1.05rem;
            line-height: 1.5;
            margin-bottom: 1.8rem;
            font-weight: 400;
            opacity: 0.92;
            max-width: 90%;
        }

        /* counter wrapper flex layout */
        .callback-counter-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            margin: 2rem 0 2rem 0;
        }

        .counter-item {
            text-align: left;
            backdrop-filter: blur(2px);
        }

        .counter-no {
            display: block;
            font-size: 2.2rem;
            font-weight: 800;
            line-height: 1.1;
            color: #FFD966;
            letter-spacing: 1px;
        }

        .counter-item div {
            font-size: 0.9rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: #f0f0f0;
        }

        /* support area (phone) */
        .support-area {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-top: 1.5rem;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 0.8rem 1.8rem;
            border-radius: 80px;
            width: fit-content;
            border: 1px solid rgba(255,255,240,0.25);
            transition: all 0.25s;
        }

        .support-area i {
            font-size: 2.2rem;
            color: #FFD966;
        }

        .support-area h4 {
            font-size: 0.85rem;
            font-weight: 500;
            margin-bottom: 0.2rem;
            letter-spacing: 0.5px;
            color: #FFE3B0;
        }

        .support-area h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0;
            line-height: 1.2;
        }

        .support-area a {
            color: white;
            text-decoration: none;
            transition: all 0.2s;
            border-bottom: 1px dotted rgba(255,255,200,0.5);
        }

        .support-area a:hover {
            color: #FFD966;
            border-bottom-color: #FFD966;
        }

        /* responsive design — keep overlay functional and text readable */
        @media (max-width: 992px) {
            .col-lg-7 {
                flex: 0 0 80%;
                max-width: 80%;
                margin: 0 auto;
            }
            .callback-inner {
                padding: 2.5rem 2rem;
            }
            .callback-inner h2 {
                font-size: 2rem;
            }
            .callback-counter-wrap {
                gap: 1.5rem;
            }
        }

        @media (max-width: 768px) {
            .col-lg-7 {
                flex: 0 0 100%;
                max-width: 100%;
            }
            .callback-inner h2 {
                font-size: 1.8rem;
            }
            .callback-inner p {
                max-width: 100%;
                font-size: 0.95rem;
            }
            .counter-no {
                font-size: 1.8rem;
            }
            .support-area {
                padding: 0.5rem 1.2rem;
            }
            .support-area h3 {
                font-size: 1.2rem;
            }
            .support-area i {
                font-size: 1.8rem;
            }
        }

        @media (max-width: 480px) {
            .callback-inner {
                padding: 2rem 1.2rem;
            }
            .callback-counter-wrap {
                flex-direction: column;
                gap: 1rem;
            }
            .counter-item {
                text-align: center;
            }
            .support-area {
                width: 100%;
                justify-content: center;
            }
        }

        /* optional: add subtle zoom effect on hover? not needed but gives modern vibe */
        .callback-section:hover .callback-inner {
            transform: scale(1.01);
            transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
        }

        .callback-section .callback-inner {
            transition: transform 0.3s ease;
        }
 
		
		
		
		
        
        /*--------------------------------------------------------------
        15. Responsive
        ---------------------------------------------------------------*/
        @media (max-width: 991px) {
            .top-header .row {
                flex-direction: column;
                text-align: center;
            }
            .header-social ul {
                justify-content: center;
                margin-top: 10px;
            }
            .callback-counter-wrap {
                justify-content: center;
            }
            .support-area {
                display: flex;
                justify-content: center;
            }
            .site-footer .copy-right {
                text-align: center !important;
                margin-top: 15px;
            }
            .footer-menu ul {
                justify-content: center;
            }
        }
        
        @media (max-width: 768px) {
            .home-slider-section {
                height: 60vh;
            }
            .package-section {
                padding: 40px 0;
            }
            .section-heading h2 {
                font-size: 28px;
            }
        }
        
        @media (max-width: 576px) {
            .chatbot-window {
                width: 300px;
                right: 10px;
                bottom: 290px;
            }
            .support-area {
                padding: 15px;
            }
            .support-area h3 a {
                font-size: 20px;
            }
            .badge-dis {
                width: 60px;
                height: 60px;
            }
            .badge-dis strong {
                font-size: 16px;
            }
        }
        
        .slick-slide {
            margin: 0 10px;
        }
        
        .slick-list {
            margin: 0 -10px;
        }
        
        /* Additional responsive navigation refinements */
        @media (max-width: 991px) and (min-width: 769px) {
            .main-menu {
                width: 320px;
                left: -320px;
            }
        }
        
        /* Landscape mode adjustments */
        @media (max-width: 991px) and (orientation: landscape) {
            .main-menu {
                padding: 15px 20px;
            }
            .main-menu > li > a {
                padding: 10px 15px;
            }
        }

