@charset "UTF-8";
/*
Version: 1.0
*/
/*  Google fonts  : Poppins , Playfair  */
@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
@font-face {
    font-family: 'sanchez';
    src: url('../assets/fonts/Sanchez-Regular.ttf') format('.ttf');
    /* Fallback for older browsers */
}

/*=================================================================*/
/*                      BASE                              
/*=================================================================*/

:root {
    --primary-bg-color: #000000;
    --primary-text-color: #ffffff;
    --text-secondary: #F37022;
    --sucess-text-color-muted: #5ECCA3;
    --body-bg-color: #000000;
    --bg-warning: #F37022;
    --bg-success: #00FF85;
    --bg-danger: #F25050;
    --button-bg-color: #F25050;
}

* {
    margin: 0;
    padding: 0;
}

html {
    margin: 0 !important;
    overflow: auto !important;
    scroll-behavior: smooth;
}

body {
    background-color: var(--body-bg-color);
    font-family: "sanchez";
    overflow-x: hidden;
    overflow-y: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

img {
    max-width: 100%;
    height: auto;
}

.relative {
    position: relative;
}
.column{
    display: flex;
    flex-direction: column;
}
.absolute {
    position: absolute;
}

.row {
    display: flex;
    flex-direction: row;
}

.justify-center {
    justify-content: center;
    align-items: center;
}


li {
    list-style: none;
}
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 1;
    transition: opacity 0.6s ease;
    will-change: opacity;
}

.loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader-letters {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-letter {
    position: absolute;
    opacity: 0;
    will-change: transform, opacity;
}

.letter-m {
    width: 119px;
    height: 104px;
    animation: moveM 2s cubic-bezier(0.4, 1, 0.3, 1) forwards, fadeOut 0s ease-in-out 2s forwards;
}

.letter-e {
    width: 82px;
    height: 104px;
    animation: moveE 2s cubic-bezier(0.4, 0, 0.3, 1) 0.2s forwards, fadeOut 0.2s ease-in-out 2s forwards;
}

.letter-n {
    width: 106px;
    height: 104px;
    animation: moveN 2s cubic-bezier(0.4, 0, 0.3, 1) 0.4s forwards, fadeOut 0.4s ease-in-out 2s forwards;
}

.letter-z {
    width: 81px;
    height: 104px;
    animation: moveZ 2s cubic-bezier(0.4, 0, 0.3, 1) 0.6s forwards, fadeOut 0.6s ease-in-out 2s forwards;
}

.letter-o {
    width: 102px;
    height: 106px;
    animation: moveO 2s cubic-bezier(0.4, 0, 0.3, 1) 0.8s forwards, fadeOut 0.8s ease-in-out 2s forwards;
}

@keyframes moveM {
    0% { transform: translate(-1000px, 0px); opacity: 0; }
    100% { transform: translate(0, 0); opacity: 1; }
}

@keyframes moveE {
    0% { transform: translate(1000px, -1000px); opacity: 0; }
    100% { transform: translate(0, 0); opacity: 1; }
}

@keyframes moveN {
    0% { transform: translate(-1000px, -1000px); opacity: 0; }
    100% { transform: translate(0, 0); opacity: 1; }
}

@keyframes moveZ {
    0% { transform: translate(1000px,1000px); opacity: 0; }
    100% { transform: translate(0, 0); opacity: 1; }
}

@keyframes moveO {
    0% { transform: translate(-1000px, 1000px); opacity: 0; }
    100% { transform: translate(0, 0); opacity: 1; }
}

@keyframes fadeOut {
    to { opacity: 0; }
}

.loader-logo {
    position: absolute;
    width: 153px;
    height: 151px;
    opacity: 0;
    transform: translateY(-30px);
    filter: drop-shadow(0 0 3px rgba(255, 102, 0, 0.3));
    animation: logoAppear 1s cubic-bezier(0.4, 0, 0.2, 1) 2.4s forwards;
    will-change: transform, opacity;
}

@keyframes logoAppear {
    0% { opacity: 0; transform: translateY(-30px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .loader-letters {
        width: 100px;
        height: 100px;
    }

    .loader-letter {
        transform: scale(0.8);
    }

    @keyframes moveM {
        0% { transform: translate(-300px, -200px); opacity: 0; }
        50% { transform: translate(-150px, -80px); opacity: 0.7; }
        100% { transform: translate(0, 0); opacity: 1; }
    }

    @keyframes moveE {
        0% { transform: translate(300px, -200px); opacity: 0; }
        50% { transform: translate(150px, -80px); opacity: 0.7; }
        100% { transform: translate(0, 0); opacity: 1; }
    }

    @keyframes moveN {
        0% { transform: translate(-300px, 200px); opacity: 0; }
        50% { transform: translate(-150px, 80px); opacity: 0.7; }
        100% { transform: translate(0, 0); opacity: 1; }
    }

    @keyframes moveZ {
        0% { transform: translate(300px, 200px); opacity: 0; }
        50% { transform: translate(150px, 80px); opacity: 0.7; }
        100% { transform: translate(0, 0); opacity: 1; }
    }

    @keyframes moveO {
        0% { transform: translate(0, 300px); opacity: 0; }
        50% { transform: translate(0, 150px); opacity: 0.7; }
        100% { transform: translate(0, 0); opacity: 1; }
    }

    .loader-logo {
        width: 120px;
        height: 118px;
    }
}

@media (max-width: 480px) {
    .loader-letters {
        width: 80px;
        height: 80px;
    }

    .loader-letter {
        transform: scale(0.6);
    }

    @keyframes moveM {
        0% { transform: translate(-200px, -150px); opacity: 0; }
        50% { transform: translate(-100px, -60px); opacity: 0.7; }
        100% { transform: translate(0, 0); opacity: 1; }
    }

    @keyframes moveE {
        0% { transform: translate(200px, -150px); opacity: 0; }
        50% { transform: translate(100px, -60px); opacity: 0.7; }
        100% { transform: translate(0, 0); opacity: 1; }
    }

    @keyframes moveN {
        0% { transform: translate(-200px, 150px); opacity: 0; }
        50% { transform: translate(-100px, 60px); opacity: 0.7; }
        100% { transform: translate(0, 0); opacity: 1; }
    }

    @keyframes moveZ {
        0% { transform: translate(200px, 150px); opacity: 0; }
        50% { transform: translate(100px, 60px); opacity: 0.7; }
        100% { transform: translate(0, 0); opacity: 1; }
    }

    @keyframes moveO {
        0% { transform: translate(0, 200px); opacity: 0; }
        50% { transform: translate(0, 100px); opacity: 0.7; }
        100% { transform: translate(0, 0); opacity: 1; }
    }

    .loader-logo {
        width: 100px;
        height: 98px;
    }
}
/*=================================================================*/
/*                      TYPOGRAPHY                              
/*=================================================================*/
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--primary-text-color);
    font-family: "sanchez";
    font-weight: 700;
    cursor: pointer;
}

h1 {
    font-size: 36px;
}

h2 {
    font-size: 28px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 18px;
}

a {
    color: var(--primary-text-color);
    text-decoration: none;
    font-style: normal;
    font-weight: 400;
}


p {
    color: rgba(255, 255, 255, 0.80);
    text-align: justify;
    font-family: "Plus Jakarta Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 163%; /* 26.08px */
    cursor: pointer;
}

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


section {
    margin-bottom: 4em !important;
}
button {
    border-radius: 7px;
    background: #F37022; /* Orange background */
    backdrop-filter: blur(7.900000095367432px);
    color: #0B0000; /* Dark text */
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 17px;
    text-transform: capitalize;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    padding: 10px 30px;
    border: none;
    cursor: pointer; /* Pointer cursor for interactivity */
    transition: all 0.3s ease; /* Smooth transition for hover and active states */
}

button:hover {
    background: #FF8C4B; /* Lighter orange for hover */
    transform: scale(1.02); /* Subtle scale-up effect */
    box-shadow: 0 4px 12px rgba(243, 112, 34, 0.3); /* Soft shadow with orange tint */
    color: #0B0000; /* Maintain text color */
}

button:active {
    background: #D45F1C; /* Darker orange for active state */
    transform: scale(0.95); /* Slight scale-down to simulate press */
    box-shadow: 0 2px 8px rgba(243, 112, 34, 0.2); /* Reduced shadow for pressed effect */
    color: #0B0000; /* Maintain text color */
}
/*=================================================================*/
/*                      SCROLL BUTTON                              
/*=================================================================*/

.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 25px;
    text-align: center;
    background-color: var(--primary-bg-color);
    line-height: 55px;
    font-size: 1.6em;
    color: white;
    z-index: 10;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
    display: none;
}



/* For Chrome and Safari */
/* Customize the scrollbar track */
::-webkit-scrollbar {
    width: 8px;
    /* Width of the scrollbar */
}

::-webkit-scrollbar-track {
    background: var(--body);
    /* Background color of the track */
    border-radius: 10px;
}

/* Customize the scrollbar thumb (the draggable part) */
::-webkit-scrollbar-thumb {
    background: var(--text-secondary);
    /* Color of the thumb */
    border-radius: 10px;
}

/* Customize the scrollbar thumb when hovering over it */
::-webkit-scrollbar-thumb:hover {
    background: #FF710D;
    /* Color of the thumb on hover */
    border-radius: 10px;
}

::-webkit-scrollbar-horizontal {
    height: 5px !important;
}

/* Customize the scrollbar corner (between vertical and horizontal scrollbars) */
::-webkit-scrollbar-corner {
    background: #f1f1f1;
    /* Color of the corner */
    border-radius: 10px;
}


/*=================================================================*/
/*                      HEADER & NAVBAR                              
/*=================================================================*/
/* Reset default margins and paddings */
header {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 20px;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3)); /* Gradient from top to bottom */   
    transition: background-color 0.3s ease;
    transition: all 0.3s ease;

}

