
        @import url('https://fonts.googleapis.com/css2?family=Baloo+Bhaijaan+2:wght@400..800&family=Noto+Sans+Arabic:wght@100..900&family=Playpen+Sans+Arabic:wght@100..800&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
        /* ::::: VARIABLES ::::: */
        :root {
            --navy: #002855;       /* Goddard Dark Navy */
            --blue: #0077c8;       /* Action Blue */
            --gold: #FFC629;       /* Warm Yellow/Gold */
            --white: #ffffff;
            --gray: #f8f9fa;
            --text-main: #2b2b2b;
            --text-light: #555;
            
            /* Typography */
            --font-head: "Baloo Bhaijaan 2", sans-serif;
            --font-body: "Baloo Bhaijaan 2", sans-serif;
            
            /* Animation Settings */
            --ease: cubic-bezier(0.23, 1, 0.32, 1);
            --duration: 1.2s;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            /* font-family: "Playpen Sans Arabic", cursive !important; */
            /* font-family: "Baloo Bhaijaan 2", sans-serif !important; */
            /* font-family: "Noto Sans Arabic", sans-serif !important; */
            /* font-family: "Rubik", sans-serif !important; */
            transition: 0.5s ease;
        }

        body {
            background-color: var(--white);
            color: var(--text-main);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased; /* Smoother fonts */
            font-family: "Baloo Bhaijaan 2", sans-serif !important;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-head);
            font-weight: 800;
        }

        a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
        ul { list-style: none; }
        img { max-width: 100%; height: auto; display: block; }

        /* ::::: CUSTOM ANIMATION ENGINE (Opacity Based) ::::: */
        .reveal {
            opacity: 0;
            transform: translateY(30px); /* Subtle shift up */
            transition: opacity var(--duration) ease, transform var(--duration) var(--ease);
            will-change: opacity, transform;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Stagger delays for grids */
        .delay-100 { transition-delay: 0.1s; }
        .delay-200 { transition-delay: 0.2s; }
        .delay-300 { transition-delay: 0.3s; }

        /* ::::: BUTTONS ::::: */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 7px 35px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            border: none;
            gap: 10px;
            letter-spacing: 0.5px;
        }

        .btn-primary {
            background-color: #bcede8;
    color: #002855;
            /* box-shadow: 0 4px 20px rgba(0, 119, 200, 0.25); */
        }

        i.las, i.lab {
    font-size: 21px !important;
}

footer#contact * i.las {
    color: #fff !important;
}

.feature-image.reveal.active {
    margin-right: 56px;
}

.expert-content > p {
    font-size: 22px !important;
    color: #fff !important;
}


        .btn-primary:hover {
            /* background-color: #005a9c; */
            transform: translateY(-2px);
            /* box-shadow: 0 8px 25px rgba(0, 119, 200, 0.35); */
        }

        .btn-outline {
    background: transparent;
    border: 1px solid #1e2339;
    color: #1e2339;
}
        .btn-outline:hover {
            background: var(--white);
            color: var(--navy);
        }

        /* ::::: HEADER ::::: */
        header {
            background: rgba(255, 255, 255, 0.98);
            /* background: #d9b702; */
            backdrop-filter: blur(10px);
            height: 70px;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(0,0,0,0.05);
            transition: 0.3s;
        }

        .header-container {
            max-width: 1500px;
            margin: 0 auto;
            padding: 0 30px;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--navy);
            font-family: var(--font-head);
            font-size: 1.6rem;
            font-weight: 900;
            letter-spacing: -0.5px;
        }

        img.mainlogo {
            max-width: 90px;
            margin-top: 40px;
        }
        
        .logo i { color: var(--gold); font-size: 2rem; }

        .nav-links {
            display: flex;
            gap: 20px;
            margin-bottom: -7px;
        }

        .nav-links a {
            color: var(--navy);
            font-weight: 500;
            font-size: 1.05rem;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            right: 0;
            width: 0;
            height: 2px;
            background: var(--blue);
            transition: 0.3s ease;
        }
        .nav-links a:hover::after { width: 100%; }

        /* ::::: HERO SECTION (Goddard Curve) ::::: */
        .hero {
    position: relative;
    background-color: #fdfdfb;
    /* background: url(/res/grass.png); */
    background-size: cover;
    min-height: 90vh;
    display: flex;
    overflow: hidden;
}

