﻿/**
* Template Name: Lumia
* Template URL: https://bootstrapmade.com/lumia-bootstrap-business-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
/*:root {
    --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Raleway", sans-serif;
    --nav-font: "Poppins", sans-serif;
}*/
:root {
    --default-font: "Montserrat", system-ui, -apple-system, "Segoe UI", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Montserrat", sans-serif;
    --nav-font: "Montserrat", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
    --background-color: #ffffff;
    --background-color: #E3E1E1;
    --background-color: #E3E9E8;
    /* Background color for the entire website, including individual sections */
    --default-color: #444444;
    /* Default color used for the majority of the text content across the entire website */
    --heading-color: #384046;
    /* Color for headings, subheadings and title throughout the website */
    --accent-color: #1E4688;
    /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #ffffff;
    /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff;
    /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
    --second-color: #FFC53A;
    --bg1: #002D4F;
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
    --nav-color: #ffffff;
    /* The default color of the main navmenu links */
    --nav-hover-color: #1E4688;
    /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #ffffff;
    /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #ffffff;
    /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #444444;
    /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #1E4688;
    /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
    --background-color: #f7fbfe ;
    --surface-color: #ffffff;
}

.dark-background {
    --background-color: #1d222d;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #31394c;
    --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
    margin: 0;
    padding: 0;
    /*scroll-behavior: smooth;*/ 
    background: linear-gradient(135deg, rgba(0, 0, 65, 1.000) 0.000%, rgba(34, 87, 114, 1.000) 50.000%, rgba(91, 195, 154, 1.000) 100.000%);
    min-height:100vh;
}
body {
    /*scroll-snap-type: y proximity;*/ /* эсвэл: y mandatory */
}
/* SCROLLER */
.scroller {
    position: relative;
    width: 100%;  100vw биш 
    height: 100vh;
    scroll-behavior: smooth;
    overflow-y: auto;
    overflow-x: hidden;  visible биш 
    scroll-snap-type: y mandatory;
    padding: 0 !important;
    margin: 0;


    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y proximity;
}

 SECTION-үүд 
.snap-section {
    scroll-snap-align: start;
    scroll-snap-stop: always;
    height: 100vh;  min-height биш, яг 100vh 
    min-height: 100vh;
    margin: 0;
    padding: 0;
    box-sizing: border-box;



    height: 100vh;
    scroll-snap-align: start;
}

    /* section дотор margin-collapse сэргийлэх (сонголтоор) */
    .snap-section > *:first-child {
        margin-top: 0;
    }

    .snap-section > *:last-child {
        margin-bottom: 0;
    }
a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
}

    a:hover {
        color: color-mix(in srgb, var(--accent-color), transparent 25%);
        text-decoration: none;
    }

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
    display: none;
    background: #df1529;
    color: #ffffff;
    text-align: left;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.php-email-form .sent-message {
    display: none;
    color: #ffffff;
    background: #059652;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.php-email-form .loading {
    display: none;
    background: var(--surface-color);
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
}

    .php-email-form .loading:before {
        content: "";
        display: inline-block;
        border-radius: 50%;
        width: 24px;
        height: 24px;
        margin: 0 10px -6px 0;
        border: 3px solid var(--accent-color);
        border-top-color: var(--surface-color);
        animation: php-email-form-loading 1s linear infinite;
    }

@keyframes php-email-form-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    color: #e5e7eb;
    z-index: 995 !important;
    background: linear-gradient( to bottom, rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.55) );
    /*background: rgba(15, 23, 42, 0.55));*/
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(148, 163, 253, 0.25);
    /*box-shadow: 0 10px 40px rgba(15, 23, 42, 0.6);*/
    transition: background .25s ease, box-shadow .25s ease, color .25s ease;
    position: fixed !important;
    width:100%;
    top: 0;
    left: 0;
}


.header--home {
    position: fixed !important;
    width: 100%;
    z-index: 100 !important;
    /*position: fixed;*/
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}



.header--transparent {
    box-shadow: none !important;
    border: none !important;
    backdrop-filter: none !important;
    background: transparent !important;
    -webkit-backdrop-filter: none !important;
    background-color: transparent !important;
}

.header .logo {
    line-height: 1;
}

    /* Дефолтоор дээрээ байх үеийн хэмжээ */
    .header .logo img,
    .logo .logo-img {
        max-height: 100px;
        height: auto;
        padding:20px; 
        margin-right: 8px;
        display: inline-block;
        transition: max-height 0.25s ease, transform 0.25s ease;
    }

/* Доош scroll хийсэн үед (header--scrolled анги нэмэгдэнэ) */
.header.header--scrolled .logo img,
.header.header--scrolled .logo .logo-img {
    max-height: 85px;
    padding: 15px;
    transform: translateY(4px); /* хүсвэл жаахан доош суулгаж өгч болно */
}


/* default: өнгөт лого (home биш үед, эсвэл доош гүйлгэсэн үед) */
.logo .logo-img--dark {
    display: inline-block;
}

/* Home + top үед: header--transparent анги идэвхтэй → цагаан лого харуулна */
.header--transparent .logo .logo-img--dark {
    /*display: none;*/
}

.header--transparent .logo .logo-img--light {
    /*display: inline-block;*/
}

    .header .logo h1 {
        font-size: 30px;
        margin: 0;
        font-weight: 700;
        color: var(--heading-color);
    }

.header .header-social-links {
    padding-right: 15px;
}
.navitem--transparent {
    /*color: white !important;*/
    /*color: var(--accent-color) !important;*/
    color: white !important;
}

.navitem--transparent-reversed {
    color: white !important;
    /*color: var(--accent-color) !important;*/
}


.header .header-social-links a:hover {
    color: var(--accent-color);
}

    .header .header-social-links a i {
        line-height: 0px;
    }

@media (max-width: 1200px) {
    .header .logo {
        order: 1;
    }

    .header .header-social-links {
        order: 2;
    }

    .header .navmenu {
        order: 3;
    }
}

.scrolled .header {
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.navmenu{
    gap:12px;
}

    .navmenu .dropdown-menu {
        display: block;
        position: absolute !important;
        z-index: 99999 !important;
        transform: translate3d(0, 40px, 0) !important;
        visibility: visible;
        opacity: 1;
    }
    .navmenu .dropdown .dropdown-toggle {
        padding: 0px 5px;
    }

.navmenu .dropdown-menu.show {
    display: block !important;
}
        .navmenu .dropdown-toggle::after {
            color: var(--nav-color);
        }
.navmenu li {
    padding-left:12px;
}

@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
        display:flex;
        flex-direction:row;
        align-items:center;
    }

        .navmenu ul {
            margin: 0;
            padding: 0;
            display: flex;
            list-style: none;
            align-items: center;
        }

        .navmenu li {
            
            position: relative;
            border-radius:16px;
        }

        .navmenu a,
        .navmenu a:focus {
            border: 1px solid transparent;
            border-radius: 32px;
            color: var(--nav-color);
            padding: 10px 15px;
            margin-left: 2px;
            font-size: 16px;
            font-family: var(--nav-font);
            font-weight: 400;
            display: flex;
            align-items: center;
            justify-content: space-between;
            white-space: nowrap;
            transition: 0.3s;
        }

            .navmenu a i,
            .navmenu a:focus i {
                font-size: 12px;
                line-height: 0;
                margin-left: 5px;
                transition: 0.3s;
            }

        .navmenu li:hover > a,
        .navmenu .active,
        .navmenu .active:focus {
            color: var(--contrast-color);
            border-radius: 32px;
            border: 1px solid white;
            /*background-color: var(--nav-hover-color);*/
        }

        .navmenu .dropdown ul {
            margin: 0;
            padding: 0;
            background: var(--nav-dropdown-background-color);
            display: block;
            position: absolute;
            visibility: hidden;
            left: 2px;
            top: 130%;
            opacity: 0;
            transition: 0.3s;
            z-index: 99;
            box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
        }

            .navmenu .dropdown ul li {
                min-width: 200px;
            }

            .navmenu .dropdown ul a {
                padding: 10px 20px;
                margin: 0;
                font-size: 15px;
                text-transform: none;
                color: var(--nav-dropdown-color);
            }

                .navmenu .dropdown ul a i {
                    font-size: 12px;
                }

                .navmenu .dropdown ul a:hover,
                .navmenu .dropdown ul .active:hover,
                .navmenu .dropdown ul li:hover > a {
                    color: var(--contrast-color);
                    background-color: var(--nav-hover-color);
                }

        .navmenu .dropdown:hover > ul {
            opacity: 1;
            top: 100%;
            visibility: visible;
        }

        .navmenu .dropdown .dropdown ul {
            top: 0;
            left: -90%;
            visibility: hidden;
        }

        .navmenu .dropdown .dropdown:hover > ul {
            opacity: 1;
            top: 0;
            left: -100%;
            visibility: visible;
        }
}
@media (min-width:1200px){
    .mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 28px;
        line-height: 0;
        cursor: pointer;
        transition: color 0.3s;
    }

        .mobile-nav-toggle.d-xl-none {
            display: inline-block !important;
        }
/*
    .mobile-nav-active {
        overflow: hidden;
    }*/
/*
        .mobile-nav-active .mobile-nav-toggle {
            color: #fff;
            position: absolute;
            font-size: 32px;
            top: 15px;
            right: 15px;
            margin-right: 0;
            z-index: 9999;
        }*/
/*
        .mobile-nav-active .navmenu {
            position: fixed;
            overflow: hidden;
            inset: 0;
            background: rgba(33, 37, 41, 0.8);
            transition: 0.3s;
        }*/
