/* ------Home Start------ */
 .popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-content {
    position: relative;
    background: #fff;
    padding: 10px;
    border-radius: 12px;
    max-width: 30%;
/* height:400px; */
    animation: zoomIn 0.4s ease;
}

.popup-img {
    /* max-width: 70%; */
    border-radius: 10px;
}

.close {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #fff;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    text-align: center;
    line-height: 28px;
    font-size: 20px;
    cursor: pointer;
}

@keyframes zoomIn {
    from { transform: scale(0.7); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* RESPONSIVE */
@media(max-width:768px){
  .popup-content {
    position: relative;
    background: #fff;
    padding: 10px;
    border-radius: 12px;
    max-width: 80%;
/* height:400px; */
    animation: zoomIn 0.4s ease;
}
}

/*home destination slider
*/

.home1-destination-slider{
  position: relative;
  padding-top: 30px;
}

/* common button */
.home1-destination-slider .swiper-button-next,
.home1-destination-slider .swiper-button-prev{
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #FFD54F, #FFC107);
  border-radius: 50%;
  color: #fff;
  /* bottom: 10px; */
  top: 30px;
  z-index: 9999;
  transition: all 0.25s ease;
}

/* active hover ONLY */
.home1-destination-slider 
.swiper-button-next:not(.swiper-button-disabled):hover,
.home1-destination-slider 
.swiper-button-prev:not(.swiper-button-disabled):hover{
  background: #E5D517;
}

/* disabled state */
.home1-destination-slider .swiper-button-disabled{
  background: #E5D517;
  color: #fff;
  opacity: 1;
  cursor: not-allowed;
  pointer-events: none;
}

/* positioning */
.home1-destination-slider .swiper-button-next{
  right: 14px;
}

.home1-destination-slider .swiper-button-prev{
  right: 70px;
  left: auto;
}

/* arrow icon */
.home1-destination-slider .swiper-button-next::after,
.home1-destination-slider .swiper-button-prev::after{
  font-size: 14px;
  font-weight: 600;
}

/*home destination slider
*/



/* Blog - section
*/
   .blog_section {
  padding: 50px 15px;
background-image: url(../img/home2/home2-about-bg.png), linear-gradient(-80deg, #fffdf8 0%, #FFF2E2 100%)!important;
}

.blog_section h2 {
  font-size: 28px;
  font-weight: 700;
}

.blog_section p {
  font-size: 15px;
  max-width: 700px;
  margin: 10px auto 30px;
      color: var(--text-color);
    font-family: var(--font-roboto);
    font-weight: 400;
    font-size: 15px!important;
    line-height: 20px;
    margin-bottom: 0;
    padding-top: 0px!important;
    word-spacing: 2px;
}

/* Blog Card */
.blog-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  height:420px;
}

.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-content {
  padding: 15px;
  flex-grow: 1;
  text-align: center;
      padding: 14px 14px 10px!important;
}

.blog-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.blog-content p {
  font-size: 14px;
  color: #555;
}

/* Button */
.blog-btn {
  display: block;
  text-align: center;
  background: #e5d517;
  color: #ffffff;
  font-weight: 600;
  padding: 12px;
  text-decoration: none;
  transition: 0.3s ease;
}

.blog-btn:hover {
  background: #d4c500;
  color: #000;
}

/*-----about section */
.home2-about-section {
  background-image: url(../img/home2/home2-about-bg.png), linear-gradient(44deg, #fffdf8 0%, #FFF2E2 100%)!important;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 50px 0;
}
/*-----gurgaon*/
/* SECTION */
.package-section {
    padding: 50px 15px;
    background: #fffbff;
}

/* HEADING */
.section-head {
    text-align: center;
    margin-bottom: 35px;
}
.section-head h2 {
    font-size: 32px;
    font-weight: 700;
}
.section-head span {
    color: #1781FE;
    font-weight: 600;
}

/* TABS */
.package-tabs .nav-link {
    border-radius: 50px;
    padding: 8px 20px;
    margin: 5px;
    font-weight: 600;
    background: #f2f2f2;
    color: #333;
}
.package-tabs .nav-link.active {
    background: #1781FE;
    color: #fff;
}
/*------ End ----- Blog -------*/

/* ------Home End------ */



/* ------Footer Start------ */
   /* ================================
   COOKIE CONSENT
================================ */
    #cookieConsent {
        display: none;
        position: fixed;
        bottom: 100px;
        left: 0;
        width: 100%;
        background: #2c2c2c;
        padding: 18px 20px;
        color: #fff;
        text-align: center;
        font-size: 15px;
        z-index: 99999;
        box-shadow: 0px -4px 15px rgba(0, 0, 0, 0.2);
    }

    #cookieConsent button {
        background: #0f9d58;
        border: none;
        padding: 10px 22px;
        margin-left: 10px;
        border-radius: 5px;
        color: #fff;
        cursor: pointer;
        transition: 0.3s;
    }

    #cookieConsent button:hover {
        background: #0b8349;
    }

    /* ================================
   FOOTER BASE
================================ */
    .footer-section {
        background: #3c2d2d;
        color: #ccc;
        padding-top: 60px;
        overflow: auto;
    }

    .footer-section a {
        color: #ccc;
        text-decoration: none;
    }

    .footer-section a:hover {
        color: #fff;
    }
    
    @media (max-width:991px){
    .footer-logo img{
        max-width:120px;
        }
    }

 
    /* Inquiry Box */
    .footer-contact-wrap {
        background: #1f1f1f;
        padding: 25px 30px;
        border-radius: 10px;
        margin-bottom: 50px;
    }

    /* Inquiry Box layout */
    .inquiry-area {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .inquiry-area svg {
        fill: #fff;
    }

    /* Contacts */
    .contact-area {
        display: flex;
        flex-wrap: wrap;
        gap: 25px;
        margin-top: 20px;
    }

    .single-contact .icon img {
        width: 26px;
    }

    .single-contact .content span {
        font-size: 14px;
        color: #bbb;
    }

    /* Footer Columns */
    .footer-widget .widget-title h5 {
        color: #fff;
        margin-bottom: 16px;
        font-size: 18px;
    }

    .footer-widget ul li {
        list-style: none;
        margin-bottom: 10px;
    }

    .footer-widget ul li a:hover {
        color: #fff;
        padding-left: 3px;
    }

    /* Social Icons */
    .social-list {
        display: flex;
        gap: 15px;
        margin-top: 15px;
    }

    .social-list li {
        list-style: none;
    }

    .social-list li a {
        font-size: 22px;
    }

    /* Footer Bottom */
    .footer-bottom {
        background: #3c2d2d;
        border-top: 0.1px solid #ffffff61 !important;
        text-align: center;
        padding: 18px 10px;
        margin-top: 40px;
    }

    .footer-bottom a {
        color: #aaa;
        padding: 0 6px;
    }

    .footer-bottom a:hover {
        color: #fff;
    }

    /* ================================
   DESTINATION ACCORDION
================================ */
    .footer-dest {
        padding: 12px 20px;
        font-size: 17px;
        border-bottom: 1px solid #444;
    }

    /* Remove default arrow */
    .accordion-button::after {
        display: none !important;
    }

    /* Plus Icon */
    .accordion-button.collapsed::before {
        content: "+";
        position: absolute;
        right: 20px;
        font-size: 26px;
        color: #000;
    }

    /* Minus Icon */
    .accordion-button:not(.collapsed)::before {
        content: "-";
        position: absolute;
        right: 20px;
        font-size: 30px;
        color: #000;
    }

    /* ================================
   Responsive
================================ */
    @media (max-width: 991px) {
        /* .footer-section {
            text-align: center;
        } */

        .contact-area {
            justify-content: center;
        }
    }

    @media (max-width: 768px) {
        .inquiry-area {
            flex-direction: column;
        }

        .footer-widget {
            /* text-align: center; */
        }
    }

    /* =========================================
   ANIMATED SOCIAL MEDIA ICONS
========================================= */

    .social-icons-animated {
        display: flex;
        gap: 18px;
        flex-wrap: wrap;
        align-items: center;
        list-style: none;
        margin-left: -10px;
    }

    .social-icons-animated a {
        width: 45px;
        height: 45px;
        background: rgba(255, 255, 255, 0.07);
        display: flex;
        justify-content: center;
        align-items: center;
        /*border-radius: 50%;*/
        font-size: 22px;
        color: #fff;
        transition: 0.35s ease;
        border: 1px solid rgba(255, 255, 255, 0.17);
        position: relative;
        overflow: hidden;
    }

    /* Glow Shine Animation */
    .social-icons-animated a::before {
        content: "";
        position: absolute;
        width: 180%;
        height: 180%;
        background: rgba(255, 255, 255, 0.15);
        top: -130%;
        left: -130%;
        transform: rotate(25deg);
        transition: 0.6s ease;
    }

    /* Hover Animation Effects */
    .social-icons-animated a:hover::before {
        top: 130%;
        left: 130%;
    }

    .social-icons-animated a:hover {
        transform: translateY(-6px) scale(1.15);
        background: #ffffff20;
        border-color: #ffffff70;
        box-shadow: 0px 6px 20px rgba(255, 255, 255, 0.2);
    }

    /* Rotate Slight on Hover */
    .social-icons-animated a:hover i {
        transform: rotate(8deg);
    }

    /* Icon Transition */
    .social-icons-animated a i {
        transition: 0.3s ease;
    }

    /* -----------------------------------------
   RESPONSIVE SOCIAL ICONS
------------------------------------------ */
    @media (max-width: 768px) {
        .social-icons-animated {
            /* justify-content: center; */
            gap: 14px;
        }

        .social-icons-animated a {
            width: 40px;
            height: 40px;
            font-size: 20px;
        }
    }

    @media (max-width: 480px) {
        .social-icons-animated {
            gap: 10px;
        }

        .social-icons-animated a {
            width: 38px;
            height: 38px;
            font-size: 18px;
        }
    }

    /* Footer Widget */
    .footer-widget {
        padding: 20px ;

    }

    @media (max-width:767px){
       .footer-widget {
            padding: 20px 0px;
        }
    }

    .widget-title h5 {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 15px;
        color: #222;
    }

    .widget-list {
        list-style: none;
        padding: 0;
        margin: 0 0 15px 0;
    }

    .widget-list li {
        margin-bottom: 10px;
    }

    .widget-list a {
        color: #444;
        text-decoration: none;
        font-size: 15px;
        transition: 0.3s;
    }

    .widget-list a i {
        color: #25D366;
        /* WhatsApp green */
        margin-right: 6px;
    }

    .widget-list a:hover {
        color: #007bff;
    }

    /* Subscribe Form */
    .subscribe-form {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .email-box {
        padding: 10px;
        border-radius: 2px;
        border: 1px solid #ddd;
        transition: 0.3s;
        text-align:center;
    }

    .email-box:focus {
        border-color: #007bff;
        box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
    }

    .subscribe-btn {
        padding: 10px 16px;
        border: none;
        border-radius: 5px;
        background: #e5d517;
        color: #fff;
        font-weight: 600;
        cursor: pointer;
        transition: 0.3s;
    }

    .subscribe-btn:hover {
        background: #f1e11f;
    }

    /* Responsive */
    @media(max-width: 767px) {
        /* .footer-widget {
            text-align: center;
        } */

        .subscribe-form {
            flex-direction: column;
        }
    }


    .footer-section .footer-menu-wrap {
        padding: 0px 0 0px;
    }

    .faq-wrap .accordion .accordion-item {
        border-radius: 0px;
    }

    .faq-wrap .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
        border: none !important;
    }

    .faq-wrap .accordion .accordion-item .accordion-header .accordion-button {
        color: var(--title-color);
        font-family: var(--font-poppins);
        font-size: 18px;
        /* width: 90px; */
        font-weight: 400;
        line-height: 1.4;
        text-align: left;
        padding: 18px 30px;
        border-radius: 10px;
        background-color: transparent;
    }

    /* Desktop / Default: Right Side Icons */
    .fixed-media-icons {
        position: fixed;
        right: 30px;
        bottom: 20%;
        display: flex;
        flex-direction: column;
        gap: 15px;
        z-index: 9999;
    }

    /* Icon Style */
    .fixed-media-icons .icon {
        width: 45px;
        height: 45px;
        background: #ffffff;
        border-radius: 50%;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
        display: flex;
        justify-content: center;
        align-items: center;

        opacity: 0;
        transform: translateX(40px);
        animation: slideRight 0.6s ease-out forwards;
    }

    /* Animation Delays */
    .fixed-media-icons .icon:nth-child(1) {
        animation-delay: 0.1s;
    }

    .fixed-media-icons .icon:nth-child(2) {
        animation-delay: 0.25s;
    }

    .fixed-media-icons .icon:nth-child(3) {
        animation-delay: 0.4s;
    }

    /* Slide Animation */
    @keyframes slideRight {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    /* Hover */
    .fixed-media-icons .icon:hover {
        transform: scale(1.1);
        transition: 0.2s;
    }

    .mobile_menu_icon {
        display: none !important;
    }

    /* ----------------------------------------- */
    /* MOBILE: Icons Move to Bottom Center */
    /* ----------------------------------------- */
    @media (max-width: 768px) {
        .fixed-media-icons {
            right: 4px;
            left: 11px;
            bottom: 65px;
            flex-direction:coloumn;
            /* icons side-by-side */
            justify-content: center;
            gap: 18px;
        }

        .mobile_menu_icon {
            display: block !important;
        }

        .fixed-media-icons .icon {
            transform: translateY(40px);
            animation: slideUp 0.6s ease-out forwards;
        }

        @keyframes slideUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
    }

    footer-section .footer-menu-wrap .footer-widget .widget-list li a {
        color: #ebebeb;
        font-family: var(--font-roboto);
        font-weight: 500;
        font-size: 16px;
        line-height: 1;
        transition: 0.5s;
    }

    .footer-p:hover {
        color: #9f9f9f !important;
    }

    .footer-bottom a {
        color: #aaa;
        padding: 0 6px;
        font-size: 16px;
    }

    .footer-section a {
        color: #898383;
        text-decoration: none;
    }

    .floating-whatsapp {
        position: fixed;
        bottom: 50px;
        left: 20px;
        background: #25D366;
        color: white;
        padding: 14px 26px;
        border-radius: 50px;
        font-size: 15px;
        font-weight: 600;
        text-decoration: none;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        z-index: 9999;
        transition: 0.3s;
    }

    .floating-whatsapp:hover {
        background: #1ebe5d;
    }

    @media (max-width: 767px) {
        .whatsapp-pill {
            display: none !important;
        }

        .whatsapp {
            display: block !important;
        }
    }

    @media (max-width: 575px) {
        .whatsapp-pill {
            display: none !important;
        }

        .whatsapp {
            display: block !important;
        }
    }

    .whatsapp {
        display: none !important;
    }

    .counter-section .col-custom {
        width: 100%;
    }

    @media(min-width: 576px) {

        /* Mobile landscape */
        .counter-section .col-custom {
            width: 50%;
        }
    }

    @media(min-width: 992px) {

        /* Desktop */
        .counter-section .col-custom {
            width: 33.33%;
        }
    }
    /*--------Footer menu----*/


    .container {

        margin: 0 auto;

        overflow: hidden;
        position: relative;

    }

    .nav-bar {
        background: #fff;
        width: 100%;

        /* border-radius: 0 0 50px 50px; */
        height: 4rem;
        position: fixed;
        left: 0;
        bottom: 0;
        z-index: 999999999;
        /* filter: url("#fancy-goo"); */
        box-shadow: 0 20px 35px 0 rgba(240, 29, 57, 0.5);
    }

    .nav-bar .footer_icon_media {
        height: 1rem;
        margin-bottom: -10px;
        position: relative;
        z-index: 10;
        transition: all .4s;
        display: inline-block;
        color: #3f0f04;
        top: 5px;
        font-size: 24px;
    }

    .nav-bar ul {
        display: flex;
        height: 100%;
    }

    .nav-bar ul li {
        height: 100%;
        text-align: center;
        list-style: none;
        align-items: center;
        display: flex;
        cursor: pointer;
        justify-content: center;
        flex-wrap: wrap;
        position: relative;
        flex: 1;
    }

    .nav-bar ul li span {
        font-weight: 400;
        font-size: .9em;
        width: 100%;
        display: block;
        text-align: center;
        transition: all .22s;
        color: #e5d517;
    }

    .nav-bar ul li:after {
        width: 70%;
        height: 50%;
        border-radius: 100%;
        content: '';
        left: 0;
        right: 0;
        margin: 0 auto;
        top: 0;
        z-index: 0;
        position: absolute;
        background: #fff;
        transition: all .4s;
    }

    .nav-bar ul li:hover:after {
        transform: translate3d(0, -15%, 0);
    }

    .nav-bar ul li.active:after {
        transform: translate3d(0, -40%, 0);
    }

    .nav-bar ul li.active span,
    .nav-bar ul li:hover span {
        color: #3f0f04;
        ;
    }

    .nav-bar ul li.active svg {
        transform: scale(1.12) translate3d(0, -10px, 0);
    }

    .nav-bar ul li:not(.active):hover svg {
        transform: scale(1.049) translate3d(0, -4px, 0);
    }

    .nav-bar ul li svg path {
        transition: all .4s;
    }

    .nav-bar ul li:hover svg path,
    .nav-bar ul li.active svg path {
        fill: #3f0f04;
        ;
    }

    @media screen and (max-width: 400px) {
        .nav-bar svg {
            height: 1.5rem;
        }

        .nav-bar ul li span {
            font-size: .75rem;
            font-weight: 500;
        }

        .nav-bar ul li.active:after {
            transform: translate3d(0, -25%, 0);
        }
    }

    .footer_media_z {
        z-index: 10000;
    }
.mobile_views
{
display:block;
}
    /* ===== MOBILE BOTTOM FIXED NAV ===== */

    @media (max-width: 576px) {
        .footer-section .footer-menu-wrap .footer-widget .widget-list li {
            margin-bottom: 18px;
            text-align: left !important;

        }
        .mobile_views
        {
            display:none!important;
        }

        .footer-section .footer-menu-wrap .footer-widget .widget-title h5 {
            text-align: left;
        }

        .contact_mobiles {
            display: none;
        }

        .row>* {
            flex-shrink: 0;

            padding-right: calc(var(--bs-gutter-x) * .5);
            padding-left: calc(var(--bs-gutter-x) * .5);
            margin-top: 0px;
        }

        .footer-section {
            background: #3c2d2d;
            color: #ccc;
            padding-top: 10px !important;
            overflow: auto;
        }

        .footer-section .footer-menu-wrap .footer-widget .widget-title h5 {
            color: #3f0f04;
            font-family: var(--font-roboto);
            font-weight: 500;
            font-size: 18px;
            line-height: 1;
            background: whitesmoke;
            margin-bottom: 0;
            padding: 8px;
        }

        .social-icons-animated a {
            width: 45px;
            height: 45px;
            background: #fff;
            display: flex;
            justify-content: center;
            align-items: center;
            /* border-radius: 50%; */
            font-size: 22px;
            color: #3f0f04;
            transition: 0.35s ease;
            border: 1px solid white;
            position: relative;
            overflow: hidden;
            border-radius: 5px;
        }
    }

    /*-------End -----*/