nav.scrolled {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    margin: 0 auto;
    padding: 10px 20px;

}

.nav-container {
    width: 80%;
    margin: 10px auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.nav-logo {
    width: 50px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
}

.nav-links li a {
    color: #F37022;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    text-decoration: none;
    transition: color 0.3s ease;
}

nav.scrolled .nav-links li a {
    color: #FFF; /* White text when nav is solid black */
}
nav.scrolled .nav-links li a:hover{
    color: #F37022; /* White text when nav is solid black */
}
.nav-links li a:hover {
    color: #fff;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #F37022;
    transition: all 0.3s ease;
}

nav.scrolled .hamburger span {
    background: #FFF; /* White hamburger lines when scrolled */

}
.nav-cta {
    display: flex;
    align-items: center;
}

.cta-button {
    background: #F37022;
    color: #FFF;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.cta-button:hover {
    background: transparent;
    border: 1px solid #F37022;
    color: #F37022;
}

/* When scrolled */
nav.scrolled .cta-button {
    background: #F37022;
    color: #FFF;
}

nav.scrolled .cta-button:hover {
    background: transparent;
    color: #FFF;
    border: 1px solid #FFF;
}
/* Dropdown container */
.dropdown {
    position: relative;
}

/* Hidden menu */
.dropdown-menu {
    position: absolute;
    top: 120%;
    left: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    list-style: none;
    padding: 15px 0;
    margin: 0;
    min-width: 200px;
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 999;
}

/* Show on hover */
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Dropdown links */
.dropdown-menu li {
    padding: 8px 20px;
}

.dropdown-menu li a {
    color: #FFF;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.dropdown-menu li a:hover {
    color: #F37022;
}
.nav-links li {
    position: relative;
}

.nav-links li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 1px;
    background: #F37022;
    transition: width 0.3s ease;
}

.nav-links li a:hover::after {
    width: 100%;
}
/* Hero Section */
.hero-section-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.315);
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    /* padding: 20px; */
}

.video-overlay .logo {
    width: 25%;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}
.logo {
    width: 25%;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}
.text-container {
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    animation: fadeIn 1s ease 0.5s forwards;
}

.hero-h1 {
    color: #FFF;
    font-family: 'Sanchez', serif;
    font-size: 4.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.hero-h1>span {
    color: #FFF;
    font-family: 'Sanchez', serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1rem;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.hero-subtitle {
    color: #FFF;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
}

.hero-cta-button {
    background: #F37022;
    color: #FFF;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.hero-cta-button:hover {
    background: #FF8C4B;
}

/* Fade-In Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-container {
        width: 90%;
    }

    .nav-links {
        gap: 15px;
    }

    .hero-h1 {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .video-overlay .logo {
        width: 30%;
    }
}

@media (max-width: 768px) {
    nav{
        padding: 20px 0;
    }
    nav.scrolled {
        background: #000; /* Solid black when scrolled */
        margin: 0 auto;
        padding: 10px 0;
    }
    
    .nav-container {
        width: 90%;
        padding: 0 5%;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        align-items: center;
        justify-content: center;
        gap: 30px;
        z-index: 999;
    }
    .nav-cta {
        display: none; /* Hide CTA inside mobile menu */
    }

    .dropdown-menu {
        position: static;
        background: transparent;
        backdrop-filter: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 0;
    }

    .dropdown-menu li a {
        font-size: 1.2rem;
        color: #FFF;
    }
    .nav-links.active li a {
        color: #FFF;
        font-size: 1.5rem;
    }

    .nav-links.active li a:hover {
        color: #F37022;
    }

    .hero-h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .video-overlay .logo {
        width: 35%;
    }

    .hero-cta-button {
        font-size: 14px;
        padding: 10px 25px;
    }
}

@media (max-width: 480px) {
    .nav-logo {
        width: 80px;
    }

    .hero-h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .video-overlay .logo {
        width: 40%;
    }

    .hero-cta-button {
        font-size: 13px;
        padding: 8px 20px;
    }
}

/* Hamburger Animation */
.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}
/* ============================================================= */
/*                  LOCATIONS SECTION - FRANCHISE SEO            */
/* ============================================================= */

.locations-section {
    width: 100vw;
    padding: 6rem 0;
    background-color: var(--body-bg-color);
    text-align: center;
}

.locations-section h2 {
    font-family: "sanchez";
    font-size: 52px;
    font-weight: 400;
    letter-spacing: -1.5px;
    color: #fff;
    margin-bottom: 1rem;
}

.locations-section > p {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.80);
    max-width: 720px;
    margin: 0 auto 4rem;
    line-height: 1.6;
}

/* Location Cards Grid */
.location-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.location-card {
    background: #111;
    border-radius: 26px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.location-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(243, 112, 34, 0.25);
}

.location-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.location-card:hover img {
    transform: scale(1.08);
}

.location-card h3 {
    font-family: "sanchez";
    font-size: 26px;
    color: #fff;
    margin: 1.8rem 1.8rem 1rem;
    text-align: left;
    letter-spacing: -0.5px;
}

.location-card p {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 15.5px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.65;
    padding: 0 1.8rem;
    text-align: left;
    margin-bottom: 2rem;
}

.location-card .cta-button {
    display: inline-block;
    margin: 0 1.8rem 2rem;
    background: #F37022;
    color: #0B0000;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.location-card .cta-button:hover {
    background: #FF8C4B;
    transform: scale(1.05);
    color: #0B0000;
}

/* ============================================================= */
/*                  EXPERIENCE SECTION                           */
/* ============================================================= */

.experience-section {
    width: 100vw;
    padding: 6rem 0;
    background: linear-gradient(to bottom, #0a0a0a, #000);
    text-align: center;
}

.experience-section h2 {
    font-family: "sanchez";
    font-size: 52px;
    letter-spacing: -1.5px;
    margin-bottom: 1.5rem;
}

.experience-section > p {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 18px;
    max-width: 680px;
    margin: 0 auto 4rem;
    color: rgba(255, 255, 255, 0.80);
    line-height: 1.7;
}

/* Benefit Cards (add 3-4 cards here) */
.experience-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 5%;
}

.benefit-card {
    background: #111;
    padding: 2.5rem 2rem;
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s ease;
}

.benefit-card:hover {
    background: #1a1a1a;
    transform: translateY(-8px);
}

.benefit-card h4 {
    font-family: "sanchez";
    font-size: 24px;
    color: #F37022;
    margin: 1.2rem 0 1rem;
}

.benefit-card p {
    font-family: "Plus Jakarta Sans", sans-serif;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.65;
}

/* ============================================================= */
/*                  FINAL CTA SECTION                            */
/* ============================================================= */

.final-cta {
    width: 100vw;
    padding: 5rem 0;
    background: #0a0a0a;
    text-align: center;
    border-top: 1px solid rgba(243, 112, 34, 0.15);
    border-bottom: 1px solid rgba(243, 112, 34, 0.15);
}

