/* 
<!-- --- ===== --- EYTHO 2026 --- ===== --- -->
<!-- Name    : I Putu William Vanther       -->
<!-- School  : SMK TI Bali Global Singaraja -->
<!-- --- ===== --- ========== --- ===== --- -->
*/

/* === Font === */
@import url('https://api.fontshare.com/v2/css?f[]=satoshi@300,301,400,401,500,501,700,701,900,901&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* === Root === */
/* :root */
:root {
    /* Color - Basic */
    --clr-red: #D92526;
    --clr-red-dark: #731414;
    --clr-black-font: #222222;
    --clr-orange-gold: #FF8300;
    --clr-white-prim: #FFFFFF;
    --clr-white-secn: #F5F5F5;
    --clr-gray: #D9D9D9;
    --clr-trans-gray: #D9D9D999;
    
    /* Color - Gradient */
    --clr-grad-red-vertical: linear-gradient(to bottom, var(--clr-red), var(--clr-red-dark));
    --clr-grad-red-horizontal: linear-gradient(to right, var(--clr-red), var(--clr-red-dark));

    /* Color - Shadow */
    --clr-thin-shadow : rgba(0, 0, 0, 10%);
    --clr-weight-shadow : rgba(0, 0, 0, 15%);

    /* Font Weight */
    --fw-light: 300;
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-bold: 700;
    --fw-black: 900;
}

/* All */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    scroll-behavior: smooth;
    font-family: 'Satoshi';
    color: var(--clr-black-font);

    scrollbar-width: bold;
    scrollbar-color: var(--clr-red) transparent;

    transition: all 0.4s ease;
}

/* Root Page */
body {
    max-width: 100vw;
    height: max-content;
    background: var(--clr-white-secn);
}

.txt-sect-title {
    font-weight: var(--fw-black);
    font-size: 20px;

    background: var(--clr-grad-red-vertical);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.txt-main-title {
    font-weight: var(--fw-black);
    font-size: 56px;
    margin-left: -4px;
}
.txt-paraf {
    font-weight: var(--fw-medium);
    font-size: 18px;
    line-height: 1.5;
    margin-top: 5px;
    opacity: 0.9;
}

/* Selection */
::selection {
    background: var(--clr-orange-gold);
    color: var(--clr-white-prim);
}

/* === Navbar Style === */
nav {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;

    display: flex;
    justify-content: center;
    transition: all 1 ease;
}

.parent-nav {
    width: 100%;
    background: transparent;
    transition: all 0.5s ease;
    display: flex;
    justify-content: center;
}

.content-nav {
    width: 85%;
    padding: 34px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    color: var(--clr-red);
}

.content-nav img {
    width: 200px;
    height: auto;
    cursor: pointer;
}

/* menu */
.content-nav span ul {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

.content-nav span ul li a {
    font-size: 18px;
    font-weight: var(--fw-bold);
    color: var(--clr-red);
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    text-align: center;
}

.content-nav span ul li a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2.5px;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    background: currentColor;
    transition: width 0.3s ease;
}

.content-nav span ul li a:hover::after {
    width: 100%;
}

/* right side */
.content-nav span {
    display: flex;
    align-items: center;
    gap: 60px;
}

.content-nav span > a {
    display: flex;
    align-items: center;
    font-weight: var(--fw-bold);
    color: var(--clr-white-prim);
    padding: 12px 45px;
    border-radius: 5px;
    background: var(--clr-grad-red-vertical);
}

.content-nav span > a i {
    font-size: 18px;
    font-weight: var(--fw-bold);
    color: var(--clr-black-font);
    transition: all 0.3s ease;
}

.content-nav span > a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 4px var(--clr-weight-shadow);
}

.content-nav span > a:active {
    transform: translateY(3px);
    box-shadow: none;
}

/* event navbar scrolled */
.parent-nav.scrolled {
    background: var(--clr-white-prim);
    width: 92%;
    margin: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px var(--clr-thin-shadow);
}

.parent-nav.scrolled .content-nav {
    width: 100%;
    padding: 20px 52px;
}

/* hide show nav with button */
nav.hide {
    transform: translateY(-100%);
    transition: transform 0.4s ease;
}

nav.show {
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.nav-toggle-btn {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translate(-50%, -5px);
    z-index: 999;

    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 32px;
    border-radius: 5px;
    border: none;
    background: var(--clr-white-prim);
    box-shadow: 0 2px 5px var(--clr-weight-shadow);
    color: var(--clr-red);
    font-size: 16px;
    cursor: pointer;

    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
}

.nav-toggle-btn i {
    color: var(--clr-red);
    transition: transform 0.2s ease;
}

.nav-toggle-btn.show {
    opacity: 1;
    transform: translate(-50%, 0);
    pointer-events: auto;
    animation: floatBtnToggleNav 2.5s ease-in-out infinite;
}

.nav-toggle-btn:hover {
    opacity: 0.75;
}

.nav-toggle-btn:active {
    transform: translate(-50%, 0);
    opacity: 0;
}

@keyframes floatBtnToggleNav {
    0%, 100% {
        transform: translate(-50%, 0);
    }
    50% {
        transform: translate(-50%, -6px);
    }
}

/* responsive */
.burger-menu {
    display: none;
    font-size: 24px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.burger-menu i {
    color: var(--clr-red) !important;
}

.burger-menu.active i {
    transform: rotate(90deg);
}

/* nav dropdown (selection) */
.nav-links li {
    position: relative;
}

.nav-links li .dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 10px);

    min-width: 220px;
    background: var(--clr-white-prim);

    display: flex;
    flex-direction: column;
    gap: 0;

    padding: 10px 0;
    margin-top: 8px;

    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,.12);

    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
    z-index: 999;
}

.nav-links li:hover > .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.nav-links li .dropdown li {
    width: 100%;
    padding: 0 10px;
}

.nav-links li .dropdown li a {
    display: block;
    width: 100%;

    padding: 12px 22px;
    font-size: 18px;
    font-weight: var(--fw-bold);
    border-radius: 5px;

    color: var(--clr-red);
    text-align: left;
    white-space: nowrap;

    transition: background .25s ease;
}

.nav-links li .dropdown li a:hover {
    background: var(--clr-red);
    color: var(--clr-white-prim);
}

.nav-links li .dropdown li a::after {
    display: none;
}

.nav-links li > a i {
    font-size: 12px;
    margin-left: 5px;
    transition: transform .3s ease;
    color: var(--clr-red);
}

.nav-links li:hover > a i {
    transform: rotate(180deg);
}

/* sub dropdown */
.nav-links li .dropdown li.has-sub-dropdown {
    position: relative;
}

.nav-links li .dropdown li .sub-dropdown {
    position: absolute;
    top: 0;
    left: 100%;
    margin-left: 8px;

    min-width: 220px;
    background: var(--clr-white-prim);
    border-radius: 8px;
    padding: 10px 0;

    display: flex;
    flex-direction: column;
    gap: 0;

    box-shadow: 0 8px 20px rgba(0,0,0,.12);

    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all .3s ease;
    z-index: 1000;
}

.nav-links li .dropdown li.has-sub-dropdown:hover > .sub-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.nav-links li .dropdown li.has-sub-dropdown > a i {
    font-size: 12px;
    margin-left: auto;
    transition: transform .3s ease;
    color: var(--clr-red);
}

.nav-links li .dropdown li.has-sub-dropdown:hover > a i {
    transform: rotate(90deg);
    color: var(--clr-white-prim);
}