/*
            .mobile-nav-active .navmenu > ul {
                display: block;
            }*/
    .navmenu {
        padding: 0;
        z-index: 9997;
        position: relative; 

    }

.navmenu ul {
    list-style: none;
    position: absolute;
    top: 60px;
    right: 20px;
    left: auto;                /* зүүн талаас салгана */
    bottom: auto;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    display: none;             /* .navmenu-active гэх мэтээр нээдэг бол хэвээр үлдээнэ */
}

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-dropdown-color);
        padding: 10px 20px;
        font-family: var(--nav-font);
        font-size: 17px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

        .navmenu a i,
        .navmenu a:focus i {
            font-size: 12px;
            line-height: 0;
            margin-left: 5px;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: 0.3s;
            background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
        }

            .navmenu a i:hover,
            .navmenu a:focus i:hover {
                background-color: var(--accent-color);
                color: var(--contrast-color);
            }

        .navmenu a:hover,
        .navmenu .active,
        .navmenu .active:focus {
            color: var(--nav-dropdown-hover-color);
        }

            .navmenu .active i,
            .navmenu .active:focus i {
                background-color: var(--accent-color);
                color: var(--contrast-color);
                transform: rotate(180deg);
            }

    .navmenu .dropdown ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 10px 0;
        margin: 10px 20px;
        background-color: var(--nav-dropdown-background-color);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        box-shadow: none;
        transition: all 0.5s ease-in-out;
    }

        .navmenu .dropdown ul ul {
            background-color: rgba(33, 37, 41, 0.1);
        }

    .navmenu .dropdown > .dropdown-active {
        display: block;
        background-color: rgba(33, 37, 41, 0.03);
    }



}
/* Mobile Navigation */
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 28px;
        line-height: 0;
        cursor: pointer;
        transition: color 0.3s;
    }

    .navmenu {
        padding: 0;
        z-index: 9997;
        display: flex;
        flex-direction: row;
        align-items:center;
    }

        .navmenu ul {
            display: none;
            list-style: none;
            position: absolute;
            inset: 60px 20px 20px 20px;
            padding: 10px 0;
            margin: 0;
            border-radius: 6px;
            background-color: var(--nav-mobile-background-color);
            overflow-y: auto;
            transition: 0.3s;
            z-index: 9998;
            box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
        }

        .navmenu a,
        .navmenu a:focus {
            color: var(--nav-dropdown-color);
            padding: 10px 20px;
            font-family: var(--nav-font);
            font-size: 17px;
            font-weight: 500;
            display: flex;
            align-items: center;
            justify-content: space-between;
            white-space: nowrap;
            transition: 0.3s;
        }

            .navmenu a i,
            .navmenu a:focus i {
                font-size: 12px;
                line-height: 0;
                margin-left: 5px;
                width: 30px;
                height: 30px;
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 50%;
                transition: 0.3s;
                background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
            }

                .navmenu a i:hover,
                .navmenu a:focus i:hover {
                    background-color: var(--accent-color);
                    color: var(--contrast-color);
                }

            .navmenu a:hover,
            .navmenu .active,
            .navmenu .active:focus {
                color: var(--nav-dropdown-hover-color);
            }

                .navmenu .active i,
                .navmenu .active:focus i {
                    background-color: var(--accent-color);
                    color: var(--contrast-color);
                    transform: rotate(180deg);
                }

        .navmenu .dropdown ul {
            position: static;
            display: none;
            z-index: 99;
            padding: 10px 0;
            margin: 10px 20px;
            background-color: var(--nav-dropdown-background-color);
            border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
            box-shadow: none;
            transition: all 0.5s ease-in-out;
        }

            .navmenu .dropdown ul ul {
                background-color: rgba(33, 37, 41, 0.1);
            }

        .navmenu .dropdown > .dropdown-active {
            display: block;
            background-color: rgba(33, 37, 41, 0.03);
        }

    .mobile-nav-active {
        overflow: hidden;
    }

        .mobile-nav-active .mobile-nav-toggle {
            color: #fff;
            position: absolute;
            font-size: 32px;
            top: 15px;
            right: 15px;
            margin-right: 0;
            z-index: 9999;
        }

        .mobile-nav-active .navmenu {
            position: fixed;
            overflow: hidden;
            inset: 0;
            background: rgba(33, 37, 41, 0.8);
            transition: 0.3s;
        }

            .mobile-nav-active .navmenu > ul {
                display: block;
            }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
    color: var(--default-color);
    color: white;
    /*background-color: var(--background-color);*/
    font-size: 1.1vh;
    padding-bottom: 15px;
    position: relative;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.3));
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(148, 163, 253, 0.25);
    bottom:0px;
}

    .footer .footer-top {
        padding-top:60px;
        padding-bottom:60px;
    }

    .footer .footer-about .logo {
        line-height: 1;
        margin-bottom: 25px;
    }

        .footer .footer-about .logo img {
            max-height: 40px;
            margin-right: 6px;
        }

        .footer .footer-about .logo span {
            color: var(--heading-color);
            font-size: 30px;
            font-weight: 700;
            letter-spacing: 1px;
            font-family: var(--heading-font);
        }

    .footer .footer-about p {
        font-size: 14px;
        font-family: var(--heading-font);
    }

    .footer .social-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
        border: 1px solid white;
        font-size: 16px;
        color: color-mix(in srgb, var(--default-color), transparent 50%);
        margin-right: 10px;
        transition: 0.3s;
        color: white !important;
    }

        .footer .social-links a:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 10px 25px rgba(15, 23, 42, 0.18); /* soft shadow */
        }
        
    .footer h4 {
        color: white;
        font-size: 1.4vh;
        font-weight: bold;
        position: relative;
        padding-bottom: 12px;
        font-size: clamp(14px, 1.6vh, 24px);
    }

    .footer .footer-links {
        margin-bottom: 30px;
    }

        .footer .footer-links ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

            .footer .footer-links ul i {
                padding-right: 2px;
                font-size: 12px;
                font-size: 1.6vh;
                font-size: clamp(14px, 1.6vh, 24px);
                line-height: 0;
                color: white;
            }

            .footer .footer-links ul li {
                padding: 10px 0;
                font-size: 1.4vh;
                font-size: clamp(14px, 1.6vh, 24px);
                display: flex;
                align-items: center;
            }

                .footer .footer-links ul li:first-child {
                    padding-top: 0;
                }

            .footer .footer-links ul a {
                /*color: color-mix(in srgb, var(--default-color), transparent 20%);*/
                display: inline-block;
                line-height: 1;
                color: white !important;
            }

                .footer .footer-links ul a:hover {
                    color: var(--accent-color);
                    color: white !important;
                }

    .footer .footer-contact p {
        margin-bottom: 5px;
        font-size: 1.4vh;
        font-size: clamp(14px, 1.6vh, 24px);
    }

    .footer .copyright {
        padding-top: 25px;
        padding-bottom: 25px;
        background-color: color-mix(in srgb, var(--default-color), transparent 95%);
    }

        .footer .copyright p {
            margin-bottom: 0;
            font-size: 1vh;
            font-size: clamp(14px, 1.6vh, 24px);
        }

    .footer .credits {
        margin-top: 6px;
        font-size: 1.1vh;
    }

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    overflow: hidden;
    background: var(--background-color);
    transition: all 0.6s ease-out;
}

    #preloader:before {
        content: "";
        position: fixed;
        top: calc(50% - 30px);
        left: calc(50% - 30px);
        border: 6px solid #ffffff;
        border-color: var(--accent-color) transparent var(--accent-color) transparent;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        animation: animate-preloader 1.5s linear infinite;
    }

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

    .scroll-top i {
        font-size: 24px;
        color: var(--contrast-color);
        line-height: 0;
    }

    .scroll-top:hover {
        background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
        color: var(--contrast-color);
    }

    .scroll-top.active {
        visibility: visible;
        opacity: 1;
    }

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }

    /* Дефолтоор дээрээ байх үеийн хэмжээ */
    .header .logo img,
    .logo .logo-img {
        max-height: 80px;
        height: auto;
        padding: 20px;
        margin-right: 8px;
        display: inline-block;
        transition: max-height 0.25s ease, transform 0.25s ease;
    }

    /* Доош scroll хийсэн үед (header--scrolled анги нэмэгдэнэ) */
    .header.header--scrolled .logo img,
    .header.header--scrolled .logo .logo-img {
        max-height: 65px;
        padding: 15px;
        transform: translateY(4px); /* хүсвэл жаахан доош суулгаж өгч болно */
    }

    #main-dontation-btn {
        display: none;
    }
    
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
    color: var(--default-color);
    /*background-color: var(--background-color);*/
    padding: 25px 0;
    padding-top: 100px;
    position: relative;
}

    .page-title h1 {
        font-size: 28px;
        font-weight: 700;
    }

    .page-title .breadcrumbs ol {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        padding: 0;
        margin: 0;
        font-size: 14px;
        font-weight: 400;
    }

        .page-title .breadcrumbs ol li + li {
            padding-left: 10px;
        }

            .page-title .breadcrumbs ol li + li::before {
                content: "/";
                display: inline-block;
                padding-right: 10px;
                color: color-mix(in srgb, var(--default-color), transparent 70%);
            }

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 120px 0;
    scroll-margin-top: 84px;
    overflow: clip;
}