.final-cta h2 {
    font-family: "sanchez";
    font-size: 48px;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

.final-cta p {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 620px;
    margin: 0 auto 2.5rem;
}

.final-cta .cta-button {
    font-size: 18px;
    padding: 16px 42px;
    border-radius: 50px;
    background: #F37022;
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.final-cta .cta-button:hover {
    background: #FF8C4B;
    transform: scale(1.06);
    box-shadow: 0 10px 25px rgba(243, 112, 34, 0.4);
}

/* ============================================================= */
/*                  RESPONSIVE ADJUSTMENTS                       */
/* ============================================================= */

@media (max-width: 768px) {
    .locations-section h2,
    .experience-section h2,
    .final-cta h2 {
        font-size: 38px;
    }

    .location-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 8%;
    }

    .location-card img {
        height: 220px;
    }

    .final-cta {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    .location-card h3 {
        font-size: 22px;
    }
}
/*=================================================================*/
/*                       About section                 
/*=================================================================*/
.about-section-container{
    width: 100vw;
    height: 170vh;
    margin-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-section-container img{
    border-radius: 26px;
}

.about-section-wrapper{
    width: 90%;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.about-section-column{
    width: 47%;
    height: 100%;
    max-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}

.about-section-h3 {
    opacity: 0;
    transition: opacity 0.3s ease;
    color: #FFF;
    font-family: "Sanchez", serif;
    font-size: 60px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 2px;
    display: inline-block; /* Ensure proper alignment */
}
  
  .about-section-h3 span {
    opacity: 0;
    display: inline-block;
    animation: fadeIn 0.05s forwards;
  }
  
  @keyframes fadeIn {
    to {
      opacity: 1;
    }
  }
  
.about-section-img3{
    max-height: 75%;
    width: auto;
}
.about-section-img2{
    max-height: 30%;
    height: 30%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 26px;

}
.about-section-img3>img{
    object-fit: cover;
    height: 100%;
}
.about-section-img2>img{
    object-fit: cover;
    object-position: center;
    width: 100%;
}

/* Initial states */
.animate-left, .animate-right, .fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
  }
  
  .animate-left {
    transform: translateX(-100px);
  }
  
  .animate-right {
    transform: translateX(100px);
  }
  
  .animate-in-view {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }
  


/*=================================================================*/
/*                       Numbers section                 
/*=================================================================*/

.numbers-section-container{
    width: 100vw;
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.numbers-section-wrapper{
    width: 90%;
    height: 50%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--Color-1, #B4B2AC);
    opacity: 0.8;
    background: var(--Color-2, #000);
}
.numbers-column{
    width: 20%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.numbers-number{
    position: relative;
}
.numbers-number>.sign{
position: absolute;
top: 0px;
right: -1rem;
color: #FF710D;
text-align: center;

}
.numbers-number>.number{
    color: #FF710D;
    text-align: center;
    font-family: Sanchez;
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.numbers-text>p{
    color:  #B4B2AC;
    font-family: 'sanchez';
text-align: center;
font-size: 20.8px;
font-style: normal;
font-weight: 400;
line-height: normal;
}



/*=================================================================*/
/*                       Service section                 
/*=================================================================*/

/* 

.service-section-container{
    width: 100vw;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-section-wrapper{
    display: flex;
    width: 90%;
    height: 100%;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}
.service-section-hedear{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    width: 80%;
}
.service-section-h3{
    color: #FFF;
text-align: center;
font-family: Sanchez;
font-size: 50px;
font-style: normal;
font-weight: 400;
line-height: normal;
letter-spacing: 2px;
}
.service-section-hedear>p{
    text-align: center;
} */

/* Service Section Container */
.service-section-container {
    width: 100vw;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 3rem;
}

/* Service Section Wrapper */
.service-section-wrapper {
    width: 90%;
    height: 100%;

}

/* Service Section Header */
.service-section-hedear {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    width: 80%;
    justify-self: center;
}

    .service-section-h3{
        color: #FFF;
    text-align: center;
    font-family: Sanchez;
    font-size: 60px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 2px;
    }
    .service-section-hedear>p{
        text-align: center;
    } 
/* Swiper Container */
.service-swiper {
    position: relative;
    padding: 20px 0;
}

/* Swiper Slide (Card) */
.service-swiper-card {
    background: #000000;
    border-radius: 10px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.service-swiper-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-swiper-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.service-swiper-card-h4 {
    color: #FFF;
    font-family: Sanchez;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -1px;
}

.service-swiper-card-p {
    color: rgba(255, 255, 255, 0.80);
    font-family: "Plus Jakarta Sans";
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 163%; /* 24.45px */
}

.service-swiper-card button {
    color: #F37022;
    font-family: Poppins;
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    background: none;
    padding: 0;
}



/* Swiper Pagination */
.swiper-pagination {
    position: relative;
    margin-top: 20px;
}

.swiper-pagination-bullet {
    background: #666;
    opacity: 0.5;
    width: 10px;
    height: 10px;
    margin: 0 5px;
}

.swiper-pagination-bullet-active {
    background: #F37022;
    opacity: 1;
}

/* Swiper Navigation */
.swiper-button-prev,
.swiper-button-next {
    color: #2c2c2c;
    width: 40px;
    height: 40px;
    background: #F37022;
    border-radius: 50%;
    transition: all 0.3s ease; /* Smooth transition for hover and active states */

}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background:  #FF8C4B;
    transform: scale(1.02);
}
.swiper-button-prev:active,
.swiper-button-next:active {
    background:  #F37022;
    transform: scale(.95);
    
}
.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 20px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .service-section-h3 {
        font-size: 2rem;
    }

    .service-swiper-card img {
        height: 150px;
    }

    .service-swiper-card-h4 {
        font-size: 1.3rem;
    }

    .service-swiper-card-p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .service-section-container {
        padding: 40px 15px;
    }

    .service-section-h3 {
        font-size: 1.8rem;
    }

    .service-swiper-card {
        padding: 15px;
    }

    .service-swiper-card button {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}

/*=================================================================*/
/*                       testimonials section                 
/*=================================================================*/
.testimonials-section-container{
    display: flex;
    height: 100vh;
    width: 100vw;
    align-items: center;
    justify-content: center;
}
.testimonials-section-wrapper
{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
    gap: 3rem;

}
.testimonials-section-head{
    width: 70%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}
.testimonials-section-h3{
    color: var(--white, #FFF);
text-align: center;
font-family: Sanchez;
font-size: 60px;
font-style: normal;
font-weight: 400;
line-height: normal;
}
.testimonials-section-p{
    color: rgba(255, 255, 255, 0.80);
text-align: center;
font-family: "Plus Jakarta Sans";
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: 163%; /* 26.08px */
}/* Testimonials Swiper Container */
.testimonials-swiper {
    position: relative;
    padding: 20px 0;
    width: 100%;
    max-width: 100%; /* Limit width for larger screens */
    margin: 0 auto;
}

/* Testimonials Cards */
.testimonials-cards {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 17rem;
    /* padding: 1rem 2rem; */
    background: #323232;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    box-shadow: 10px 13px 0px 1px rgba(243, 112, 34, 0.75);
    -webkit-box-shadow: 10px 13px 0px 1px rgba(243, 112, 34, 0.75);
    -moz-box-shadow: 10px 13px 0px 1px rgba(243, 112, 34, 0.75);
    transition: transform 0.3s ease; /* Smooth transition for slide effect */
}
.card{
    width: 90%;
    display: flex;
    flex-direction: column;
    height: 17rem;
    /* padding: 1rem 2rem; */
    background: #323232;
    gap: 1.5rem;
    
    justify-content: center;
}
/* Quotes */
.quotes {
    position: absolute;
    top: 0;
    transform: translateY(-50%);
    right: 2rem;
}
/* Testimonials Stars Container */
.testimonials-stars {
    display: flex;
    gap: 10px; /* Space between stars */
}

/* Star Wrapper */
.star-wrapper {
    display: inline-block; /* Ensure wrappers are inline for proper spacing */
    animation: bounce 1s ease-in-out infinite; /* Apply the bounce animation */
}

/* Stagger the animation delay for each star to create a wave effect */
.star-wrapper:nth-child(1) {
    animation-delay: 0s;
}

.star-wrapper:nth-child(2) {
    animation-delay: 0.2s;
}

.star-wrapper:nth-child(3) {
    animation-delay: 0.4s;
}

.star-wrapper:nth-child(4) {
    animation-delay: 0.6s;
}

.star-wrapper:nth-child(5) {
    animation-delay: 0.8s;
}

/* Define the bounce animation */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0); /* Start and end position */
    }
    50% {
        transform: translateY(-1px); /* Bounce up by 5px at the midpoint */
    }
}
/* Testimonials Comment */
.testimonials-comment>p {
    color: var(--white, #FFF);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 14px!important;
    font-style: normal;
    font-weight: 400;
    line-height: 29px; /* 207.143% */
}

/* Testimonials Info */
.testimonials-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Testimonials Author */
.testimonials-author {
    display: flex;
    flex-direction: column;
}

.testimonials-author .p1 {
    color: var(--white, #FFF);
    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}

.p2 {
    color: #F37022;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 12px;
    font-weight: 400;
}

/* Swiper Pagination */
.swiper-pagination {
    position: relative;
    margin-top: 40px;
}

.swiper-pagination-bullet {
    background: #666;
    opacity: 0.5;
    width: 10px;
    height: 10px;
    margin: 0 5px;
}

.swiper-pagination-bullet-active {
    background: #F37022;
    opacity: 1;
}

/* Swiper Navigation */
.swiper-button-prev,
.swiper-button-next {
    color: #F37022;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    transition: background 0.3s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: rgba(255, 255, 255, 1);
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 20px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .testimonials-cards {
        width: 90%;
        height: 15rem;
    }

    .testimonials-comment {
        font-size: 10px;
        line-height: 24px;
    }

    .testimonials-author .p1 {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .testimonials-cards {
        width: 85%;
        height: 14rem;
    }

    .quotes {
        width: 40px;
        height: 40px;
        right: 1rem;
    }

    .testimonials-comment {
        font-size: 11px;
        line-height: 20px;
    }

    .testimonials-author .p1 {
        font-size: 14px;
    }
}



/*=================================================================*/
/*                       contact section                 
/*=================================================================*/



.contact-section-container
{
    display: flex;
    height: 100%;
    width: 100vw;
    align-items: center;
    justify-content: center;
    margin-bottom: 6rem;
}
.contact-section-wrapper{
    display: flex;
    align-items: flex-start;
    width: 80%;
    justify-content: space-between;
}
.contact-info-section{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    width: 40%;
    max-width: 40%;
}

.contact-info-h3{
    color: #FFF;
font-family: Sanchez;
font-size: 48px;
font-style: normal;
font-weight: 400;
line-height: 56px; /* 116.667% */
letter-spacing: -0.96px;
}

.contact-info-h3> span{
    color: #FFF;
font-family: Sanchez;
font-size: 25px;
font-style: normal;
font-weight: 400;
line-height: 56px; /* 116.667% */
letter-spacing: -0.96px;
}

.contact-info-socials{
    display: flex;
    gap: 1rem;
}
.contact-info-phone{
    display: flex;
    gap: 1rem;
}
.contact-info-email{
    display: flex;
    gap: 1rem;
}

/* Contact Form Section */
.contact-form-section {
    width: 55%;
    display: flex;
    gap: 1rem;
    flex-direction: column;
    justify-content: flex-end;
}

/* Contact Form */
.contact-page-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

/* Form Group (Label + Input/Textarea) */
.contact-page-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Labels */
.contact-page-form-group label {
    color: #FFF;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
}

/* Required Star */
.required-star {
    color: #F37022; /* Orange-red color for the asterisk */
}

/* Inputs and Textarea */
.contact-page-form-group input,
.contact-page-form-group textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid #FFF; /* White underline */
    color: #FFF;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 14px;
    padding: 8px 0;
    outline: none;
    width: 100%;
}

/* Placeholder Styling */
.contact-page-form-group input::placeholder,
.contact-page-form-group textarea::placeholder {
    color: #999;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 14px;
}

/* Textarea Specifics */
.contact-page-form-group textarea {
    resize: none; /* Prevent resizing */
    height: 100px;
}

/* Submit Button */
.contact-page-submit-button {
    width: 30%;
}

 /* File Input Styling */
 .contact-page-form-group input[type="file"] {
    background: transparent;
    border: none;
    border-bottom: 1px solid #FFF;
    color: #FFF;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 14px;
    padding: 8px 0;
    outline: none;
    width: 100%;
  }
  .contact-page-form-group input[type="file"]::-webkit-file-upload-button {
    visibility: hidden;
  }
  .contact-page-form-group input[type="file"]::before {
    content: 'Choose CV file...';
    color: #999;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 14px;
  }
  .contact-page-form-group input[type="file"]:hover::before {
    color: #FFF;
  }
  .contact-page-form-group input[type="file"]:focus {
    border-bottom-color: #F37022;
  }

  .contact-page-form-group input[type="text"]:focus {
    border-bottom-color: #F37022;
  }

  .contact-page-form-group input[type="email"]:focus {
    border-bottom-color: #F37022;
  }


/* About Page Hero Section Container */
.about-page-hero-section-container {
    position: relative;
    width: 100%;
    height: 100vh; /* Full viewport height */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* About Page Hero Image */
.about-page-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    object-fit: cover; /* Ensure image covers the area while maintaining aspect ratio */
    z-index: 1;
    animation: aboutPageZoomInOut 20s ease-in-out infinite; /* Updated animation name and behavior */
}

/* About Page Video Overlay */
.about-page-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.315); /* Semi-transparent dark overlay */
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    /* padding: 20px; */
}

/* About Page Logo */
.about-page-video-overlay .about-page-logo {
    width: 30%; /* Adjust size as needed */
    margin-bottom: 30px;
    opacity: 0;
    animation: aboutPageFadeIn 1s ease forwards;
}

/* About Page Text Container */
.about-page-text-container {
    max-width: 900px;
    margin: 0 auto;
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    animation: aboutPageFadeIn 1s ease 0.5s forwards; /* Delayed fade-in */
}

/* About Page Hero H1 */
.about-page-hero-h1 {
    color: #FFF;
    font-family: 'Sanchez', serif !important;
    font-size: 60px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Subtle dark shadow for depth */
}

/* About Page Hero Subtitle */
.about-page-hero-subtitle {
    color: #FFF;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -1px;
    font-family: "Plus Jakarta Sans", sans-serif;
    margin-bottom: 30px;
}

/* Zoom-In and Zoom-Out Animation */
@keyframes aboutPageZoomInOut {
    0% {
        transform: scale(1); /* Start at normal size */
    }
    50% {
        transform: scale(1.1); /* Zoom in to max at halfway */
    }
    100% {
        transform: scale(1); /* Zoom out back to normal */
    }
}

/* Fade-In Animation */
@keyframes aboutPageFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .about-page-hero-h1 {
        font-size: 2.5rem;
    }

    .about-page-hero-subtitle {
        font-size: 1.2rem;
    }

    .about-page-video-overlay .about-page-logo {
        width: 120px;
    }

    .about-page-hero-cta-button {
        font-size: 15px;
        padding: 8px 25px;
    }
    .about-section-wrapper{
    flex-direction: column;   
    height: auto; 
    }
    .about-section-container{
        height: auto;
        align-items: center;
    }
    .numbers-section-container{
        height: auto;
    }
    .numbers-section-wrapper{
        height: auto;
        flex-direction: column;
        gap: 2rem;
        width: 60%;
        padding: 1rem;
        align-items: center!important;
    }
    .about-section-column{
        width: 90%;
        gap: 2rem;
    }
    .testimonials-section-h3{
        font-size: 40px;
    }
}

@media (max-width: 480px) {
    .about-page-hero-h1 {
        font-size: 2rem;
    }

    .about-page-hero-subtitle {
        font-size: 1rem;
    }

    .about-page-video-overlay .about-page-logo {
        width: 100px;
    }

    .about-page-hero-cta-button {
        font-size: 14px;
        padding: 8px 20px;
    }
}




/* Gallery Container */
.gallery-container {
    position: relative;
    max-width: 80%;
    margin: 0 auto;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns */
    grid-template-rows: auto auto auto auto auto; /* 4 rows */
    gap: 15px; /* Space between images */
    height: auto;
    margin-bottom: 4rem;
}

/* Gallery Items */
.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    opacity: 0; /* Start invisible for animation */
    transition: opacity 0.5s ease, transform 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(100%); /* Black and white by default */
    transition: filter 0.3s ease, transform 0.3s ease; /* Smooth transition for grayscale and zoom */
}

/* Hover Effect: Show original color and zoom */
.gallery-item:hover img {
    filter: grayscale(0); /* Restore original color on hover */
    transform: scale(1.05); /* Slight zoom on hover */
}

/* Fade-in animation for gallery items */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px); /* Slight slide-up effect */
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Apply fade-in animation when the 'visible' class is added */
.gallery-item.visible {
    animation: fadeIn 0.5s ease forwards;
}

/* Grid Layout for Gallery Items */
.gallery-item-1 {
    grid-column: 1 / 3; /* Spans columns 1-2 */
    grid-row: 1 / 2; /* First row */
    height: 250px;
}

.gallery-item-2 {
    grid-column: 3 / 4; /* Column 3 */
    grid-row: 1 / 3;
    height: 520px;
}
.gallery-item-9 {
    grid-column: 4 / 5; /* Column 4 */
    grid-row: 1 / 2; /* Spans rows 1-2 */
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gallery-item-10 {
    grid-column: 1 / 3; /* Column 4 */
    grid-row: 2 / 3; /* Spans rows 1-2 */
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gallery-item-3 {
    grid-column: 4 / 5; /* Column 4 */
    grid-row: 2 / 4; /* Spans rows 1-2 */
    height: 520px;
}

.gallery-item-4 {
    grid-column: 1 / 2; /* Column 1 */
    grid-row: 3 / 4; /* Second row */
    height: 250px;
}

.gallery-item-5 {
    grid-column: 2 / 4; /* Spans columns 2-3 */
    grid-row: 3 / 4;
    height: 250px;
}

.gallery-item-6 {
    grid-column: 1 / 2; /* Column 1 */
    grid-row: 4 / 5; /* Third row */
    height: 250px;
}

.gallery-item-7 {
    grid-column: 2 / 3; /* Column 2 */
    grid-row: 4 / 6; /* Spans rows 3-4 */
    height: 520px;
}

.gallery-item-8 {
    grid-column: 3 / 5; /* Spans columns 3-4 */
    grid-row: 4 / 5; /* Row 3 */
    height: 250px;
}

/* Fade-down animation for text elements */
@keyframes fadeDown {
    0% {
        opacity: 0;
        transform: translateY(-20px); /* Start 20px above */
    }
    100% {
        opacity: 1;
        transform: translateY(0); /* End at original position */
    }
}

/* Initially hide the text elements */
.gallery-text-left,
.gallery-text-right {
    opacity: 0; /* Start invisible for animation */
}

/* Apply fade-down animation when the 'visible' class is added */
.gallery-text-left.visible,
.gallery-text-right.visible {
    animation: fadeDown 0.5s ease forwards;
}

/* Gallery Text Left (Locations and Followers) */
.gallery-text-left {
    grid-column: 1 / 2;
    grid-row: 5 / 6;
    height: 250px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 2rem;
}

.locations, .followers {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.gallery-location-info, .gallery-followers-info {
    display: flex;
    flex-direction: column;
}

.gallery-location-info .number, .gallery-followers-info .number {
    color: #F37022;
    font-family: Sanchez, serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%; /* 44px */
    letter-spacing: -1.28px;
}

.gallery-location-info .text, .gallery-followers-info .text {
    color: #FFF;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 30px */
    letter-spacing: -0.24px;
}

/* Gallery Text Right (Paragraph) */
.gallery-text-right {
    grid-column: 3 / 5;
    grid-row: 5 / 6;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%; /* 24px */
    letter-spacing: -0.24px;
    padding: 1rem;
}

.about-page-section-container{
    display: flex;
    align-items: center;
    width: 100vw;
    height: 100%;
    justify-content: center;
}
.about-page-section-wrapper{
    display: flex;
    flex-direction: column;
    width: 80%;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}
.about-page-h2{
    color: #FFF;
text-align: center;
font-family: Sanchez;
font-size: 61px;
font-style: normal;
font-weight: 400;
line-height: 110%; /* 123.2px */
letter-spacing: 3.36px;
}
.about-page-h2>span{
    color: #F37022;
text-align: center;
font-family: Sanchez;
font-size: 31px;
font-style: normal;
font-weight: 400;
line-height: 110%; /* 123.2px */
letter-spacing: 3.36px;
}
.about-page-p{
    color: #FFF;
text-align: justify;

/* Body/Body 4 */
font-family: "Open Sans";
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 209%; /* 29.26px */
}
/* Responsive Adjustments */
@media (max-width: 768px) {
    .gallery-container {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablet */
        grid-template-rows: auto;
        gap: 10px;
    }

    .gallery-item-1 {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
        height: 200px;
    }

    .gallery-item-2 {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
        height: 200px;
    }

    .gallery-item-3 {
        grid-column: 1 / 3;
        grid-row: 2 / 3;
        height: 300px;
    }

    .gallery-item-4 {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
        height: 200px;
    }

    .gallery-item-5 {
        grid-column: 2 / 3;
        grid-row: 3 / 4;
        height: 200px;
    }

    .gallery-item-6 {
        grid-column: 1 / 2;
        grid-row: 4 / 5;
        height: 200px;
    }

    .gallery-item-7 {
        grid-column: 2 / 3;
        grid-row: 5 / 7; /* Spans rows 5-6 for better balance */
        height: 400px; /* Adjusted height */
    }

    .gallery-item-8 {
        grid-column: 1 / 3;
        grid-row: 7 / 8;
        height: 300px;
    }

    .gallery-text-left {
        grid-column: 1 / 3;
        grid-row: 8 / 9;
        height: auto;
        padding: 20px;
        align-items: center;
        justify-content: center;
    }

    .gallery-text-right {
        grid-column: 1 / 3;
        grid-row: 9 / 10;
        height: auto;
        padding: 20px;
        text-align: center;
    }

    .gallery-location-info .number, .gallery-followers-info .number {
        font-size: 36px;
    }

    .gallery-location-info .text, .gallery-followers-info .text {
        font-size: 18px;
    }

    /* Remove animations for text and gallery items on smaller screens */
    .gallery-text-left,
    .gallery-text-right {
        animation: none !important;
        opacity: 1;
    }

    .gallery-item {
        animation: none !important;
        opacity: 1;
    }
}
@media (max-width: 480px) {
    .gallery-container {
        grid-template-columns: 1fr; /* 1 column on mobile */
        gap: 8px;
        max-width: 90%;
        padding: 10px;
    }

    .gallery-item-1,
    .gallery-item-2,
    .gallery-item-3,
    .gallery-item-4,
    .gallery-item-5,
    .gallery-item-6,
    .gallery-item-7,
    .gallery-item-8,
    .gallery-item-9,
    .gallery-item-10 {
        grid-column: 1 / 2;
        height: 200px;
    }

    .gallery-item-1 { grid-row: 1 / 2; }
    .gallery-item-2 { grid-row: 2 / 3; }
    .gallery-item-3 { grid-row: 3 / 4; }
    .gallery-item-4 { grid-row: 4 / 5; }
    .gallery-item-5 { grid-row: 5 / 6; }
    .gallery-item-6 { grid-row: 6 / 7; }
    .gallery-item-7 { grid-row: 7 / 8; }
    .gallery-item-8 { grid-row: 8 / 9; }
    .gallery-item-9 { grid-row: 9 / 10; }
    .gallery-item-10 { grid-row: 10 / 11; }

    .gallery-text-left {
        grid-column: 1 / 2;
        grid-row: 11 / 12;
        height: auto;
        padding: 20px;
        align-items: center;
        justify-content: center;
    }

    .gallery-text-right {
        grid-column: 1 / 2;
        grid-row: 12 / 13;
        height: auto;
        padding: 20px;
        text-align: center;
    }

    .gallery-location-info .number, .gallery-followers-info .number {
        font-size: 28px;
    }

    .gallery-location-info .text, .gallery-followers-info .text {
        font-size: 16px;
    }

    .gallery-text-left,
    .gallery-text-right,
    .gallery-item {
        animation: none !important;
        opacity: 1;
    }

    .about-page-section-container {
        width: 100%;
    }

    .about-page-section-wrapper {
        width: 90%;
        margin-top: 1rem;
        margin-bottom: 1rem;
        gap: 1rem;
    }

    .about-page-h2 {
        font-size: 40px;
        letter-spacing: 1.5px;
    }

    .about-page-p {
        font-size: 12px;
        line-height: 180%;
    }
}



/* Footer */
.footer {
    display: flex;
    flex-direction: column;
    background-color: #000;
    color: #FFF;
    width: 100vw;
    /* height: 40vh; */
    align-items: center;
    justify-content: flex-end;
    font-family: sanchez;
}

/* Footer Container */
.footer-container {
    width: 80%;
    max-width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 20px;
    margin-top: 2rem;
}

/* Footer Columns */
.footer-column {
    flex: 1;
    min-width: 200px;
}

/* Brand Column */
.footer-brand {
    flex: 2;
}

.footer-logo {
    font-family: Sanchez, serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-description {
    font-size: 14px;
    line-height: 150%;
    margin-bottom: 20px;
    opacity: 0.8;
}

/* Social Icons */
.footer-socials {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 2px solid #F37022;
    border-radius: 50%;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1);
    stroke: #ffffff;
}

.social-icon svg {
    width: 15px;
    height: 15px;
}

/* Footer Headings */
.footer-heading {
    font-family: Sanchez, serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #FFF;
    font-size: 14px;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: #F37022;
}

/* Footer Bottom */
.footer-bottom {
    width: 80%;
    max-width: 80%;
    margin: 40px auto 0;
    padding: 20px;
    /*  */
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 10%;
}

.footer-copyright {
    font-size: 14px;
    opacity: 0.6;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 30px;
    }
  
    .footer-column {
        min-width: 100%;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-heading {
        font-size: 16px;
    }

    .footer-links a {
        font-size: 13px;
    }

    .footer-copyright {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 0;
    }

    .footer-logo {
        font-size: 20px;
    }

    .footer-description {
        font-size: 12px;
    }

    .social-icon {
        width: 36px;
        height: 36px;
    }

    .social-icon svg {
        width: 18px;
        height: 18px;
    }

    .footer-heading {
        font-size: 14px;
    }

    .footer-links a {
        font-size: 12px;
    }
}








.contact-page-container{
    display: flex;
    flex-direction: column;
    width: 100vw;
    align-items: center;
    justify-content: center;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.contact-page-wrapper{
    display: flex;
    flex-direction: column;
    width: 80%;
    align-items: center;
    justify-content: center;
    gap: 6rem;
}
.contact-page-row{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}
.contact-form-page{
    width: 60%;
}
.contact-page-map{
    width: 60%;
}
.contact-logo{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40%;
    height: auto;
    align-self: center;
}
.contact-page-submit-button1{
    width: 20%;
}
.parallax {
    height: 50vh;
    width: 100vw;
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
    background: url('../images/pattern.jpg') repeat;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .parallax::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.164);
    z-index: 0;
  }
  .parallax-content {
    position: relative;
    text-align: center;
    color: white;
    font-size: 2em;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 80%;
    align-items: center;
    justify-content: space-around;
  }
  .parallax-content-qoute {
    color: #FFF;
    text-align: center;
    font-family: Sanchez, serif;
    font-size: 24px;
    font-style: italic;
    font-weight: 400;
    line-height: normal;
    width: 90%;
  }
  .parallax-content-author {
    color: #FFF;
    text-align: center;
    font-family: Sanchez, serif;
    font-size: 20.8px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }


/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact-page-row{
        flex-direction: column;
        align-items: center;
        gap: 3rem;
    }
    .contact-form-page{
        width: 90%;
    }
    .contact-page-submit-button1{
        width: 40%;
    }
    .contact-info-section{
        width: 90%;
        max-width: 90%;
    }
    .contact-info-h3{
        font-size: 30px;

    }
    .contact-page-map{
        width: 100%;
    }
    
}

@media (max-width: 480px) {
  
}




.values-container{
    width: 100vw;
    /* height: 70vh; */
    height: auto;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Montserrat", sans-serif;
    margin-top: 4rem;
}

.values-wrp2
{
    width: 60%;
display: flex;
flex-direction: column;
height: auto;
justify-content: center;
gap: 2rem;}

.subheading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
    cursor: pointer;
    color: rgb(255, 255, 255);
    font-family: "sanchez";
font-size: 32px;
font-style: normal;
font-weight: 200;
line-height: 32px; /* 100% */
text-transform: none;
text-transform: capitalize;

}

.subheading .toggle {
    font-size: 1.2em;
    color: #F37022;
}

.content {
    display: none;
    margin-top: 10px;
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: opacity 0.3s ease, height 0.3s ease;
}
.content.active {
    display: block;
    opacity: 1;
    height: auto;
}

.content-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;

}
.content .text {
    flex: 1;
    margin-right: 20px;
    color: rgba(255, 255, 255, 0.80);
text-align: justify;
font-family: "Plus Jakarta Sans";
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: 163%; /* 26.08px */
}

.content-line {
    border: none;
    border-top: 2px solid #F37022;
}
.value-container{
    margin-bottom: .1rem;
}

.values-h2{
    color: #FFF;
text-align: center;
font-family: Sanchez;
font-size: 60px;
font-style: normal;
font-weight: 400;
line-height: normal;
letter-spacing: -2px;
}






.job-page-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: auto;
  }
  .job-page-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    width: 80%;
    margin-bottom: 4rem;
    margin-top: 4rem;
  }
  .job-page-h2 {
    color: #FFF;
    text-align: center;
    font-family: Sanchez;
    font-size: 60px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -2px;
  }
  .job-page-card-container {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
  }
  .job-page-card {
    display: flex;
    flex-direction: column;
    width: 22%;
    margin-bottom: 4rem;
    gap: 1rem;
    padding: 2rem;
    border-radius: 30px;
    background: #000;
    box-shadow: 4px 4px 12.4px 0px #f36f22bd;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease, scale 0.3s ease, box-shadow 0.3s ease;
  }
  .job-page-card.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .job-page-card:hover {
    transform: scale(1.05);
    box-shadow: 6px 6px 18.6px 0px #f36f22bd;
  }
  .job-page-card-title {
    color: #FFF;
    font-family: "Plus Jakarta Sans";
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: -1.6px;
  }
  .job-page-card-details {
    color: rgba(255, 255, 255, 0.80);
    font-family: "Plus Jakarta Sans";
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 163%;
  }


