@font-face {
    font-family: "nb";
    src: url("./Fonts/NBInternationalProBoo.ttf") format("truetype");
    font-display: swap;
}
@font-face {
    font-family: Rejouice;
    src: url("./Fonts/Rejouice-Headline.ttf") format("truetype");
    font-display: swap;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: nb;
}

html, body {
    height: 100vh;
    width: 100%;
    object-fit: cover;
}
body {
    background-color: #0E0E0E;
    margin: 0;
    padding: 0;
}
#loader {
    height:100%;
    width:100%;
    position: fixed;
    top: 0;
    background: #000;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #fff;
}
#loader h3 {
    font-size: 3vw;
}
#main {
    width: 100%;
    overflow: hidden;
    background-color: #ffffff;
    margin: 0; 
    padding: 0; 
}

#page1 {
    height: 100vh;
    width: 100%;
    background-color: rgb(255, 255, 255);
    position: relative;
}

#page1 video {
    object-fit: cover;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}


.cursor {
    height: 5vw;
    width: 5vw;
    background-color: #ff5f38;
    border-radius: 50%;
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 999;
    opacity: 0;
    scale: 0;
    transition: scale 0.3s ease, opacity 0.3s ease;
    will-change: left, top, transform, opacity;
}

.cursor h5 {
    color: #fff;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 500;
}

.page1-text {
    height: 100%;
    position: relative;
    width: 100%;
    color: #fff;
    display: flex;
    z-index: 10;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
}

nav {
    width: 100%;
    display: flex;
    text-align: center;
    justify-content: space-between;
    padding: 2vw;
}

nav h3 {
    font-size: 1.5vw;
    font-weight: bold;
}

nav h4 {
    font-size: 1.5vw;
    font-weight: 100;
}

.page1-text h1 {
    font-family: Rejouice;
    font-size: 27vw;
    font-weight: 100;
    line-height: 27vw;
}

.page1-text h1 span {
    font-family: Rejouice;
}

#page2 {
    min-height: 100vh;
    width:100%;
    background: #FAF8F3;
    color: #0E0E0E;
    display: flex;
    flex-direction: column;
    padding-bottom: 5vw;
}
#page2>#nav {
    display: flex;
    padding: 2.8vw;
    padding-bottom: 1vw;
    min-height: 21vh;
    width: 100%;
    align-items:end;
    justify-content: space-between;
    /* border-bottom: 1px solid #91908e; */
}

#page2>#nav .elem {
    overflow: hidden;
}

hr{
    width: 94.4vw;
    margin: 0 auto;
    justify-content: center;
}
#page2>#nav>.elem h1 {
    align-items: baseline;
    font-family: nb;
    font-size: 1.67vw;
    font-weight: 100;
    will-change: transform, opacity;
}
#page2>.heading {
    padding: 2.8vw;
}
#page2>.heading h1{
    font-size: 4.2vw;
    font-weight: 500;
    overflow: hidden;
    will-change: transform, opacity;
}
#space {
    margin-left: 8vw;
}
#page3 {
    min-height: 100vh;
    width: 100%;
    position: relative;
    padding: 3vw;
}
#page3-top {
    text-align: center;
}

#page3-top h4 {
    margin-bottom: 1vw;
    font-size: 1vw;
    font-weight: 500
}
#page3-top span {
    font-size: 0.7vw;
    background-color: #000;
    color: #fff;
    padding: 2px 5px;
    border-radius: 10px;
}
#page3-top h2 {
    font-size: 4vw;
    font-weight: 500;
}
#page3-elements {
    height: 75vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 8vw;
}
#page3-elements .box {
    height: 100%;
    width: 32.5%;
    position: relative;
}
#page3-elements .box video {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
#page3-elements .box img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    transition: all linear 0.7s;
}
#page3-elements>.box:hover img{
    opacity: 0;
}
#page4 {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
#page4 svg {
    position: absolute;
    height:57%;
}
#page4 video {
   height: 100%;
}
.page4-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 10;
}
.page4-number {
    font-size: 7vw;
    font-weight: 300;
    line-height: 1;
    margin-bottom: 0.5vw;
    letter-spacing: -0.05em;
}
.page4-subtitle {
    font-size: 2vw;
    font-weight: 100;
    line-height: 1.4;
    opacity: 0.9;
}
/* Make legacy .crsr look like the page1 cursor when used on page4 */
#page4 .crsr {
    height: 5vw;
    width: 5vw;
    background-color: #ff5f38; /* match page1 */
    border-radius: 50%;
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 999;
    opacity: 0;
    scale: 0;
    transition: scale 0.3s ease, opacity 0.3s ease;
    color: #fff;
    will-change: left, top, transform, opacity;
}