@media (max-width: 1199px) {

    section,
    .section {
        scroll-margin-top: 76px;
        padding: 60px 0;
    }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
    text-align: center;
    padding-bottom: 60px;
    position: relative;
}

    .section-title h2 {
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 20px;
        padding-bottom: 20px;
        position: relative;
    }

        .section-title h2:before {
            content: "";
            position: absolute;
            display: block;
            width: 160px;
            height: 1px;
            background: color-mix(in srgb, var(--default-color), transparent 60%);
            left: 0;
            right: 0;
            bottom: 1px;
            margin: auto;
        }

        .section-title h2::after {
            content: "";
            position: absolute;
            display: block;
            width: 60px;
            height: 3px;
            background: var(--accent-color);
            left: 0;
            right: 0;
            bottom: 0;
            margin: auto;
        }

    .section-title p {
        margin-bottom: 0;
    }

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    width: 100%;
    min-height: 60vh;
    position: relative;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .hero img {
        position: absolute;
        inset: 0;
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
    }

    .hero:before {
        content: "";
        background: color-mix(in srgb, var(--background-color), transparent 60%);
        position: absolute;
        inset: 0;
        z-index: 2;
    }

    .hero .container {
        position: relative;
        z-index: 3;
    }

    .hero h2 {
        margin: 0;
        font-size: 48px;
        font-weight: 700;
    }

    .hero p {
        margin: 10px 0 0 0;
        font-size: 24px;
        color: var(--heading-color);
    }

    .hero .btn-get-started {
        background-color: var(--second-color);
        color: var(--default-color);
        font-weight: 400;
        font-size: 16px;
        letter-spacing: 1px;
        text-transform: uppercase;
        display: inline-block;
        padding: 20px 40px;
        margin: 30px 0 0 0;
        border-radius: 4px;
        transition: 0.5s;
        font-weight: 500;
    }

        .hero .btn-get-started i {
            margin-left: 10px;
        }

        .hero .btn-get-started:hover {
            background: color-mix(in srgb, var(--accent-color) 90%, white 15%);
        }

@media (max-width: 768px) {
    .hero h2 {
        font-size: 32px;
    }

    .hero p {
        font-size: 18px;
    }

    section,
    .section {
        scroll-margin-top: 76px;
        padding: 20px 0;
    }

    .gap-container {
        gap: 18px;
    }
}

}

/*--------------------------------------------------------------
# What We Do Section
--------------------------------------------------------------*/
.what-we-do .why-box {
    color: var(--contrast-color);
    background: var(--accent-color);
    padding: 30px;
}

    .what-we-do .why-box h3 {
        color: var(--contrast-color);
        font-weight: 700;
        font-size: 34px;
        margin-bottom: 30px;
    }

    .what-we-do .why-box p {
        margin-bottom: 15px;
    }

    .what-we-do .why-box .more-btn {
        display: inline-block;
        background: color-mix(in srgb, var(--contrast-color), transparent 85%);
        padding: 8px 40px 10px 40px;
        color: var(--contrast-color);
        transition: all ease-in-out 0.4s;
        border-radius: 50px;
    }

        .what-we-do .why-box .more-btn i {
            font-size: 14px;
        }

        .what-we-do .why-box .more-btn:hover {
            color: var(--accent-color);
            background: var(--surface-color);
        }

.what-we-do .icon-box {
    background-color: var(--surface-color);
    text-align: center;
    padding: 40px 30px;
    width: 100%;
    height: 100%;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

    .what-we-do .icon-box i {
        color: var(--accent-color);
        margin-bottom: 30px;
        font-size: 32px;
        margin-bottom: 30px;
        background: color-mix(in srgb, var(--accent-color), transparent 95%);
        border-radius: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 72px;
        height: 72px;
        transition: 0.3s;
    }

    .what-we-do .icon-box h4 {
        font-size: 20px;
        font-weight: 700;
        margin: 0 0 30px 0;
    }

    .what-we-do .icon-box p {
        font-size: 15px;
        color: color-mix(in srgb, var(--default-color), transparent 30%);
    }

    .what-we-do .icon-box .handivcount {
        font-size: 24px;
        color: var(--accent-color);
        font-weight: bold;
    }

    .what-we-do .icon-box:hover i {
        font-weight: bold;
        color: var(--second-color);
    }

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-content h3 {
    font-weight: 700;
    font-size: 26px;
}

.about .about-content ul {
    list-style: none;
    padding: 0;
}

    .about .about-content ul li {
        display: flex;
        align-items: flex-start;
        margin-bottom: 35px;
    }

        .about .about-content ul li:first-child {
            margin-top: 35px;
        }

    .about .about-content ul i {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        width: 64px;
        height: 64px;
        font-size: 32px;
        color: #fff;
        background: var(--accent-color);
        margin-right: 15px;
        line-height: 0;
        border-radius: 5px;
    }

    .about .about-content ul h4 {
        font-size: 18px;
        font-weight: 600;
    }

    .about .about-content ul p {
        font-size: 15px;
    }

.about .about-content p:last-child {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Skills Section
--------------------------------------------------------------*/
.skills .progress {
    height: 60px;
    display: block;
    background: none;
    border-radius: 0;
}

    .skills .progress .skill {
        color: var(--heading-color);
        padding: 0;
        margin: 0 0 6px 0;
        text-transform: uppercase;
        display: block;
        font-weight: 600;
        font-family: var(--heading-font);
    }

        .skills .progress .skill .val {
            float: right;
            font-style: normal;
        }

.skills .progress-bar-wrap {
    background: color-mix(in srgb, var(--default-color), transparent 90%);
    height: 10px;
}

.skills .progress-bar {
    width: 1px;
    height: 10px;
    transition: 0.9s;
    background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats {
    padding: 10px 0;
}

    .stats .stats-item {
        padding: 30px;
        width: 100%;
    }

        .stats .stats-item span {
            color: var(--heading-color);
            font-size: 48px;
            display: block;
            font-weight: 700;
            margin-bottom: 20px;
            padding-bottom: 20px;
            position: relative;
        }

            .stats .stats-item span:after {
                content: "";
                position: absolute;
                display: block;
                width: 25px;
                height: 3px;
                background: var(--accent-color);
                left: 0;
                right: 0;
                bottom: 0;
                margin: auto;
            }

        .stats .stats-item p {
            color: color-mix(in srgb, var(--default-color), transparent 40%);
            padding: 0;
            margin: 0;
            font-family: var(--heading-font);
            font-weight: 500;
        }

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
    background-color: var(--surface-color);
    padding: 50px 30px;
    margin-top: 36px;
    transition: all ease-in-out 0.3s;
    position: relative;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    text-align: center;
}

    .services .service-item .icon {
        background: var(--accent-color);
        color: var(--contrast-color);
        margin: 0;
        width: 72px;
        height: 72px;
        border-radius: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        font-size: 28px;
        transition: ease-in-out 0.3s;
        position: absolute;
        top: -36px;
        left: calc(50% - 36px);
        border: 6px solid var(--background-color);
    }

    .services .service-item h3 {
        font-weight: 700;
        margin: 10px 0 15px 0;
        font-size: 22px;
        transition: ease-in-out 0.3s;
    }

    .services .service-item p {
        line-height: 24px;
        font-size: 14px;
        margin-bottom: 0;
    }

    .services .service-item:hover {
        background: var(--background-color);
    }

        .services .service-item:hover h3 {
            color: var(--accent-color);
        }

        .services .service-item:hover .icon {
            background: var(--surface-color);
            border: 2px solid var(--accent-color);
        }

            .services .service-item:hover .icon i {
                color: var(--accent-color);
            }

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
    padding: 0;
    margin: 0 auto 20px auto;
    list-style: none;
    text-align: center;
}

    .portfolio .portfolio-filters li {
        cursor: pointer;
        display: inline-block;
        padding: 0;
        font-size: 16px;
        font-weight: 600;
        margin: 0 10px;
        line-height: 1;
        text-transform: uppercase;
        margin-bottom: 5px;
        transition: all 0.3s ease-in-out;
    }

        .portfolio .portfolio-filters li:hover,
        .portfolio .portfolio-filters li.filter-active {
            color: var(--accent-color);
        }

        .portfolio .portfolio-filters li:first-child {
            margin-left: 0;
        }

        .portfolio .portfolio-filters li:last-child {
            margin-right: 0;
        }

@media (max-width: 575px) {
    .portfolio .portfolio-filters li {
        font-size: 14px;
        margin: 0 5px;
    }
    .footer-top{
        padding:20px 10px !important;
    }
}

.portfolio .portfolio-item {
    position: relative;
}

    .portfolio .portfolio-item .portfolio-info {
        background-color: color-mix(in srgb, var(--surface-color), transparent 10%);
        opacity: 0;
        position: absolute;
        left: 30px;
        right: 30px;
        bottom: 0;
        z-index: 3;
        transition: all ease-in-out 0.3s;
        padding: 15px;
    }

        .portfolio .portfolio-item .portfolio-info h4 {
            font-size: 18px;
            font-weight: 600;
            padding-right: 50px;
        }

        .portfolio .portfolio-item .portfolio-info p {
            color: color-mix(in srgb, var(--default-color), transparent 30%);
            font-size: 14px;
            margin-bottom: 0;
            padding-right: 50px;
        }

        .portfolio .portfolio-item .portfolio-info .preview-link,
        .portfolio .portfolio-item .portfolio-info .details-link {
            position: absolute;
            right: 50px;
            font-size: 24px;
            top: calc(50% - 14px);
            color: color-mix(in srgb, var(--default-color), transparent 30%);
            transition: 0.3s;
            line-height: 0;
        }

            .portfolio .portfolio-item .portfolio-info .preview-link:hover,
            .portfolio .portfolio-item .portfolio-info .details-link:hover {
                color: var(--accent-color);
            }

        .portfolio .portfolio-item .portfolio-info .details-link {
            right: 14px;
            font-size: 28px;
        }

    .portfolio .portfolio-item:hover .portfolio-info {
        opacity: 1;
        bottom: 20px;
    }

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*//*
.testimonials .testimonial-item {
    background-color: var(--surface-color);
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    box-sizing: content-box;
    padding: 30px;
    margin: 30px 15px;
    position: relative;
    height: 100%;
}

    .testimonials .testimonial-item .testimonial-img {
        width: 90px;
        border-radius: 50px;
        margin-right: 15px;
    }

    .testimonials .testimonial-item h3 {
        font-size: 18px;
        font-weight: bold;
        margin: 10px 0 5px 0;
    }

    .testimonials .testimonial-item h4 {
        font-size: 14px;
        color: color-mix(in srgb, var(--default-color), transparent 40%);
        margin: 0;
    }

    .testimonials .testimonial-item .stars {
        margin: 10px 0;
    }

        .testimonials .testimonial-item .stars i {
            color: #ffc107;
            margin: 0 1px;
        }

    .testimonials .testimonial-item .quote-icon-left,
    .testimonials .testimonial-item .quote-icon-right {
        color: color-mix(in srgb, var(--accent-color), transparent 50%);
        font-size: 26px;
        line-height: 0;
    }

    .testimonials .testimonial-item .quote-icon-left {
        display: inline-block;
        left: -5px;
        position: relative;
    }

    .testimonials .testimonial-item .quote-icon-right {
        display: inline-block;
        right: -5px;
        position: relative;
        top: 10px;
        transform: scale(-1, -1);
    }

    .testimonials .testimonial-item p {
        font-style: italic;
        margin: 15px auto 15px auto;
    }

.testimonials .swiper-wrapper {
    height: auto;
}

.testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

    .testimonials .swiper-pagination .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        background-color: color-mix(in srgb, var(--default-color), transparent 85%);
        opacity: 1;
    }

    .testimonials .swiper-pagination .swiper-pagination-bullet-active {
        background-color: var(--accent-color);
    }