/* Responsive Adjustments */
@media (max-width: 768px) {
    
    .values-wrp2{
        width: 80%;
    }
    .values-h2{
        font-size: 40px;
    }
    .job-page-h2{
        font-size: 40px;
    }
    .job-page-card{
        width: 80%;
    }
    .contact-section-wrapper{
        flex-direction: column;
        gap: 3rem;

    }
    .contact-form-section{
        width: 90%;
    }
}

@media (max-width: 480px) {
    .values-wrp2{
        width: 80%;
    }
    .values-h2{
        font-size: 40px;
    }
    .job-page-h2{
        font-size: 40px;
    }
    .job-page-card{
        width: 80%;
    }
}





/* Container and Wrapper */
.franchise-page-container {
    display: flex;
    width: 100vw;
    align-items: center;
    justify-content: center;
  }
  
  .franchise-page-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
    gap: 4rem;
    margin: 4rem 0;
  }
  
  /* Rows */
  .franchise-page-upper-row,
  .franchise-page-lower-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
  }
  
  .franchise-page-upper-row {
    height: 80vh;
  }
  
  /* Columns */
  .franchise-column-left,
  .franchise-column-right,
  .franchise-upper-column-left,
  .franchise-upper-column-right {
    display: flex;
    flex-direction: column;
    width: 45%;
    gap: 2rem;
  }
  
  .franchise-column-left,
  .franchise-upper-column-right {
    align-items: flex-start;
    justify-content: space-between;
    height: 100%;
  }
  
  .franchise-upper-column-left {
    position: relative;
    align-items: flex-end;
  }
  
  /* Images */
  .franchise-upper-image1 {
    width: 70%;
    height: 80vh;
    object-fit: cover;
    border-radius: 26px;
  }
  
  .franchise-upper-image2 {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 26px;
  }
  
  /* Float Cards */
  .franchise-float-card1,
  .franchise-float-card2 {
    position: absolute;
    left: 10%;
    background: #f37022;
    border-radius: 23px;
    height: 8rem;
    width: 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
  }
  
  .franchise-float-card1 {
    top: 20%;
  }
  
  .franchise-float-card2 {
    top: 60%;
  }
  
  .franchise-float-card1 p,
  .franchise-float-card2 p {
    color: rgba(11, 0, 0, 0.6);
    font-family: "Plus Jakarta Sans";
    font-size: 14px;
    font-weight: 500;
  }
  
  /* Step Cards */
  .franchise-step-card-container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    align-items: flex-start;
    justify-content: space-between;
    row-gap: 2rem;
  }
  
  .franchise-step-card {
    width: 45%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  /* Typography */
  .franchise-page-h2 {
    color: #fff;
    font-family: Sanchez;
    font-size: 60px;
    font-weight: 400;
    letter-spacing: 2px;
  }
  
  .franchise-page-p {
    color: rgba(255, 255, 255, 0.8);
    font-family: "Plus Jakarta Sans";
    font-size: 16px;
    font-weight: 500;
    line-height: 163%;
  }
  
  .franchise-step-card-h3 {
    color: #ff8c4b;
    font-family: Syne;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -1px;
  }
  
  .franchise-step-card-p {
    color: rgba(255, 255, 255, 0.8);
    font-family: "Plus Jakarta Sans";
    font-size: 12px;
    font-weight: 500;
    line-height: 163%;
  }



/* Responsive Adjustments */
@media (max-width: 768px) {
    .franchise-page-upper-row{
        flex-direction: column;
        height: 100%;
        align-items: center;
    }
    .franchise-page-upper-row, .franchise-page-lower-row{
        flex-direction: column;
        gap: 2rem;
    }
    .franchise-upper-column-left{
        width: 90%;
    }
    .franchise-upper-column-right{
        width: 90%;
    }
    .franchise-float-card1,.franchise-float-card2{
        display: none;
    }
    .franchise-upper-image1{
        width: 100%;
        height: 90%;
    }
    .franchise-column-left{
        width: 90%;
    }
    .franchise-column-right{
        width: 90%;
    }
    .franchise-page-lower-row{
        align-items: center;
    }
    .franchise-page-h2{
        font-size: 40px;
    }

}

@media (max-width: 480px) {
    .franchise-page-upper-row{
        flex-direction: column;
        height: 100%;
        align-items: center;
    }
    .franchise-page-upper-row, .franchise-page-lower-row{
        flex-direction: column;
        gap: 2rem;
    }
    .franchise-upper-column-left{
        width: 90%;
    }
    .franchise-upper-column-right{
        width: 90%;
    }
    .franchise-float-card1,.franchise-float-card2{
        display: none;
    }
    .franchise-upper-image1{
        width: 100%;
        height: 90%;
    }
    .franchise-column-left{
        width: 90%;
    }
    .franchise-column-right{
        width: 90%;
    }
    .franchise-page-lower-row{
        align-items: center;
    }
    .franchise-page-h2{
        font-size: 40px;
    }

}



/* blog page list*/


.blog-list-container{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: auto;
    margin-bottom: 2rem;
}
.blog-list-wrapper{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 90%;
    height: 100%;
    row-gap: 5rem;
}
.blog-list-card{
    width: 30%;
    height: auto;
    align-self: flex-start;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    height: auto;
    transition: all .5s ease-in-out;
}
.blog-list-card-image{
    width: 100%;
    height: 50vh;
    overflow: hidden;
    object-fit: contain;
    border-radius: 7%;
}
.blog-list-card-image>img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-page-h2 {
    color: #fff;
    font-family: Sanchez;
    font-size: 60px;
    font-weight: 400;
    letter-spacing: 2px;
    margin: 3rem 0;
  }
.blog-list-title-container{
    width: 100vw;
    height: auto;
    align-items: center;
    justify-content: center;
    display: flex;
}
.blog-list-card:hover{
    transform: scale(1.03);
}
.mzx9-contact-shell {
    width: 100%;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #000;
    color: #fff;
    overflow: hidden;
}

.mzx9-left-panel {
    padding: 90px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid rgba(243, 112, 34, .15);
}

.mzx9-tagline {
    font-size: 13px;
    letter-spacing: 4px;
    color: #F37022;
    margin-bottom: 25px;
    font-family: "Plus Jakarta Sans", sans-serif;
}

.mzx9-main-title {
    font-size: 64px;
    line-height: 1;
    margin-bottom: 25px;
    font-family: "Sanchez", serif;
    font-weight: 400;
    color: #fff;
}

.mzx9-main-title span {
    color: #F37022;
}

.mzx9-description {
    max-width: 520px;
    color: rgba(255, 255, 255, .8);
    line-height: 1.8;
    margin-bottom: 50px;
    font-family: "Plus Jakarta Sans", sans-serif;
}

.mzx9-city-stack {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.mzx9-city-row {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    transition: .4s ease;
}

.mzx9-city-row:hover {
    transform: translateX(10px);
}

.mzx9-orange-bar {
    width: 3px;
    height: 55px;
    background: #F37022;
    border-radius: 10px;
    flex-shrink: 0;
}

.mzx9-city-row h3 {
    font-size: 24px;
    margin-bottom: 6px;
    font-family: "Sanchez", serif;
    font-weight: 400;
    color: #fff;
}

.mzx9-city-row p {
    color: rgba(255, 255, 255, .65);
    font-family: "Plus Jakarta Sans", sans-serif;
    line-height: 1.6;
}

.mzx9-direct-links {
    margin-top: 45px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mzx9-direct-links a {
    color: #fff;
    text-decoration: none;
    opacity: .85;
    transition: .3s;
    font-family: "Plus Jakarta Sans", sans-serif;
}

.mzx9-direct-links a:hover {
    color: #F37022;
}

.mzx9-right-panel {
    padding: 90px 8%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.mzx9-right-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(243, 112, 34, .12), transparent 40%);
    pointer-events: none;
}

.mzx9-form-box {
    width: 100%;
    max-width: 560px;
    background: #0b0b0b;
    border: 1px solid rgba(255, 255, 255, .06);
    padding: 50px;
    border-radius: 24px;
    position: relative;
    z-index: 2;
}

.mzx9-form-box h3 {
    font-size: 38px;
    margin-bottom: 30px;
    font-family: "Sanchez", serif;
    font-weight: 400;
    color: #fff;
}

.mzx9-grid-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.mzx9-form-box input,
.mzx9-form-box textarea {
    width: 100%;
    box-sizing: border-box;
    background: #111;
    border: 1px solid rgba(255, 255, 255, .08);
    padding: 18px 20px;
    color: #fff;
    margin-bottom: 15px;
    border-radius: 14px;
    outline: none;
    font-family: "Plus Jakarta Sans", sans-serif;
    transition: .3s;
}

.mzx9-form-box input::placeholder,
.mzx9-form-box textarea::placeholder {
    color: rgba(255, 255, 255, .45);
}

.mzx9-form-box input:focus,
.mzx9-form-box textarea:focus {
    border-color: #F37022;
}

.mzx9-form-box button {
    width: 100%;
    padding: 18px;
    border: none;
    border-radius: 14px;
    background: #F37022;
    color: #000;
    font-weight: 700;
    cursor: pointer;
    transition: .4s ease;
    font-family: "Plus Jakarta Sans", sans-serif;
}

.mzx9-form-box button:hover {
    transform: translateY(-3px);
    background: #ff8a45;
}

@media(max-width:991px) {
    .mzx9-contact-shell {
        grid-template-columns: 1fr;
    }

    .mzx9-left-panel {
        border-right: none;
        border-bottom: 1px solid rgba(243, 112, 34, .15);
    }

    .mzx9-main-title {
        font-size: 46px;
    }

    .mzx9-grid-two {
        grid-template-columns: 1fr;
    }
}

@media(max-width:576px) {

    .mzx9-left-panel,
    .mzx9-right-panel {
        padding: 70px 25px;
    }

    .mzx9-form-box {
        padding: 30px 22px;
    }

    .mzx9-form-box h3 {
        font-size: 30px;
    }

    .mzx9-main-title {
        font-size: 38px;
    }
}
.mzx7-ritual-section{
    width:100vw;
    min-height:70vh;
    height: 100%;
    background:#000;
    position:relative;
    overflow:hidden;
    padding:50px 0;
}

.mzx7-ritual-bg-text{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    font-family:"Sanchez",serif;
    font-size:18vw;
    color:rgba(255,255,255,.025);
    letter-spacing:20px;
    pointer-events:none;
}

.mzx7-ritual-wrapper{
    width:90%;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1.15fr;
    gap:70px;
    align-items:center;
    position:relative;
    z-index:2;
}

.mzx7-ritual-tag{
    color:#F37022;
    font-family:"Plus Jakarta Sans",sans-serif;
    font-size:13px;
    letter-spacing:5px;
    margin-bottom:25px;
    display:block;
}

.mzx7-ritual-left h2{
    font-family:"Sanchez",serif;
    font-size:64px;
    line-height:1.05;
    font-weight:400;
    color:#fff;
    margin-bottom:35px;
}

.mzx7-ritual-left h2 span{
    color:#F37022;
}

.mzx7-ritual-left p{
    max-width:560px;
    color:rgba(255,255,255,.75);
    font-family:"Plus Jakarta Sans",sans-serif;
    font-size:17px;
    line-height:1.8;
    margin-bottom:22px;
    text-align:left;
}

.mzx7-ritual-right{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:22px;
    position:relative;
}

.mzx7-ritual-right::before{
    content:"";
    position:absolute;
    width:260px;
    height:260px;
    border-radius:50%;
    background:rgba(243,112,34,.12);
    filter:blur(70px);
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
}

.mzx7-ritual-card{
    min-height:230px;
    background:linear-gradient(145deg,#111,#070707);
    border:1px solid rgba(255,255,255,.07);
    border-radius:28px;
    padding:34px;
    position:relative;
    z-index:2;
    overflow:hidden;
    transition:.45s ease;
}

.mzx7-ritual-card::after{
    content:"";
    position:absolute;
    inset:auto 0 0 0;
    height:3px;
    background:#F37022;
    transform:scaleX(0);
    transform-origin:left;
    transition:.45s ease;
}

.mzx7-ritual-card:hover{
    transform:translateY(-12px);
    border-color:rgba(243,112,34,.45);
    box-shadow:0 25px 60px rgba(243,112,34,.12);
}

.mzx7-ritual-card:hover::after{
    transform:scaleX(1);
}

.mzx7-ritual-card span{
    color:#F37022;
    font-family:"Sanchez",serif;
    font-size:42px;
    opacity:.85;
}

.mzx7-ritual-card h3{
    color:#fff;
    font-family:"Sanchez",serif;
    font-size:28px;
    font-weight:400;
    margin:35px 0 12px;
}

.mzx7-ritual-card p{
    color:rgba(255,255,255,.65);
    font-family:"Plus Jakarta Sans",sans-serif;
    line-height:1.6;
    text-align:left;
}

.mzx7-card-2,
.mzx7-card-4{
    transform:translateY(45px);
}

.mzx7-card-2:hover,
.mzx7-card-4:hover{
    transform:translateY(30px);
}

@media(max-width:991px){
    .mzx7-ritual-wrapper{
        grid-template-columns:1fr;
    }

    .mzx7-ritual-left h2{
        font-size:48px;
    }

    .mzx7-card-2,
    .mzx7-card-4{
        transform:translateY(0);
    }
}

@media(max-width:600px){
    .mzx7-ritual-section{
        padding:80px 0;
    }

    .mzx7-ritual-right{
        grid-template-columns:1fr;
    }

    .mzx7-ritual-left h2{
        font-size:38px;
    }

    .mzx7-ritual-card{
        min-height:auto;
    }
}
.mzx8-locations-shell{
    width:100vw;
    background:#000;
    padding:120px 0;
    position:relative;
    overflow:hidden;
}

.mzx8-locations-shell::before{
    content:"";
    position:absolute;
    top:-200px;
    right:-100px;
    width:420px;
    height:420px;
    border-radius:50%;
    background:rgba(243,112,34,.08);
    filter:blur(90px);
}

.mzx8-heading-zone{
    width:90%;
    max-width:1200px;
    margin:auto;
    margin-bottom:70px;
    text-align:center;
    position:relative;
    z-index:2;
}

.mzx8-mini-tag{
    color:#F37022;
    font-size:13px;
    letter-spacing:5px;
    font-family:"Plus Jakarta Sans",sans-serif;
    display:block;
    margin-bottom:20px;
}

.mzx8-heading-zone h2{
    font-size:64px;
    line-height:1.05;
    font-weight:400;
    font-family:"Sanchez",serif;
    color:#fff;
    margin-bottom:20px;
}

.mzx8-heading-zone h2 span{
    color:#F37022;
}

.mzx8-heading-zone p{
    max-width:700px;
    margin:auto;
    color:rgba(255,255,255,.72);
    font-size:18px;
    line-height:1.8;
    font-family:"Plus Jakarta Sans",sans-serif;
    text-align:center;
}

.mzx8-grid-wrap{
    width:90%;
    max-width:1300px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
    position:relative;
    z-index:2;
}

.mzx8-place-card{
    background:#0b0b0b;
    border:1px solid rgba(255,255,255,.06);
    border-radius:30px;
    overflow:hidden;
    text-decoration:none;
    transition:.45s ease;
    display:block;
}

.mzx8-place-card:hover{
    transform:translateY(-14px);
    border-color:rgba(243,112,34,.35);
    box-shadow:0 30px 60px rgba(243,112,34,.12);
}

.mzx8-image-mask{
    height:320px;
    overflow:hidden;
    position:relative;
}

.mzx8-image-mask::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(to top, rgba(0,0,0,.55), transparent 40%);
}

.mzx8-image-mask img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .8s ease;
}

.mzx8-place-card:hover .mzx8-image-mask img{
    transform:scale(1.08);
}

.mzx8-card-content{
    padding:34px;
}

.mzx8-city-index{
    color:#F37022;
    font-family:"Sanchez",serif;
    font-size:34px;
    opacity:.9;
}

.mzx8-card-content h3{
    color:#fff;
    font-size:30px;
    font-weight:400;
    line-height:1.2;
    margin:18px 0 14px;
    font-family:"Sanchez",serif;
}

.mzx8-card-content p{
    color:rgba(255,255,255,.66);
    font-size:15px;
    line-height:1.75;
    font-family:"Plus Jakarta Sans",sans-serif;
    text-align:left;
    min-height:88px;
}

.mzx8-link-line{
    margin-top:24px;
    color:#fff;
    font-size:14px;
    letter-spacing:2px;
    text-transform:uppercase;
    font-family:"Plus Jakarta Sans",sans-serif;
    position:relative;
    width:max-content;
}

.mzx8-link-line::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:100%;
    height:2px;
    background:#F37022;
    transform:scaleX(.35);
    transform-origin:left;
    transition:.4s ease;
}