@media (max-width: 1200px) {
    .content-nav span ul {
        gap: 5px;
    }

    .nav-links {
        position: absolute;
        top: 120px;
        left: 0;
        right: 0;

        flex-direction: column;
        gap: 10px;
        background: var(--clr-white-prim);
        border-radius: 10px;
        margin: 0 4vw;
        padding: 20px 15px;

        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: all .7s ease;
        z-index: 1000;
        transform: translateX(1000px);
    }

    .nav-links.show {
        max-height: max-content;
        opacity: 1;
        transform: translateX(0);
    }

    .content-nav span > a {
        display: none;
    }

    nav.hide .nav-links,
    nav.hide .nav-links.show {
        transform: translateX(1000px) !important;
        opacity: 0 !important;
        max-height: 0 !important;
    }

    .nav-links li {
        background: rgba(0, 0, 0, 0.05);
        border-radius: 10px;
        width: 100%;
    }

    .nav-links li a {
        color: var(--clr-black-font) !important;
        font-size: 16px;
        padding: 10px 20px;
        display: block;
        width: 100%;
    }

    .nav-links li a.active,
    .nav-links li a:hover {
        background: var(--clr-red);
        color: var(--clr-white-prim) !important;
        font-weight: var(--fw-black);
        letter-spacing: 0.5px;
        border-radius: 10px;
        width: 100%;
    }

    .content-nav span ul li a.active::after,
    .content-nav span ul li a:hover::after {
        display: none;
    }

    .burger-menu {
        display: block;
        color: var(--clr-red) !important;
    }

    .parent-nav.scrolled .burger-menu i {
        color: var(--clr-black-font);
    }
}

/* === Main Style === */

/* Hero Section */
.hero-sect {
    position: relative;
    width: 100%;
    height: 115vh;
    overflow: hidden;

    display: flex;
    justify-content: center;
    border-bottom: 4px solid rgba(150, 150, 150, 0.075);
}

.hero-sect::after {
    content: "";
    position: absolute;
    inset: 0;

    background: url('/images/flr-img-other-images/img-hero-section.jpg');
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;

    filter: grayscale(100%);
    z-index: 0;
}

.hero-sect::before {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0.925) 50%,
        rgba(255, 255, 255, 0) 100%
    );

    z-index: 1;
}

.hero-sect > * {
    position: relative;
    z-index: 3;
}

.hero-sect > section {
    width: 82%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 2%;
}

/* .left */
.hero-sect > section .left h2 {
    border: 2px solid var(--clr-trans-gray);
    border-radius: 100px;
    width: max-content;
    padding: 12px 40px;
}

.hero-sect > section .left h1 {
    font-family: 'Poppins';
    font-size: 70px;
    font-weight: var(--fw-black);
    padding-top: 10px;
    
    background: var(--clr-grad-red-horizontal);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-sect > section .left p {
    width: 80%;
    font-size: 20px;
    font-weight: var(--fw-bold);
    margin-top: -5px;
    padding-bottom: 30px;
}

.hero-sect > section .left section {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 25px;
}

.hero-sect > section .left section a {
    width: max-content;
    height: max-content;
    display: flex;
    align-items: center;
    font-weight: var(--fw-bold);
    font-size: 18px;
    color: var(--clr-white-prim);
    padding: 15px 55px;
    border-radius: 5px;
    background: var(--clr-grad-red-horizontal);
    letter-spacing: 1px;
}

.hero-sect > section .left section a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 4px var(--clr-weight-shadow);
}

.hero-sect > section .left section a:active {
    transform: translateY(3px);
    box-shadow: none;
}

.hero-sect > section .left section button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    font-weight: var(--fw-black);
    letter-spacing: 0.5px;
    background: var(--clr-grad-red-vertical);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.hero-sect > section .left section button:hover {
    transform: translateX(2px);
}

.hero-sect > section .left section button i {
    padding-left: 3px;
    background: var(--clr-white-prim);
    box-shadow: 2px 2px 4px var(--clr-weight-shadow);
    border-top: 2px solid var(--clr-white-secn);
    border-left: 2px solid var(--clr-white-secn);

    background: var(--clr-grad-red-vertical);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    width: 51px;
    height: 51px;
    border-radius: 100px;

    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.icon-exit {
    opacity: 0;
    transform: scale(0.6) rotate(-20deg);
}
.icon-enter {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

/* .right */
.hero-sect > section .right {
    position: relative;
    perspective: 1000px;
    margin-top: 20px;
}

.hero-sect > section .hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;

    width: 460px;
    height: 460px;
    border-radius: 50%;

    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 1) 28%,
        rgba(255, 255, 255, 0.9) 42%,
        rgba(255, 255, 255, 0.45) 60%,
        rgba(255, 255, 255, 0) 80%
    );

    transform: translate(-50%, -50%);
    filter: blur(26px);
    opacity: 0.95;

    animation: glowPulse 4s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes glowPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        filter: blur(22px);
        opacity: 0.85;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.25);
        filter: blur(36px);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        filter: blur(22px);
        opacity: 0.85;
    }
}

.hero-sect > section .right .img-breathe {
    animation: breathe 4s ease-in-out infinite;
    position: relative;
}

.hero-sect > section .right img {
    width: 400px;
    height: auto;
    position: relative;
    z-index: 1;

    animation: heroFlip 4s ease-in-out infinite;
    transform-style: preserve-3d;
}