.cursor h5 {
    color: #fff;
    font-size: 0.7vw; 
}

#page5 {
    min-height: 100vh;
    width: 100%;
    padding: 4vw 2vw;
    position: relative;
    background: #FAF8F3;
}
#page5-top {
    margin-bottom: 4vw;
}
#page5-top h1 {
    color: #000000;
    font-size: 8vw; 
    font-weight: 200;
    border-bottom: 1px solid #000000;
    width: 96%;
    margin-left: 2%;
    padding-bottom: 2vw;
}
#page5 #swiperdiv {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: visible;
}

.swiper {
    width: 100%;
    height: 100%;
    overflow: visible !important;
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30vw !important;
}

.swiper-slide img{
    width: 100%;
    height: 70vh;
    object-fit: cover;
    border-radius: 15px;
    display: block;
}

.swiper-wrapper {
    align-items: center;
}
.page7{
    min-height: 100vh;
    width: 100%;
    background-color: #FAF8F3;
    padding: 6vw 0;
    position: relative;
    display: block;
    visibility: visible;
    z-index: 1;
}
.page7 .page7-top{
    min-height: 100px;
    width: 100%;
    padding: 0.6vw 3vw;
    margin-top: 2vw;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    visibility: visible;
}
.page7 .page7-top h3{
    font-size: 1.7vw;
    font-weight: 400;
    letter-spacing: -.5px;
    color: #141414;
    opacity: 1;
    visibility: visible;
    overflow: hidden;
    transition: transform 0.6s ease, opacity 0.6s ease;
    will-change: transform, opacity;
}
.page7 .page7-top-border{
    height: 1px;
    width: 94%;
    margin: 0.6vw 3vw;
    background-color: rgb(71, 71, 71);
    transition: width 1s ease;
}
.page7 .page7-bottom{
    min-height: 415px;
    width: 100%;
    margin-top: 2vw;
    visibility: visible;
    margin-bottom: 0;
    padding-bottom: 0;
}
.page7 .page7-bottom .btm-text{
    padding: 2vw 3vw;
    visibility: visible;
}
.page7 .page7-bottom .btm-text h2{
    overflow: hidden;
    visibility: visible;
    font-size: 4.3vw;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -1px;
    color: #141414;
    opacity: 1;
    transition: transform 0.6s ease, opacity 0.6s ease;
    will-change: transform, opacity;
}
.page7 .page7-bottom .btm-text h2 .up {
    overflow: hidden;
    display: inline-block;
    opacity: 1;
}
.page7 .btm-word{
  display: inline-block;
  will-change: transform, opacity;
}
.page8{
    min-height: 100vh;
    width: 100%;
    background-color: #fff;
    padding: 4vw 0;
}
.page8 .text{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 0vw 3vw;
}
.page8 .text h1{
    font-size: 8.5vw;
    font-family: Rejouice, nb, sans-serif;
    font-weight: 500;
}
.page8 .text h3{
    font-size: 1.8vw;
    font-weight: lighter;
    position: relative;
    cursor: pointer;
}
.page8 .text h3::after{
    content: '';
    position: absolute;
    height: 1px;
    width: 100%;
    bottom: 0;
    left: 0;
    transform: scaleX(0);
    background-color: #000;
    transform-origin: bottom right;
    transition: transform .35s ease-out;
}
.page8 .text h3:hover::after{
    transform-origin: bottom left;
    transform: scaleX(1);
}
.page8 .text h3 i{
    font-size: 1.9vw;
    margin-right: 10px;
}
.page8 .page8-top-border{
    height: 1px;
    width: 94%;
    margin: 2vw 3vw;
    background-color: rgb(71, 71, 71);
}
.page8 .swiper {
    width: 100%;
    height: 60vh;
    margin-top: 3vw;
    position: relative;
    overflow: visible;
    cursor: grab;
}
.page8 .swiper:active {
    cursor: grabbing;
}
.page8 .swiper-slide {
    width: auto !important;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}