@media (max-width: 767px) {
    .testimonials .testimonial-wrap {
        padding-left: 0;
    }

    .testimonials .testimonial-item {
        padding: 30px;
        margin: 15px;
    }

        .testimonials .testimonial-item .testimonial-img {
            position: static;
            left: auto;
        }
}
*/
/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .person {
    position: relative;
}

    .team .person figure {
        margin-bottom: 0;
        padding-bottom: 0;
        position: relative;
        overflow: hidden;
        margin-bottom: 30px;
    }

    .team .person img {
        transition: 0.3s all ease;
    }

    .team .person .person-contents {
        text-align: center;
    }

        .team .person .person-contents h3 {
            color: var(--heading-color);
            font-size: 24px;
        }

        .team .person .person-contents .position {
            color: var(--accent-color);
        }

    .team .person:hover img {
        transform: scale(1.05);
    }

    .team .person .social {
        position: absolute;
        bottom: 10px;
        left: 10px;
        z-index: 2;
    }

        .team .person .social a {
            display: block;
            margin-bottom: 10px;
            width: 40px;
            height: 40px;
            background: var(--contrast-color);
            position: relative;
        }

            .team .person .social a > span {
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
            }

            .team .person .social a:hover {
                background: var(--accent-color);
                color: var(--contrast-color);
            }

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
    background-image: url("../img/contact-bg.png");
    background-position: left center;
    background-repeat: no-repeat;
    position: relative;
}

@media (max-width: 640px) {
    .contact {
        background-position: center 50px;
        background-size: contain;
    }
}

.contact:before {
    content: "";
    background: color-mix(in srgb, var(--background-color), transparent 30%);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

.contact .info-item + .info-item {
    margin-top: 40px;
}

.contact .info-item i {
    background: var(--accent-color);
    color: var(--contrast-color);
    font-size: 20px;
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    margin-right: 15px;
}

.contact .info-item h3 {
    padding: 0;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.contact .info-item p {
    padding: 0;
    margin-bottom: 0;
    font-size: 14px;
}

.contact .php-email-form {
    height: 100%;
}

    .contact .php-email-form input[type=text],
    .contact .php-email-form input[type=email],
    .contact .php-email-form textarea {
        font-size: 14px;
        padding: 10px 15px;
        box-shadow: none;
        border-radius: 0;
        color: var(--default-color);
        background-color: color-mix(in srgb, var(--background-color), transparent 50%);
        border-color: color-mix(in srgb, var(--default-color), transparent 80%);
    }

        .contact .php-email-form input[type=text]:focus,
        .contact .php-email-form input[type=email]:focus,
        .contact .php-email-form textarea:focus {
            border-color: var(--accent-color);
        }

        .contact .php-email-form input[type=text]::placeholder,
        .contact .php-email-form input[type=email]::placeholder,
        .contact .php-email-form textarea::placeholder {
            color: color-mix(in srgb, var(--default-color), transparent 70%);
        }

    .contact .php-email-form button[type=submit] {
        color: var(--contrast-color);
        background: var(--accent-color);
        border: 0;
        padding: 10px 30px;
        transition: 0.4s;
        border-radius: 50px;
    }

        .contact .php-email-form button[type=submit]:hover {
            background: color-mix(in srgb, var(--accent-color), transparent 20%);
        }

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
    width: 100%;
}

.portfolio-details .swiper-wrapper {
    height: auto;
}

.portfolio-details .swiper-button-prev,
.portfolio-details .swiper-button-next {
    width: 48px;
    height: 48px;
}

    .portfolio-details .swiper-button-prev:after,
    .portfolio-details .swiper-button-next:after {
        color: rgba(255, 255, 255, 0.8);
        background-color: rgba(0, 0, 0, 0.15);
        font-size: 24px;
        border-radius: 50%;
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.3s;
    }

    .portfolio-details .swiper-button-prev:hover:after,
    .portfolio-details .swiper-button-next:hover:after {
        background-color: rgba(0, 0, 0, 0.3);
    }

@media (max-width: 575px) {

    .portfolio-details .swiper-button-prev,
    .portfolio-details .swiper-button-next {
        display: none;
    }
}

.portfolio-details .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

    .portfolio-details .swiper-pagination .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        background-color: color-mix(in srgb, var(--default-color), transparent 85%);
        opacity: 1;
    }

    .portfolio-details .swiper-pagination .swiper-pagination-bullet-active {
        background-color: var(--accent-color);
    }

.portfolio-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

    .portfolio-details .portfolio-info h3:after {
        content: "";
        position: absolute;
        display: block;
        width: 50px;
        height: 3px;
        background: var(--accent-color);
        left: 0;
        bottom: 0;
    }

.portfolio-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

    .portfolio-details .portfolio-info ul li {
        display: flex;
        flex-direction: column;
        padding-bottom: 15px;
    }

    .portfolio-details .portfolio-info ul strong {
        text-transform: uppercase;
        font-weight: 400;
        color: color-mix(in srgb, var(--default-color), transparent 50%);
        font-size: 14px;
    }

.portfolio-details .portfolio-info .btn-visit {
    padding: 8px 40px;
    background: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 50px;
    transition: 0.3s;
}

    .portfolio-details .portfolio-info .btn-visit:hover {
        background: color-mix(in srgb, var(--accent-color), transparent 20%);
    }

.portfolio-details .portfolio-description h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
    padding: 0;
}

.portfolio-details .portfolio-description .testimonial-item {
    padding: 30px 30px 0 30px;
    position: relative;
    background: color-mix(in srgb, var(--default-color), transparent 97%);
    margin-bottom: 50px;
}

    .portfolio-details .portfolio-description .testimonial-item .testimonial-img {
        width: 90px;
        border-radius: 50px;
        border: 6px solid var(--background-color);
        float: left;
        margin: 0 10px 0 0;
    }

    .portfolio-details .portfolio-description .testimonial-item h3 {
        font-size: 18px;
        font-weight: bold;
        margin: 15px 0 5px 0;
        padding-top: 20px;
    }

    .portfolio-details .portfolio-description .testimonial-item h4 {
        font-size: 14px;
        color: #6c757d;
        margin: 0;
    }

    .portfolio-details .portfolio-description .testimonial-item .quote-icon-left,
    .portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
        color: color-mix(in srgb, var(--accent-color), transparent 50%);
        font-size: 26px;
        line-height: 0;
    }

    .portfolio-details .portfolio-description .testimonial-item .quote-icon-left {
        display: inline-block;
        left: -5px;
        position: relative;
    }

    .portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
        display: inline-block;
        right: -5px;
        position: relative;
        top: 10px;
        transform: scale(-1, -1);
    }

    .portfolio-details .portfolio-description .testimonial-item p {
        font-style: italic;
        margin: 0 0 15px 0 0 0;
        padding: 0;
    }

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
    background-color: var(--surface-color);
    padding: 20px;
    box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

    .service-details .service-box + .service-box {
        margin-top: 30px;
    }

    .service-details .service-box h4 {
        font-size: 20px;
        font-weight: 700;
        border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
        padding-bottom: 15px;
        margin-bottom: 15px;
    }

.service-details .services-list {
    background-color: var(--surface-color);
}

    .service-details .services-list a {
        color: color-mix(in srgb, var(--default-color), transparent 20%);
        background-color: color-mix(in srgb, var(--default-color), transparent 96%);
        display: flex;
        align-items: center;
        padding: 12px 15px;
        margin-top: 15px;
        transition: 0.3s;
    }

        .service-details .services-list a:first-child {
            margin-top: 0;
        }

        .service-details .services-list a i {
            font-size: 16px;
            margin-right: 8px;
            color: var(--accent-color);
        }

        .service-details .services-list a.active {
            color: var(--contrast-color);
            background-color: var(--accent-color);
        }

            .service-details .services-list a.active i {
                color: var(--contrast-color);
            }

        .service-details .services-list a:hover {
            background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
            color: var(--accent-color);
        }