@keyframes breathe {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-18px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes heroFlip {
    0% {
        transform: rotateY(0deg);
    }

    80% {
        transform: rotateY(0deg);
    }

    100% {
        transform: rotateY(360deg);
    }
}

/* .decor */
.hero-left-dots {
    position: absolute;
    top: 46%;
    left: -45px;
    transform: translateY(-50%);

    z-index: 2;
    pointer-events: none;
    user-select: none;
}

.hero-left-dots img {
    width: 130px;
    height: auto;
    opacity: 0.9;
    transform: rotate(90deg);
}

.hero-bottom-curve {
    position: absolute;
    bottom: -130px;
    left: 50%;
    transform: translateX(-50%);

    width: 60%;
    height: 255px;

    background: var(--clr-red);
    border-radius: 50%;
    opacity: 0.1;

    z-index: 2;
    pointer-events: none;
}

.hero-bottom-indicator {
    position: absolute;
    bottom: 140px;
    left: 50%;
    transform: translateX(-50%);

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.hero-bottom-indicator i {
    font-size: 18px;
    color: var(--clr-red-prim, #d92526);
    animation: chevronBreathe 2s ease-in-out infinite;
}

@keyframes chevronBreathe {
    0% {
        transform: translateY(0);
        opacity: 0.6;
    }
    50% {
        transform: translateY(8px);
        opacity: 1;
    }
    100% {
        transform: translateY(0);
        opacity: 0.6;
    }
}

/* Hero Popup */
.hero-video-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99;
}

.hero-video-popup.active {
    display: flex;
}

.hero-video-container {
    position: relative;
    width: 100%;
    max-width: 820px;
    margin-top: 60px;
    aspect-ratio: 16 / 9;
    border: 5px solid var(--clr-red);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video-container iframe {
    width: 100%;
    height: 100%;
}

.hero-close-btn {
    position: absolute;
    top: -15px;
    right: -15px;
    background: var(--clr-red);
    color: var(--clr-white-prim);
    border: none;
    font-size: 26px;
    font-weight: bold;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 600px) {
    .hero-sect > section,
    .hero-sect > section .left {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .hero-sect > section .left {
        text-align: center;
    }

    .hero-sect > section .left h1 {
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    .hero-sect > section .left p {
        width: 100%;
    }

    .hero-sect > section .right {
        display: none;
    }
}

/* Part Section */
/* logo */
.part-sect-logo {
    width: 100%;
    height: max-content;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 5;
}

.part-sect-logo section {
    background-color: var(--clr-white-prim);
    box-shadow: 4px 4px 10px var(--clr-thin-shadow);
    width: 82%;
    padding: 50px 0;
    border-radius: 15px;
    margin-top: -80px;
    z-index: 6;
    
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.part-sect-logo img {
    width: 350px;
    height: auto;
}

.part-sect-logo img:first-child {
    width: 200px !important;
    height: auto;
}

@media (max-width: 600px) {
    .part-sect-logo section {
        width: 100%;
        gap: 10px;
        padding: 40px 0;
        border-radius: 0;
    }

    .part-sect-logo img {
        width: 140px;
        height: auto;
    }

    .part-sect-logo img:first-child {
        width: 115px !important;
        height: auto;
    }
}

/* app */
.part-sect-app {
    width: 100%;
    height: 55vh;
    background-color: var(--clr-white-secn);

    display: flex;
    justify-content: center;
    align-items: center;
}

.part-sect-app section {
    width: 82%;
    height: auto;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.part-sect-app section img {
    width: 400px;
    height: auto;
}

.part-sect-app section img:hover {
    transform: translateY(-5px);
    filter: brightness(0.6);
}

@media (max-width: 600px) {
    .part-sect-app {
        height: max-content;
        padding: 70px 0;
    }

    .part-sect-app section {
        justify-content: center;
        gap: 20px;
    }
}

/* Founder Message Section */
.founder-mess-sect {
    width: 100%;
    height: 100vh;
    background: var(--clr-white-prim);
    box-shadow: 0 -7px 10px var(--clr-thin-shadow);

    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.founder-mess-sect > section {
    position: relative;
    height: 100%;
    width: 82%;

    display: flex;
    align-items: center;
}

.founder-mess-sect > section > section {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* .left */
.founder-mess-sect .left::before {
    content: "";
    position: absolute;

    top: 155px;
    bottom: 105px;

    left: -30px;
    right: 200px;

    background: var(--clr-white-secn);
    border-radius: 5px;

    z-index: -1;
}

.founder-mess-sect > section > section .left > h2 {
    position: relative;
    padding-left: 16px;
}

.founder-mess-sect > section > section .left > h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 3.5px;
    height: 75%;
    background: var(--clr-grad-red-vertical);
}

.founder-mess-sect > section > section .left > p {
    width: 85%;
    margin: 40px 0 50px 0;
    line-height: 1.6;
}

.founder-mess-sect > section > section .left > section {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.founder-mess-sect > section > section .left > section > a {
    display: flex;
    align-items: center;
    width: max-content;
    font-size: 18px;
    font-weight: var(--fw-bold);
    color: var(--clr-white-prim);
    padding: 15px 45px;
    border-radius: 5px;
    background: var(--clr-grad-red-vertical);
    letter-spacing: 1px;
}

.founder-mess-sect > section > section .left > section > button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    font-weight: var(--fw-black);
    letter-spacing: 0.5px;
    background: var(--clr-grad-red-vertical);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.founder-mess-sect > section > section .left > section > button:hover {
    transform: translateX(2px);
}

.founder-mess-sect > section > section .left > section > button i {
    background: var(--clr-grad-red-vertical);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    width: 51px;
    height: 51px;
    border-radius: 100px;
    margin-top: 3px;

    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.icon-exit {
    opacity: 0;
    transform: scale(0.6) rotate(-20deg);
}
.icon-enter {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

/* .right */
.founder-mess-sect > section > section .right {
    width: max-content;
    position: relative;
    margin-top: -30px;
}

.founder-photo {
    position: relative;
    width: 400px;
    margin-right: 115px;
    z-index: 2;
}

.founder-photo .circle-bg {
    position: absolute;
    top: 52%;
    left: 60%;

    width: 420px;
    height: 420px;
    border-radius: 50%;

    background: var(--clr-grad-red-horizontal);

    transform: translate(-50%, -45%);
    z-index: 0;
}

.founder-photo img {
    position: relative;
    width: 500px;
    height: auto;
    z-index: 1;
}

.founder-photo .name-card {
    position: absolute;
    bottom: -20px;
    left: 60%;

    width: 550px;
    transform: translateX(-50%);
    background: var(--clr-white-prim);

    padding: 16px 24px;
    border-radius: 50px 0 50px 0;
    text-align: center;

    border-top: 2px solid var(--clr-white-secn);
    border-left: 2px solid var(--clr-white-secn);
    box-shadow: 0 4px 10px var(--clr-thin-shadow);
    z-index: 2;
}

.founder-photo .name-card small {
    display: block;
    font-size: 17px;
    font-weight: var(--fw-bold);
    color: var(--clr-black-font);
    margin-bottom: 5px;
    opacity: 0.9;
}

.founder-photo .name-card strong {
    font-size: 18px;
    font-weight: var(--fw-black);
    background: var(--clr-grad-red-vertical);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* .decor */
.founder-dots {
    position: absolute;
    bottom: -12%;
    right: -32%;
    transform: translateY(-50%);

    z-index: 0;
    pointer-events: none;
    user-select: none;
}

.founder-dots img {
    width: 130px;
    height: auto;
    opacity: 0.9;
}

/* Message Popup */
.msg-video-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99;
}

.msg-video-popup.active {
    display: flex;
}

.msg-video-container {
    position: relative;
    width: 100%;
    max-width: 820px;
    margin-top: 60px;
    aspect-ratio: 16 / 9;
    border: 5px solid var(--clr-red);
    display: flex;
    align-items: center;
    justify-content: center;
}

.msg-video-container iframe {
    width: 100%;
    height: 100%;
}

.msg-close-btn {
    position: absolute;
    top: -15px;
    right: -15px;
    background: var(--clr-red);
    color: var(--clr-white-prim);
    border: none;
    font-size: 26px;
    font-weight: bold;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 600px) {
    .founder-mess-sect {
        height: max-content;
        padding: 70px 0;
    }

    .founder-mess-sect .left::before {
        display: none;
    }

    .founder-mess-sect > section > section {
        flex-direction: column;
    }

    .founder-mess-sect > section > section .right {
        scale: 0.8;
        margin: 0;
        margin-left: -40px;
    }
}

/* Achievement Section */
.achiev-sect {
    width: 100%;
    height: 105vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: var(--clr-white-prim);
    box-shadow: 0 7px 10px var(--clr-thin-shadow);
    position: relative;
}

/* .decor */
.achiev-left-dots {
    position: absolute;
    top: 50%;
    left: -45px;
    transform: translateY(-50%);

    z-index: 2;
    pointer-events: none;
    user-select: none;
}

.achiev-left-dots img {
    width: 130px;
    height: auto;
    opacity: 0.9;
    transform: rotate(90deg);
}

/* .top & bottom */
.achiev-sect .top {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}

.achiev-sect .top p {
    margin-top: 10px;
}

.achiev-sect .bottom {
    width: 82%;
    height: max-content;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px;
    gap: 20px;
}

.achiev-sect .bottom img {
    width: 180px;
    height: auto;
}

@media (max-width: 600px) {
    .achiev-sect {
        height: max-content;
        padding: 50px 0;
        text-align: center;
    }

    .achiev-sect h1 {
        line-height: 1.2;
    }

    .achiev-sect .bottom {
        padding: 0;
    }
}

/* Mini Slide Decoration */
.mini-slide-sect {
    width: 100%;
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mini-carousel {
    width: 80%;
    overflow: hidden;
    position: relative;
}

.mini-carousel::before,
.mini-carousel::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.mini-carousel::before {
    left: 0;
    background: linear-gradient(
        to right,
        rgba(245, 245, 245, 1) 0%,
        rgba(245, 245, 245, 0.6) 45%,
        rgba(245, 245, 245, 0) 100%
    );
}
.mini-carousel::after {
    right: 0;
    background: linear-gradient(
        to left,
        rgba(245, 245, 245, 1) 0%,
        rgba(245, 245, 245, 0.6) 45%,
        rgba(245, 245, 245, 0) 100%
    );
}

.mini-carousel .track {
    display: flex;
    gap: 15px;
    width: max-content;

    animation: scrollLoop 20s linear infinite;
    will-change: transform;
}

.mini-carousel .card {
    width: 235px;
    height: 150px;
    background: var(--clr-white-prim);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 24px;
    font-weight: bold;
    border-radius: 10px;
}

@keyframes scrollLoop {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-235px * 5 - 15px * 5));
    }
}

/* Facilities Section */
.facilites-sect {
    width: 100%;
    height: 100vh;
    background: var(--clr-white-prim);
    box-shadow: 0 -7px 10px var(--clr-thin-shadow),
                0 7px 10px var(--clr-thin-shadow);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.facilites-sect::before {
    content: "";
    position: absolute;
    top: 34%;
    left: 50%;
    transform: translateX(-50%);
    width: 35%;
    height: 51%;
    background: var(--clr-white-secn);
    border-radius: 10px;
    z-index: 0;
}

.facilites-sect > * {
    position: relative;
    z-index: 1;
}

.facilites-sect section {
    width: 82%;
}

.facilites-sect section .top {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.facilites-sect section .top p {
    width: 35%;
}

/* center */
.facilites-sect .facilities-swiper {
    width: 100%;
    height: 350px;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-top: 25px;
}

.facilites-sect .facilities-swiper .swiper-wrapper {
    height: max-content !important;
}

.facilites-sect .facilities-swiper .swiper-wrapper .swiper-slide {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;

    border: 5px solid var(--clr-white-prim);
    border-radius: 10px;
    scale: 0.8 !important;
    margin-left: -2px !important;
    box-shadow: 0 2px 10px var(--clr-thin-shadow);

    opacity: 0.75;
    filter: saturate(5%);

    cursor: grab;
    transition: all .5s ease;
    overflow: hidden;
}

.facilites-sect .facilities-swiper .swiper-wrapper .swiper-slide-active {
    opacity: 1;
    filter: saturate(100%);
    scale: 1.1 !important;
    margin: 0 20px !important;
    box-shadow: 0 5px 10px var(--clr-weight-shadow);
    opacity: 1;
    z-index: 2;
}

.facilites-sect .facilities-swiper .swiper-slide:not(.swiper-slide-active) .card-content {
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: all .4s ease;
}

.facilites-sect .facilities-swiper .swiper-slide:not(.swiper-slide-active)::after {
    opacity: 0;
    transition: all .4s ease;
}

.facilites-sect .facilities-swiper .swiper-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0),
        rgba(0, 0, 0, 0.85)
    );
    opacity: 1;
    transition: all .45s cubic-bezier(.4,0,.2,1);
    z-index: 1;
}

.facilites-sect .facilities-swiper .swiper-slide-active:hover::after {
    opacity: 1;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0),
        rgba(0, 0, 0, 1)
    );
}

.facilites-sect .facilities-swiper .swiper-slide-active::after {
    opacity: 1;
}

.facilites-sect .facilities-swiper .swiper-wrapper .swiper-slide img {
    width: auto;
    height: 100%;
}

/* .bottom */
.facilites-sect .bottom {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 35px;
}

.facilites-sect .bottom > div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.facilites-sect .bottom > div button {
    background: none;
    border: none;
}

.facilites-sect .bottom > div button i {
    font-size: 20px;
    cursor: pointer;
    color: var(--clr-black-font);
    margin-top: 1px;
    scale: 1;
    transition: all .4s ease;
}

.facilites-sect .bottom > div button i:hover {
    scale: 1.3;
    opacity: 0.8;
}

.facilites-sect .bottom > div button i:active {
    scale: 1;
    opacity: 1;
}

.facilites-sect .bottom > div .fac-pagination {
    display: flex;
    align-items: center;
}

.facilites-sect .bottom > div .fac-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: var(--clr-gray);
    opacity: 1;
    border-radius: 50px;
    transition: all .3s ease;
}

.facilites-sect .bottom > div .fac-pagination .swiper-pagination-bullet-active {
    width: 32px;
    background: var(--clr-black-font);
}

/* content */
.facilites-sect .facilities-swiper .card-content {
    position: absolute;
    bottom: 16px;
    left: 22px;
    right: 22px;
    z-index: 2;

    display: flex;
    flex-direction: column;
    gap: 6px;

    transform: translateY(0);
    transition: all .45s cubic-bezier(.4,0,.2,1);
}

.facilites-sect .facilities-swiper .card-content h3 {
    color: var(--clr-white-prim);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
    line-height: 1.3;
}

.facilites-sect .facilities-swiper .card-content .line {
    width: 32px;
    height: 2px;
    background: var(--clr-white-prim);
    opacity: .5;
}

.facilites-sect .facilities-swiper .card-content .read-more {
    display: flex;
    align-items: center;
    gap: 6px;

    font-size: 14px;
    color: var(--clr-white-prim);
    opacity: 0;

    max-height: 0;
    overflow: hidden;
    margin-top: 1px;

    transform: translateY(10px);
    transition: all .35s ease;
}

.facilites-sect .facilities-swiper .swiper-slide-active:hover .card-content {
    transform: translateY(-3px);
}

.facilites-sect .facilities-swiper .swiper-slide-active:hover .card-content .read-more {
    opacity: .8;
    max-height: 30px;
    margin-left: -4px;
    font-weight: var(--fw-medium);
    color: var(--clr-white-prim);
    transform: translateY(0);
}

.facilites-sect .facilities-swiper .swiper-slide-active:hover .card-content .read-more i {
    color: var(--clr-white-prim);
    margin-top: 3.5px;
    font-size: 10px;
}

.facilites-sect .facilities-swiper .swiper-slide-active {
    cursor: pointer !important;
}

@media (max-width: 600px) {
    .facilites-sect {
        height: max-content;
        padding: 50px;
    }

    .facilites-sect::before {
        display: none;
    }

    .facilites-sect section .top p {
        width: 100%;
    }
}

/* Programs Section */
.programs-sect {
    width: 100%;
    height: 100vh;
    background: var(--clr-white-secn);

    display: flex;
    align-items: center;
    justify-content: center;
}

.programs-sect > div:first-child {
    position: relative;
    top: -32px;
    left: -100px;
}

/* .decor */
.programs-left-dots {
    position: absolute;
    z-index: 2;
    pointer-events: none;
    user-select: none;
}

.programs-left-dots img {
    width: 110px;
    height: auto;
    opacity: 0.9;
    transform: rotate(90deg);
}

.programs-sect section {
    width: 82%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.programs-sect section > div:first-child {
    width: 100%;
}

.programs-sect section > div:first-child > h2 {
    position: relative;
    padding-left: 16px;
}

.programs-sect section > div:first-child > h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 3.5px;
    height: 70%;
    background: var(--clr-grad-red-vertical);
}

.programs-sect section > div:first-child > h1 {
    width: 90%;
    line-height: 1.25;
}

.programs-sect section > div:first-child > p {
    width: 80%;
}

.programs-sect section .programs-swiper {
    width: 53%;
    height: 700px;
    position: relative;
    overflow: hidden;
    padding: 0 10px;
}

.programs-sect section .programs-swiper::before,
.programs-sect section .programs-swiper::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 200px;
    z-index: 10;
    pointer-events: none;
}

.programs-sect section .programs-swiper::before {
    top: 0;
    background: linear-gradient(
        to bottom,
        var(--clr-white-secn) 0%,
        var(--clr-white-secn) 45%,
        rgba(245, 245, 245, 0) 100%
    );
}

.programs-sect section .programs-swiper::after {
    bottom: 0;
    background: linear-gradient(
        to top,
        var(--clr-white-secn) 0%,
        var(--clr-white-secn) 45%,
        rgba(245, 245, 245, 0) 100%
    );
}

.programs-sect section .programs-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: max-content !important;

    background: var(--clr-gray);
    border-radius: 5px;
    scale: 0.75 !important;
    filter: saturate(5%);
    opacity: 0.5;
    transition: all .5s ease !important;
    overflow: hidden;
}

.programs-sect section .programs-swiper .swiper-slide-active {
    box-shadow: 0.5px 4px 3px var(--clr-weight-shadow);
    filter: saturate(100%);
    opacity: 1;
    scale: 1 !important;
}

.programs-sect section .programs-swiper .swiper-slide img {
    width: 100%;
    height: auto;
    transition: all .5s ease !important;
}

.programs-sect section .programs-swiper .swiper-slide-active img {
    cursor: pointer;
}

.programs-sect section .programs-swiper .swiper-slide-active img:hover {
    filter: brightness(90%);
}
.programs-sect section .programs-swiper .swiper-slide-active img:active {
    filter: brightness(100%);
}

/* indicator */
.programs-vertical-nav {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 30;

    width: 32px;
    display: flex;
    justify-content: center;
}

.programs-vertical-nav .prog-nav-inner {
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center !important;
    justify-content: space-between;
}

.programs-vertical-nav .prog-nav-inner button {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.programs-vertical-nav .prog-nav-inner button i {
    font-size: 20px;
    background: var(--clr-grad-red-vertical);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all .3s ease;
}

.programs-vertical-nav .prog-nav-inner button:hover i {
    transform: scale(1.25);
    opacity: 1;
}

.programs-vertical-nav .prog-nav-inner button:active i {
    transform: scale(1);
    opacity: .8;
}

.programs-vertical-nav .prog-nav-inner .prog-pagination {
    display: flex;
    flex-direction: column;
    gap: 0;
    transform: translateY(0%) !important;
}

.programs-vertical-nav .prog-nav-inner .prog-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--clr-gray);
    opacity: 1;
    transition: all .3s ease;
}

.programs-vertical-nav .prog-nav-inner .prog-pagination .swiper-pagination-bullet-active {
    width: 10px;
    height: 30px;
    border-radius: 10px;
    background: var(--clr-grad-red-vertical);
    opacity: 1;
}

@media (max-width: 600px) {
    .programs-sect {
        height: max-content;
        padding: 70px 0;
    }

    .programs-sect section {
        flex-direction: column;
        justify-content: center;
    }

    .programs-sect section .programs-swiper {
        width: 82%;
        height: 300px;
    }
}

/* Partners Section */
.partner-sect {
    width: 100%;
    height: 100vh;
    background: var(--clr-white-prim);
    box-shadow: 0 -7px 10px var(--clr-thin-shadow);

    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-sect section {
    width: 82%;
    height: max-content;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    padding-top: 40px;
}

.partner-sect section h1 {
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
}

.partner-sect section h1::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%);
    
    width: 80px;
    height: 3px;
    background: var(--clr-trans-gray);
    border-radius: 2px;
}

/* .global & hotel partner */
.partner-hotel-swiper,
.partner-global-swiper {
    width: 100%;
    height: 250px;
    overflow: hidden;
    pointer-events: none;
}

.partner-hotel-swiper p,
.partner-global-swiper p {
    text-align: center;
    margin: 10px 0 14px 0;
    font-size: 18px;
    font-weight: var(--fw-black);
}

.partner-hotel-swiper p span,
.partner-global-swiper p span {
    font-weight: var(--fw-medium);
}

.partner-hotel-swiper > div:first-child,
.partner-global-swiper > div:first-child {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    height: max-content;
}

.partner-hotel-swiper > div:first-child button,
.partner-global-swiper > div:first-child button {
    background: none;
    border: none;
    pointer-events: auto;
    cursor: pointer;
}

.partner-hotel-swiper > div:first-child button:hover,
.partner-global-swiper > div:first-child button:hover {
    scale: 1.25;
    opacity: 1;
}

.partner-hotel-swiper > div:first-child button:active,
.partner-global-swiper > div:first-child button:active {
    scale: 1;
    opacity: 0.5;
}

.partner-hotel-swiper > div:first-child button i,
.partner-global-swiper > div:first-child button i {
    font-size: 18px;
}

.partner-hotel-swiper .swiper-wrapper,
.partner-global-swiper .swiper-wrapper {
    transition-timing-function: linear !important;
}

.partner-hotel-swiper .swiper-slide,
.partner-global-swiper .swiper-slide {
    width: 200px;
    height: 190px;
    background: var(--clr-white-prim);
    box-shadow: 2px 2px 2px var(--clr-weight-shadow);
    border-top: 2px solid var(--clr-white-secn);
    border-left: 2px solid var(--clr-white-secn);
    border-radius: 10px;
    padding: 30px;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-hotel-swiper .swiper-slide img,
.partner-global-swiper .swiper-slide img {
    width: 100%;
    height: auto;
}

.partner-hotel-swiper {
    margin-top: 5px;
}

@media (max-width: 600px) {
    .partner-sect {
        height: max-content;
        padding: 70px 0;
    }

    .partner-sect section {
        text-align: center;
    }
}

/* Testimonial Section */
.testimonial-sect {
    width: 100%;
    height: 100vh;
    background: var(--clr-white-prim);
    box-shadow: 0 7px 10px var(--clr-thin-shadow);

    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-sect > section {
    width: 82%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5%;
}

/* .left */
.testimonial-sect > section .left {
    width: 100%;
    margin-top: 80px;
}

.testimonial-sect > section .left .testi-box {
    display: flex;
    align-items: flex-end;
    min-height: 300px;
}

.testimonial-sect > section .left .testi-box p {
    font-size: 18px;
    font-weight: var(--fw-medium);
    line-height: 1.4;

    background: var(--clr-white-prim);
    box-shadow: 3px 3px 4px var(--clr-weight-shadow);
    border-top: 2px solid var(--clr-white-secn);
    border-left: 2px solid var(--clr-white-secn);

    padding: 50px;
    border-radius: 100px 0 100px 0;
    line-height: 1.4;

    display: flex;
    align-items: center;
    text-align: justify;

    width: 100%;
    max-width: 700px;
    min-height: 330px;
}

.testimonial-sect > section .left > section {
    margin-top: 25px;
}

.testimonial-sect > section .left > section,
.testimonial-sect > section .left > section .box-person {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.testimonial-sect > section .left > section > button {
    margin-left: 25px;
}

.testimonial-sect > section .left > section .box-person img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 15px 0 25px;
}

.testimonial-sect > section .left > section .box-person > div {
    max-width: 475px;
}

.testimonial-sect > section .left > section .box-person > div h3 {
    background: var(--clr-grad-red-vertical);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    font-size: 20px;
    font-weight: var(--fw-black);
}

.testimonial-sect > section .left > section .box-person > div p {
    font-size: 18px;
    font-weight: var(--fw-medium);
    opacity: 0.9;
}

.testimonial-sect > section .left > section button {
    background: none;
    border: none;
    cursor: pointer;
}

.testimonial-sect > section .left > section button i {
    font-size: 20px;
}

/* .right */
.testimonial-sect > section .right {
    text-align: right;
}

.testimonial-sect > section .right > h2 {
    position: relative;
    padding-right: 16px;
}

.testimonial-sect > section .right > h2::before {
    content: "";
    position: absolute;
    right: 0;
    top: 4px;
    width: 3.5px;
    height: 70%;
    background: var(--clr-grad-red-vertical);
}

.testimonial-sect > section .right h1 span {
    display: block;
}

.testimonial-sect > section .right .testi-pagination {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
    margin-top: 25px;
}

.testimonial-sect > section .right .testi-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--clr-gray);
    opacity: 1;
    border-radius: 50px;
    transition: all .3s ease;
}

.testimonial-sect > section .right .testi-pagination .swiper-pagination-bullet-active {
    width: 32px;
    background: var(--clr-black-font);
}

/* fade animation */
#txt-testi,
#img-person-testi,
#name-testi,
#role-testi {
    opacity: 1;
    transition: all 0.4s ease;
}