.page8 .swiper-slide img {
    display: block;
    width: auto;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}
.page8 .swiper-slide:hover img {
    transform: scale(1.05);
}
.page9{
    margin-top: 0;              
    width: 100vw;
    background-color: #fff;
    display: flex;
    justify-content: center;
    text-align: center;
    padding: 4vw 0 2vw;         
}
.page9 .page9-text{
    overflow: hidden;
    height: 200px;
}
.page9 .page9-text h4{
    color: #161616;
    font-weight: lighter;
    display: flex;
    align-items: self-start;
    justify-content: center;
    gap: 5px;
    margin-bottom: 15px;
    font-size: 7vh;
}
.page9 .page9-text h4 i{
    color: #161616;
    margin-top: 2px;
}
.page9 .page9-text h1{
    cursor: pointer;
    font-size: 2vw;
    font-weight: lighter;
    line-height: 1;
    position: relative;
}
.page9 .page9-text h1::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
    bottom: 0;
    transform: scaleX(0);
    transform-origin: bottom right;
    background-color: #000000;
    transition: transform .4s ease-out;
}
.page9 .page9-text h1:hover::after{
    transform: scaleX(1);
    transform-origin: bottom left;
}
footer{
    height: 100vh;
    width: 100vw;
    background-color:#0E0E0E;
}
footer .footer-top{
    height: 65vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-top .first{
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 15vw;
    padding: 2.5vw;
    color: #fff;
}
.footer-top .first .first-top h2{
    font-weight: lighter;
    letter-spacing: -.5px;
}
.footer-top .first .first-top button{
    padding:  15px 20px;
    margin-top: 20px;
    border-radius: 10px;
    border: 1px solid #fff;
    font-size: 1.1vw;
    font-weight: lighter;
    background: transparent;
    color: #fff;
    cursor: pointer;
    transition: background-color .3s ease;
}
.footer-top .first .first-top button:hover{
    background-color: #fff;
    color: #000;
}
.footer-top .first .first-btm h4{
    font-weight: lighter;
}
.footer-top .second{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 100px;
    margin-top: -2.5vw;
    padding-right: 3vw;
    color: #fff;
}
.second .second-one{
    display: flex;
    flex-direction: column;
    gap: 15vw;
}
.second .second-one .span span{
    display: flex;
    flex-direction: column;
    position: relative;
    cursor: pointer;
}
.second .second-one .span>span::after,.second .second-one .span1>span::after{
    content: '';
    position: absolute;
    height: 1px;
    width: 100%;
    bottom: 0%;
    left: 0%;
    transform: scaleX(0);
    background-color: #ffffff;
    transform-origin: bottom right;
    transition: transform .35s ease-out;
}
.second .second-one .span>span:hover::after,.second .second-one .span1>span:hover::after{
    transform-origin: bottom left;
    transform: scaleX(1);
}
.second .second-two{
    display: flex;
    flex-direction: column;
    gap: 17.5vw;
}
.second .second-two .span span{
    display: flex;
    position: relative;
    cursor: pointer;
}
.second .second-two .span>span::after,.second .second-two .span1>span::after{
    content: '';
    position: absolute;
    height: 1px;
    width: 100%;
    bottom: 0%;
    left: 0%;
    transform: scaleX(0);
    background-color: #ffffff;
    transform-origin: bottom right;
    transition: transform .35s ease-out;
}
.second .second-two .span>span:hover::after,.second .second-two .span1>span:hover::after{
    transform-origin: bottom left;
    transform: scaleX(1);
}
.second .second-two .span1{
    position: relative;
    cursor: pointer;
}
.second .second-one .span1{
    position: relative;
    cursor: pointer;
}
footer .footer-bottom{
    height: 35vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
    overflow: hidden;
}
footer .footer-bottom h1 span{
    display: inline-block;
   font-size: 19vw;
   margin-top: -3.2vw;
   color: #fff;
}

/* ==========================================================================
   CUSTOM STYLES: LOGO, HEADER & FULLSCREEN MENU OVERLAY
   ========================================================================== */

a {
    text-decoration: none;
    color: inherit;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.8vw;
    text-decoration: none;
    color: #fff;
}

.nav-logo img {
    height: 2.2vw;
    width: auto;
}

.nav-logo span {
    font-family: Rejouice;
    font-size: 1.8vw;
    font-weight: bold;
    letter-spacing: 0.05em;
}

/* Menu Overlay Fullscreen */
.menu-overlay {
    height: 100vh;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #0E0E0E;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    padding: 4vw 6vw;
    color: #fff;
    transition: opacity 0.4s ease;
}

.menu-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.menu-overlay .menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 2vw;
    margin-bottom: 2vw;
}