.service-details .download-catalog a {
    color: var(--default-color);
    display: flex;
    align-items: center;
    padding: 10px 0;
    transition: 0.3s;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

    .service-details .download-catalog a:first-child {
        border-top: 0;
        padding-top: 0;
    }

    .service-details .download-catalog a:last-child {
        padding-bottom: 0;
    }

    .service-details .download-catalog a i {
        font-size: 24px;
        margin-right: 8px;
        color: var(--accent-color);
    }

    .service-details .download-catalog a:hover {
        color: var(--accent-color);
    }

.service-details .help-box {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    margin-top: 30px;
    padding: 30px 15px;
}

    .service-details .help-box .help-icon {
        font-size: 48px;
    }

    .service-details .help-box h4,
    .service-details .help-box a {
        color: var(--contrast-color);
    }

.service-details .service-box .services-img {
    margin-bottom: 20px;
}

.service-details .service-box h3 {
    font-size: 26px;
    font-weight: 700;
}

.service-details p {
    font-size: 15px;
}

.service-details .service-box ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

    .service-details .service-box ul li {
        padding: 5px 0;
        display: flex;
        align-items: center;
    }

    .service-details .service-box ul i {
        font-size: 20px;
        margin-right: 8px;
        color: var(--accent-color);
    }

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
    /* Add your styles here */
}


#top-news .news-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    #top-news .news-img:hover {
        transform: scale(1.05);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }

#top-news .category {
    font-size: 0.8rem;
    color: #1E4688;
}

#top-news .title {
    font-weight: 600;
    font-size: 1rem;
}

#top-news .gum_large_grid {
    height: 100%;
    max-height: 350px;
}

/* .gum_post_grid:hover {
                                                transform: scale(1.05);
                                                box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
                                            } */

#top-news .gum_post_grid {
    background-attachment: scroll;
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    box-shadow: rgba(14, 14, 14, 0.6) 0 -120px 90px -20px inset;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#top-news .gum_post_data {
    position: absolute;
    width: 100%;
    bottom: 0px;
    background-color: transparent;
    background-image: linear-gradient(180deg, #FFFFFF00 0%, #222222 100%);
    opacity: 1;
    transition: all 0.3s;
    padding: 20px;
}

    #top-news .gum_post_data:hover {
        background-image: linear-gradient(180deg, #FFFFFF00 0%, #222222 100%);
        opacity: 1;
        padding-bottom: 15px;
        bottom: 0px;
    }

#top-news a {
    text-decoration: none;
    font-size: 18px;
    color: #292929;
    line-height: 18px;
}

#top-news .gum_post_data .title a {
    font-size: 20px !important;
    color: #fff !important;
    font-weight: 600;
    text-decoration: none;
}

#top-news .gum_post_data .category {
    font-size: 14px;
    color: #fff !important;
    font-weight: 600;
}

#top-news .news-item {
    margin: 5px;
    background-color: white;
    height: 100%;
    box-shadow: 0 0 10px rgba(0, 0, 0, .15), 0 3px 3px rgba(0, 0, 0, .15);
    max-height: 350px;
    transition: box-shadow .5s ease-in;
    overflow: hidden;
}

#top-news .col-md-6 {
    transition: box-shadow .5s ease-in;
    overflow: hidden;
}

#top-news .news-item .news-caption {
    margin: 0 10px 0px 10px;
}
.btn{
    border-radius: 32px !important;
}
header .btn-give-btn {
    /*background-color: var(--second-color);*/
    border: 1px solid white;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    border-radius: 4px;
    transition: 0.5s;
    font-weight: 500;
    color: white;
    background-color: var(--second-color);
    border: 1px solid var(--second-color);
    color: var(--accent-color);
    font-family: var(--default-font);
}

    header .btn-give-btn:hover {
        background-color: var(--second-color);
        border: 1px solid var(--second-color);
        color: white;
    }

.btn-give-btn {
    /*background-color: var(--second-color);*/
    color: white;
    transition: 0.5s;
    font-weight: 500;
}

.btn-outline-second {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

    .btn-outline-second:hover {
        background-color: var(--accent-color);
        color: #ffffff;
    }

.btn:focus-visible {
    background-color: var(--accent-color) !important;
    border-color: var(--accent-color) !important;
}


.toast-close {
    opacity: 0 !important;
    color: #fff !important;
    font-size: 18px !important;
    margin-left: 10px;
    text-shadow: 0 0 3px rgba(0,0,0,.25);
}

.toastify.on.toastify-right {
    display: flex;
    align-items: center;
    justify-content: space-between;
}





.navpanel-backdrop {
    position: fixed;
    inset: 0; /* top:0; right:0; bottom:0; left:0; */
    background: rgba(15, 23, 42, 0.45); /* харавтар overlay */
    opacity: 0;
    pointer-events: none;
    z-index: 998; /* navpanel (999)-ийн доор */
    transition: opacity 0.3s ease;
}

    .navpanel-backdrop.is-active {
        opacity: 1;
        pointer-events: auto;
    }



.navpanel-logo-img{
    width:25vw;
    margin-bottom:40px;
}
.social-icons i {
    font-size: 1.8rem; /* эсвэл 24px, 2rem г.м. */
    padding: 15px 16px;
    border-radius: 100px;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* Hover transition-ууд */
    transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

/* Hover үед – өнгө, сүүдэр, зөөлөн дээш “float” хийнэ */
.social-icons a:hover i {
    background-color: var(--accent-color);
    color: #ffffff;
    border-color: transparent;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.18); /* soft shadow */
}

/* Mouse-ээр дарах үед бага зэрэг дарсан мэт мэдрэмж */
.social-icons a:active i {
    transform: translateY(0) scale(0.97);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.16);
}




.searchpanel {
    position: fixed;
    inset: 0; /* top:0; right:0; bottom:0; left:0; тай адил */
    background: rgba(0, 0, 0, 0.3);
    padding: 40px;
    padding-top: 120px;
    z-index: 9999; /* бүхнээс дээш */
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

/* Доторх хар panel */
.search-cont {
    position: relative;
    z-index: 999 !important;
}
.search {
    border-width:1px;
    max-width: 700px;
    min-width:500px;
    display: flex;
    align-items: center;
    border-radius: 36px;
    background: rgba(0, 0, 0, 0.3);
    gap: 12px;
    padding: 10px 20px;
    background-color: #1E4688;
    border-color: rgba(148, 163, 184, 0.7);
    background: linear-gradient(135deg, rgba(0, 0, 65, 1.000) 0.000%, rgba(34, 87, 114, 1.000) 50.000%, rgba(91, 195, 154, 1.000) 100.000%);
}

/* Input стиль */
.search-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 16px;
    color: #fff;
}

    .search-input::placeholder {
        color: rgba(255, 255, 255, 0.7);
    }

/* Нээгдсэн үед идэвхтэй болно */
.searchpanel.is-open-s {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}



.searchpanel-backdrop {
    position: fixed;
    inset: 0; /* top:0; right:0; bottom:0; left:0; */
    background: rgba(15, 23, 42, 0.45); /* харавтар overlay */
    opacity: 0;
    pointer-events: none;
    z-index: 998; /* navpanel (999)-ийн доор */
    transition: opacity 0.3s ease;
}

    .searchpanel-backdrop.is-active-s {
        opacity: 1;
        pointer-events: auto;
    }





.btn-outline-secondary- {
    border-radius: 999px;
    border-color: rgba(148, 163, 184, 0.7);
    color: #e5e7eb;
    background: rgba(15, 23, 42, 0.96);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
}

    .btn-outline-secondary-:hover {
        border-color: rgba(148, 163, 184, 0.7);
        background: rgba(15, 23, 42, 0.96);
        box-shadow: none;
        color: #e5e7eb;
    }
.close-rotate-btn i {
    display: inline-block; /* transform ажиллахын тулд */
    transition: transform 0.25s ease; /* зөөлөн анимэйшн */
}

.close-rotate-btn:hover i {
    transform: rotate(90deg); /* hover дээр 90° эргэнэ */
    /* хүсвэл scale нэмж болно
       transform: rotate(90deg) scale(1.1);
    */
}
/* === Desktop: ≥1200px === */
@media (min-width: 992px) {
    .navpanel {
        position: fixed;
        top: 15px; /* margin-top орны оронд */
        right: 0;
        bottom: 75px; /* margin-bottom биш, bottom-оо 400px болгов */

        width: 43vw;
        margin: 0;
        box-sizing: border-box;
        border-top-left-radius: 32px;
        border-bottom-left-radius: 32px;
        background: #fff;
        box-shadow: 0 0 30px rgba(0,0,0,0.18);
        padding: 40px 40px;
        z-index: 999 !important;
        transform: translateX(100%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.35s ease, opacity 0.35s ease;
    }




.navpanel.is-open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}

    .navpanel-close {
        position: absolute;
        top: 16px;
        right: 16px;
        width: 32px;
        height: 32px;
        border: none;
        border-radius: 50%;
        background: transparent;
        color: #111827;
        font-size: 22px;
        line-height: 1;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
    }

        .navpanel-close:hover {
            background: #f1f5f9;
            color: #000;
            transform: rotate(90deg);
        }
}

