﻿
@font-face {
    font-family: 'Kanit';
    src: url('/assets/fonts/Prompt-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Kanit';
    src: url('/assets/fonts/Prompt-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

html {
    scroll-behavior: smooth;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    position: fixed;
    z-index: 9999;
    top: 0;
    width: 100%;
    height: 80px;
    margin-bottom: 20px;
    background-color: #ffffff;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.3);
}

body, form {
    font-family: 'Kanit', sans-serif !important;
    font-size: 22px;
    margin: 0px auto;
    min-width: 375px;
    background: white;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}


.ocean-blue {
    color: #046CB3;
}

.black {
    color: #000;
}

.display-center {
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.bold {
    font-weight: 600;
}
/*body {
    font-family: "Segoe UI", sans-serif;
    background-color: #fdfaf6;
}*/
/* Header container */
.top-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 20px 20px 0px 110px;
    background-color: #ffffff;
    position: relative;
    gap: 50px;
    /*max-width: 1440px;*/
    /*z-index: 9999;
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);*/
}

    .top-container.transparent {
        background-color: rgba(0, 0, 0, 0.5);
    }

/* Logo */
.top-logo {
    display: flex;
    align-items: center; /* Vertically centers the logo */
}

    .top-logo img.everest-top-logo {
        width: 139px;
        display: block;
    }

/* Navigation menu */
.top-menu ul {
    list-style: none;
    display: flex;
    gap: 25px;
    align-items: center;
}

    .top-menu ul li {
        position: relative;
    }

.menu-link {
    text-decoration: none;
    color: #222;
    font-weight: 500;
    transition: color 0.2s ease;
}

    .menu-link:hover {
        color: #0078d4 !important;
    }

    .menu-link.active {
        color: #046CB3 !important;
    }

.submenu {
    display: none !important;
    position: absolute;
    top: 35px;
    left: 0;
    background-color: #ffffff;
    border: 1px solid #ddd;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    min-width: 150px;
    z-index: 1000;
    flex-direction: column;
}

/* Show submenu on hover (desktop) */
.has-submenu:hover .submenu {
    display: block;
}

/* Show submenu when toggled (mobile click) */
.submenu.show {
    display: block !important;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    padding: 12px 10px;
    min-width: 180px;
    z-index: 10;
}

.submenu li {
    display: block; /* ensure vertical list */
    width: 100%;
}

.submenu a {
    display: block;
    padding: 10px 15px;
    color: #333;
    font-size: 18px;
    white-space: nowrap;
}

    .submenu a:hover {
        background-color: #fff3e6;
        color: #0078d4;
    }


.arrow-icon {
    width: 15px;
    height: 15px;
    transition: transform 0.3s ease;
}

/*.has-submenu:hover .arrow-icon {
    transform: rotate(180deg);
}*/

.nav-item {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    color: #333;
}

    .nav-item::after {
        content: '';
        display: inline-block;
        margin-left: 6px;
        width: 0;
        height: 0;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 6px solid #333;
    }




.top-login {
    margin-left: auto;
}
    /* Register Button */
    .top-login .top-register-button {
        background-color: #2196f3;
        color: white;
        padding: 8px 20px;
        border: none;
        border-radius: 6px;
        cursor: pointer;
        font-weight: 600;
        transition: background-color 0.3s ease;
    }

        .top-login .top-register-button:hover {
            background-color: #1976d2;
        }

/* Hamburger menu (mobile only) */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    margin-left: 10px;
}

    .hamburger span {
        width: 25px;
        height: 3px;
        background-color: #333;
        border-radius: 2px;
    }

/* Mobile menu */
.mobile-menu {
    position: absolute;
    top: 60px;
    left: 0;
    width: 270px;
    height: 100vh;
    display: none;
    flex-direction: column;
    background-color: #ffffff;
    box-shadow: 4px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    padding: 10px 20px;
    opacity: 0;
    transform: translateX(-100%);
    pointer-events: none;
    transition: opacity 2s ease, transform 1s ease;
}

    .mobile-menu ul {
        list-style: none;
    }

        .mobile-menu ul li {
            margin-bottom: 10px;
        }

    .mobile-menu .menu-link {
        display: block;
        padding: 10px 5px;
        font-size: 16px;
        font-weight: 500;
        color: #222;
    }


.main-container {
    margin: 0 auto;
    max-width: 1440px;
    width: 100%;
    /*height: 100vh;*/
    margin-top: 90px;
}

/* Default */
.banner-container {
    position: relative;
    width: 100%;
    max-width: 1440px;
    height: 620px;
    overflow: hidden;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 0;
}

    .banner-slide.active {
        opacity: 1;
        z-index: 1;
    }

.banner-nav {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 2;
}

    .banner-nav span {
        cursor: pointer;
        color: #999;
        font-size: 18px;
        font-family: 'Arial', sans-serif;
        transition: color 0.3s;
    }

        .banner-nav span.active {
            color: #0066cc;
            font-weight: bold;
        }


.ceo-message-container {
    /*width: 100%;*/
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px; /* spacing between quote and image */
    padding: 40px 60px; /* padding left/right of the whole section */
    max-width: 1440px;
    margin: 0 auto;
    flex-wrap: wrap; /* responsive fallback */
    position: relative;
}

.quote-box, .quote-image {
    flex: 1 1 0;
    min-width: 300px;
    max-width: 500px;
}

.quote-box {
    background: #fffafc;
    padding: 30px 54px !important;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 662px;
    z-index: 50;
    text-align: center;
    position: relative;
}

    .quote-box h2 {
        font-size: 50px;
        font-weight: 400;
    }

    .quote-box h4 {
        font-size: 20px;
        font-weight: 600;
    }

    .quote-box h5 {
        font-size: 18px;
        font-weight: 400;
    }


.quote-box-quote-blue-top-1 {
    position: absolute;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: 1;
    top: -35px;
    left: 15px;
    width: 60px;
    height: 60px;
    background-image: url('/assets/images/quote-blue.png');
}

.quote-box-quote-blue-top-2 {
    position: absolute;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: 1;
    top: -35px;
    left: 60px;
    width: 60px;
    height: 60px;
    background-image: url('/assets/images/quote-blue.png');
}


.quote-image {
    position: relative;
}

    .quote-image img {
        width: 100%;
        border-radius: 20px;
        position: relative;
        z-index: 50;
    }



.quote-image-ribbon-pink-top {
    position: absolute;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: 1;
    top: -15px;
    left: -50px;
    width: 150px;
    height: 150px;
    background-image: url('/assets/images/ribbon-pink-up.png');
    z-index: 60;
}

.quote-image-ribbon-yellow-bottom {
    position: absolute;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: 1;
    bottom: -5px;
    right: -30px;
    width: 150px;
    height: 150px;
    background-image: url('/assets/images/ribbon-yellow-down.png');
    z-index: 60;
}

.brutalist-square-white-top {
    position: absolute;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: 1;
    top: 30px;
    left: 0;
    width: 120px;
    height: 120px;
    background-image: url('/assets/images/brutalist-square-white.png');
}

.the-everest-logo-bottom {
    position: absolute;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: 1;
    bottom: 30px;
    left: 0;
    width: 230px;
    height: 52px;
    background-image: url('/assets/images/everest-logo-big.png');
}

.blue-glow-1 {
    position: absolute;
    top: 140px;
    left: 80px;
    transform: translateY(-50%);
    width: 300px;
    height: 300px;
    /*background: radial-gradient(circle, rgba(0, 102, 255, 0.4) 0%, transparent 70%);*/
    background: radial-gradient(circle, #046CB3 0%);
    filter: blur(110px);
    animation: glowPulse 6s ease-in-out infinite alternate;
    z-index: 0;
}


.blue-glow-2 {
    position: absolute;
    bottom: -110px;
    right: 80px;
    transform: translateY(-50%);
    width: 250px;
    height: 250px;
    /* background: radial-gradient(circle, rgba(0, 102, 255, 0.4) 0%, transparent 70%); */
    background: radial-gradient(circle, #046CB3 0%);
    filter: blur(86px);
    animation: glowPulse 6s ease-in-out infinite alternate;
    z-index: 0;
}
/*.ceo-message-image {
    width: 100%;
}*/

.testimonial-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to right, #e3f0ff, #ffffff);
    padding: 40px;
    border-radius: 12px;
}

.left-box {
    max-width: 50%;
    position: relative;
}

.quote-icon {
    width: 40px;
    position: absolute;
    top: -20px;
    left: -20px;
}

.quote-box {
    background: #fffafc;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

    .quote-box p {
        font-size: 24px;
        color: #0071c2;
        line-height: 1.5;
    }

    .quote-box h4 {
        margin-top: 15px;
        font-weight: bold;
    }

.right-box {
    position: relative;
}

.portrait {
    width: 300px;
    border-radius: 10px;
}

.decor.top,
.decor.bottom {
    position: absolute;
    width: 50px;
}

.decor.top {
    top: 0;
    left: 0;
}

.decor.bottom {
    bottom: 0;
    right: 0;
}



.affiliate-hero {
    position: relative;
    padding: 80px 20px;
    text-align: center;
    background: #fff;
    overflow: hidden;
}

.logo {
    width: 179px;
    margin-bottom: 20px;
}

.affiliate-hero h2 {
    font-size: 64px;
    color: #333;
    font-weight: 400;
    line-height: 1.5;
}

.highlight {
    font-weight: bold;
    color: #111;
}


.full-separator-ocean-blue {
    width: 95%;
    height: 1px;
    background-color: #BBE2FC;
    margin: 20px auto;
}

.full-separator {
    width: 80%;
    height: 2px;
    background-color: #363636;
    margin: 20px auto;
}

.separator {
    width: 450px;
    height: 2px;
    background-color: #c0b9b9;
    margin: 20px auto;
}

.subtext {
    font-size: 36px;
    font-weight: 400;
    color: #666;
    line-height: 1.8;
}

.ribbon {
    position: absolute;
    width: 200px;
    height: 200px;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.2;
}

.ribbon-left {
    top: 0;
    left: -20px;
    /*background-image: url('/assets/images/ribbon-left.svg');*/
}

.ribbon-right {
    position: absolute;
    bottom: 0;
    right: -60px; /* move slightly off the screen to the right */
    width: 360px; /* increase width */
    height: 580px; /* increase height proportionally */
    background-image: url('/assets/images/everest-logo-transparent.png');
}


.pink-glow-1 {
    position: absolute;
    top: 20%;
    right: 0;
    transform: translateY(-50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 0, 128, 0.4) 0%, transparent 70%);
    filter: blur(80px);
    animation: glowPulse 6s ease-in-out infinite alternate;
    z-index: 0;
}

.pink-glow-2 {
    position: absolute;
    top: 90%;
    right: 15%;
    transform: translateY(-50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 0, 128, 0.4) 0%, transparent 70%);
    filter: blur(80px);
    animation: glowPulse 6s ease-in-out infinite alternate;
    z-index: 0;
}

/*@keyframes glowPulse {
    0% {
        transform: translateY(-50%) scale(1);
        opacity: 0.4;
    }

    100% {
        transform: translateY(-50%) scale(1.2);
        opacity: 0.6;
    }
}*/

.about-everest {
    position: relative;
    overflow: hidden;
    /*padding: 60px 20px;*/
    background: linear-gradient(to top right, #ffffff 0%, #ffeaf0 100%);
}

    /*.about-everest::before {
        content: "";
        position: absolute;
        bottom: 0;
        right: 0;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(255, 111, 160, 0.4) 0%, transparent 70%);
        filter: blur(60px);
        z-index: 0;
    }*/

    .about-everest .content-wrapper {
        position: relative;
        z-index: 1;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin: auto;
        gap: 30px;
        flex-wrap: wrap;
        margin-bottom: 30px;
    }

    .about-everest .left {
        flex: 1 1 300px;
        text-align: center;
    }

    .about-everest .affiliate-left-img {
        max-width: 100%;
        height: auto;
        /*border-radius: 10px;*/
    }

    .about-everest .right {
        flex: 1 1 400px;
        text-align: center;
    }

        .about-everest .right h2 {
            font-size: 64px;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .about-everest .right p {
            font-size: 36px;
            font-weight: 400;
            text-align: left;
            padding: 33px;
            margin-bottom: 20px;
        }

    .about-everest .cta-button {
        display: inline-block;
        padding: 10px 20px;
        background-color: #1ba4ff;
        color: white;
        border-radius: 8px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s;
    }

        .about-everest .cta-button:hover {
            background-color: #0071c2;
        }


.why-everest {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 25px;
}


.why-everest-logo-background {
    position: absolute;
    bottom: 0;
    left: 0px;
    width: 355px;
    height: 627px;
    background-image: url('/assets/images/everest-logo-transparent.png');
    opacity: 0.2;
}


.why-everest h2 {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 16px;
}

/*.why-everest h2 .bold {
        font-weight: 600;
    }*/

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(268px, 0fr));
    gap: 26px;
    margin-bottom: 30px;
    justify-content: center;
}

.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 10;
}

    .card:hover {
        /*transform: translateY(-5px);*/
        transform: scale(1.08);
    }

    /*.card h3 {
        font-size: 20px;
        font-weight: bold;
        margin-bottom: 12px;
    }

    .card p {
        font-size: 16px;
        color: #444;
        margin-bottom: 12px;
        line-height: 1.5;
    }

    .card a {
        color: #0071c2;
        font-weight: bold;
        text-decoration: underline;
    }*/

    /* Gradient backgrounds */
    .card.pink {
        background: linear-gradient(135deg, #ffeaf4, #fff7fb);
    }

    .card.blue {
        background: linear-gradient(135deg, #e3f1fd, #f2faff);
    }



.header-title-container {
    height: 250px;
    padding-top: 40px;
    margin-bottom: 20px;
}


.header-logo-background {
    position: absolute;
    /*top: 0px;
    right: 100px;*/
    top: 5px;
    right: 350px;
    width: 240px;
    height: 580px;
    background-image: url('/assets/images/everest-logo-transparent.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.2;
    z-index: 10;
}


.header-title-container h1 {
    font-size: 114px;
    font-weight: 600;
    margin-bottom: 30px;
    position: relative;
    z-index: 20;
}

.separate-line {
    border: 1px solid #BBE2FC;
}

.header-logo {
    width: 100%;
    max-width: 619px;
    height: auto;
    margin: 0 auto;
    margin-top: 15px;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 10px 20px 80px 20px;
    background-color: #ffffff;
    color: #333;
    max-width: 1440px;
    margin: 0 auto;
    gap: 80px;
}


/* ===== Left Section: Form ===== */
.contact-form {
    flex: 1 1 45%;
    min-width: 300px;
}

    .contact-form h2 {
        font-size: 36px;
        font-weight: 400;
        margin-bottom: 20px;
    }

    .contact-form .name-row {
        display: flex;
        gap: 16px;
        margin-top: 15px;
    }

        .contact-form .name-row .form-group {
            flex: 1;
        }


    .contact-form label {
        display: block;
        font-weight: 500;
    }

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        height: 56px;
        padding: 12px;
        margin-top: 6px;
        margin-bottom: 15px;
        border: 1px solid #ccc;
        border-radius: 6px;
        font-size: 16px;
        font-weight: 300;
        resize: vertical;
    }

    .contact-form textarea {
        min-height: 130px;
    }

    .contact-form .privacy-policy {
        margin-bottom: 15px;
        /*font-size: 13px;*/
    }

        .contact-form .privacy-policy input {
            margin-right: 6px;
        }

    .contact-form button {
        margin-top: 20px;
        background-color: #0e5cc4;
        color: white;
        border: none;
        padding: 12px 24px;
        font-size: 16px;
        border-radius: 6px;
        cursor: pointer;
    }

        .contact-form button:hover {
            background-color: #093f8c;
        }

#submitButton:disabled {
    background-color: #ccc;
    color: #666;
    cursor: not-allowed;
}

/* ===== Right Section: Contact Info ===== */
.contact-info {
    flex: 1 1 45%;
    min-width: 300px;
    padding-left: 20px;
}

    .contact-info h2 {
        font-size: 36px;
        font-weight: 400;
        margin-bottom: 20px;
    }

    .contact-info ul {
        list-style: none;
        padding: 0;
    }

    .contact-info li {
        display: flex;
        align-items: center;
        margin-bottom: 12px;
        font-size: 15px;
    }

        .contact-info li i,
        .contact-info li img {
            margin-right: 10px;
            width: 25px;
            height: 25px;
        }


/* ===== Map ===== */
.map-container {
    margin-top: 20px;
    width: 100%;
    max-width: 576px;
    height: 314px;
    border-radius: 10px;
    overflow: hidden;
}


.custom-checkbox {
    display: flex !important;
    align-items: center;
    gap: 10px; /* space between checkbox and text */
    cursor: pointer;
    font-size: 16px;
    line-height: 1.5;
}

    .custom-checkbox a {
        /*text-decoration: none;*/
        color: #535862;
    }

    /* Hide the native checkbox */
    .custom-checkbox input[type="checkbox"] {
        display: none;
    }

    .custom-checkbox .checkmark {
        display: inline-block;
        width: 30px;
        height: 30px;
        background-color: #f2f9ff;
        border-radius: 10px;
        position: relative;
        cursor: pointer;
        transition: background-color 0.2s;
        position: relative;
        flex-shrink: 0;
        border: 1px solid #000;
    }

        .custom-checkbox .checkmark::after {
            content: '';
            position: absolute;
            display: none;
            left: 10px;
            top: 5px;
            width: 5px;
            height: 13px;
            border: solid #0e5cc4;
            border-width: 0 4px 4px 0;
            transform: rotate(45deg);
        }

    .custom-checkbox input:checked + .checkmark::after {
        display: block;
    }

.checkbox-label {
    color: #535862;
}

/*Vission Mission*/

.ceo-vision-container {
    position: relative;
    z-index: 5;
}

.vision-container {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: 70px;
    padding: 40px 20px;
    background-color: #fffdf9;
    border-radius: 16px;
}

.ceo-photo-box {
    position: relative;
    max-width: 390px;
}

.ceo-profile-img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.ceo-profile-tag {
    position: absolute;
    bottom: -5px;
    right: 10px;
    background-color: #009fe3;
    color: white;
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 14px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

    .ceo-profile-tag span {
        font-size: 12px;
        opacity: 0.9;
    }




.ceo-message-box {
    flex: 1;
    min-width: 280px;
    max-width: 900px;
}

    .ceo-message-box h2 {
        font-size: 60px;
        font-weight: 600;
        margin-bottom: 20px;
        line-height: 1.4;
    }

    .ceo-message-box .main-text {
        /*color: #003c8c;*/
    }

    .ceo-message-box .highlight-text {
        /*color: #009fe3;*/
    }

    .ceo-message-box .quote-mark {
        /*font-size: 32px;*/
        /*color: #009fe3;*/
        font-weight: bold;
    }



.mission-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

    .mission-list li {
        display: flex;
        align-items: center; /* vertically center */
        position: relative;
        padding-left: 30px;
        margin-bottom: 16px;
        font-size: 28px;
        font-weight: 300;
        line-height: 1.6;
    }

        .mission-list li::before {
            content: '';
            width: 12px;
            height: 12px;
            background-color: #f49e00; /* orange */
            border-radius: 50%;
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
        }

        .mission-list li span {
            display: inline; /* or block if you prefer */
        }

    .mission-list b {
        font-weight: 600;
    }


.atm-container {
    background-color: #f0f9ff;
    padding: 60px 20px;
}

.atm-content {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.atm-left {
    flex: 1 1 45%;
    min-width: 280px;
    /*position: relative;*/
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    /* Flexbox centering */
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    z-index: 20;
}

/*.atm-left::after {
        content: "";
        position: absolute;
        top: -30px;
        right: -50px;
        width: 140px;
        height: 140px;
        background: url('circle-graphic.png') no-repeat center/contain;
        opacity: 0.15;
        z-index: 0;
    }*/

.atm-subtitle {
    font-size: 25px;
    font-weight: 300;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.atm-title {
    font-size: 34px;
    font-weight: 400;
    margin: 0 0 10px;
    z-index: 1;
    position: relative;
}
/*
.atm-note {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
    z-index: 1;
    position: relative;
}*/

.atm-highlight {
    margin-top: 20px;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

.atm-right {
    flex: 1 1 45%;
    min-width: 280px;
}

    .atm-right img {
        width: 100%;
        height: 100%;
        border-radius: 10px;
        box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    }

.mission-container {
    position: relative;
    background-color: #f7f7f7;
    padding: 60px 20px;
    overflow: hidden;
    text-align: center;
}


.mission-contain {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.mission-heading {
    font-size: 36px;
    font-weight: 400;
    /*color: #333;*/
    margin-bottom: 30px;
}

.mission-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .mission-points li {
        font-size: 28px;
        font-weight: 600;
        margin-bottom: 12px;
    }

        .mission-points li span {
            display: inline-block;
            line-height: 1.6;
        }

/* Left decorative shape */
.mission-decor-left,
.mission-decor-right-1,
.mission-decor-right-2,
.mission-decor-right-3 {
    position: absolute;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: 1;
}

.mission-decor-left {
    /*top: 0;*/
    bottom: -100px;
    left: -165px;
    width: 590px;
    height: 590px;
    background-image: url('/assets/images/everest-logo-transparent.png');
    opacity: 0.2;
}

/* Right decorative shape */
.mission-decor-right-1 {
    /*top: 0;*/
    bottom: 200px;
    right: -30px;
    width: 100px;
    height: 100px;
    background-image: url('/assets/images/brutalist_shape_red.png');
}

.mission-decor-right-2 {
    /*top: 120px;*/
    bottom: 80px;
    right: -30px;
    width: 100px;
    height: 100px;
    background-image: url('/assets/images/brutalist_shape_neutral.png');
}

.mission-decor-right-3 {
    /*top: 240px;*/
    bottom: -40px;
    right: -30px;
    width: 100px;
    height: 100px;
    background-image: url('/assets/images/brutalist_shape_solar.png');
}


/*Our Team*/

.team-container {
    position: relative;
    padding: 60px 20px;
    overflow: hidden;
    text-align: center;
    z-index: 20;
}

.member-grid {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(auto-fit, minmax(390px, 1fr));
    gap: 50px;
    padding: 10px 60px;
}


.member-card {
    background-color: #FAFAFA;
    /*background-color: #F6F6F6;*/
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    position: relative;
    z-index: 30;
}

    .member-card:hover {
        transform: translateY(-5px);
    }

    .member-card .member-ribbon-blue-top {
        position: absolute;
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        z-index: 1;
        top: -15px;
        left: -35px;
        width: 100px;
        height: 100px;
        background-image: url('/assets/images/ribbon-blue.png');
    }

    .member-card .member-ribbon-yellow-top {
        position: absolute;
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        z-index: 1;
        top: -15px;
        left: -35px;
        width: 100px;
        height: 100px;
        background-image: url('/assets/images/ribbon-yellow.png');
    }

    .member-card .member-ribbon-pink-bottom {
        position: absolute;
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        z-index: 1;
        bottom: -5px;
        right: -30px;
        width: 100px;
        height: 100px;
        background-image: url('/assets/images/ribbon-pink.png');
    }

.member-image {
    position: relative;
    width: 100%;
    height: auto;
}

    .member-image img {
        width: 100%;
        /*max-width: 332px;*/
        /* height: 286px; */
        object-fit: cover;
        height: auto;
        object-fit: cover;
    }


/* Ribbon corners */
.border-ribbon {
    position: absolute;
    width: 30px;
    height: 30px;
    top: 0;
    left: 0;
    clip-path: polygon(0 0, 100% 0, 0 100%);
}

.border-ribbon-blue {
    background: #0078d4;
}

.border-ribbon-pink {
    background: #ec407a;
}

.border-ribbon-orange {
    background: #f57c00;
}


.member-info {
    padding: 10px 0px 0px 0px;
    text-align: left;
}

    .member-info h2 {
        font-size: 28px;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .member-info h3 {
        font-size: 18px;
        font-weight: 300;
        margin-bottom: 5px;
    }

    .member-info h4 {
        font-size: 16px;
        font-weight: 300;
        margin-bottom: 15px;
    }

/*.member-info .member-info-title {
        font-size: 28px;
        font-weight: 300;
    }
    .member-info .member-info-description {
        font-size: 24px;
        font-weight:300;
    }*/
/*.member-info p {
        font-size: 0.9rem;
        color: #666;
        margin-bottom: 10px;
    }*/
.social-icons {
    display: flex;
    justify-content: left;
    gap: 10px;
    margin-top: 5px;
}

    .social-icons a img {
        width: 38px;
        height: 38px;
        transition: transform 0.2s;
    }

    .social-icons a:hover img {
        transform: scale(1.2);
    }

/* Product Section */

.product-header-section {
    height: 785px;
    position: relative;
    padding: 40px 0px;
    text-align: right;
    color: #fff;
    overflow: hidden;
    background-image: url('/assets/images/product-header-image.png');
    z-index: 200;
    padding: 50px;
}

    .product-header-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
        z-index: 100;
    }

    .product-header-section h2 {
        position: relative;
        font-size: 64px;
        font-weight: 600;
        z-index: 200;
        margin-top: 350px;
        margin-bottom: 30px;
    }

.product-iso-text {
    font-size: 28px;
}

.logo-everest-right {
    position: absolute;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: 200;
    top: 38%;
    right: 60px;
    width: 376px;
    height: 85px;
    background-image: url('/assets/images/everest-top-logo-white.png');
}

.product-header-text {
    position: relative;
    font-size: 34px;
    font-weight: 400;
    z-index: 200;
}

.product-best-seller-section {
    text-align: center;
    margin: 20px auto;
}

    .product-best-seller-section h2 {
        font-size: 64px;
        font-weight: 400;
    }

.product-best-seller-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

.detail-best-seller {
    text-align: left;
}

.details-link {
}

.detail-best-seller a {
    color: #046CB3;
    text-decoration: none;
}


/* Commission Section */
.commission-section {
    position: relative;
    padding: 40px 0px;
    text-align: center;
    overflow: hidden;
}

    .commission-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
        z-index: 100;
    }

.commission-title {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 114px;
    font-weight: 600;
    color: white;
    z-index: 200;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(0,0,0,0.6);
}


.carousel-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 20px 0;
}

.influencer-cards {
    display: flex;
    gap: 20px;
    animation: scroll-left 40s linear infinite;
    width: max-content;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

.influencer-card {
    flex-shrink: 0;
    width: 420px;
    height: 650px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

    .influencer-card:hover {
        transform: translateY(-5px);
    }

    .influencer-card img {
        width: 100%;
        height: auto;
        object-fit: cover;
        filter: brightness(0.8);
    }


.info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    color: #fff;
    padding: 10px 15px;
    text-align: center;
    z-index: 2;
    box-sizing: border-box;
    height: 100px;
}

.name {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 5px;
}

.stats {
    display: flex;
    gap: 10px;
    font-size: 14px;
    justify-content: center;
}

    .stats span {
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .stats img {
        width: 24px;
        height: 24px;
        display: block;
    }

.support-section {
    padding: 30px 60px;
}

    .support-section h3 {
        font-size: 36px;
        font-weight: 400;
    }

    .support-section p {
        font-size: 24px;
        font-weight: 300;
        text-align: justify;
    }


.support-carousel-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 20px 0 50px 0;
    margin: 0 auto;
}

.support-carousel-track {
    display: flex;
    gap: 100px;
    transition: transform 0.5s ease;
}


.support-card {
    border-radius: 25px;
    background-clip: padding-box;
    background-color: white;
    position: relative;
    width: 730px;
    height: 485px;
    margin: 2rem auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

    .support-card img {
        width: 100%;
        height: 250px;
        border-radius: 25px 25px 0 0;
        /* width: 100%;
        height: auto;
        object-fit: cover;
        filter: brightness(0.8);*/
    }


.support-info {
    padding: 0px 20px;
}

    .support-info h3 {
        font-size: 28px;
        font-weight: 300;
    }

    .support-info h4 {
        font-size: 18px;
        font-weight: 400;
    }

    .support-info p {
        font-size: 18px;
        font-weight: 300;
    }

.support-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #2196f3; /* Bright blue */
    text-decoration: none;
    font-family: 'Segoe UI', sans-serif;
    transition: all 0.3s ease;
}

    .support-button .support-image-button {
        width: 36px;
        height: 36px;
        /*border: 1px solid #2196f3;*/
        color: #2196f3;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 6px;
        font-size: 18px;
        transition: background-color 0.3s, color 0.3s;
    }

.support-nav {
    position: absolute;
    bottom: 0;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    cursor: pointer;
}

    .support-nav.prev {
        left: 0; /* Adjust depending on spacing */
    }

    .support-nav.next {
        left: 60px; /* Adjust accordingly */
    }

    .support-nav.disabled {
        background-color: #E5E5E5;
        cursor: default;
        pointer-events: none;
        opacity: 0.5; /* Optional visual cue */
    }

/*Before Footer*/
/* Footer */
.everest-footer {
    background-color: #7FCAFA;
    padding: 10px;
    font-size: 14px;
    color: #FFF;
    z-index: 999;
    position: relative;
}

.footer-container {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-left {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    width: 90px;
    height: auto;
    margin-bottom: 16px;
}

.footer-left p {
    margin: 0 0 10px;
    font-size: 14px;
    line-height: 1.6;
}

.footer-left .copyright {
    margin-top: 10px;
    font-size: 12px;
}

.footer-right {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.footer-column {
    min-width: 120px;
}

    .footer-column h4 {
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .footer-column ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .footer-column ul li {
            margin-bottom: 8px;
        }

            .footer-column ul li a {
                color: #FFF;
                text-decoration: none;
            }

                .footer-column ul li a:hover {
                    text-decoration: underline;
                }
