
/*
----------------
--- TEMPLATE ---
----------------
*/
html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
    overflow-x: hidden; /* Hide horizontal scrollbar globally */
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}
/*
html {
  position: relative;
  min-height: 100%;
}*/

body {
    margin-bottom: 60px;
    font-family: 'Archivo';
    height: 100%;
    color: #0A014F;
    margin: 0;
    background-color: #FAFAFA;
    overflow-x: hidden; /* Hide horizontal scrollbar on body */
}

/*footer issue*/
.min-vh-100 {
    min-height: 100vh;
}

.flex-fill {
    flex: 1 1 auto;
}

/*
----------------
---- CUSTOM ----
----------------
*/

/* root  */
.bg-lightgreen {
    background-color: #7AD06D;
}

.bg-darkskyblue {
    background-color: #235784;
}

.bg-darkblue {
    background-color: #000024;
}

.bg-orange {
    background-color: #F38A21;
}

.bg-royalblue {
    background-color: #0A014F;
}

.bg-accentblue {
    background-color: #91BFD4;
}

.bg-skyblue {
    background-color: #D9E8F5;
}

.bg-red {
    background-color: #FF543E;
}

.bg-accentred {
    background-color: #F4361C; 
}


.txt-clr-accentred {
    color: #F4361C;
}

.txt-clr-royalblue {
    color: #0A014F;
}

.txt-clr-accentblue {
    color: #235784;
}

.txt-clr-skyblue {
    color: #D9E8F5;
}

.txt-clr-red {
    color: #FF543E;
}


/* ======= layout =======*/

.header {
    position: relative;
    overflow: hidden;
    height: 80vh;
}

.header-video {
/*    background-color:red !important;*/
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translate(-50%, -50%);
}

.header-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0));
}

.header-text {
    position: absolute;
    /*bottom: 0;*/
    /*left: 50%;*/
    /*transform: translate(-50%, -100%);*/
    /*transform: translate(-50%, 20%);*/
    z-index: 2;
    color: white;
    margin-bottom: 1rem;
}

    .header-text .container {
        /*display: flex;*/
        /*justify-content: space-between;*/
        /*padding: 1rem 3rem;*/
    }

 /*header-text > .container > div {
        display: flex;
        align-items: flex-end;
    }*/
.header-text-left {
    flex: 8;
/*    background-color:red;*/
/*    font-size: 2rem;*/
    font-size: 3rem !important;
    font-weight: bold;
    line-height:4rem !important;
    vertical-align: top;
    margin-top: 0;
    padding-right: 1rem;
}

.header-text-left h1 {
    margin-top: 0;
}

.header-text-right {
    flex: 7;
/*    padding-left: 5rem;*/
    font-size: .89rem;
}

@media (max-width: 991px) { /* Adjust for tablets and smaller screens */
    .header-text-left, .header-text-right {
        text-align: center; /* Center text on small screens */
        padding: 10px 15px;
    }
}

/* nav */
.navbar {
    z-index: 99 !important;
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
    /*animation*/
    transition: all 0.5s
}

.navbar-scrolled {
    background-color: white;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
}

.navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .show > .nav-link {
    border-bottom: .15rem solid #F4361C;
    font-weight:bold !important;
}

.dropdown-toggle > a {
    border-bottom: .15rem solid #F4361C;
}

.nav-link-accent {
    border-bottom: .15rem solid #F4361C;
}
li > a.nav-link {
    color: #235784 !important;
    font-weight:medium !important;
}
.dropdown-menu {
    /*background-color:red;*/
    padding: .3rem  0 .5rem 0 !important;
    border-radius: .8rem;
    min-width: 18rem;
    border: none;
    /* border-bottom: .1rem solid rgba(189, 189, 189, .3); */
    max-width: 18rem;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1); /* Add a shadow */
}

    .dropdown-menu > li {
        padding-left: 0 !important;
    }

        .dropdown-menu > li > a {
            padding-left: 1.5rem !important;
            padding-right: 1.5rem !important;
            padding-top: .6rem !important;
            padding-bottom: .15rem !important;
            color: #0A014F !important;
            font-weight: 500 !important;
            white-space: normal;
        }

            .dropdown-menu > li > a > div {
                word-wrap: break-word !important;
                overflow-wrap: break-word !important;
                word-break: break-all !important;
                font-weight: 300 !important;
                color: #235784 !important;
                padding-top: 0 !important;
                line-height: 1.5rem !important;
            }

.dropdown-item:hover {
    background-color: #E5E5E5;
}

.dropdown-item:focus {
    background-color: #91BFD4;
}

.dropdown-header {
    /*margin: -.4rem 0 0 0 !important;*/
    padding: 1.1rem 1.5rem .14rem 1.5rem  !important;
    color: #ff6600;
    font-size: 1rem;
    white-space: normal;
}

.dropdown-divider {
    margin: .2rem 1.5rem !important;
    border-top: .12.7rem solid rgba(222,222,222,.1) !important;
}
/* eof : header 2  */



/*---- button / link with orange underlined animation ---*/
.underlined-cta {
    font-weight: bold;
    position: relative;
    display: inline-block;
    padding: .5rem .1rem; /* Adjust the space between text and underline as needed */
    color: inherit; /* Inherit text color */
    text-decoration: none; /* Remove default underline */
}

    .underlined-cta::after {
        content: "";
        color: #FF543E;
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 2px; /* Underline thickness */
        background-color: #FF543E; /* Orange color for underline */
        transition: width 0.3s ease; /* Smooth animation for underline width */
    }

    .underlined-cta:hover::after {
        width: 0; /* Slide out the underline on hover */
    }

    .underlined-cta > span {
        color: red;
        padding-left: .4rem;
    }