.menu-overlay .menu-header .menu-logo {
    display: flex;
    align-items: center;
    gap: 1vw;
    text-decoration: none;
    color: #fff;
}

.menu-overlay .menu-header .menu-logo img {
    height: 3vw;
}

.menu-overlay .menu-header .menu-logo span {
    font-family: Rejouice;
    font-size: 2.2vw;
    font-weight: bold;
}

.menu-overlay .menu-header .menu-close {
    font-size: 1.8vw;
    cursor: pointer;
    font-family: nb;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.menu-overlay .menu-header .menu-close:hover {
    color: #ff5f38;
}

.menu-overlay .menu-content {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 4vw;
}

.menu-overlay .menu-content .menu-links {
    display: flex;
    flex-direction: column;
    gap: 2vw;
    padding-left: 4vw; /* Shift the entire links block to the right */
}

.menu-overlay .menu-content .menu-links a {
    font-family: Rejouice;
    font-size: 4.5vw;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 2vw;
    transition: transform 0.3s ease, color 0.3s ease;
}

/* Fixed width spans for perfect align without absolute position bugs */
.menu-overlay .menu-content .menu-links a span {
    font-family: nb;
    font-size: 1.5vw;
    color: #ff5f38;
    font-weight: bold;
    opacity: 0.85;
    display: inline-block;
    width: 3vw;
}

.menu-overlay .menu-content .menu-links a:hover {
    transform: translateX(1.5vw);
    color: #ff5f38;
}

.menu-overlay .menu-content .menu-info {
    max-width: 25vw;
    display: flex;
    flex-direction: column;
    gap: 2vw;
    font-family: nb;
    font-size: 1.2vw;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    padding-left: 2vw;
}

.menu-overlay .menu-content .menu-info h4 {
    font-size: 1.5vw;
    color: #fff;
    font-weight: bold;
    margin-bottom: 0.5vw;
}

/* Footer Link Fixes */
footer a {
    text-decoration: none;
    color: inherit;
}

footer .footer-bottom h1 span {
    font-family: Rejouice;
}

/* ==========================================================================
   COMPREHENSIVE RESPONSIVE STYLING FOR MOBILE DEVICES (<= 768px)
   ========================================================================== */
@media (max-width: 768px) {
    /* Global Layout Overflows Protection & Native Scroll Enabler */
    html, body {
        height: auto !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    #main {
        height: auto !important;
        overflow: visible !important;
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    * {
        max-width: 100vw;
    }

    /* Page Loader */
    #loader h3 {
        font-size: 6vw !important;
    }

    /* Navigation & Cursor */
    nav {
        padding: 5vw 6vw !important;
    }
    nav h3, nav h4 {
        font-size: 4.5vw !important;
    }
    .cursor {
        display: none !important;
    }
    .nav-logo span {
        font-size: 5vw !important;
    }
    .nav-logo img {
        height: 6vw !important;
    }

    /* Menu Overlay Mobile Fixes */
    .menu-overlay {
        padding: 10vw 8vw !important; /* Generous top/side paddings */
    }
    .menu-overlay .menu-header {
        padding-bottom: 5vw !important;
        margin-bottom: 5vw !important;
    }
    .menu-overlay .menu-header .menu-logo span {
        font-size: 6vw !important;
    }
    .menu-overlay .menu-header .menu-logo img {
        height: 8vw !important;
    }
    .menu-overlay .menu-header .menu-close {
        font-size: 4.5vw !important;
    }
    .menu-overlay .menu-content {
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        gap: 12vw !important; /* Spacious layout gap */
        padding-top: 6vw !important;
    }
    .menu-overlay .menu-content .menu-links {
        gap: 5vw !important;
        width: 100% !important;
    }
    .menu-overlay .menu-content .menu-links {
        padding-left: 10vw !important; /* Shift the entire links block to the right */
        gap: 5vw !important;
        width: 100% !important;
    }
    .menu-overlay .menu-content .menu-links a {
        font-size: 7.5vw !important;
        line-height: 1.2 !important;
        display: flex !important;
        align-items: center !important;
        gap: 4vw !important;
        padding-left: 0 !important; /* Reset individual padding */
    }
    .menu-overlay .menu-content .menu-links a span {
        font-size: 3.5vw !important;
        display: inline-block !important;
        width: 8vw !important; /* Fixed width for digits to align text */
        color: #ff5f38 !important;
        font-weight: bold !important;
        opacity: 0.85 !important;
    }
    .menu-overlay .menu-content .menu-info {
        max-width: 100% !important;
        font-size: 3.8vw !important;
        line-height: 1.8 !important;
        margin-top: 4vw !important;
        color: rgba(255, 255, 255, 0.6) !important;
        padding-left: 0 !important;
    }
    .menu-overlay .menu-content .menu-info h4 {
        font-size: 4.5vw !important;
        margin-bottom: 2vw !important;
        color: #fff !important;
    }

    /* Page 1 (Hero) */
    #page1 {
        height: 100vh !important;
        min-height: 500px !important;
    }
    .page1-text h1 {
        font-size: 16vw !important;
        line-height: 16vw !important;
    }

    /* Page 2 (Intro text block) */
    #page2 {
        padding-bottom: 12vw !important;
        min-height: auto !important;
    }
    #page2>#nav {
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        gap: 4vw !important;
        padding: 10vw 6vw 4vw !important;
        min-height: auto !important;
    }
    #page2>#nav .elem {
        width: 100% !important;
    }
    #page2>#nav>.elem h1 {
        font-size: 4.5vw !important;
        line-height: 1.4 !important;
        text-align: left !important;
    }
    #page2>.heading {
        padding: 6vw !important;
    }
    #page2>.heading h1 {
        display: inline !important;
        font-size: 5.5vw !important;
        line-height: 1.4 !important;
        letter-spacing: normal !important;
        white-space: normal !important;
        overflow: visible !important;
    }
    #page2>.heading h1::after {
        content: " " !important;
    }
    #space {
        margin-left: 0 !important;
        display: block !important;
        height: 2vw !important;
    }
    hr {
        width: 88vw !important;
    }

    /* Page 3 (Service Grid) */
    #page3 {
        padding: 10vw 6vw !important;
        min-height: auto !important;
    }
    #page3-top h4 {
        font-size: 4vw !important;
        margin-bottom: 2vw !important;
    }
    #page3-top h2 {
        font-size: 7.5vw !important;
        line-height: 1.3 !important;
    }
    #page3-elements {
        flex-direction: column !important;
        height: auto !important;
        gap: 8vw !important;
        margin-top: 10vw !important;
    }
    #page3-elements .box {
        width: 100% !important;
        height: 45vh !important;
        min-height: 280px !important;
    }
    #page3-elements .box video, #page3-elements .box img {
        border-radius: 12px !important;
    }
    
    /* Page 4 (Globe Video & Stats) */
    #page4 {
        height: 55vh !important;
        min-height: 380px !important;
    }
    #page4 svg {
        height: 70% !important;
        width: auto !important;
    }
    #page4 video {
        width: 70% !important;
        height: auto !important;
        object-fit: contain !important;
    }
    .page4-number {
        font-size: 14vw !important;
    }
    .page4-subtitle {
        font-size: 4.5vw !important;
    }

    /* Page 5 & Page 8 (Swiper Carousels) */
    #page5 {
        min-height: auto !important;
        padding: 10vw 6vw !important;
    }
    #page5-top h1 {
        font-size: 10vw !important;
        padding-bottom: 4vw !important;
    }
    #page5 #swiperdiv {
        height: 45vh !important;
    }
    .swiper-slide {
        width: 75vw !important;
    }
    .swiper-slide img {
        height: 45vh !important;
    }
    .page8 {
        min-height: auto !important;
        padding: 10vw 0 !important;
    }
    .page8 .text {
        padding: 0 6vw !important;
    }
    .page8 .text h1 {
        font-size: 10vw !important;
    }
    .page8 .text h3 {
        font-size: 4vw !important;
    }
    .page8 .text h3 i {
        font-size: 4vw !important;
    }
    .page8 .swiper {
        height: 40vh !important;
    }
    .page8 .swiper-slide img {
        height: 40vh !important;
    }

    /* Page 7 (Narrative Text Block) */
    .page7 {
        min-height: auto !important;
        padding: 10vw 6vw !important;
    }
    .page7 .page7-top {
        padding: 0 !important;
        min-height: auto !important;
    }
    .page7 .page7-top h3 {
        font-size: 4vw !important;
        line-height: 1.4 !important;
    }
    .page7 .page7-top-border {
        width: 100% !important;
        margin: 4vw 0 !important;
    }
    .page7 .page7-bottom {
        min-height: auto !important;
        margin-top: 4vw !important;
    }
    .page7 .page7-bottom .btm-text {
        padding: 0 !important;
    }
    .page7 .page7-bottom .btm-text h2 {
        display: inline !important;
        font-size: 5.5vw !important;
        line-height: 1.4 !important;
        letter-spacing: normal !important;
        white-space: normal !important;
        overflow: visible !important;
    }
    .page7 .page7-bottom .btm-text h2::after {
        content: " " !important;
    }

    /* Page 9 (CTA Text Block) */
    .page9 {
        padding: 12vw 6vw !important;
        height: auto !important;
        min-height: auto !important;
    }
    .page9 .page9-text {
        height: auto !important;
    }
    .page9 .page9-text h4 {
        font-size: 8vw !important;
        margin-bottom: 4vw !important;
    }
    .page9 .page9-text h1 {
        font-size: 5.5vw !important;
        line-height: 1.3 !important;
    }

    /* Footer (Compliance Bottom) */
    footer {
        height: auto !important;
        min-height: auto !important;
    }
    footer .footer-top {
        height: auto !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        padding: 12vw 6vw !important;
        gap: 10vw !important;
    }
    .footer-top .first {
        padding: 0 !important;
        gap: 6vw !important;
        width: 100% !important;
    }
    .footer-top .first .first-top h2 {
        font-size: 7.5vw !important;
        line-height: 1.3 !important;
    }
    .footer-top .first .first-top button {
        font-size: 4vw !important;
        padding: 12px 20px !important;
        border-radius: 8px !important;
    }
    .footer-top .first .first-btm h4 {
        font-size: 4.5vw !important;
    }
    .footer-top .first .first-btm p {
        font-size: 3.5vw !important;
        margin-top: 2vw !important;
    }
    .footer-top .second {
        width: 100% !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 8vw !important;
        margin-top: 0 !important;
        padding-right: 0 !important;
    }
    .second .second-one, .second .second-two {
        gap: 6vw !important;
        width: 100% !important;
    }
    .second .second-one .span, .second .second-two .span {
        gap: 3vw !important;
    }
    .second .second-one .span span, .second .second-two .span span {
        font-size: 4.5vw !important;
    }
    .second .second-one .span1, .second .second-two .span1 {
        font-size: 4vw !important;
        display: flex;
        flex-direction: column;
        gap: 2vw;
    }
    footer .footer-bottom {
        height: auto !important;
        padding: 10vw 0 !important;
    }
    footer .footer-bottom h1 span {
        font-size: 15vw !important;
        margin-top: 0 !important;
    }

    /* Policy Pages Mobile Fixes */
    #page1 h1 {
        font-size: 8vw !important;
        margin-top: 15vw !important;
    }
    #page2 div {
        width: 88% !important;
        font-size: 4vw !important;
        line-height: 1.6 !important;
    }
}


/* Burger Menu Icon Styles */
.menu-btn {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 4px;
    align-items: flex-end;
}

.menu-btn .bar {
    width: 30px;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s ease;
}

/* Make second bar slightly shorter for premium feel */
.menu-btn .bar:nth-child(2) {
    width: 22px;
}

/* Hover effects for burger bars */
.menu-btn:hover .bar {
    background-color: #ff5f38;
}

.menu-btn:hover .bar:nth-child(2) {
    width: 30px;
}
