     /* --- Theme Variable --- */
    :root {
        --theme-blue: #0056b3;
    }

    /* --- Hero Slider Transitions --- */
    .hero-slider .carousel-item {
        height: 80vh;
        min-height: 500px;
        background-size: cover;
        background-position: center;
        overflow: hidden; /* Important for zoom effect */
    }

    /* Cinematic Ken Burns Effect (Slow Zoom) */
    .hero-slider .carousel-item.active {
        animation: kenburns 20s ease-out both;
    }

    @keyframes kenburns {
        0% { transform: scale(1); }
        100% { transform: scale(1.15); }
    }

    /* Smooth Fade Transition between slides */
    .carousel-fade .carousel-item {
        opacity: 0;
        transition-duration: 1s;
        transition-property: opacity;
    }
    .carousel-fade .carousel-item.active {
        opacity: 1;
    }

    /* --- Staggered Text Animations --- */
    .hero-content h1 {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s ease-out 0.3s; /* Delay for H1 */
    }
    .hero-content p {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s ease-out 0.6s; /* Longer delay for P */
    }
    .hero-content .btn {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s ease-out 0.9s; /* Longest delay for Button */
    }

    /* Trigger animations when slide is active */
    .carousel-item.active .hero-content h1,
    .carousel-item.active .hero-content p,
    .carousel-item.active .hero-content .btn {
        opacity: 1;
        transform: translateY(0);
    }

    /* Overlay */
    .hero-slider .carousel-item::before {
        content: "";
        position: absolute;
        top: 0; left: 0; width: 100%; height: 100%;
        background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.2));
        z-index: 1;
    }

    .hero-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90%;
        z-index: 2;
        color: white;
    }

    /* Custom Arrows */
    .hero-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 55px;
        height: 55px;
        border: 1px solid rgba(255,255,255,0.4);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        backdrop-filter: blur(8px);
        transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        color: white;
        z-index: 10;
        background: rgba(255, 255, 255, 0.1);
    }
    .hero-arrow:hover { 
        background: var(--theme-blue); 
        border-color: var(--theme-blue); 
        transform: translateY(-50%) scale(1.1);
        color: #fff; 
    }

    @media (max-width: 768px) {
        .hero-content h1 { font-size: 2.8rem !important; }
        .hero-arrow { width: 45px; height: 45px; }
    }





        :root {
        --theme-blue: #0056b3;
        --accent-green: #2ecc71;
        --dark-navy: #0b1c39;
    }

    /* Section Styling */
    .packages-section {
        background-color: #f8fafc;
        padding: 50px 0;
    }

    .section-tag {
        color: var(--theme-blue);
        text-transform: uppercase;
        letter-spacing: 2px;
        font-size: 0.85rem;
        display: block;
    }

    /* Premium Package Card */
    .pkg-card {
        position: relative;
        border-radius: 24px;
        height: 480px;
        overflow: hidden;
        border: none;
        box-shadow: 0 20px 40px rgba(0,0,0,0.05);
        transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    /* Image Zoom on Hover */
    .pkg-img-wrapper {
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

    .pkg-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 1.2s ease;
    }

    .pkg-card:hover .pkg-img {
        transform: scale(1.1) rotate(1deg);
    }

    /* Floating Badge */
    .pkg-badge {
        position: absolute;
        top: 20px;
        right: 20px;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
        color: var(--dark-navy);
        padding: 6px 14px;
        border-radius: 50px;
        font-size: 0.75rem;
        font-weight: 700;
        z-index: 10;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

    /* Frosted Content Overlay */
    .pkg-content {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 30px;
        background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
        color: white;
        z-index: 5;
        transition: all 0.4s ease;
    }

    .pkg-card:hover .pkg-content {
        padding-bottom: 40px;
        background: linear-gradient(to top, rgba(0,0,0,0.9) 30%, transparent 100%);
    }

    .pkg-title {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 5px;
        color: #fff;
    }

    .pkg-location {
        font-size: 0.9rem;
        opacity: 0.9;
        display: flex;
        align-items: center;
        gap: 5px;
        margin-bottom: 15px;
    }

    /* Pricing Section */
    .pkg-price-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 15px;
    }

    .price-tag {
        font-size: 1.25rem;
        font-weight: 800;
        color: #fff;
    }

    .price-tag span {
        font-size: 0.85rem;
        font-weight: 400;
        opacity: 0.7;
        text-decoration: line-through;
        margin-right: 8px;
    }

    /* Hover Reveal Meta (Stars & Days) */
    .pkg-meta-reveal {
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition: all 0.5s ease;
        font-size: 0.85rem;
    }

    .pkg-card:hover .pkg-meta-reveal {
        max-height: 100px;
        opacity: 1;
        margin-top: 15px;
    }

    /* Icon Bar */
    .meta-icons {
        display: flex;
        gap: 15px;
        padding-top: 15px;
        border-top: 1px solid rgba(255,255,255,0.2);
    }

    /* Custom Button Styling */
    .btn-view-all {
        border: 2px solid var(--theme-blue);
        color: var(--theme-blue);
        border-radius: 50px;
        padding: 10px 30px;
        font-weight: 600;
        transition: all 0.3s;
    }

    .btn-view-all:hover {
        background: var(--theme-blue);
        color: white;
        transform: translateY(-3px);
    }

    @media (max-width: 991px) {
        .pkg-card { height: 420px; }
    }









  :root {
        --light-mint: #f0fdf4;
        --accent-teal: #0d9488;
        --text-dark: #1e293b;
        --soft-gray: #94a3b8;
    }

    .about-soft-section {
        background-color: #ffffff;
        padding: 120px 0;
        position: relative;
    }

    /* Decorative background circle */
    .about-soft-section::before {
        content: "";
        position: absolute;
        top: 10%;
        left: -5%;
        width: 400px;
        height: 400px;
        background: var(--light-mint);
        border-radius: 50%;
        filter: blur(80px);
        z-index: 0;
    }

    /* Modern Image Frame */
    .img-frame-wrapper {
        position: relative;
        z-index: 1;
    }

    .main-img-frame {
        border-radius: 100px 100px 20px 100px; /* Asymmetric curves */
        overflow: hidden;
        border: 15px solid var(--light-mint);
        box-shadow: 0 30px 60px rgba(0,0,0,0.05);
    }

    .experience-bubble {
        position: absolute;
        bottom: -20px;
        right: 10%;
        background: #ffffff;
        padding: 20px 35px;
        border-radius: 50px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.08);
        display: flex;
        align-items: center;
        gap: 15px;
    }

    /* Content Styling */
    .sub-title {
        color: var(--accent-teal);
        font-weight: 700;
        letter-spacing: 3px;
        font-size: 0.8rem;
        background: var(--light-mint);
        padding: 8px 20px;
        border-radius: 50px;
        display: inline-block;
    }

    .main-heading {
        color: var(--text-dark);
        line-height: 1.2;
    }

    /* Unique Features List */
    .feature-item {
        display: flex;
        align-items: center;
        gap: 20px;
        padding: 20px;
        border-radius: 20px;
        transition: 0.3s;
        border: 1px solid transparent;
    }

    .feature-item:hover {
        border-color: var(--light-mint);
        background: #fafafa;
    }

    .feature-icon-circle {
        width: 60px;
        height: 60px;
        background: #ffffff;
        border: 1px solid #e2e8f0;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        color: var(--accent-teal);
        transition: 0.3s;
    }

    .feature-item:hover .feature-icon-circle {
        background: var(--accent-teal);
        color: white;
        border-color: var(--accent-teal);
    }

    .btn-custom-light {
        background: var(--text-dark);
        color: white;
        padding: 15px 40px;
        border-radius: 50px;
        font-weight: 600;
        transition: 0.3s;
        border: none;
    }

    .btn-custom-light:hover {
        background: var(--accent-teal);
        transform: translateY(-5px);
        color: white;
    }

    @media (max-width: 768px) {
        .main-img-frame { border-radius: 40px; }
        .experience-bubble { position: static; margin-top: 20px; width: fit-content; }
    }











       :root {
        --dark-green: #064532;
        --light-text: #64748b;
        --heading-navy: #0b1c39;
    }

    .why-choose-section {
        padding: 100px 0;
        background-color: #ffffff;
    }

    /* Staggered Image Layout */
    .image-grid-staggered {
        position: relative;
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        gap: 20px;
    }

    .img-box {
        border-radius: 20px;
        overflow: hidden;
        width: 100%;
    }

    .img-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .box-1 {
        grid-column: 1 / span 8;
        height: 400px;
    }

    .box-2 {
        grid-column: 5 / span 8;
        height: 350px;
        margin-top: -100px;
        border: 10px solid white;
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        z-index: 2;
    }

    /* Experience Badge */
    .exp-square {
        position: absolute;
        bottom: 0;
        left: 0;
        background: var(--dark-green);
        color: white;
        padding: 30px;
        border-radius: 15px;
        text-align: center;
        width: 160px;
        z-index: 3;
    }

    .exp-square h2 {
        font-size: 2.5rem;
        font-weight: 800;
        margin-bottom: 0;
    }

    /* List Styling */
    .why-list {
        list-style: none;
        padding: 0;
    }

    .why-item {
        display: flex;
        gap: 25px;
        margin-bottom: 35px;
        transition: 0.3s;
    }

    .why-number {
        font-size: 2.5rem;
        font-weight: 800;
        color: #e2e8f0; /* Faded number look */
        line-height: 1;
        transition: 0.3s;
    }

    .why-item:hover .why-number {
        color: var(--dark-green);
        transform: scale(1.1);
    }

    .why-item-content h5 {
        color: var(--heading-navy);
        font-weight: 700;
        margin-bottom: 8px;
    }

    .why-item-content p {
        color: var(--light-text);
        font-size: 0.95rem;
        margin-bottom: 0;
    }

    @media (max-width: 991px) {
        .box-2 { margin-top: 20px; grid-column: 1 / -1; }
        .box-1 { grid-column: 1 / -1; }
        .exp-square { position: relative; margin-top: 20px; width: 100%; }
    }






  :root {
        --deep-green: #064532;
        --accent-gold: #fbbf24;
    }

    .packages-section {
        background-color: #f8fafb;
        padding: 100px 0;
    }

    .package-header {
        max-width: 600px;
        margin: 0 auto 60px;
    }

    .package-tag {
        background: #e6eeec;
        color: var(--deep-green);
        padding: 6px 15px;
        border-radius: 50px;
        font-size: 0.8rem;
        font-weight: 700;
        text-transform: uppercase;
    }

    /* Slick Card Design */
    .pkg-card {
        position: relative;
        height: 450px;
        border-radius: 30px;
        overflow: hidden;
        border: none;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

    .pkg-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    }

    .pkg-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

    .pkg-card:hover .pkg-img {
        transform: scale(1.1);
    }

    /* Floating Badge */
    .duration-badge {
        position: absolute;
        top: 20px;
        left: 20px;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(5px);
        padding: 8px 15px;
        border-radius: 12px;
        font-weight: 700;
        font-size: 0.85rem;
        color: var(--deep-green);
        z-index: 2;
    }

    /* Bottom Glass Content */
    .pkg-content {
        position: absolute;
        bottom: 15px;
        left: 15px;
        right: 15px;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        padding: 25px;
        border-radius: 20px;
        color: white;
        transition: 0.4s;
    }

    .pkg-card:hover .pkg-content {
        background: rgba(255, 255, 255, 0.25);
        bottom: 25px;
    }

    .pkg-title {
        font-size: 1.25rem;
        font-weight: 700;
        margin-bottom: 8px;
        text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    }

    .pkg-loc {
        font-size: 0.85rem;
        display: flex;
        align-items: center;
        gap: 5px;
        opacity: 0.9;
        margin-bottom: 15px;
    }

    .btn-view-details {
        background: white;
        color: var(--deep-green);
        font-size: 0.85rem;
        font-weight: 700;
        padding: 10px 20px;
        border-radius: 10px;
        text-decoration: none;
        display: inline-block;
        transition: 0.3s;
    }

    .btn-view-details:hover {
        background: var(--deep-green);
        color: white;
    }

    @media (max-width: 768px) {
        .pkg-card { height: 400px; }
    }