.underlined-cta2 {
    font-weight: bold;
    position: relative;
    display: inline-block;
    padding: .5rem .1rem; /* Adjust the space between text and underline as needed */
    color: inherit; /* Inherit text color */
    text-decoration: none; /* Remove default underline */
}

    .underlined-cta2::after {
        content: "";
        color: #FF543E;
        position: absolute;
        left: 0;
        bottom: 0;
        width: 0;
        height: 2px; /* Underline thickness */
        background-color: #FF543E; /* Orange color for underline */
        transition: width 0.3s ease; /* Smooth animation for underline width */
    }

    .underlined-cta2:hover::after {
        width: 100%; /* Slide out the underline on hover */
    }

    .underlined-cta2 > span {
        color: red;
        padding-left: .4rem;
    }

.red-txt-link {
    color: #FF543E;
    font-weight:bold;
}

/* ======= Reusable store badge shimmer CTA =======
   Apply to the <a> wrapper around any App Store / Play Store badge image.
   Produces the same sliding-gradient + lift effect as .btn-book-now.
*/
.btn-store-badge {
    position: relative;
    overflow: hidden;
    display: inline-block;
    border-radius: 8px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    isolation: isolate;
}

    .btn-store-badge::before {
        content: "";
        position: absolute;
        top: 0;
        left: -75%;
        width: 50%;
        height: 100%;
        background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.45) 50%, rgba(255,255,255,0) 100%);
        transform: skewX(-20deg);
        z-index: 1;
        transition: left 0.6s ease;
        pointer-events: none;
    }

    .btn-store-badge:hover::before {
        left: 125%;
    }

    .btn-store-badge:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.22);
    }

    .btn-store-badge img {
        display: block;
        position: relative;
        z-index: 0;
    }

/* ======= Book-Now button — dark/navy variant =======
   Same shimmer slide + lift as .btn-book-now (orange) but navy background.
   Apply to any pill CTA that needs the animation with a dark colour.
*/
.btn-book-now-dark {
    position: relative;
    overflow: hidden;
    background-color: #0b0b45;
    color: #ffffff;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    isolation: isolate;
}

    .btn-book-now-dark::before {
        content: "";
        position: absolute;
        top: 0;
        left: -75%;
        width: 50%;
        height: 100%;
        background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.45) 50%, rgba(255,255,255,0) 100%);
        transform: skewX(-20deg);
        z-index: 1;
        transition: left 0.6s ease;
        pointer-events: none;
    }

    .btn-book-now-dark:hover::before {
        left: 125%;
    }

    .btn-book-now-dark:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(11, 11, 69, 0.35);
        background-color: #0b0b45 !important;
        color: #ffffff;
    }

    .btn-book-now-dark .btn-arrow {
        transition: transform 0.3s ease;
        z-index: 2;
        position: relative;
    }

    .btn-book-now-dark:hover .btn-arrow {
        transform: translateX(5px);
    }

    .btn-book-now-dark span,
    .btn-book-now-dark i {
        position: relative;
        z-index: 2;
    }

/* ======= Scroll-Reveal Animations =======
   .reveal only hides when .js-reveal is on <html> (set immediately by inline script).
   This ensures content is always visible if JS fails or is blocked.
*/
.js-reveal .reveal {
    opacity: 0;
    transform: translateY(48px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.js-reveal .reveal.reveal-left {
    transform: translateX(-52px);
}

.js-reveal .reveal.reveal-right {
    transform: translateX(52px);
}

.js-reveal .reveal.visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* stagger children inside a reveal container */
.js-reveal .reveal-children > * {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.js-reveal .reveal-children.visible > *:nth-child(1) { transition-delay: 0.05s; }
.js-reveal .reveal-children.visible > *:nth-child(2) { transition-delay: 0.15s; }
.js-reveal .reveal-children.visible > *:nth-child(3) { transition-delay: 0.25s; }
.js-reveal .reveal-children.visible > *:nth-child(4) { transition-delay: 0.35s; }
.js-reveal .reveal-children.visible > *:nth-child(5) { transition-delay: 0.45s; }

.js-reveal .reveal-children.visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* prefers-reduced-motion: skip animations */
@media (prefers-reduced-motion: reduce) {
    .js-reveal .reveal,
    .js-reveal .reveal-children > * {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* ===== Copy Snackbar ===== */
#copy-snackbar {
    visibility: hidden;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 240px;
    max-width: 340px;
    background: linear-gradient(135deg, #0b0b45 0%, #1a2fa8 100%);
    color: #fff;
    padding: 14px 22px;
    border-radius: 50px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% + 20px));
    z-index: 9999;
    font-size: 0.95rem;
    font-weight: 600;
    box-shadow: 0 8px 28px rgba(11,11,69,0.28);
    opacity: 0;
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: none;
}

#copy-snackbar.show {
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, -50%);
}

#copy-snackbar .snackbar-icon {
    font-size: 1.15rem;
    flex-shrink: 0;
    background: rgba(255,255,255,0.18);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* ===== Copy Snackbar ===== */