.testi-fade-out {
    opacity: 0;
}

.testi-fade-in {
    opacity: 1;
}

@media (max-width: 600px) {
    .testimonial-sect {
        height: max-content;
        padding: 70px 0;
    }

    .testimonial-sect > section {
        flex-direction: column-reverse;
        gap: 0;
    }

    .testimonial-sect > section .left {
        margin-top: 15px;
    }

    .testimonial-sect > section .right {
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .testimonial-sect > section .right .testi-pagination {
        justify-content: center;
    }
}

/* News Section */
.news-sect {
    width: 100%;
    height: 110vh;
    background: var(--clr-white-secn);

    display: flex;
    align-items: center;
    justify-content: center;
}

.news-sect > section {
    width: 82%;
    height: max-content;
}

/* .top */
.news-sect > section .top {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.news-sect > section .top > h1 {
    margin-left: 4px;
}

.news-sect > section .top > p {
    width: 40%;
}

.news-sect > section > .see-more {
    width: 100%;
    margin: 10px 0 20px 0;

    display: flex;
    align-items: center;
    justify-content: center;
}

.news-sect > section > .see-more a {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background: transparent;
    gap: 7px;

    font-size: 16px;
    font-weight: var(--fw-bold);
    color: var(--clr-black-font);

    padding: 10px 30px;
    border: 2px solid var(--clr-black-font);
    border-radius: 100px;

    width: max-content;
    height: max-content;
    transition: all .3s ease;
}

.news-sect > section > .see-more a:hover {
    background: var(--clr-black-font);
    color: var(--clr-white-prim);
}

.news-sect > section > .see-more a:hover i {
    transform: translateX(5px);
    color: var(--clr-white-prim);
}

/* .center */
.news-sect > section .news-swiper {
    padding: 10px 0;
}

.news-sect > section .news-swiper .swiper-slide {
    width: 325px;
    height: 370px;
    border-radius: 10px;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    background: var(--clr-white-prim);
    box-shadow: 2px 3px 4px var(--clr-weight-shadow);
}

.news-sect > section .news-swiper .swiper-slide .img-news {
    width: 95%;
    height: 350px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    margin-top: 7px;
}

.news-sect > section .news-swiper .swiper-slide .img-news img {
    width: 100%;
    height: auto;
}

.news-sect > section .news-swiper .swiper-slide .news-content {
    width: 100%;
    height: 100%;
    padding: 20px 24px 25px 24px;
}

.news-sect > section .news-swiper .swiper-slide .news-content h4 {
    font-size: 14px;
    font-weight: var(--fw-black);
    background: var(--clr-grad-red-vertical);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.news-sect > section .news-swiper .swiper-slide .news-content h3 {
    font-size: 20px;
    font-weight: var(--fw-black);
    line-height: 1.4;
    margin-top: 10px;
    text-transform: capitalize;
}

.news-sect > section .news-swiper .swiper-slide .news-content p {
    font-size: 16px;
    font-weight: var(--fw-medium);
    line-height: 1.4;
    margin: 5px 0 10px 0;
    opacity: 0.9;
}

.news-sect > section .news-swiper .swiper-slide .news-content a {
    font-size: 16px;
    font-weight: var(--fw-bold);

    display: flex;
    align-items: center;
    gap: 5px;
}

.news-sect > section .news-swiper .swiper-slide .news-content a i {
    font-size: 14px;
    margin-top: 2px;
}

.news-sect > section .news-swiper .swiper-slide .news-content a:hover i {
    transform: translateX(5px);
}

/* .bottom */
.news-sect > section .bottom {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.news-sect > section .bottom .news-pagination {
    width: 20%;
    height: 8px;
    background: var(--clr-gray);
    border-radius: 10px;
    margin-top: 15px;
}

.news-sect > section .bottom .news-pagination .swiper-scrollbar-drag {
    width: 20%;
    background: var(--clr-black-font);
    border-radius: 10px;
    cursor: grab;
}

@media (max-width: 600px) {
    .news-sect {
        height: max-content;
        padding: 70px 0;
    }

    .news-sect > section .top > h1 {
        line-height: 1.2;
    }

    .news-sect > section .top > p {
        width: 100%;
    }
}

/* Contact Us Section */
.contact-us-sect {
    width: 100%;
    min-height: 100vh;
    background: var(--clr-white-prim);
    box-shadow: 0 -7px 10px var(--clr-thin-shadow);

    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-us-sect > section {
    width: 82%;
    height: max-content;

    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    padding-top: 70px;
    padding-bottom: 40px;     
}

/* .brochure */
.brochure-wrap {
    position: relative;
}

.contact-us-sect section .brochure {
    width: 480px;
    height: 540px;

    border-radius: 10px;
    border-top: 2px solid var(--clr-white-secn);
    border-left: 2px solid var(--clr-white-secn);
    box-shadow: 4px 4px 10px var(--clr-thin-shadow);
    background: var(--clr-white-prim);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    z-index: 2;
}

/* .decor */
.brochure-left-dots,
.brochure-right-dots {
    position: absolute;
    pointer-events: none;
    user-select: none;
    z-index: 0 !important;
}

.brochure-left-dots {
    bottom: -520px;
    left: -55px;
}

.brochure-right-dots {
    top: 25px;
    right: -535px;
}

.brochure-left-dots img,
.brochure-right-dots img {
    width: 110px;
    height: auto;
    opacity: 0.9;
    transform: rotate(90deg);
}

.contact-us-sect section .brochure .red-block {
    width: 50%;
    height: 30px;
    background: var(--clr-red);
    border-radius: 100px;
    margin: -20px 0 25px 0;
}

.contact-us-sect section .brochure h1 {
    font-weight: var(--fw-black);
    font-size: 40px;
    margin-bottom: 4px;
}

.contact-us-sect section .brochure form {
    display: flex;
    flex-direction: column;
    width: 70%;
    margin-top: 50px;
}

.contact-us-sect section .brochure form section {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.contact-us-sect section .brochure form section:first-child {
    margin-bottom: 20px;
}

.contact-us-sect section .brochure form section label {
    font-size: 18px;
    font-weight: var(--fw-bold);
    margin: 0 0 5px 2px;
}

.contact-us-sect section .brochure form section input {
    width: 100%;
    font-size: 16px;
    padding: 10px 5px;

    border: none;
    border-radius: 5px;
    border-bottom: 2px solid var(--clr-gray);
}

.contact-us-sect section .brochure form button {
    margin-top: 40px;
    font-size: 18px;
    font-weight: var(--fw-bold);
    color: var(--clr-white-prim);
    padding: 12px 0;
    border-radius: 7px;
    border: none;
    transition: 0.3s ease;
}

.contact-us-sect section .brochure form button:disabled {
    background-color: var(--clr-black-font);
    opacity: 0.5;
    cursor: not-allowed;
}

.contact-us-sect section .brochure form button.active {
    background: var(--clr-grad-red-vertical);
    opacity: 1;
    cursor: pointer;
    transition: all .3s ease;
}

.contact-us-sect section .brochure form button.active:hover {
    transform: translateY(-5px);
}
.contact-us-sect section .brochure form button.active:active {
    transform: translateY(5px);
}

/* .contact-us */
.contact-us-sect section .contact-us h2 {
    position: relative;
    padding-left: 16px;
}

.contact-us-sect section .contact-us h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 3.5px;
    height: 68%;
    background: var(--clr-grad-red-vertical);
}

.contact-us-sect section .contact-us form {
    width: 100%;
    margin-top: 40px;
}

.contact-us-sect section .contact-us form section {
    width: 100%;
    display: flex;
    gap: 15px;
    padding: 0 3px;
    margin-bottom: 15px;
}

.contact-us-sect section .contact-us form section input {
    width: 100%;
    font-size: 16px;
    font-weight: var(--fw-medium);
    padding: 10px 5px;

    border: none;
    border-bottom: 2px solid var(--clr-gray);
}

.contact-us-sect section .contact-us form section textarea {
    width: 100%;
    max-width: 100%;
    min-height: 160px;
    resize: vertical;

    font-size: 16px;
    font-weight: var(--fw-medium);
    padding: 10px 5px;

    border: none;
    border-bottom: 2px solid var(--clr-gray);
}

.contact-us-sect section .contact-us form button {
    width: 100%;
    margin-top: 40px;
    font-size: 18px;
    font-weight: var(--fw-bold);
    color: var(--clr-white-prim);
    padding: 12px 0;
    border-radius: 100px;
    border: none;
    transition: 0.3s ease;
    
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

.contact-us-sect section .contact-us form button i {
    color: var(--clr-white-prim);
    font-size: 16px;
    transform: rotate(20deg);
}

.contact-us-sect section .contact-us form button:disabled {
    background-color: var(--clr-black-font);
    opacity: 0.5;
    cursor: not-allowed;
}

.contact-us-sect section .contact-us form button.active {
    background: var(--clr-grad-red-vertical);
    opacity: 1;
    cursor: pointer;
    transition: all .3s ease;
}

.contact-us-sect section .contact-us form button.active:hover {
    transform: translateY(-5px);
}
.contact-us-sect section .contact-us form button.active:active {
    transform: translateY(5px);
}

@media (max-width: 600px) {
    .contact-us-sect {
        height: max-content;
        padding: 20px 0;
    }

    .contact-us-sect > section {
        flex-direction: column-reverse;
    }

    .contact-us-sect > section h1 {
        line-height: 1.2;
    }

    .brochure-wrap {
        width: 100%;
        margin-top: 40px;
    }

    .contact-us-sect section .brochure {
        position: relative;
        width: 100%;
    }

    .brochure-left-dots,
    .brochure-right-dots {
        display: none;
    }
}

/* Maps Section */
.maps-sect {
    width: 100%;
    height: 90vh;
    background: var(--clr-white-prim);

    display: flex;
    align-items: center;
    justify-content: center;
}

.maps-sect .border-separator {
    width: 82%;
    border-top: 3px solid var(--clr-white-secn);
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.maps-sect section {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.maps-sect section > div {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 999;
}

.maps-sect section > div:first-child {
    gap: 10px;
}

.maps-sect section > div:last-child {
    gap: 20px;
}

.maps-sect section > div > h3 {
    font-size: 20px;
    font-weight: var(--fw-black);
    min-width: max-content;
}

.maps-sect section > div > p {
    font-size: 18px;
    font-weight: var(--fw-medium);
}

.maps-sect section > div:last-child > div:first-child {
    min-width: 200px;
}
.maps-sect section > div:last-child > div:last-child {
    min-width: 425px;
}

.maps-sect section > div > div h4 {
    font-size: 18px;
    font-weight: var(--fw-black);
    color: var(--clr-black-font);
    margin-bottom: 2px;
}

.maps-sect section > div > div h4 i {
    font-size: 16px;
}

.maps-sect section > div > div p {
    font-size: 18px;
    font-weight: var(--fw-medium);
    opacity: 0.9;
}

.maps-sect iframe {
    min-width: 100%;
    min-height: 500px;
    border-radius: 10px;
    border: 5px solid var(--clr-trans-gray) !important;
}

/* dropdown (selection) */
.maps-sect section .address-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.maps-sect section .address-dropdown {
    position: relative;
    user-select: none;
}

.maps-sect section .address-selected {
    display: flex;
    align-items: center;
    width: max-content;
    gap: 8px;
    cursor: pointer;
    font-size: 18px;
    font-weight: var(--fw-medium);
}

.maps-sect section .address-selected i {
    font-size: 14px;
    transition: transform .3s ease;
}

.maps-sect section .address-dropdown.active .address-selected i {
    transform: rotate(180deg);
}

.maps-sect section .address-options {
    position: absolute;
    width: max-content;
    top: 140%;
    left: 0;
    font-weight: var(--fw-medium);
    background: var(--clr-white-prim);
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,.15);
    padding: 6px 0;

    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: all .3s ease;
    z-index: 100;
}

.maps-sect section .address-dropdown.active .address-options {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.maps-sect section .address-options li {
    list-style: none;
    padding: 10px 18px;
    font-size: 16px;
    cursor: pointer;
    white-space: nowrap;
    transition: background .25s ease;
}

.maps-sect section .address-options li:hover {
    background: rgba(0,0,0,.06);
}

/* animation maps */
.fade-anim {
    animation: fadeSlide .4s ease;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.map-fade {
    opacity: 0;
    transform: scale(.98);
    transition: all .4s ease;
}

.map-fade.show {
    opacity: 1;
    transform: scale(1);
}

.map-wrapper {
    position: relative;
    width: 100%;
    margin-top: 25px;
    z-index: 0;
}

.map-wrapper .map-overlay {
    position: absolute;
    top: 20px;
    right: 20px;

    width: 200px;
    height: 120px;

    background: var(--clr-white-prim);
    border: 4px solid var(--clr-white-secn);
    padding: 30px;
    border-radius: 8px;

    z-index: 5;

    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .5s ease;
}

.map-wrapper .map-overlay:hover {
    background: var(--clr-gray);
}

.map-wrapper .map-overlay img {
    width: 100%;
    height: auto;
}

@media (max-width: 600px) {
    .maps-sect {
        height: max-content;
        padding: 20px 0;
    }

    .maps-sect section > div:first-child {
        position: relative;
        z-index: 9999;
    }

    .maps-sect section,
    .maps-sect section > div:last-child {
        flex-direction: column;
    }

    .maps-sect section > div:last-child {
        width: max-content;
        height: max-content;
        justify-content: flex-start;
        align-items: normal;
        gap: 10px;
        margin-top: 15px;
    }

    .maps-sect iframe {
        width: 100%;
    }

    .map-wrapper .map-overlay {
        top: 0;
        right: 0;
        scale: 0.7;
    }
}

/* Subscribe Section */
.subs-sect {
    width: 100%;
    height: 55vh;
    background: var(--clr-white-prim);

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding-bottom: 50px;
}

.subs-sect > img {
    width: 100px;
    height: auto;
    transform: rotate(90deg);
}

.subs-sect > section {
    width: 82%;
    height: 250px;
    background: var(--clr-red);
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 85px;
}

.subs-sect > section > div h2 {
    font-size: 18px;
    font-weight: var(--fw-black);
    background: var(--clr-white-prim);
    box-shadow: 2px 2px 5px var(--clr-weight-shadow);
    width: max-content;
    padding: 7px 35px;
    border-radius: 100px;
    margin-bottom: 10px;
}

.subs-sect > section > div h2 span {
    background: var(--clr-grad-red-vertical);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subs-sect > section > div p {
    font-size: 24px;
    font-weight: var(--fw-bold);
    color: var(--clr-white-prim);
    width: 70%;
}

.subs-sect > section > form {
    width: 65%;
    position: relative;
    z-index: 1;
}

.subs-sect > section > form input {
    width: 100%;
    font-size: 18px;
    font-weight: var(--fw-medium);
    padding: 25px 200px 25px 40px;
    border: none;
    border-radius: 100px;
    position: relative;
    z-index: 2;
}

.subs-sect > section > form button {
    position: absolute;
    z-index: 3;
    top: 13%;
    right: 2%;

    border: none;
    padding: 15px 45px;
    background: var(--clr-grad-red-horizontal);
    color: var(--clr-white-prim);
    font-size: 18px;
    font-weight: var(--fw-bold);
    border-radius: 100px;
    cursor: pointer;
    scale: 1;
    transition: all .3s ease;
}

.subs-sect > section > form button:hover {
    box-shadow: 3px 5px 2px var(--clr-weight-shadow);
    scale: 1.02;
    opacity: 0.9;
}

.subs-sect > section > form button:active {
    box-shadow: none;
    scale: 1;
    opacity: 1;
}

@media (max-width: 600px) {
    .subs-sect {
        height: max-content;
        padding: 70px 0;
    }

    .subs-sect > img {
        display: none;
    }

    .subs-sect > section {
        width: 100%;
        height: max-content;
        padding: 50px 0;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        border-radius: 0;
        text-align: center;
    }

    .subs-sect > section > div:first-child {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .subs-sect > section > form {
        margin-top: 15px;
    }
}

/* To Top Button */
#topBtn {
    display: none;
    position: fixed;
    bottom: 120px;
    right: 27px;
    z-index: 100;
    width: 55px;
    height: 55px;
    background-color: var(--clr-red);
    color: var(--clr-white-prim);
    border: none;
    outline: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
}

#topBtn i {
    color: var(--clr-white-prim);
    font-size: 20px;
}

#topBtn:hover i {
    transform: translateY(-5px);
}

#topBtn:active i {
    scale: 0.5;
}

#topBtn:hover {
    background-color: var(--clr-red-dark);
}

#topBtn.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}
#topBtn.hide {
    opacity: 0;
    transform: translateY(20px);
}

/* === Footer Style === */
footer {
    position: relative;
    width: 100%;
    height: max-content;
    padding: 80px 0 30px 0;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: var(--clr-white-secn);
    border-radius: 15px 15px 0 0;
}

footer .container {
    max-width: 1320px;
    margin: 0 auto;
}

footer .wrapper {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
    width: 85%;
}

footer .wrapper img {
    margin-left: -5px;
    width: 300px;
    height: auto;
}

footer .wrapper .footer-widget {
    width: calc(20% - 30px);
    margin: 15px 0;
}

footer .wrapper .footer-widget:nth-child(1) {
    width: calc(40% - 50px);
    margin-right: 15px;
}

footer .footer-widget .desc {
    font-weight: var(--fw-medium);
    line-height: 1.8 !important;
    opacity: 0.9;
    font-size: 18px;
    margin: 20px 0 40px 2px;
}

footer .wrapper .footer-widget .socials {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

footer .wrapper .footer-widget .socials li {
    list-style: none;
}

footer .wrapper .footer-widget .socials li a {
    width: 52px;
    height: 52px;
    margin-right: 10px;

    background: transparent;
    border: 2px solid var(--clr-orange-gold);
    color: var(--clr-orange-gold);

    border-radius: 50%;
    font-size: 24px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer .wrapper .footer-widget .socials li a i {
    color: var(--clr-orange-gold);
}

footer .wrapper .footer-widget .socials li a:hover {
    background: var(--clr-orange-gold);
    border: 2px solid var(--clr-orange-gold);
    color: var(--clr-white-prim);
}

footer .wrapper .footer-widget .socials li a:hover i,
footer .wrapper .footer-widget .socials li a i:hover {
    color: var(--clr-white-prim);
}

footer .wrapper .footer-widget h6 {
    font-size: 24px;
    font-weight: var(--fw-bold);
    margin: 10px 0 20px 0;

    background: var(--clr-grad-red-vertical);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

footer .wrapper .footer-widget .links li {
    list-style: none;
}

footer .wrapper .footer-widget .links li a {
    color: var(--clr-black-font);
    font-size: 18px;
    font-weight: var(--fw-medium);
    text-decoration: none;
    text-transform: capitalize;
    line-height: 2;
    opacity: 0.9;
    transition: all 0.3s ease-out;
}

footer .wrapper .footer-widget .links li a:hover {
    font-weight: var(--fw-medium);
    letter-spacing: 0.5px;
    opacity: 1;
}

footer .copyright-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 85%;
    border-radius: 10px;
    margin: 20px 0 30px 0;
    padding: 20px 30px;
    color: var(--clr-white-prim);
    background: var(--clr-red);
}

footer .copyright-wrapper p {
    color: var(--clr-white-prim);
    font-size: 18px;
    font-weight: var(--fw-bold);
    text-align: center;
}

@media (max-width: 992px) {
    footer .container {
        max-width: 960px;
    }

    footer .wrapper .footer-widget,
    footer .wrapper .footer-widget:nth-child(1) {
        width: calc(50% - 30px);
    }
}

@media (max-width: 768px) {
    footer .container {
        max-width: 720px;
    }

    footer .wrapper .footer-widget,
    footer .wrapper .footer-widget:nth-child(1) {
        width: 100%;
        margin: 0 10px 50px;
    }

    footer .copyright-wrapper {
        flex-direction: column;
        gap: 20px;
    }
}