/*@media (prefers-color-scheme: dark) {*/
/*    :root {*/
/*        --firstColor: #4ACFFF;*/
/*        --secondColor: #F7B30C;*/
/*        --thirdColor: #FF6655;*/
/*        --backgroundColor: #171717;*/
/*        --secondaryBackgroundColor: #000000;*/
/*        --textColor: #e6e6e6;*/
/*        --styleFont: "Lobster", sans-serif;*/
/*        --mainFont: "Roboto", sans-serif;*/
/*        --padding: 1.25rem;*/
/*        --radius: 5px;*/
/*        --timing-function: cubic-bezier(.86, .2, .03, .97);*/
/*    }*/
/*}*/

/*@media (prefers-color-scheme: light) {*/
/*    :root {*/
/*        --firstColor: #4ACFFF;*/
/*        --secondColor: #F7B30C;*/
/*        --thirdColor: #FF6655;*/
/*        --backgroundColor: #F5F5F5;*/
/*        --secondaryBackgroundColor: #ffffff;*/
/*        --textColor: #000;*/
/*        --styleFont: "Lobster", sans-serif;*/
/*        --mainFont: "Roboto", sans-serif;*/
/*        --padding: 1.25rem;*/
/*        --radius: 5px;*/
/*        --timing-function: cubic-bezier(.86, .2, .03, .97);*/
/*    }*/
/*}*/

/*[data-theme="light"] {*/

/*    --firstColor: #4ACFFF;*/
/*    --secondColor: #F7B30C;*/
/*    --thirdColor: #FF6655;*/
/*    --backgroundColor: #F5F5F5;*/
/*    --secondaryBackgroundColor: #ffffff;*/
/*    --textColor: #000;*/
/*    --styleFont: "Lobster", sans-serif;*/
/*    --mainFont: "Roboto", sans-serif;*/
/*    --padding: 1.25rem;*/
/*    --radius: 5px;*/
/*    --timing-function: cubic-bezier(.86, .2, .03, .97);*/
/*}*/

/*[data-theme="dark"] {*/

/*    --firstColor: #4ACFFF;*/
/*    --secondColor: #F7B30C;*/
/*    --thirdColor: #FF6655;*/
/*    --backgroundColor: #171717;*/
/*    --secondaryBackgroundColor: #000000;*/
/*    --textColor: #e6e6e6;*/
/*    --styleFont: "Lobster", sans-serif;*/
/*    --mainFont: "Roboto", sans-serif;*/
/*    --padding: 1.25rem;*/
/*    --radius: 5px;*/
/*    --timing-function: cubic-bezier(.86, .2, .03, .97);*/

}
/* DARK THEME */
@media (prefers-color-scheme: dark) {
    :root {
        --firstColor: #4A6741;
        --secondColor: #8DBF6D; /* Lighter green */
        --thirdColor: #B5E48C; /* Soft lime */
        --backgroundColor: #0D130B; /* Dark bg */
        --secondaryBackgroundColor: #1A2218; /* Card bg */
        --textColor: #F1F8EE; /* Light text */

        --styleFont: "Lobster", sans-serif;
        --mainFont: "Roboto", sans-serif;
        --padding: 1.25rem;
        --radius: 5px;
        --timing-function: cubic-bezier(.86, .2, .03, .97);
    }
}

/* LIGHT THEME */
@media (prefers-color-scheme: light) {
    :root {
        --firstColor: #385131; /* Dark green */
        --secondColor: #5E824A; /* Mid green */
        --thirdColor: #76A64B; /* Accent green */
        --backgroundColor: #F9FBF8;
--secondaryBackgroundColor: #FFFFFF;
        --textColor: #1B2618; /* Dark text */

        --styleFont: "Lobster", sans-serif;
        --mainFont: "Roboto", sans-serif;
        --padding: 1.25rem;
        --radius: 5px;
        --timing-function: cubic-bezier(.86, .2, .03, .97);
    }
}

/* MANUAL LIGHT */
[data-theme="light"] {
    --firstColor: #385131;
    --secondColor: #5E824A;
    --thirdColor: #76A64B;
  --backgroundColor: #F9FBF8;
--secondaryBackgroundColor: #FFFFFF;
    --textColor: #1B2618;

    --styleFont: "Lobster", sans-serif;
    --mainFont: "Roboto", sans-serif;
    --padding: 1.25rem;
    --radius: 5px;
    --timing-function: cubic-bezier(.86, .2, .03, .97);
}