.mzx8-place-card:hover .mzx8-link-line::after{
    transform:scaleX(1);
}

@media(max-width:1100px){
    .mzx8-grid-wrap{
        grid-template-columns:1fr 1fr;
    }

    .mzx8-heading-zone h2{
        font-size:50px;
    }
}

@media(max-width:768px){
    .mzx8-grid-wrap{
        grid-template-columns:1fr;
    }

    .mzx8-heading-zone h2{
        font-size:40px;
    }

    .mzx8-locations-shell{
        padding:90px 0;
    }

    .mzx8-image-mask{
        height:280px;
    }
}

@media(max-width:480px){
    .mzx8-card-content{
        padding:26px;
    }

    .mzx8-card-content h3{
        font-size:26px;
    }

    .mzx8-heading-zone h2{
        font-size:34px;
    }
}
.mzc18-contact-editorial{
    width:100vw;
    background:#000;
    color:#fff;
    padding:120px 0;
    position:relative;
    overflow:hidden;
}

.mzc18-contact-editorial::before{
    content:"";
    position:absolute;
    right:-180px;
    top:10%;
    width:420px;
    height:420px;
    background:rgba(243,112,34,.09);
    filter:blur(100px);
    border-radius:50%;
}

.mzc18-wrap{
    width:88%;
    max-width:1250px;
    margin:auto;
    position:relative;
    z-index:2;
}