section#classrooms {
    position: relative;
}


.svg1 {
    position: relative;
    /* bottom: 19px; */
    right: 87vw;
    opacity: 0.55;
    animation: auto-move 2s infinite alternate 
linear;
}

.svg2 {
    animation: auto-move 2s infinite alternate 
linear;
}

.svg3 {
    animation: auto-move 2s infinite alternate 
linear;
    max-width: 117px;
    position: absolute;
    left: 10vw;
    top: 7vh;
}


section#reviews {
    position: relative;
}
@keyframes auto-move {
    0% {
    transform: translateY(0);
}

100% {
    transform: translateY(20px);
}
}



        .hero-text-wrapper {
           width: 50%;
            padding: 0 60px;
            padding-right: 13vw;
            display: flex;
            flex-direction: column;
            justify-content: center;
            z-index: 10;
            color: white;
        }

        .hero h1 {
    font-size: 3.5rem;
    line-height: 1.3;
    margin-bottom: 25px;
    color: #1e2339;
}

        .hero p {
    font-size: 1.25rem;
    line-height: 1.5;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 60%;
    font-weight: 300;
    color: #1e2339;
}


.v-card h3 {
    margin-bottom: 0 !important;
}


        .hero-media-wrapper {
    position: absolute;
    left: 0;
    top: 0;
    width: 70%; /* You might want to increase this to 65% or 70% to give the wave more room */
    height: 100%;
    
    /* ::::: NEW WAVE CLIP PATH ::::: */
    /* Old style: clip-path: ellipse(90% 100% at 0% 50%); */
    
    /* New style matches the ID in the SVG above */
    clip-path: url(#organic-wave);
    
    /* Ensure the video container itself has a clean background if needed */
    background-color: transparent; 
    z-index: 1;
    
    /* Optional: If you want to keep the "pulse" animation, 
       you'd need to animate the SVG path itself, which is complex.
       For now, we remove the clip-path animation to keep the shape stable. */
    animation: none; 
}

/* Optional: Adjust mobile view if necessary */
@media (max-width: 992px) {
    .hero-media-wrapper {
        width: 100%;
        /* On mobile, you might want a wave at the bottom instead? 
           Or just keep it rectangular/rounded */
        clip-path: none; 
        border-radius: 0 0 50px 50px; /* Keep your existing mobile style */
    }


    img.svg1 {
    display: none;
}

a#loginnav {
    font-size: 13px;
}

.header-container * a.btn {
        font-size: 13px;
        padding: 7px 23px;
    }

.hero-text-wrapper.reveal.active > h1 {
    color: #fff !important;
}

.hero-text-wrapper.reveal.active > p {
    color: #fff !important;
    max-width: 100% !important;
}

.hero-media-wrapper video {
    opacity: 0.5 !important;
}

section#home {
    min-height: 88vh;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
}

.feature-list li {
    width: 100% !important;
}

img.svg3 {
    top: -7vh;
}

.hero-media-wrapper.reveal.delay-200.active {
    background: #000;
    border-radius: 0;
}

.hdrbtns {
    display: flex;
    align-items: center !important;
    justify-content: center !important;
}