/* MANUAL DARK */
[data-theme="dark"] {
    --firstColor: #4A6741;
    --secondColor: #8DBF6D;
    --thirdColor: #B5E48C;
    --backgroundColor: #0D130B;
    --secondaryBackgroundColor: #1A2218;
    --textColor: #F1F8EE;

    --styleFont: "Lobster", sans-serif;
    --mainFont: "Roboto", sans-serif;
    --padding: 1.25rem;
    --radius: 5px;
    --timing-function: cubic-bezier(.86, .2, .03, .97);
}

/* GLOBAL */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--backgroundColor);
    font-family: var(--mainFont);
    overflow-x: clip;
    color: var(--textColor);
}

@view-transition {
    navigation: auto;
}

.view-transit-image {
    view-transition-name: package-image;
}

/* DISPLAY */
.hide {
    display: none;
}

/* FIXED MEDIA QUERY (CSS me nested allowed nahi hota) */
@media (width > 992px) {
    .hide-on-desktop {
        display: none;
    }
}
.hide-on-mobile {
    @media (width < 992px) {
        display: none;
    }
}

.hide-on-sm-mobile {
    @media (width < 376px) {
        display: none;
    }
}

/*---------typography------------------------------------------*/

.enourmous-heading {
    font-size: 8rem;

    @media (width < 992px) {
        font-size: 3rem;
    }
}

.huge-heading {
    font-size: 4rem;

    @media (width < 992px) {
        font-size: 3rem;
    }
}

.big-heading {
    font-size: 3rem;

    @media (width < 992px) {
        font-size: 2rem;
    }
}

.heading {
    font-size: 2rem;

    @media (width < 992px) {
        font-size: 1.5rem;
    }
}

.mid-heading {
    font-size: 1.5rem;

    @media (width < 992px) {
        font-size: 1.25rem;
    }
}

.sub-heading {
    font-size: 1.25rem;

    @media (width < 992px) {
        font-weight: bold;
        font-size: 1rem;
    }
}

/*---------size and centering------------------------------------------*/

.vh100 {
    min-height: 100svh;
    height: auto;
}

.vh50 {
    min-height: 50svh;
    height: auto;
}

.vh40 {
    min-height: 40svh;
    height: auto;
}

.grid-center {
    display: grid;
    place-items: center;
}

.vertical-center {
    align-content: center;
}

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

.grid-center {
    display: grid;
    place-items: center;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.fixed {
    position: fixed;
}

.square {
    height: 60px;
    aspect-ratio: 1/1;
}

/*---------colors and background------------------------------------------*/
.firstColor {
    color: var(--firstColor);
}

.secondColor {
    color: var(--secondColor);
}

.thirdColor {
    color: var(--thirdColor);
}

.bg-theme2 {
    background-color: #ffffffad;
}

.bg-firstColor {
    background-color: var(--firstColor);
}

.bg-secondColor {
    background-color: var(--secondColor);
}

.bg-thirdColor {
    background-color: var(--thirdColor);
}
/* NAV LINKS */
.navbar-nav .nav-link {
    color: #1f2937 !important; /* dark grey (better readability) */
    font-weight: 500;
    position: relative;
}

/* HOVER EFFECT */
.navbar-nav .nav-link:hover {
    color: #16a34a !important;
}

/* ACTIVE LINK (underline effect 🔥) */
.navbar-nav .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #16a34a;
}

/* BUTTON FIX (right side) */
.navbar .btn-outline-light {
    border: 1px solid #16a34a !important;
    color: #16a34a !important;
    border-radius: 6px;
    padding: 6px 14px;
}

.navbar .btn-outline-light:hover {
    background: #16a34a !important;
    color: #fff !important;
}

/* NAVBAR BG */
.bg-theme-navbar {
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0.7) 60%,
        rgba(255, 255, 255, 0) 100%
    );
    
    backdrop-filter: none !important; /* blur remove */
    border-bottom: none !important;   /* border remove */
}
/*.bg-theme-navbar {*/
/*    background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);*/

/*    @media (width<992px) {*/
/*        background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 100%);*/
/*    }*/
/*}*/

.bg-theme-gradient {
    background: linear-gradient(90deg, var(--firstColor) 0%, var(--secondColor) 50%, var(--thirdColor) 100%);
}