.mzc18-head{
    max-width:780px;
    margin-bottom:80px;
}

.mzc18-head span{
    color:#F37022;
    font-family:"Plus Jakarta Sans",sans-serif;
    font-size:13px;
    letter-spacing:5px;
}

.mzc18-head h2{
    color:#fff;
    font-family:"Sanchez",serif;
    font-size:72px;
    line-height:1;
    font-weight:400;
    margin:20px 0;
}

.mzc18-head p{
    color:rgba(255,255,255,.68);
    font-family:"Plus Jakarta Sans",sans-serif;
    font-size:18px;
    line-height:1.7;
    text-align:left;
}

.mzc18-main{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:90px;
    border-top:1px solid rgba(255,255,255,.12);
    padding-top:70px;
}

.mzc18-left{
    border-right:1px solid rgba(255,255,255,.1);
    padding-right:70px;
}

.mzc18-left h3,
.mzc18-right h3{
    color:#fff;
    font-family:"Sanchez",serif;
    font-size:38px;
    font-weight:400;
    margin-bottom:35px;
}

.mzc18-location{
    display:grid;
    grid-template-columns:70px 1fr;
    gap:20px;
    padding:28px 0;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.mzc18-location span{
    color:#F37022;
    font-family:"Sanchez",serif;
    font-size:36px;
}

.mzc18-location h4{
    color:#fff;
    font-family:"Sanchez",serif;
    font-size:24px;
    font-weight:400;
    margin-bottom:8px;
}

.mzc18-location p{
    color:rgba(255,255,255,.6);
    font-family:"Plus Jakarta Sans",sans-serif;
    text-align:left;
}

.mzc18-contact-line{
    margin-top:40px;
    display:flex;
    flex-direction:column;
    gap:12px;
}

.mzc18-contact-line a{
    color:#fff;
    text-decoration:none;
    font-family:"Plus Jakarta Sans",sans-serif;
    transition:.3s;
}

.mzc18-contact-line a:hover{
    color:#F37022;
}

.mzc18-field{
    margin-bottom:26px;
}

.mzc18-field label{
    display:block;
    color:rgba(255,255,255,.85);
    font-family:"Plus Jakarta Sans",sans-serif;
    font-size:14px;
    margin-bottom:10px;
}

.mzc18-field input,
.mzc18-field textarea{
    width:100%;
    background:transparent;
    border:0;
    border-bottom:1px solid rgba(255,255,255,.22);
    color:#fff;
    padding:16px 0;
    outline:none;
    font-family:"Plus Jakarta Sans",sans-serif;
    font-size:16px;
    resize:none;
    transition:.3s;
}

.mzc18-field input:focus,
.mzc18-field textarea:focus{
    border-bottom-color:#F37022;
}

.mzc18-field input::placeholder,
.mzc18-field textarea::placeholder{
    color:rgba(255,255,255,.35);
}

.mzc18-right button{
    margin-top:20px;
    background:#F37022;
    color:#000;
    border:none;
    border-radius:0;
    padding:17px 44px;
    font-family:"Plus Jakarta Sans",sans-serif;
    font-weight:800;
    cursor:pointer;
    transition:.35s ease;
}

.mzc18-right button:hover{
    background:#ff8a45;
    transform:translateY(-3px);
}

@media(max-width:991px){
    .mzc18-main{
        grid-template-columns:1fr;
        gap:60px;
    }

    .mzc18-left{
        border-right:none;
        padding-right:0;
    }

    .mzc18-head h2{
        font-size:50px;
    }
}

@media(max-width:600px){
    .mzc18-contact-editorial{
        padding:80px 0;
    }

    .mzc18-head h2{
        font-size:38px;
    }

    .mzc18-location{
        grid-template-columns:50px 1fr;
    }
}
.mzfx21-footer{
    width:100vw;
    background:#000;
    color:#fff;
    position:relative;
    overflow:hidden;
    padding-top:70px;
}

.mzfx21-footer::before{
    content:"";
    position:absolute;
    top:-150px;
    right:-120px;
    width:380px;
    height:380px;
    border-radius:50%;
    background:rgba(243,112,34,.08);
    filter:blur(95px);
}

.mzfx21-topline{
    width:90%;
    max-width:1320px;
    margin:auto;
    height:1px;
    background:linear-gradient(to right,
    transparent,
    rgba(243,112,34,.55),
    transparent);
}

.mzfx21-wrap{
    width:90%;
    max-width:1320px;
    margin:auto;
    padding:70px 0 55px;
    display:grid;
    grid-template-columns:1.1fr 1.4fr;
    gap:80px;
    position:relative;
    z-index:2;
}

.mzfx21-brand{
    padding-right:30px;
}

.mzfx21-mini{
    color:#F37022;
    font-size:13px;
    letter-spacing:5px;
    font-family:"Plus Jakarta Sans",sans-serif;
    display:block;
    margin-bottom:22px;
}

.mzfx21-brand h2{
    color:#fff;
    font-family:"Sanchez",serif;
    font-size:62px;
    line-height:1.02;
    font-weight:400;
    margin-bottom:28px;
}

.mzfx21-brand h2 span{
    color:#F37022;
}
.h2-span{
    color:#ffffff!important;

}

.mzfx21-brand p{
    max-width:520px;
    color:rgba(255,255,255,.68);
    font-size:16px;
    line-height:1.85;
    font-family:"Plus Jakarta Sans",sans-serif;
    text-align:left;
}

.mzfx21-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:45px;
}