.btn-outline {
    background: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
}

}

        @keyframes liquidPulse {
    0% {
        clip-path: ellipse(100% 100% at 0% 50%);
    }
    50% {
        /* Shrink slightly and shift focus */
        clip-path: ellipse(90% 85% at 2% 50%);
    }
    100% {
        clip-path: ellipse(100% 100% at 0% 50%);
    }
}

        .hero-media-wrapper video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.8;
        }

        /* ::::: FEATURES BAR ::::: */
        .features-bar {
            background: var(--white);
            padding: 80px 0;
            position: relative;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .features-layout {
            display: flex;
            align-items: flex-start;
            gap: 110px;
        }

        /* .feature-image {
            flex: 1;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
        } */

        .feature-content {
            flex: 1;
            padding-top: 20px;
        }

        .feature-content h2 {
            color: var(--navy);
            font-size: 2.2rem;
            margin-bottom: 30px;
        }

        .feature-list li {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 8px 0;
            border-bottom: 1px solid #eee;
            color: var(--text-light);
            font-size: 1.15rem;
                width: 50%;
        }

        .feature-list i {
            color: var(--blue);
            font-size: 1.3rem;
        }

        /* ::::: PROGRAMS ::::: */
        .programs-section {
            background-color: var(--gray);
            padding: 100px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .section-header h2 {
            font-size: 2.5rem;
            color: var(--navy);
            margin-bottom: 15px;
        }

        .program-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }

        .program-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.03);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            display: flex;
            flex-direction: column;
        }

        .program-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
        }

        .card-img {
            height: 240px;
            overflow: hidden;
        }
        .card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        .program-card:hover .card-img img { transform: scale(1.05); }

        .card-body {
            padding: 30px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .card-body h3 {
            color: var(--navy);
            font-size: 1.4rem;
            margin-bottom: 15px;
        }

        .card-body p {
            color: var(--text-light);
            line-height: 1.6;
            margin-bottom: 25px;
            flex-grow: 1;
        }

        .learn-more {
            color: var(--blue);
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.95rem;
        }
        .learn-more:hover { gap: 12px; }

        /* ::::: CONTACT FOOTER ::::: */
        footer {
            background: var(--navy);
            color: white;
            padding: 80px 0 40px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 50px;
            margin-bottom: 60px;
        }

        .footer-col h4 {
            font-size: 1.4rem;
            margin-bottom: 25px;
            color: var(--gold);
        }

        .contact-info li {
            margin-bottom: 18px;
            display: flex;
            gap: 15px;
            color: rgba(255,255,255,0.8);
            line-height: 1.5;
        }

        .social-row {
            display: flex;
            gap: 6px;
            margin-top: 25px;
        }

        ul.contact-info * span {
    direction: ltr;
}

i.las.la-mobile-alt {
    font-size: 32px !important;
    margin-left: -8px;
}

        .social-btn {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: 0.3s;
        }
        .social-btn:hover { background: var(--blue); }

        /* ::::: RESPONSIVE ::::: */
        @media (max-width: 992px) {
            .hero { flex-direction: column; padding-bottom: 50px; }
            .hero-text-wrapper { width: 100%; padding: 40px 20px; text-align: center; }
            .hero h1 { font-size: 2.5rem; }
            
            .features-layout { flex-direction: column; }
            .nav-links { display: none; }
        }


.top-bar-msg {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-bar-contact {
    display: flex;
    font-family: 'Baloo Bhaijaan 2' !important;
    align-items: center;
    gap: 4px;
    letter-spacing: 1px;
}

.top-bar-social {
    display: flex;
    align-items: center;
        gap: 6px;
}


img.sociicn {
    max-width: 22px;
}

.phone {
    margin-bottom: -3px;
    margin-left: 5px;
    color: #002855;
    font-size: 14px;
}

.followus {
    font-family: 'Baloo Bhaijaan 2';
    font-size: 12px;
    color: #2e2e2e;
    margin-bottom: -2px;
    margin-left: 7px;
}


.flx {
    display: flex;
    align-items: center;
    gap: 40px;
}


        /* ::::: NEW: NOTIFICATION BAR ::::: */
.top-bar {
    /* background-color: #edd51e;
    color: #11131c; */
    background-color: #edd51e;
    color: #002855;
    padding: 6px 0;
    font-size: 15px;
    font-weight: 500;
    position: relative;
    z-index: 1001;
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-contact { direction: ltr; font-family: sans-serif; } /* Phone number LTR */

/* ::::: NEW SECTIONS GENERAL ::::: */
.section-bg-beige { background-color: #fdfdfb; } /* Matches Classrooms/Village bg */
.section-bg-navy { background-color: #1e2339; color: white; } /* Matches Experts bg */
.section-bg-teal { background-color: #bcede8; } /* Matches Review Card bg */

/* ::::: CLASSROOMS SECTION (Image 1) ::::: */
.classroom-card {
    background: #bcede8;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: 0.3s;
    border: solid 1px #33333317;
    min-height: 335px;
}
.classroom-card:hover { transform: translateY(-5px); }
.classroom-icon {
    width: 80px; height: 80px;
    margin: 0 auto 20px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: #edd51e4f;
    font-size: 2rem; color: var(--navy);
}

/* ::::: EXPERTS SECTION (Image 2) ::::: */
.experts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
 .expert-card img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: 60px;
}
.expert-content { padding: 20px; }
.expert-content p { font-size: 0.95rem; line-height: 1.6; color: var(--text-light); }

/* ::::: REVIEWS SECTION (Image 3) ::::: */
.review-container {
    background: #bcede8; /* Teal color from image */
    border-radius: 25px;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
}
.review-text {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 300px;
}
.review-video {
    flex: 1;
    min-width: 300px;
    position: relative;
}
.review-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.quote-text {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--navy);
    margin-bottom: 20px;
}

/* ::::: VILLAGE SECTION (Image 4) ::::: */
.village-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}
.village-card {
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    color: var(--navy);
}
.village-card.beige { background-color: #faeacc; }
.village-card.navy { background-color: var(--navy); color: white; }
.village-card.teal { background-color: #bcede8; }
.village-card .content { padding: 25px; display: flex; flex-direction: column; height: 100%; }
.village-card h4 { font-size: 1.2rem; margin-bottom: 15px; }
.village-card p { font-size: 0.9rem; margin-bottom: 20px; flex-grow: 1; opacity: 0.9; }
.village-btn {
    align-self: flex-start;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    background: var(--navy);
    color: white;
}
.village-card.navy .village-btn { background: white; color: var(--navy); }

/* Helper for video fit in features */
.feature-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .top-bar-msg { display: none; } /* Hide middle text on mobile */
    .review-text { padding: 30px; }
}



/* ::::: SWIPER CUSTOMIZATION ::::: */
.swiper {
    width: 100%;
    padding-bottom: 50px !important; /* Space for dots */
}

.swiper-slide {
    height: auto;
    display: flex; /* Ensures all cards in a row have same height */
}

.village-card {
    width: 100%; /* Fill the slide */
    /* Reuse existing card styles but ensure full height */
    height: 100%; 
}

/* Custom color for the dots */
.swiper-pagination-bullet-active {
    background-color: var(--navy) !important;
}

/* Fix for icons alignment in top bar */
.top-bar i {
    font-size: 1.2rem;
    vertical-align: middle;
}

/* Ensure Line Awesome icons have correct weight */
i.las, i.lab {
    font-size: inherit;
}



/* ::::: VILLAGE SECTION & SLIDER ::::: */
.village-section {
    padding: 80px 0;
    background-color: #ffffff;
    overflow: hidden;
}

.village-header {
    text-align: center;
    margin-bottom: 50px;
}
.village-header h2 {
    color: var(--navy);
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-family: var(--font-head);
}
.village-header p {
    max-width: 700px;
    margin: 0 auto;
    color: #555;
    line-height: 1.6;
}

/* Swiper Container Fix */
.swiper.village-slider {
    width: 100%;
    padding: 20px 10px 60px 10px !important; /* Bottom padding for controls */
}

.swiper-slide {
    height: auto; /* Ensures equal height cards */
    display: flex;
}

/* ::::: CARD STYLES ::::: */
.v-card {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}
.v-card:hover { transform: translateY(-5px); }

/* Card Image Area */
.v-card-img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

/* Card Body Area */
.v-card-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.v-card h3 {
    font-size: 1.15rem;
    color: var(--navy);
    margin-bottom: 15px;
    line-height: 1.4;
    font-family: var(--font-head);
}
.v-card p {
    font-size: 0.9rem;
    color: #4a4a4a;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}
.v-btn {
    align-self: flex-start;
    background-color: var(--navy);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}
.v-btn:hover { background-color: #004080; }

/* ::::: COLOR VARIANTS ::::: */
.bg-beige .v-card-body { background-color: #f9f1e0; }
.bg-cyan .v-card-body { background-color: #bee7e9; }

/* ::::: SPECIAL SPLIT CARD (Snowman) ::::: */
.v-card.split-card {
    display: flex;
    flex-direction: column;
}
.split-top {
    background-color: var(--navy);
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 20px;
    position: relative;
}
.split-top i { font-size: 2rem; margin-top: 10px; }
.split-top h4 { font-weight: 400; font-size: 1.1rem; opacity: 0.9; }
.split-top .logo-small { font-size: 0.8rem; margin-top: 15px; opacity: 0.8; display: flex; align-items: center; gap: 5px; }

/* ::::: SLIDER CONTROLS (ARROWS + DOTS) ::::: */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}
.swiper-pagination {
    position: static !important;
    width: auto !important;
}
.swiper-button-next, .swiper-button-prev {
    position: static !important;
    width: 30px;
    height: 30px;
    color: var(--navy) !important;
    margin: 0 !important;
}
.swiper-button-next::after, .swiper-button-prev::after {
    font-size: 1.2rem !important;
    font-weight: bold;
}
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ccc;
    opacity: 1;
}
.swiper-pagination-bullet-active {
    background: var(--navy) !important;
}

/* Bottom CTA */
.village-cta-container {
    text-align: center;
    margin-top: 30px;
}
.btn-navy {
    background-color: var(--navy);
    color: white;
    padding: 12px 40px;
    border-radius: 50px;
    font-weight: bold;
}


video.vid1 {
    max-height: 444px;
    object-fit: contain;
    border-radius: 10px;
    transform: rotate(-4deg);
    margin-top: -18px;
}

h2 {
    line-height: 1.5;
}


.swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal.swiper-pagination-bullets-dynamic {
    transform: none;
}


/* Add this to your existing CSS */
.error-message {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 5px;
    display: block;
    font-weight: bold;
}
input.error, select.error {
    border-color: #dc3545 !important;
    background-color: #fff8f8;
}






/* User Avatar Styles */
.user-menu-wrap {
    position: relative;
    display: flex;
    align-items: center;
    margin-right: 0px; /* Adjust spacing from the booking button */
}

.user-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.2s;
}

.user-avatar:hover {
    transform: scale(1.05);
}

/* Dropdown Menu Styles */
.user-dropdown {
    position: absolute;
    top: 60px; /* Push it below the header */
    left: 0;   /* Align to left since direction is RTL? Or check layout */
    background: white;
    width: 180px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

/* Class to show the menu */
.user-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown a {
    display: block;
    padding: 10px 20px;
    color: #1e2339;
    text-decoration: none;
    font-family: 'Almarai', sans-serif;
    font-weight: 500;
    transition: background 0.2s;
    text-align: right; /* Ensure Arabic text aligns right */
}

.user-dropdown a:hover {
    background-color: #f0f2f5;
    color: #e67e22; /* Your Orange accent color */
}

.user-dropdown i {
    margin-left: 10px;
}







@media (max-width: 992px) {

    .pwa-banner {
    position: fixed;
    left: 5% !important;
    bottom: 2% !important;
}

}


/* ::::: PWA INSTALL BANNER ::::: */
.pwa-banner {
    position: fixed;
    bottom: 5vh;
    left: 2vw;
    transform: translateY(150%); /* Hidden initially */
    width: 90%;
    max-width: 400px;
    background: #1e2339;
    color: white;
    border-radius: 16px;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255,255,255,0.1);
}

.pwa-banner.show {
    transform: translateY(0);
}

.pwa-content {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: right; /* Ensure Arabic alignment */
}

.pwa-icon img {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 12px;
    padding: 5px;
    object-fit: contain;
}

.pwa-text h5 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: var(--gold);
}

.pwa-text p {
    font-size: 0.85rem;
    opacity: 0.8;
    margin: 0;
}

.pwa-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.btn-install {
    background: var(--gold);
    color: var(--navy);
    border: none;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: bold;
    font-family: var(--font-head);
    cursor: pointer;
}

.btn-text {
    background: transparent;
    border: none;
    color: white;
    font-family: var(--font-head);
    opacity: 0.7;
    cursor: pointer;
    font-size: 0.9rem;
}









/* ::::: FOOTER DOWNLOAD BUTTON ::::: */
.app-download-btn {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
    color: white;
    text-align: right;
}

.app-download-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.app-download-btn .icon-box {
    font-size: 2rem;
    display: flex;
    align-items: center;
}

.app-download-btn .text-box {
    display: flex;
    flex-direction: column;
}

.app-download-btn .small-txt {
    font-size: 0.7rem;
    opacity: 0.8;
    font-family: sans-serif; /* Standard font for small text usually looks better */
}

.app-download-btn .big-txt {
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font-head);
}


.hero-media-wrapper.reveal.delay-200.active {
    background: #000;
}




.cr {
    display: flex;
    align-items: center;
    justify-content: center;
}


a.crtxt {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    opacity: 0.4;
}




/* ::::: MOBILE MENU STYLES ::::: */

/* Default: Hide mobile toggle and overlay on desktop */
.mobile-toggle { display: none; }
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    right: 0; /* Changed to Right/Left based on RTL, we handle transform */
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
}

.mobile-nav-content {
    position: absolute;
    top: 0;
    left: 0; /* Opens from the left */
    width: 280px;
    height: 100%;
    background: white;
    padding: 25px;
    transform: translateX(-100%); /* Hidden to the left */
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 5px 0 25px rgba(0,0,0,0.1);
}

/* Active State */
.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}
.mobile-nav-overlay.active .mobile-nav-content {
    transform: translateX(0);
}

/* Header inside mobile menu */
.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}
.mobile-nav-title {
    font-family: var(--font-head);
    font-size: 1.2rem;
    color: var(--navy);
    font-weight: bold;
}
.mobile-close, .mobile-toggle {
    background: transparent;
    border: none;
    font-size: 1.8rem;
    color: var(--navy);
    cursor: pointer;
    padding: 5px;
}