/* === Mobile & Tablet: <1200px === */
@media (max-width: 991px) {
    .navpanel {
        position: fixed;
        top: 0;
        right: 0;
        width: 100vw; /* Бүх дэлгэц */
        height: 100vh;
        background: #fff;
        box-shadow: 0 0 30px rgba(0,0,0,0.18);
        padding: 24px 20px;
        z-index: 9998;
        transform: translateX(100%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

        .navpanel.is-open {
            transform: translateX(0);
            opacity: 1;
            pointer-events: auto;
        }

    .navpanel-close {
        position: absolute;
        top: 14px;
        right: 14px;
        width: 30px;
        height: 30px;
        border: none;
        border-radius: 50%;
        background: transparent;
        color: #111827;
        font-size: 20px;
        line-height: 1;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
    }

        .navpanel-close:hover {
            background: #f1f5f9;
            color: #000;
            transform: rotate(90deg);
        }
    .hiden{
        display:none !important;
    }

}
















.gradient-circle-title {
    position: relative;
    display: inline-block;
    z-index: 1;
    font-size: 3vh;
    text-align: start;
    font-weight: 700;
}

    /* 🟢 Арын градиент дугуй */
    .gradient-circle-title::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        transform: translate(-25%, -50%);
        width: 400px;
        height: 220px;
        background: radial-gradient( circle at center, rgba(37, 99, 235, 0.35) 0%, rgba(16, 185, 129, 0.25) 50%, transparent 100% );
        border-radius: 50%;
        z-index: -1;
        filter: blur(50px);
        opacity: 0.9;
        pointer-events: none;
    }

/* 🔹 Жижиг дэлгэц дээр бага зэрэг багасгана */
@media (max-width: 768px) {
    .gradient-circle-title::before {
        width: 200px;
        height: 180px;
        transform: translate(-20%, -40%);
    }
}

.section-resource {
    padding: 4em;
    justify-content: center;
    align-items: center;
    height: 100svh;
    display: flex;
    position: relative;
}

.osmo-icon__link {
    color: currentColor;
    text-decoration: none;
    position: absolute;
}

.osmo-icon-svg {
    width: 10em;
}

.dots-wrap {
    width: 100%;
    height: 100%;
    position: relative;
}

.dots-container {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
    pointer-events: none;
    flex-flow: wrap;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    align-items: center;
    display: flex;
    position: absolute;
    inset: 0em;
}

.dot {
    will-change: transform, background-color;
    transform-origin: center;
    background-color: #245e51;
    border-radius: 50%;
    width: 1em;
    height: 1em;
    position: relative;
    transform: translate(0);
}

.osmo-credits {
    z-index: 999;
    pointer-events: none;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 4em;
    padding: 1em;
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
}

.osmo-credits__p {
    pointer-events: auto;
    color: #efeeec80;
    text-align: center;
    margin: 0;
    font-family: PP Neue Montreal, Arial, sans-serif;
    font-size: 1.125em;
    font-weight: 500;
    line-height: 1.3;
}

.osmo-credits__p-a {
    color: #efeeec;
}

@font-face {
    font-family: 'PP Neue Montreal';
    src: url('https://cdn.prod.website-files.com/6819ed8312518f61b84824df/6819ed8312518f61b84825ba_PPNeueMontreal-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
















@media (max-width: 999px) {
    .donations-box {
        width: 100%;
    }
}

.donations-box {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999999; /* бусдаас илүү өндөр байлга */
    display: flex;
    flex-direction: column;
    align-items:start;
    /*background: linear-gradient(to top, var(--accent-color), rgba(255,255,255,0));*/
}

.total-donation-container {
    min-width: 100px;
    margin-left: 20px;
    /* hover эффектыг JS-ээр GSAP-аар хийх тул CSS transition хэрэггүй */
}

.total-donation {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4vh;
    background-color: #ffffff;
    border-radius: 16px;
    padding: 15px 30px;
    color: #065f46;
    font-weight: 600;
    border: 1px solid #065f46;
    gap: 8px;
}

/* Icon – зөвхөн байрлал, ямар ч bg / radius байхгүй */
.sumt-action-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

    .sumt-action-icon i {
        font-size: 0.95rem;
    }






.donations-hcarousel {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 6px 0;
}

    /* Fade edge-үүд – хүсвэл background-аа сэргээгээд ашиглаарай */
    .donations-hcarousel::before,
    .donations-hcarousel::after {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        width: 60px;
        z-index: 2;
        pointer-events: none;
    }

    .donations-hcarousel::before {
        left: 0;
        /* background: linear-gradient(to right, #0f172a, transparent); */
    }

    .donations-hcarousel::after {
        right: 0;
        /* background: linear-gradient(to left, #0f172a, transparent); */
    }

/* 🔥 ЭНД ЖИНХЭНЭ TRACK – HTML дээр чинь donations-htrack гэж байгаа */
.donations-htrack {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    white-space: nowrap;
    will-change: transform;
    /* ЭНД animation-аа өгнө */
    animation: donations-hscroll 40s linear infinite;
}

/* Мөрүүд */
.donations-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    white-space: nowrap;
}

    .donations-row.clone {
        margin-left: 10px;
    }

/* Пилл загвар */
.donation-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    margin: 16px;
    border-radius: 999px;
    background-color: white;
    border: 1px solid var(--border);
    transition: transform .35s ease-in-out, box-shadow .35s ease-in-out, border-color .35s ease-in-out;
}

    .donation-pill:hover {
        box-shadow: 0 4px 16px color-mix(in srgb, var(--accent-color) 22%, transparent);
    }

    .donation-pill .name {
        font-weight: 700;
        letter-spacing: .2px;
        color: black;
    }

    .donation-pill .sep {
        opacity: .5;
    }

    .donation-pill .amt {
        font-weight: 600;
        color: #065f46;
    }

    .donation-pill .date {
        font-size: .85em;
        opacity: .7;
        color: black;
    }

/* Hover хийхэд түр зогсооно */
.donations-hcarousel:hover .donations-htrack {
    animation-play-state: paused;
}

/* Keyframes: баруунаас зүүн тийш */
@keyframes donations-hscroll {
    0% {
        transform: translateX(0);
    }

    100% {
        /* row1 + row2 нийлээд нэг бүтэн давталт гүйгээд дуусна гэж үзэж -50% */
        transform: translateX(var(--scroll-distance, -50%));
    }
}





.donations-hcarousel {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 6px 0;
}

.donations-htrack {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    white-space: nowrap;
    will-change: transform;
    transform: translateX(0); /* эхлэл */
}

.donations-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    white-space: nowrap;
}

    .donations-row.clone {
        margin-left: 10px;
    }

/* donation-pill CSS чинь хэвээрээ байг */










/* === Testimonials – сайжруулсан card загвар === */
.testimonials .testimonial-item {
    /* өмнөхийг сайжруулсан */
    --ti-pad: 24px;
    --ti-radius: 18px;
    box-sizing: border-box; /* content-box → border-box */
    background: color-mix(in srgb, var(--surface-color), white 12%);
    background: white !important ;
    backdrop-filter: blur(8px);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    border-radius: var(--ti-radius);
    padding: var(--ti-pad);
    margin: 22px 12px; /* арай авсаархан spacing */
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center; /* төвд */
    text-align: center;
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
    box-shadow:none !important;
}

    .testimonials .testimonial-item:hover {
        transform: translateY(-4px);
    }

    /* Зураг – дугуй, хүрээтэй, сүүдэртэй */
    .testimonials .testimonial-item .testimonial-img {
        width: 90px;
        height: 90px;
        border-radius: 50%;
        object-fit: cover;
        object-position: center;
        margin: 6px auto 12px;
        border: 3px solid rgba(255,255,255,.95);
        box-shadow: 0 6px 16px rgba(2,6,23,.16);
    }

    /* Нэр, албан тушаал */
    .testimonials .testimonial-item h3 {
        font-size: 1.05rem;
        font-weight: 800;
        margin: 8px 0 2px;
        color: var(--heading-color, #0f172a);
    }

    .testimonials .testimonial-item h4 {
        font-size: .92rem; /* 14px → 0.92rem */
        font-weight: 500;
        margin: 0 0 10px;
        color: color-mix(in srgb, var(--default-color), transparent 40%);
    }

    /* Оддын мөр */
    .testimonials .testimonial-item .stars {
        display: inline-flex;
        gap: 4px;
        margin: 8px 0 12px;
    }

        .testimonials .testimonial-item .stars i {
            color: #ffc107;
            margin: 0;
            filter: drop-shadow(0 1px 0 rgba(0,0,0,.10));
        }

    /* Ишний icon-ууд */
    .testimonials .testimonial-item .quote-icon-left,
    .testimonials .testimonial-item .quote-icon-right {
        color: color-mix(in srgb, var(--accent-color), transparent 50%);
        font-size: 22px; /* 26px → 22px (тэнцвэртэй) */
        line-height: 0;
        opacity: .9;
    }

    .testimonials .testimonial-item .quote-icon-left {
        position: relative;
        left: -4px;
        top: -2px;
    }

    .testimonials .testimonial-item .quote-icon-right {
        position: relative;
        right: -4px;
        top: 6px;
        transform: scale(-1,-1);
    }

    /* Текст – уншигдахуйц, мөр хязгаарлалттай */
    .testimonials .testimonial-item p {
        font-style: italic;
        margin: 12px auto;
        color: var(--default-color);
        line-height: 1.65;
        max-width: 60ch; /* мөрийн уртыг хязгаарлана */
    }

        .testimonials .testimonial-item p > span {
            display: -webkit-box;
            -webkit-line-clamp: 6; /* хүсвэл 5/7 болгоно */
            -webkit-box-orient: vertical;
            overflow: hidden;
            color:var(--accent-color);
        }

/* Swiper – ижил өндөрт сунагана, bullets spacing */
.testimonials .swiper-wrapper {
    height: auto;
    align-items: stretch;
}

.testimonials .swiper-slide {
    height: auto;
}

.testimonials .swiper {
    padding-bottom: 32px;
}

.testimonials .swiper-pagination {
    margin-top:40px;
    position: relative;
}

    .testimonials .swiper-pagination .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        background-color: color-mix(in srgb, var(--default-color), transparent 85%);
        opacity: 1;
    }

    .testimonials .swiper-pagination .swiper-pagination-bullet-active {
        background-color: var(--accent-color);
    }