.mzfx21-col h3{
    color:#fff;
    font-family:"Sanchez",serif;
    font-size:28px;
    font-weight:400;
    margin-bottom:24px;
}

.mzfx21-col a{
    display:block;
    color:rgba(255,255,255,.68);
    text-decoration:none;
    font-family:"Plus Jakarta Sans",sans-serif;
    font-size:15px;
    line-height:1.8;
    margin-bottom:12px;
    transition:.3s ease;
    width:max-content;
    position:relative;
}

.mzfx21-col a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-4px;
    width:0%;
    height:1px;
    background:#F37022;
    transition:.3s ease;
}

.mzfx21-col a:hover{
    color:#fff;
}

.mzfx21-col a:hover::after{
    width:100%;
}

.mzfx21-bottom{
    border-top:1px solid rgba(255,255,255,.07);
    padding:24px 0;
    width:90%;
    max-width:1320px;
    margin:auto;
    position:relative;
    z-index:2;
}

.mzfx21-bottom p{
    color:rgba(255,255,255,.52);
    font-size:14px;
    font-family:"Plus Jakarta Sans",sans-serif;
    text-align:left;
}

/* Tablet */
@media(max-width:1100px){
    .mzfx21-wrap{
        grid-template-columns:1fr;
        gap:60px;
    }

    .mzfx21-grid{
        grid-template-columns:repeat(2,1fr);
        gap:40px;
    }

    .mzfx21-brand h2{
        font-size:48px;
    }
}

