@charset "utf-8";

        html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

        html, body {
            cursor: url('../image/icon/favicon-cursor-32x32.png'), auto;
        }

        a, button, .logo, .menu-btn, .fab, .footer-logo-container {
            cursor: url('../image/icon/favicon-cursor-32x32.png'), pointer !important;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Arial, sans-serif;
        }

        body {
            background-color: #e3e3db; 
            color: #050a30; 
            line-height: 1.6;
            scroll-behavior: smooth;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 52px 8%; 
            background-color: #f5f3f5; 
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            height: 60px;
        }

        .logo {
            position: relative;
            z-index: 1001;
        }

        .logo img { 
            height: 180px; 
            width: auto;
            position: absolute;
            top: -90px; 
            left: 0;
            display: block;
            transition: transform 0.3s ease;
        }

        .logo img:hover {
            transform: scale(1.05);
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 12px;
            align-items: center;
            margin-left: auto;
        }

        .nav-links li a {
            text-decoration: none;
            color: #36168F; 
            font-family: 'Microsoft PhagsPa', sans-serif;
            font-weight: bold; 
            padding: 10px 18px;
            border-radius: 25px; 
            font-size: 15px; 
            letter-spacing: 0.2px;
            transition: all 0.3s ease;
        }

        .nav-links li a.active {
            background-color: #cf1111; 
            color: #f5f3f5; 
        }

        .nav-links li a:hover {
            background-color: #e3e3db;
            color: #36168F; 
        }

        

        .floating-container {
            position: fixed;
            bottom: 30px;
            right: 30px;
            display: flex;
            flex-direction: column;
            z-index: 9999;
            transition: all 0.3s ease;
        }

        .floating-container.at-footer {
            position: absolute;
            bottom: 420px;
            right: 3%; 
            flex-direction: row; 
            align-items: center;
        }

        .fab {
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: 0.3s;
            background: transparent;
            border: none;
            outline: none;
            padding: 0;
        }

        .fab img { width: 100%; height: 100%; object-fit: contain; }
        .fab:hover { transform: scale(1.15); }
        .fab-back-top { opacity: 0; visibility: hidden; }
        .fab-back-top.show { opacity: 1; visibility: visible; }

        .footer-wrapper {
            position: relative;
            margin-top: 180px;
        }

        .footer-wave {
            position: absolute;
            top: -190px;
            left: 0;
            width: 100%;
            height: 200px;
            line-height: 0;
            transform: scaleX(-1);
            z-index: 1;
        }

        .footer-wave svg {
            display: block;
            width: 100%;
            height: 100%;
            fill: #36168F; 
        }

        .footer {
            background-color: #36168F; 
            color: #F5F3F5;
            padding: 40px 10% 30px;
            position: relative;
            font-family: 'Microsoft PhagsPa', sans-serif;
            font-weight: bold;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.2fr 1.3fr 1fr;
            gap: 15px;
            max-width: 1200px;
            margin: 0 auto 40px;
            align-items: flex-start;
        }

        .footer-logo-container {
            position: relative;
            height: 115px; 
        }

        .footer-logo-container img { 
            height: 130px; 
            width: auto;
            position: absolute;
            bottom: 0; 
            left: 0;
            filter: brightness(0) invert(1); 
        }

        .contact-icon {
            width: 20px;
            height: 20px;
            object-fit: contain;
            display: inline-block;
        }
        
        .footer-col p {
            margin-bottom: 15px;
            font-size: 15px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .footer-links-split {
            display: flex;
            justify-content: space-between;
            gap: 20px;
        }

        .footer-col ul { list-style: none; }
        .footer-col ul li { margin-bottom: 12px; }
        .footer-col ul li a { 
            color: white; 
            text-decoration: none; 
            font-size: 14px; 
            transition: 0.3s;
            font-family: 'Microsoft PhagsPa', sans-serif;
            font-weight: bold;
        }
        .footer-col ul li a:hover { color: #e3e3db; text-decoration: underline; }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 13px;
        }

        @media (max-width: 900px) {
            .navbar { padding: 15px 4%; height: auto; }
            .nav-links { 
                display: none; 
                flex-direction: column; 
                width: 100%; 
                position: absolute; 
                top: 80px; 
                left: 0; 
                background: #f5f3f5; 
                padding: 30px 0; 
                box-shadow: 0 10px 20px rgba(0,0,0,0.1); 
            }
            .nav-links.show { display: flex; }
            .menu-btn { display: block; font-size: 28px; color: #36168F; } 
            .logo img { position: relative; top: 0; height: 100px; }
            .img-left, .img-right { height: 250px; }
            .footer-grid { grid-template-columns: 1fr; text-align: center; }
            .footer-col p { justify-content: center; }
            .footer-links-split { justify-content: center; }
            .footer-logo-container { height: auto; display: flex; justify-content: center; margin-bottom: 40px; }
            .footer-logo-container img { position: relative; height: 120px; }
            .footer-wave { top: -80px; height: 90px; }
            .floating-container { bottom: 20px; right: 20px; }
            .fab { width: 50px; height: 50px; }
        }

        .menu-btn { display: none; }



@media (max-width: 900px) {
    .menu-btn {
        display: block !important; 
        z-index: 1002;
    }

    .nav-links {
        display: none; 
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #f5f3f5;
        padding: 20px 0;
        text-align: center;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

    .nav-links.show {
        display: flex;
    }

    .logo img {
        height: 100px;
        top: -50px;
    }
}


@media (max-width: 900px) {
    .navbar {
        height: 70px;
        padding: 0 20px;
        overflow: visible;
    }

    .logo img {
        height: 60px !important; 
        top: 5px !important;    
        position: relative;
    }

    .menu-btn {
        display: flex !important;
        flex-direction: column;
        justify-content: space-around;
        width: 30px;
        height: 25px;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 1001;
    }

    .bar {
        width: 100%;
        height: 3px;
        background-color: #36168F;
        border-radius: 10px;
        transition: all 0.3s linear;
    }

    .nav-links {
        display: none; 
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #f5f3f5;
        padding: 20px 0;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        margin: 10px 0;
    }
}


@media (max-width: 900px) {
    .navbar { 
        height: 70px; 
        padding: 0 20px; 
        position: sticky;
    }

    .logo img { 
        height: 60px !important; 
        top: 5px !important; 
        position: relative; 
        left: 0;
    }

    .menu-btn {
        display: flex !important;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 21px;
        cursor: pointer;
        z-index: 1001;
    }

    .menu-btn span {
        display: block;
        width: 100%;
        height: 3px;
        background-color: #36168F;
        border-radius: 3px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #f5f3f5;
        padding: 20px 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        text-align: center;
    }

    .nav-links.show { display: flex; }
    .nav-links li { margin: 12px 0; }
}



@media (max-width: 900px) {
    .menu-btn {
        display: flex !important;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 21px;
        cursor: pointer;
        z-index: 1100;
        margin-right: 20px;
    }

    .menu-btn span {
        display: block;
        width: 100%;
        height: 3px;
        background-color: #36168F;
        border-radius: 3px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #f5f3f5;
        padding: 20px 0;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        text-align: center;
    }

    .nav-links.show {
        display: flex;
    }
}



@media (max-width: 900px) {
    .menu-btn {
        display: flex !important;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 21px;
        cursor: pointer;
        z-index: 1100;
    }
    .menu-btn span {
        display: block;
        width: 100%;
        height: 3px;
        background-color: #36168F;
        border-radius: 3px;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #f5f3f5;
        padding: 20px 0;
        text-align: center;
    }
    .nav-links.show { display: flex; }
}


@media (max-width: 900px) {
    .menu-btn {
        display: flex !important;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 21px;
        cursor: pointer;
        z-index: 1100;
    }
    .menu-btn span {
        display: block;
        width: 100%;
        height: 3px;
        background-color: #36168F;
        border-radius: 3px;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #f5f3f5;
        padding: 20px 0;
        text-align: center;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    .nav-links.show {
        display: flex;
    }
}

@media (max-width: 900px) {
    .menu-btn {
        display: flex !important;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 21px;
        cursor: pointer;
        z-index: 1100;
    }
    .menu-btn span {
        display: block;
        width: 100%;
        height: 3px;
        background-color: #36168F;
        border-radius: 3px;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #f5f3f5;
        padding: 20px 0;
        text-align: center;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    .nav-links.show {
        display: flex;
    }
}

@media (max-width: 900px) {
    .navbar { 
        height: 70px; 
        padding: 0 20px; 
    }

    .logo img { 
        height: 60px !important; 
        top: 5px !important; 
        position: relative; 
        left: 0;
    }

    .menu-btn {
        display: flex !important;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 21px;
        cursor: pointer;
        z-index: 1001;
    }

    .menu-btn span {
        display: block;
        width: 100%;
        height: 3px;
        background-color: #36168F;
        border-radius: 3px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #f5f3f5;
        padding: 20px 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        text-align: center;
    }

    .nav-links.show { display: flex; }
    .nav-links li { margin: 15px 0; }
}