.text-theme-gradient {
    background: linear-gradient(150deg, var(--firstColor) 0%, var(--secondColor) 70%, var(--thirdColor) 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-theme {

    color: var(--textColor);
}

.style-text-theme {

    font-family: var(--styleFont);
    color: var(--textColor);
}

.style-text-white {

    font-family: var(--styleFont);
    color: #fff;
}

.style-text-black {

    font-family: var(--styleFont);
    color: #000;
}

.style-text {
    font-family: var(--styleFont);
    background: linear-gradient(150deg, var(--firstColor) 0%, var(--secondColor) 70%, var(--thirdColor) 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.style-text-secondColor {
    font-family: var(--styleFont);
    color: var(--secondColor);
}

.text-shadow {
    text-shadow: 0 0 var(--radius) black;
}

.drop-shadow {
    filter: drop-shadow(0 0 2px #fff);
}

.custom-bg {
    background: var(--color, #00000088) var(--url, '');
    background-size: var(--size, cover);
    background-repeat: var(--repeat, no-repeat);
    background-blend-mode: overlay;
    background-position: var(--position, center);
    background-attachment: var(--attachment, scroll);
}

.banner-bg {
    --url: url(https://i.ibb.co/1GDXy3nn/m8.jpg);
    background: var(--color, #00000088) var(--url);
    background-size: var(--size, cover);
    background-repeat: var(--repeat, no-repeat);
    background-blend-mode: overlay;
    background-position: var(--position, center);
    background-attachment: var(--attachment, scroll);
}

.page-banner {
    
    background: linear-gradient(120deg, var(--backgroundColor) 55%, color-mix(in oklab, #f5f5f5, #f5f5f500 50%) 100%), var(--url,url(https://i.ibb.co/1GDXy3nn/m8.jpg));
    background-size: auto, 50% 100%;
    background-repeat: var(--repeat, no-repeat);
    background-blend-mode: normal;
    background-position: var(--position, center), right;
    background-attachment: var(--attachment, scroll);
}

.honeymoon-banner {
    background: linear-gradient(120deg, #F783AA 55%,
            color-mix(in oklab, #F783AA, #F783AA00 50%) 100%), var(--url);
    background-size: auto, 50% 100%;
    background-repeat: var(--repeat, no-repeat);
    background-blend-mode: normal;
    background-position: var(--position, center), right;
    background-attachment: var(--attachment, scroll);
}

/*------------------Buttons --------------------------------*/

.btn-theme {
    border: 0px;

    &:hover {
        background: linear-gradient(150deg, var(--firstColor) 0%, var(--secondColor) 70%, var(--thirdColor) 100%);
        background-size: 100% 100%;

        color: #fff;

    }
}

.btn-theme-cta {
    border: 0px;
    background-color: #fff;
    color: #000;

    &:hover {
        background: linear-gradient(150deg, var(--firstColor) 0%, var(--secondColor) 70%, var(--thirdColor) 100%);
        background-size: 100% 100%;

        color: #fff;

    }
}

.btn-theme-outline {
    border: 1px solid;
    border-top-color: var(--secondColor);
    border-bottom-color: var(--secondColor);
    border-left-color: var(--firstColor);
    border-right-color: var(--thirdColor);

    &:hover {
        border: 1px solid;
        background: linear-gradient(150deg, var(--firstColor) 0%, var(--secondColor) 70%, var(--thirdColor) 100%);
        background-size: 100% 100%;
        color: #fff;
    }
}

.btn-theme-first {
    border: 0px;
    background-color: #fff;
    color: #000;

    &:hover {
        background: var(--firstColor);
        color: #fff;
    }
}

.btn-theme-second {
    border: 0px;
    background-color: #fff;
    color: #000;

    &:hover {
        background: var(--secondColor);
        color: #fff;
    }
}

.btn-theme-third {
    border: 0px;
    background-color: #fff;
    color: #000;

    &:hover {
        background: var(--thirdColor);
        color: #fff;
    }
}

.btn-theme-first-hovered {
    border: 0px;
    background: var(--firstColor);

    &:hover {
        background: var(--firstColor);
        color: #fff;
    }
}

.btn-theme-second-hovered {
    border: 0px;
    background: var(--secondColor);

    &:hover {
        background: var(--secondColor);
        color: #fff;
    }
}

.btn-theme-third-hovered {
    border: 0px;
    background: var(--thirdColor);

    &:hover {
        background: var(--thirdColor);
        color: #fff;
    }
}

.btn-theme-hovered {
    border: 0px;
    background: linear-gradient(150deg, var(--firstColor) 0%, var(--secondColor) 70%, var(--thirdColor) 100%);
    background-size: 100% 100%;

    color: #fff;
}

.btn-theme-first.active {
    background: var(--firstColor);
    color: #fff;
}

.btn-theme-second.active {
    background: var(--secondColor);
    color: #fff;
}

.btn-theme-third.active {
    background: var(--thirdColor);
    color: #fff;
}

/*------------------Package - Card--------------------------------*/


.package-card {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr;
    gap: 0px 0px;
    grid-auto-flow: row;
    grid-template-areas:
        "package-image package-image package-image package-image"
        "package-image package-image package-image package-image"
        "package-title package-title package-title package-title"
        "package-price package-price package-price package-button";
    width: 300px;
    height: 330px;
    outline: 0px solid #000;
    overflow: hidden;
    border-radius: var(--radius);
    background-color: var(--secondaryBackgroundColor);
    transition: all .2s var(--timing-function);
    color: var(--textColor);

    & .package-image {
        grid-area: package-image;
        height: 100%;

        & img {
            width: 100%;
            object-fit: cover;
            height: 100%;
        }
    }

    & .package-title {
        grid-area: package-title;
        padding: var(--padding);
        padding-bottom: 0px;

        & .title {
            font-size: 1.25rem;
            font-family: var(--styleFont);
            margin: 0;
            overflow: clip;
            text-overflow: ellipsis;
            text-wrap: nowrap;
        }

        & .days {
            margin: 0;
        }
    }

    & .package-price {
        grid-area: package-price;
        padding: 0 var(--padding);
        align-content: center;
        font-weight: bold;
    }

    & .package-button {
        grid-area: package-button;
        display: grid;
        place-items: center;
        background: linear-gradient(150deg, var(--firstColor) 0%, var(--secondColor) 70%, var(--thirdColor) 100%);
        border-radius: var(--radius) 0 var(--radius) 0;
        border-top: 10px solid var(--backgroundColor);
        border-left: 10px solid var(--backgroundColor);
        font-size: 2.5rem;
        color: #fff;
    }

    &:hover {
        box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
        scale: 1.02;
    }
}



/*------------------Package - Card--------------------------------*/

/*------------------Destination - Card--------------------------------*/

.destination-card {
    --image: url('/assets/images/favicon.png');
    display: grid;
    grid-template-columns: 1.5fr 0.5fr;
    grid-template-rows: 1.5fr 0.5fr;
    gap: 0px 0px;
    grid-auto-flow: row;
    border-radius: var(--radius);
    grid-template-areas:
        ". ."
        "destination-name destination-link";
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 35%), var(--image);
    background-size: cover;
    background-position: center;
    width: 300px;
    height: 300px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    transition: all .2s var(--timing-function);

    @media (width < 992px) {
        width: 100%;
    }

    & .destination-name {
        grid-area: destination-name;
        font-size: 1.5rem;
        font-family: var(--styleFont);
        color: #fff;
        align-content: center;
        padding: 0 var(--padding);
        transition: all .2s var(--timing-function);
    }



    & .destination-link {
        grid-area: destination-link;
        display: grid;
        place-items: center;
        background: linear-gradient(150deg, var(--firstColor) 0%, var(--secondColor) 70%, var(--thirdColor) 100%);
        border-radius: var(--radius) 0 var(--radius) 0;
        border-top: 10px solid var(--backgroundColor);
        border-left: 10px solid var(--backgroundColor);
        font-size: 2.5rem;
        color: #fff;
    }

    &:hover {
        box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
        scale: 1.02;

        & .destination-name {
            grid-area: destination-name;
            font-size: 2rem;
            font-family: var(--styleFont);
            color: #fff;
            align-content: center;
            padding: 0 var(--padding);
        }
    }

}




/*------------------Destination - Card--------------------------------*/

/*------------------------ testimonial card ----------------*/
.testimonial-card {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
        "Testimonial-name Testimonial-rating"
        "Testimonial-text Testimonial-text";

    padding: 20px;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
}

/* Hover effect 🔥 */
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* Name */
.testimonial-name {
    grid-area: Testimonial-name;
    font-family: var(--styleFont);
    font-size: 1.3rem;
    font-weight: 600;
    color: #14532d;
    display: flex;
    align-items: center;
}

/* Rating */
.testimonial-rating {
    grid-area: Testimonial-rating;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    color: #facc15; /* star color */
}

/* Text */
.testimonial-text {
    grid-area: Testimonial-text;
    margin-top: 10px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4b5563;
}


/*------------------gradient back Card--------------------------------*/

.theme-card {
    width: auto;
    height: auto;
    position: relative;

    &:after {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        scale: var(--scale, 1.02);
        z-index: -1;
        width: 100%;
        height: 100%;
        border-radius: var(--radius);
        background: linear-gradient(150deg, var(--firstColor) 0%, var(--secondColor) 70%, var(--thirdColor) 100%);
    }
}

.theme-card-2 {
    background-color: var(--secondaryBackgroundColor);
    border-radius: var(--radius);
    padding: var(--padding);
    box-shadow: 0px 2px 0px var(--firstColor), 0px 4px 0px var(--secondColor), 0px 6px 0px var(--thirdColor), 0px 10px 10px #0002;
}

/*------------------Misc--------------------------------*/

.seperator {
    width: 100%;
    height: 20px;
    background-color: var(--secondColor);

    &:before {
        content: '';
        display: block;
        height: 33%;

        background-color: var(--firstColor);
    }

    &:after {
        content: '';
        display: block;
        height: 33%;
        background-color: var(--thirdColor);
    }

}

.third-seperator {
    width: 100%;
    /* height: 40px; */
    background-color: var(--thirdColor);
}

.footer-grid-container {
    margin-block: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 0px 0px;
    grid-auto-flow: row;
    grid-template-areas:
        "footer-left footer-center-top footer-right"
        "footer-left footer-center-bottom footer-right";

    @media (width < 992px) {
        display: flex;
        flex-direction: column;
    }
}

.footer-left {
    grid-area: footer-left;
}

.footer-right {
    grid-area: footer-right;
}

.footer-center-bottom {
    display: grid;
    place-items: center;
    grid-area: footer-center-bottom;
}

.footer-center-top {
    border-radius: 0 0 20px 20px;
    display: grid;
    place-items: center;
    grid-area: footer-center-top;
}

.social-link {
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;

    font-size: 2rem;
    color: #fff;
    text-decoration: none;
    border-radius: 50%;

    background: var(--_bg);

    &:hover {
        border: 1px solid var(--primaryColor);
        color: var(--primaryColor);
    }
}
[role="tabpanel"]{
     scroll-margin-top: 100px;
}




#why-section-new {
    position: relative;
    padding: 100px 20px;
    background: #d7f9c6;
    text-align: center;
}

/* WATERMARK */
#why-section-new .bg-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 10rem;
    font-weight: 900;
    color: rgba(0,0,0,0.03);
    z-index: 0;
    user-select: none;
}

/* CONTENT */
#why-section-new .content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: auto;
}

/* HEADING */
#why-section-new .big-heading {
    margin-bottom: 20px;
}

/* SUB TEXT */
#why-section-new .desc {
    color: var(--textColor);
    opacity: 0.7;
    max-width: 600px;
    margin: auto;
    margin-bottom: 50px;
}

/* GRID */
#why-section-new .grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media(min-width:768px){
    #why-section-new .grid {
        grid-template-columns: repeat(2,1fr);
    }
}

/* CARD */
#why-section-new .card-box {
    background: var(--secondaryBackgroundColor);
    padding: 30px 25px;
    border-radius: 20px;
    text-align: left;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    transition: 0.4s var(--timing-function);
    border: 1px solid rgba(0,0,0,0.05);
}

/* ICON */
#why-section-new .icon {
    min-width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--firstColor);
    font-size: 22px;
    transition: 0.3s;
}

/* TEXT */
#why-section-new .sub-heading {
    margin-bottom: 5px;
}

/* HOVER */
#why-section-new .card-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

#why-section-new .card-box:hover .icon {
    background: var(--firstColor);
    color: #fff;
    transform: scale(1.1);
}

/* RESPONSIVE */
@media(max-width:576px){
    #why-section-new {
        padding: 60px 15px;
    }
}