/* Mobile */
@media(max-width:700px){
    .mzfx21-footer{
        padding-top:50px;
    }

    .mzfx21-wrap{
        padding:50px 0 40px;
    }

    .mzfx21-grid{
        grid-template-columns:1fr;
        gap:32px;
    }

    .mzfx21-brand h2{
        font-size:38px;
    }

    .mzfx21-col h3{
        font-size:24px;
        margin-bottom:18px;
    }

    .mzfx21-bottom p{
        text-align:center;
        line-height:1.7;
    }
}
.mzb41-book-page{
    width:100vw;
    min-height:100vh;
    background:#000;
    color:#fff;
    padding:130px 0;
    position:relative;
    overflow:hidden;
}

.mzb41-book-page::before{
    content:"";
    position:absolute;
    top:-180px;
    right:-120px;
    width:430px;
    height:430px;
    background:rgba(243,112,34,.11);
    filter:blur(100px);
    border-radius:50%;
}

.mzb41-bg-word{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    font-family:"Sanchez",serif;
    font-size:20vw;
    letter-spacing:30px;
    color:rgba(255,255,255,.035);
    pointer-events:none;
}

.mzb41-wrap{
    width:88%;
    max-width:1250px;
    margin:auto;
    position:relative;
    z-index:2;
}

.mzb41-head{
    max-width:820px;
    margin-bottom:80px;
}

.mzb41-head span{
    color:#F37022;
    font-family:"Plus Jakarta Sans",sans-serif;
    font-size:13px;
    letter-spacing:5px;
}

.mzb41-head h1{
    color:#fff;
    font-family:"Sanchez",serif;
    font-size:76px;
    line-height:1;
    font-weight:400;
    margin:22px 0;
}

.h1-span{
    color:#fff!important;
    font-family:"Sanchez",serif!important;
    font-size:76px!important;
    line-height:1!important;
    font-weight:400!important;
    margin:22px 0!important;
}
.mzb41-head h1 em{
    color:#F37022;
    font-style:normal;
}

.mzb41-head p{
    color:rgba(255,255,255,.68);
    font-family:"Plus Jakarta Sans",sans-serif;
    font-size:18px;
    line-height:1.7;
    text-align:left;
}

.mzb41-location-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    border-top:1px solid rgba(255,255,255,.12);
    border-bottom:1px solid rgba(255,255,255,.12);
}

.mzb41-book-card{
    min-height:420px;
    padding:46px 36px;
    color:#fff;
    text-decoration:none;
    position:relative;
    border-right:1px solid rgba(255,255,255,.12);
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    transition:.45s ease;
}

.mzb41-book-card:last-child{
    border-right:none;
}

.mzb41-book-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(145deg, rgba(243,112,34,.12), transparent 55%);
    opacity:0;
    transition:.45s ease;
}

.mzb41-book-card:hover::before{
    opacity:1;
}

.mzb41-book-card:hover{
    transform:translateY(-10px);
}

.mzb41-number{
    color:#F37022;
    font-family:"Sanchez",serif;
    font-size:42px;
}

.mzb41-book-card h2{
    color:#fff;
    font-family:"Sanchez",serif;
    font-size:42px;
    font-weight:400;
    margin-top:auto;
}

.mzb41-book-card p{
    color:rgba(255,255,255,.62);
    font-family:"Plus Jakarta Sans",sans-serif;
    line-height:1.7;
    text-align:left;
    margin:18px 0 34px;
}

.mzb41-cta{
    width:max-content;
    color:#fff;
    font-family:"Plus Jakarta Sans",sans-serif;
    font-size:14px;
    letter-spacing:2px;
    text-transform:uppercase;
    position:relative;
}

.mzb41-cta::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:100%;
    height:2px;
    background:#F37022;
    transform:scaleX(.35);
    transform-origin:left;
    transition:.35s ease;
}

.mzb41-book-card:hover .mzb41-cta::after{
    transform:scaleX(1);
}

@media(max-width:991px){
    .mzb41-head h1{
        font-size:52px;
    }

    .mzb41-location-grid{
        grid-template-columns:1fr;
    }

    .mzb41-book-card{
        border-right:none;
        border-bottom:1px solid rgba(255,255,255,.12);
        min-height:320px;
    }

    .mzb41-book-card:last-child{
        border-bottom:none;
    }
}

@media(max-width:600px){
    .mzb41-book-page{
        padding:90px 0;
    }

    .mzb41-head h1{
        font-size:40px;
    }

    .mzb41-book-card{
        padding:36px 24px;
    }
}

.mzl-lang-switch{
    display:flex;
    align-items:center;
    gap:6px;
    border:1px solid rgba(255,255,255,.18);
    border-radius:30px;
    padding:5px;
}

.mzl-lang-btn{
    background:transparent;
    color:#fff;
    border:none;
    padding:7px 11px;
    border-radius:20px;
    font-size:12px;
    font-family:"Plus Jakarta Sans",sans-serif;
    cursor:pointer;
}

.mzl-lang-btn.active{
    background:#F37022;
    color:#000;
}

@media(max-width:768px){
    .mzl-lang-switch{
        position:relative;
        z-index:1002;
    }
}