/* Mobile нарийн тохиргоо */
@media (max-width: 767px) {
    .testimonials .testimonial-item {
        padding: 22px;
        margin: 14px;
    }

        .testimonials .testimonial-item .testimonial-img {
            width: 84px;
            height: 84px;
        }
}

/* Dark mode (байвал) */
@media (prefers-color-scheme: dark) {
    .testimonials .testimonial-item {
        background: color-mix(in srgb, var(--surface-color), black 16%);
        border-color: rgba(148,163,184,.16);
        box-shadow: 0 10px 28px rgba(0,0,0,.38), 0 1px 0 rgba(255,255,255,.03) inset;
    }

        .testimonials .testimonial-item p {
            color: color-mix(in srgb, white, transparent 10%);
        }
}

/* Motion reduce */
@media (prefers-reduced-motion: reduce) {
    .testimonials .testimonial-item,
    .testimonials .testimonial-item:hover {
        transition: none;
        transform: none;
    }
}






.btn-grad {
    background-image: linear-gradient(to right, #F09819 0%, #EDDE5D 51%, #F09819 100%)
}

.btn-grad {
    margin: 10px;
    padding: 15px 45px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white !important;
    /*box-shadow: 0 0 20px #eee;*/
    border-radius: 10px;
    display: block;
    font-family:var(--default-font);
    font-weight:600 !important;
    font-size:1.4vh !important;
}

    .btn-grad:hover {
        background-position: right center; /* change the direction of the change here */
        color: #fff;
        text-decoration: none;
    }








/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials-full {
    position: relative !important;
    margin: 0 0px;
    padding: 80px 0;
    background: url("https://elselt.num.edu.mn/wp-content/uploads/2020/06/5-scaled.jpg") no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
}

    .testimonials-full::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        background: rgba(2, 2, 2, 0.18);
    }

    .testimonials-full .section-header {
        margin-bottom: 40px;
    }

    .testimonials-full .testimonial-item {
        text-align: center;
        color: #fff;
    }

        .testimonials-full .testimonial-item .testimonial-img {
            width: 100px;
            border-radius: 50%;
            border: 6px solid rgba(255, 255, 255, 0.15);
            margin: 0 auto;
        }

        .testimonials-full .testimonial-item h3 {
            font-size: 20px;
            font-weight: bold;
            margin: 10px 0 5px 0;
            color: #fff;
        }

        .testimonials-full .testimonial-item h4 {
            font-size: 14px;
            color: #ddd;
            margin: 0 0 15px 0;
        }

        .testimonials-full .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
            color: rgba(255, 255, 255, 0.4);
            font-size: 26px;
        }

        .testimonials-full .testimonial-item .quote-icon-left {
            display: inline-block;
            left: -5px;
            position: relative;
        }

        .testimonials-full .testimonial-item .quote-icon-right {
            display: inline-block;
            right: -5px;
            position: relative;
            top: 10px;
        }

        .testimonials-full .testimonial-item p {
            font-style: italic;
            margin: 0 auto 15px auto;
            color: #eee;
        }

    .testimonials-full .owl-nav, .testimonials .owl-dots {
        margin-top: 5px;
        text-align: center;
    }

    .testimonials-full .owl-dot {
        display: inline-block;
        margin: 0 5px;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.4) !important;
    }

        .testimonials-full .owl-dot.active {
            background-color: #08138e !important;
        }

@media (min-width: 1024px) {
    .testimonials-full {
        background-attachment: fixed;
    }
}

@media (min-width: 992px) {
    .testimonials-full .testimonial-item p {
        width: 80%;
    }
}










.page-background{
    /*height:100vh;*/
}
.dcard-container{
    background-color:white;
    border-radius:32px;
    padding:40px;
}














.form-check .form-check-input {
    float: none !important;
    margin-left: 0rem !important;
}
/* Суурь хэв */
.inputtype {
    background: #fff; /* .org-той адил */
    border: 1px solid #e2e8f0; /* .org-той адил */
    border-radius: 12px;
    padding: 12px;
    display: flex;
    flex-direction: row;
    gap: 8px;
    margin-bottom: 10px;
    align-items: flex-start;
    color: #0f172a;
    /* box-shadow: 0 2px 8px rgba(15,23,42,.06); /* .org-той адил */ */ transition: border-color .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
    cursor: pointer;
}

    /* Hover төлөв — яг .org:hover */
    .inputtype:hover {
        /*  border-color: #0d6efd;
            box-shadow: 0 0 0 3px rgba(13,110,253,.12);
            background: #f8fbff; */
    }

    /* Сонгогдсон төлөв — яг .org.active */
    .inputtype.selected {
        border-color: #5AC096 !important;
        background: #F1FFF9 !important;
        /* color: #0d6efd !important; */
        /* box-shadow: 0 0 0 3px rgba(13,110,253,.12) !important; */
    }

        /* Доторх текстүүд hover/selected үед өнгийг дагуулах (Bootstrap-ийн .text-muted-г дарна) */
        .inputtype:hover .form-check-label,
        .inputtype.selected .form-check-label {
            color: inherit; /* wrapper-ийн color-оос өвлөнө */
        }

            .inputtype:hover .form-check-label .text-muted,
            .inputtype.selected .form-check-label .text-muted {
                color: inherit !important;
                opacity: .8; /* жаахан бүдэг хэвээр */
            }

    /* Радио товчийг цэгцтэй харагдуулах (сонголтын өнгөтэй уялдуулах) */
    .inputtype .form-check-input {
        margin-top: 2px; /* label-тэй тэгшлэх */
        cursor: pointer;
        /* хүсвэл доорхи custom дүрслэлийг ашиглаж болно:
                                  appearance: none;
                                  width: 18px; height: 18px; border-radius: 50%;
                                  border: 2px solid #cbd5e1; background: #fff; position: relative;
                                  */
    }

        .inputtype .form-check-input:checked {
            border-color: #5AC096 !important;
            background-color: #5AC096 !important;
            /* box-shadow: 0 0 0 3px rgba(13,110,253,.12); */
            box-shadow:none !important;
        }

    /* Бүхэл мөр дээр дарж сонгогдох мэдрэмж */
    .inputtype .form-check-label {
        flex: 1;
        cursor: pointer;
        font-weight: 500;
    }

.tier-icon {
    height: 50px;
    width: 50px;
}
/* Гар утас: padding жаахан шахах — .org-той адил */
@media (max-width: 576px) {
    .inputtype {
        padding: 10px 12px;
    }
    .step-label-hide{
        display: none;
    }
    .stepper-step {
        display: inline-block !important;

    }
    .stepper-step .step-label{
        font-size:1.2rem;
    }
    .navmenu a{
        padding:0 !important;
    }
    #vue-app{
        padding:18px !important;
    }
    #stepper{
        padding-left:10px;
    }
    .tier-icon{
        height:30px;
        width:30px;
    }
    .page-title{
        padding:0px;
        padding-top:70px;
    }
    .responsive-h5 {
        margin-top: 20px !important;
    }
    .btn-back {
        padding: 0.5rem 1rem !important;
        width: 100% !important
    }
    .btn-grad-second {
        width:100% !important;
        padding: 0.5rem 1rem !important;
    }

    .invest-right {
        padding-left: 0px !important;
        padding-bottom: 0px !important;
        padding-right: 0px !important;
    }
}


.bg-primary{
    background-color:var(--accent-color) !important;
}

.form-control:focus {
    border-color: #5AC096 !important;
    box-shadow: none !important;
}

.form-control.is-valid {
    border-color: #5AC096; /* ногоон */
    box-shadow: none !important;
}

.form-select.is-valid {
    border-color: #5AC096 !important;
    box-shadow: none !important;
}
    .form-select.is-valid:focus {
        border-color: #5AC096 !important;
        box-shadow: none !important;
    }
.form-check-input:checked {
    background-color: #5AC096 !important;
    border-color: #5AC096 !important;
}

.form-check-input {
    box-shadow: none !important;
}
.form-check-input:active{
    box-shadow:none !important;
}




.btn-grad-second {
    background-image: linear-gradient(to right, #43cea2 0%, #185a9d 51%, #43cea2 100%)
}

.btn-grad-second {
    padding: 15px 45px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;
    box-shadow: 0 0 20px #eee;
    border-radius: 10px;
    display: block;
    font-weight: 600;
}

    .btn-grad-second:hover {
        background-position: right center; /* change the direction of the change here */
        color: #fff;
        text-decoration: none;
        font-weight: 600;
    }




    .swiper-button-next:after, .swiper-button-prev:after{
        display:none !important;
    }














@media (min-width: 992px) {
    .env-section {
        padding-left: 0;
        padding-right: 0;
    }
}

/* Гол card */
.env-card {
    position: relative;
    display: flex;
    flex-wrap: wrap; /* ✅ wrap зөвшөөрсөн хэвээр */
    overflow: hidden;
    border-radius: 16px;
    background: rgba(0, 0, 65, 0.6);
    /* rgba(0, 0, 65, 1.000 */
    border: 1px solid rgba(148, 163, 184, 0.4);
}

@media (min-width: 992px) {
    .env-card {
        border-radius: 36px;
    }
}

/* Зургийн хэсэг – MOBILE default: 100% өргөн, дээр талд */
.env-image-wrap {
    position: relative;
    flex: 0 0 100%;
    max-height: 280px;
    overflow: hidden;
}

.env-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* md↑ үед 40% / 60% гэж хуваана (REVERSE биш жирийн хувилбар) */
@media (min-width: 768px) {
    .env-image-wrap {
        flex: 0 0 40%;
        max-height: none;
    }
}

/* Текст тал – MOBILE default: 100% өргөн, доороо */
.env-content {
    position: relative;
    flex: 1 1 100%;
    padding: 24px 20px;
    color: #e5e7eb;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .env-content {
        flex: 0 0 60%;
        padding: 34px 32px;
    }
}