/* Links inside mobile menu */
.mobile-links-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
    overflow-y: auto;
}
.m-link {
    font-size: 1.1rem;
    color: #333;
    font-weight: 500;
    padding: 8px 0;
}
.m-link:hover { color: var(--blue); }

/* ::::: MEDIA QUERY UPDATES ::::: */
@media (max-width: 992px) {
    /* Hide Desktop Action Buttons (Booking/Login) */
    .desktop-actions {
        display: none !important;
    }

    /* Show Mobile Toggle Button */
    .mobile-toggle {
        display: block;
        margin-right: auto; /* Pushes it to the left in RTL flex container */
    }

    /* Adjust header container to align items correctly */
    .header-container {
        justify-content: space-between; 
    }
    

    
    .hero-media-wrapper video {
        opacity: 0.7 !important; /* Ensure video isn't too dimmed */
    }
}



/* ::::: MOBILE BOTTOM NAV BAR ::::: */
.mobile-bottom-nav {
    display: none; /* Hidden on desktop */
}

@media (max-width: 992px) {
    /* Make space at the bottom of body so content isn't covered */
    body {
        padding-bottom: 75px; 
    }

    .mobile-bottom-nav {
        display: flex;
        justify-content: space-around;
        align-items: center;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 70px; /* Height of the bar */
        background-color: #ffffff;
        box-shadow: 0 -5px 20px rgba(0,0,0,0.05);
        border-top: 1px solid #f0f0f0;
        z-index: 9999; /* High, but below modals/overlays */
        padding-bottom: env(safe-area-inset-bottom); /* For iPhone X+ swipe bar */
    }

    .nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: #888; /* Inactive color */
        font-size: 0.75rem;
        font-weight: 600;
        width: 25%; /* Equal width touch targets */
        height: 100%;
        transition: 0.3s;
        gap: 4px;
    }

    .nav-item i {
        font-size: 1.6rem !important; /* Icon size */
        margin-bottom: 0;
        transition: 0.3s;
    }

    /* Active State (When user is on the page) */
    .nav-item.active {
        color: var(--navy); 
    }
    
    .nav-item.active i {
        transform: translateY(-3px);
        color: var(--blue);
    }
 
    
    /* Also hide the standard footer copyright text if it feels too cluttered */
    .cr { padding-bottom: 20px; }
}