@media (min-width: 1200px) {
    .env-content {
        padding: 40px 48px;
    }
}

/* Background pattern + gradient */
.env-bg-layer {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.env-bg-pattern {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    opacity: 0.3;
}

.env-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient( to right, rgba(6, 95, 70, 0.95) 10%, rgba(6, 95, 70, 0.85) 25%, transparent 60% );
}

/* Үндсэн текст */
.env-text {
    position: relative;
    z-index: 1;
}

.env-intro {
    margin-bottom: 0.75rem;
}

/* ===== REVERSE хувилбар ===== */

/* ✅ REVERSE-ийг зөвхөн TOM дэлгэц дээр (md↑) хэрэгжүүлнэ */
@media (min-width: 768px) {
    .env-card--reverse {
        flex-direction: row-reverse;
    }

        .env-card--reverse .env-image-wrap {
            flex: 0 0 40%;
        }

        .env-card--reverse .env-content {
            flex: 0 0 60%;
        }
}












#donation-qr canvas,
#donation-qr img {
    width: 100px !important;
    height: 100px !important;
}

.stats-section {
    margin-top: 0px !important;
}

.big-text {
    font-size: 60px !important;
}

.large-text {
    font-size: 30px !important;
}

.medium-text {
    font-size: 24px !important;
}

.p-text {
    font-size: 16px !important;
}

.s-padding {
    padding: 120px 0 !important;
}

.btn-grad {
    font-size: 16px !important;
}

/* <= 1199px (жижигрэх desktop / том таблет) */
@media (max-width: 1199px) {
    .big-text {
        font-size: 36px !important;
    }

    .large-text {
        font-size: 28px !important;
    }

    .medium-text {
        font-size: 22px !important;
    }

    .p-text {
        font-size: 15px !important;
    }

    .s-padding {
        padding: 90px 0 !important;
    }

    .btn-grad {
        font-size: 16px !important;
    }
}

/* <= 991px (таблет – landscape) */
@media (max-width: 991px) {
    .s-padding {
        padding: 80px 0 !important;
    }

    .big-text {
        font-size: 32px !important;
    }

    .large-text {
        font-size: 26px !important;
    }

    .medium-text {
        font-size: 20px !important;
    }

    .p-text {
        font-size: 15px !important;
    }

    .num-logo {
        padding: 40px;
        margin: 0 auto;
        width: 360px !important;
        height: 360px !important;
    }

    .yoda-tabs-left {
        padding-left: 0px
    }

    .btn-grad {
        padding: 14px 15px !important;
    }

    .yoda-scroll {
        margin-bottom: 36px !important;
    }

    .btn-grad {
        font-size: 16px !important;
    }
    .navpanel {
        padding-bottom: 160px;
    }

    .social-icons i {
        font-size: 1rem !important;
        padding: 16px 16px !important;
    }
    .don-search{
        width:100% !important;
    }
}

/* <= 767px (гар утас – том утас, portrait таблет) */
@media (max-width: 767px) {
    .s-padding {
        padding: 70px 0 !important;
    }

    .big-text {
        font-size: 28px !important;
    }

    .large-text {
        font-size: 24px !important;
    }

    .medium-text {
        font-size: 18px !important;
    }

    .p-text {
        font-size: 14px !important;
    }

    .num-logo {
        padding: 40px;
        margin: 0 auto;
        width: 270px !important;
        height: 270px !important;
    }

    .hero-progress-bar {
        top: -30vh;
    }

    .hero-nav-btn {
        padding: 0px 17px;
    }

        .hero-nav-btn.right {
            padding-right: 17px !important;
        }

        .hero-nav-btn.left {
            padding-left: 17px !important;
        }

    .total-donation {
        padding: 8px 14px;
        border-radius: 12px;
    }

    .donation-pill {
    }

    :root {
        --bs-body-font-size: 0.8rem;
    }

    .s-padding {
        padding: 60px 0;
    }

    .support-card-wrap {
        flex: 1 1 120px;
        max-width: 260px;
        height: 200px;
        border-radius: 14px;
    }

    .support-card {
        padding: 0;
    }

    .section-title {
        padding-bottom: 20px;
    }

    .btn-grad {
        font-size: 16px !important;
    }

    .full-section-left {
        margin: 18px 0px;
    }

    .total-donation-container {
        margin-left: 20px;
    }

    .yoda-scroll {
        margin-bottom: 0px !important;
    }

    .stats-section {
        margin-bottom: 0px !important;
        margin-top: 18px !important;
    }

        .stats-section .stats-grid {
            gap: 20px;
        }

    .btn-grad {
        font-size: 14px !important;
    }

    .static-corner {
        height: 150px !important;
        width: 150px !important;
    }

    .static-corner-right {
        height: 150px !important;
        width: 150px !important;
    }

    .navpanel {
        padding-bottom: 140px;
    }

    .social-icons i {
        font-size: 1rem !important;
        padding: 14px 14px !important;
    }

    .empty-icon {
        max-height: 140px;
    }
    .hr {
        display: inline-block !important;
    }
}

/* <= 575px (жижиг гар утас) */
@media (max-width: 575px) {

    .s-padding {
        padding: 60px 0 !important;
    }

    .big-text {
        font-size: 26px !important;
    }

    .large-text {
        font-size: 22px !important;
    }

    .medium-text {
        font-size: 18px !important;
    }

    .p-text {
        font-size: 14px !important;
    }


    .num-logo {
        padding: 40px;
        margin: 0 auto;
        width: 200px !important;
        height: 200px !important;
    }

    .hero-progress-bar {
        top: -30vh;
    }

    .hero-nav-btn {
        padding: 0px 17px;
    }

        .hero-nav-btn.right {
            padding-right: 17px !important;
        }

        .hero-nav-btn.left {
            padding-left: 17px !important;
        }

    .total-donation {
        padding: 8px 14px;
        border-radius: 12px;
    }

    .donation-pill {
        margin:8px;
    }

    :root {
        --bs-body-font-size: 0.8rem;
    }

    .support-card-wrap {
        flex: 1 1 120px;
        max-width: 260px;
        height: 200px;
        border-radius: 14px;
    }

    .support-card {
        padding: 0;
    }

    .section-title {
        padding-bottom: 20px;
    }

    .btn-grad {
        font-size: 14px !important;
    }

    .full-section-left {
        margin: 18px 0px;
    }

    .total-donation-container {
        margin-left: 12px;
    }

    .yoda-scroll {
        margin-bottom: 0px !important;
        height: 600px;
    }

    .stats-section {
        margin-bottom: 0px !important;
        margin-top: 18px !important;
    }

        /* Доторх row-г буцааж төвлөрүүлж max-width өгөх */
        .stats-section .stats-grid {
            gap: 20px;
        }

    .glass-card{
        margin-top:86px !important;
    }
    .margin{
        margin-bottom:10px !important;
    }
    .gap{
        gap:8px !important;
    }
    .logo-img{
        padding-left:0px !important;
        margin-right:0px !important;
        padding-right :0px !important;
    }
    .navpanel-logo-img{
        width:50vw;
    }

    .navpanel {
        padding-bottom: 120px;
    }
    .social-icons i{
        font-size: 1rem !important;
        padding: 10px 10px !important;
    }


    .static-corner{
        height:100px !important;
        width:100px !important;
    }
    .static-corner-right {
        height: 100px !important;
        width: 100px !important;
    }
    .bottom-line{
        height:2px !important;
    }
    .script{
        height:200px !important;
        top:30% !important;
        left:10px !important;
    }
    #donation-qr canvas,
    #donation-qr img {
        width: 50px !important;
        height: 50px !important;
    }
    .info-grid {
        padding: 0 30px !important;
        margin: 30px 0px !important;
        gap:2rem !important;
    }
    .qr-code {
        width: 60px !important;
        height: 60px !important;
    }
    .org-header{
        margin-bottom:40px !important;
    }
    .thankyou-header{
        margin-bottom:0.7rem;
    }
    .thankyou-card{
        padding: 1.5rem 2rem !important;
    }

    .btn-brand{
        font-size:14px !important;
    }
    .btn btn-outline-secondary {
        font-size: 14px !important;
    }
    .form-select{
        font-size:14px !important;
    }
    .form-control {
        font-size: 14px !important;
    }
    .navmenu{
        gap:4px;
    }



    .searchpanel {
        padding: 0px;
        padding-top: 100px;
    }
    .empty-icon{
        max-height:120px;
    }
    .search {
        width: 100%;
        padding: 6px 12px;
        min-width: 0 !important;
        gap:4px;
    }
    .btn-outline-secondary-{
        padding: 6px 12px;
        font-size:14px;
    }

    .hr {
        display: inline-block !important;
    }
    .cert-grid{
        margin:0px !important;
        padding: 15px !important;
    }
    .cert-header{
       margin-bottom:0px !important;
    }
    .cert-org{
        margin-bottom:20px !important;
    }
}

.cert-org {
    margin-bottom: 20px !important;
}

.more-info-btn {
    color: white;
    padding: 12px 18px;
}
.more-info-btn:hover {
    color: white;
    padding: 12px 18px;
}

.whitet{
    color:white !important;
}
.hr{
    display:none;
}