﻿@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");

:root {
    --hs-blue: #0195bd;
    --hs-blue-dark: #0d2245;
    --hs-blue-mid: #2563eb;
    --hs-blue-light: #eff6ff;
    --hs-red: #c0392b;
    --hs-red-hover: #a93226;
    --hs-text: #1e293b;
    --hs-muted: #64748b;
    --hs-light: #94a3b8;
    --hs-border: #e2e8f0;
    --hs-border-light: #f1f5f9;
    --hs-bg: #f8fafc;
    --hs-white: #ffffff;
    --hs-dark: #0f172a;
    --hs-success: #16a34a;
    --hs-warning: #d97706;
    --hs-danger: #ef4444;
    --hs-info: #0ea5e9;
    --hs-radius-sm: 6px;
    --hs-radius: 10px;
    --hs-radius-lg: 16px;
    --hs-radius-full: 9999px;
    --hs-shadow: 0 1px 4px rgba(0,0,0,.07), 0 2px 12px rgba(0,0,0,.05);
    --hs-shadow-md: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -1px rgba(0,0,0,.06);
    --hs-shadow-hover: 0 8px 32px rgba(0,0,0,.13);
    --hs-shadow-xl: 0 20px 40px rgba(0,0,0,.15);
    --hs-transition: all .25s cubic-bezier(.4,0,.2,1);
    --hs-font: "Poppins", system-ui, -apple-system, sans-serif;
    --font-head: "Poppins", system-ui, sans-serif;
    --font-main: "Poppins", system-ui, -apple-system, sans-serif;
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--hs-font);
    font-weight: 400;
    font-size: 15px;
    line-height: 1.7;
    color: var(--hs-text);
    background-color: var(--hs-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--hs-font);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.015em;
    color: var(--hs-dark);
    margin-top: 0;
}

    h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
        color: inherit;
        text-decoration: none;
        transition: var(--hs-transition);
    }

        h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover {
            color: var(--hs-blue);
        }

a {
    color: var(--hs-blue-mid);
    text-decoration: none;
    transition: var(--hs-transition);
}

    a:hover {
        text-decoration: none;
    }

    a:focus, button:focus {
        outline: none;
        text-decoration: none;
    }

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

hr {
    border: 0;
    border-bottom: 1px solid var(--hs-border);
    margin: 1.5rem 0;
}

img {
    max-width: 100%;
    height: auto;
    transition: var(--hs-transition);
}

input, textarea, select, button {
    font-family: var(--hs-font);
    transition: var(--hs-transition);
}

    input:focus, textarea:focus, select:focus, button:focus {
        outline: 0;
    }

::placeholder {
    color: var(--hs-light);
    opacity: 1;
}

b, strong {
    font-weight: 700;
    color: var(--hs-dark);
}

.fix {
    overflow: hidden;
}

.clear {
    clear: both;
}

.f-left {
    float: left;
}

.f-right {
    float: right;
}

.uppercase {
    text-transform: uppercase;
    letter-spacing: .05em;
}

.capitalize {
    text-transform: capitalize;
}

.white-bg {
    background: var(--hs-white);
}

.gray-bg {
    background: var(--hs-bg);
}

.black-bg {
    background: var(--hs-dark);
}

.theme-bg {
    background: var(--hs-blue);
}

.brand-bg {
    background: var(--hs-blue-light);
}

.white-color {
    color: var(--hs-white);
}

.black-color {
    color: var(--hs-dark);
}

.theme-color {
    color: var(--hs-blue);
}

.muted-color {
    color: var(--hs-muted);
}

.top-bg {
    background: transparent;
}

.color1 {
    background: #ffe7e6;
}

.color2 {
    background: #f4ffd5;
}

.color3 {
    background: #e1fcff;
}

.color4 {
    background: #fff9c6;
}

[data-overlay] {
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

    [data-overlay]::before {
        position: absolute;
        inset: 0;
        content: "";
        background-color: var(--hs-dark);
    }

[data-opacity="1"]::before {
    opacity: .1;
}

[data-opacity="2"]::before {
    opacity: .2;
}

[data-opacity="3"]::before {
    opacity: .3;
}

[data-opacity="4"]::before {
    opacity: .4;
}

[data-opacity="5"]::before {
    opacity: .5;
}

[data-opacity="6"]::before {
    opacity: .6;
}

[data-opacity="7"]::before {
    opacity: .7;
}

[data-opacity="8"]::before {
    opacity: .8;
}

[data-opacity="9"]::before {
    opacity: .9;
}

.overlay {
    position: relative;
    z-index: 0;
}

    .overlay::before {
        position: absolute;
        content: "";
        inset: 0;
        z-index: -1;
        background: linear-gradient(170deg, rgba(15,23,42,0) 0%, rgba(15,23,42,.8) 100%);
    }

.typography h1,
.typography h2,
.typography h3,
.typography h4,
.typography h5,
.typography h6 {
    color: var(--hs-blue);
}

.section-padding {
    padding: 80px 0;
}

.section-padding2 {
    padding: 100px 0;
}

.section-padding3 {
    padding: 120px 0;
}

.section-paddingt {
    padding-top: 80px;
    padding-bottom: 60px;
}

.section-top-border {
    padding: 60px 0;
    border-top: 1px solid var(--hs-border);
}

@keyframes float-bob {
    0% {
        transform: translateY(-20px);
    }

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

    100% {
        transform: translateY(-20px);
    }
}

@keyframes heartbeat {
    to {
        transform: scale(1.03);
    }
}

@keyframes rotateme {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes checkBounce {
    0% {
        transform: scale(0);
    }

    60% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes zoom {
    0% {
        transform: rotate(0deg);
    }

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

.bounce-animate {
    animation: float-bob 2s infinite linear;
}

.heartbeat {
    animation: heartbeat 1s infinite alternate;
}

.rotateme {
    animation: rotateme 30s infinite linear;
}

.bounce {
    animation: checkBounce .5s cubic-bezier(.175,.885,.32,1.275) forwards;
}

.preloader {
    background-color: var(--hs-bg);
    width: 100%;
    height: 100%;
    position: fixed;
    inset: 0;
    z-index: 999999;
    transition: var(--hs-transition);
}

    .preloader .preloader-circle {
        width: 100px;
        height: 100px;
        position: relative;
        border: 3px solid transparent;
        border-top-color: var(--hs-blue);
        z-index: 10;
        border-radius: var(--hs-radius-full);
        box-shadow: var(--hs-shadow-md);
        background-color: var(--hs-white);
        animation: zoom 2000ms infinite ease;
    }

    .preloader .preloader-img {
        position: absolute;
        top: 50%;
        z-index: 200;
        left: 0;
        right: 0;
        margin: 0 auto;
        text-align: center;
        transform: translateY(-50%);
    }

#scrollUp, #scrollTopBtn {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    border-radius: var(--hs-radius-full);
    background: var(--hs-blue);
    color: var(--hs-white);
    border: none;
    font-size: 1rem;
    text-align: center;
    line-height: 44px;
    cursor: pointer;
    z-index: 999;
    box-shadow: var(--hs-shadow-md);
    transition: var(--hs-transition);
}

#scrollTopBtn {
    opacity: 0;
    pointer-events: none;
}

    #scrollTopBtn.visible {
        opacity: 1;
        pointer-events: auto;
    }

    #scrollUp:hover, #scrollTopBtn:hover {
        background: var(--hs-red);
        transform: translateY(-5px);
        box-shadow: var(--hs-shadow-hover);
    }

.hs-topbar {
    background: var(--hs-blue);
    color: rgba(255,255,255,.75);
    font-size: .8rem;
    padding: .35rem 0;
}

    .hs-topbar a {
        color: rgba(255,255,255,.75);
        text-decoration: none;
        transition: color .15s;
    }

        .hs-topbar a:hover {
            color: #fff;
        }

    .hs-topbar .topbar-date {
        display: flex;
        align-items: center;
        gap: .4rem;
    }

    .hs-topbar .topbar-social {
        display: flex;
        align-items: center;
        gap: .8rem;
    }

        .hs-topbar .topbar-social a {
            font-size: .9rem;
        }

    .hs-topbar .topbar-links {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

        .hs-topbar .topbar-links a {
            font-weight: 600;
            font-size: .78rem;
            text-transform: uppercase;
            letter-spacing: .4px;
            padding: 2px 10px;
            border-radius: var(--hs-radius-full);
            border: 1px solid rgba(255,255,255,.25);
            transition: background .15s;
        }

            .hs-topbar .topbar-links a:hover {
                background: rgba(255,255,255,.15);
                color: #fff;
            }

.topbar-link-cta {
    background: var(--hs-red) !important;
    border-color: var(--hs-red) !important;
    color: #fff !important;
}

.hs-logo-strip {
    background: #fff;
    border-bottom: 1px solid var(--hs-border);
    padding: .8rem 0;
}

    .hs-logo-strip img {
        max-height: 56px;
    }

    .hs-logo-strip .logo-tagline {
        font-size: .8rem;
        color: var(--hs-muted);
        font-style: italic;
        line-height: 1.3;
    }

.header-area {
    background: var(--hs-white);
    box-shadow: var(--hs-shadow);
    transition: var(--hs-transition);
}

    .header-area .header-top {
        background: var(--hs-dark);
        padding: 10px 0;
    }

        .header-area .header-top .header-info-left ul li {
            color: var(--hs-white);
            display: inline-block;
            margin-right: 40px;
            font-size: 13px;
            font-weight: 500;
        }

        .header-area .header-top .header-info-right .header-social li {
            display: inline-block;
        }

            .header-area .header-top .header-info-right .header-social li a {
                color: var(--hs-white);
                font-size: 14px;
                padding-left: 20px;
                transition: var(--hs-transition);
            }

                .header-area .header-top .header-info-right .header-social li a:hover {
                    color: var(--hs-red);
                    transform: translateY(-2px);
                }

    .header-area .header-bottom {
        border-top: 1px solid var(--hs-border);
    }

.hs-navbar {
    background: var(--hs-blue);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(26,58,108,.3);
}

    .hs-navbar .navbar-brand img {
        max-height: 36px;
    }

.hs-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: stretch;
}

    .hs-nav > li {
        position: relative;
    }

        .hs-nav > li > a {
            display: flex;
            align-items: center;
            gap: .3rem;
            color: rgba(255,255,255,.88);
            text-decoration: none;
            font-size: .88rem;
            font-weight: 600;
            padding: .9rem 1rem;
            transition: background .15s, color .15s;
            white-space: nowrap;
        }

            .hs-nav > li > a:hover,
            .hs-nav > li.active > a {
                background: rgba(255,255,255,.12);
                color: #fff;
            }

            .hs-nav > li > a .nav-arrow {
                font-size: .6rem;
                margin-left: .15rem;
                opacity: .7;
                transition: transform .2s;
            }

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

.hs-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    border: 1px solid var(--hs-border);
    border-radius: 0 0 var(--hs-radius) var(--hs-radius);
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
    list-style: none;
    padding: .4rem 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .18s, transform .18s, visibility .18s;
    z-index: 200;
}

.hs-nav > li:hover > .hs-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.hs-dropdown li a {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem 1.2rem;
    font-size: .85rem;
    color: var(--hs-text);
    text-decoration: none;
    transition: background .12s, color .12s;
}

    .hs-dropdown li a::before {
        content: '';
        width: 4px;
        height: 4px;
        border-radius: 50%;
        background: var(--hs-red);
        flex-shrink: 0;
    }

    .hs-dropdown li a:hover {
        background: var(--hs-blue-light);
        color: var(--hs-blue);
    }

.main-header .main-menu ul li {
    display: inline-block;
    position: relative;
}

    .main-header .main-menu ul li a {
        color: var(--hs-text);
        font-weight: 600;
        padding: 30px 15px;
        display: block;
        font-size: 15px;
    }

    .main-header .main-menu ul li:hover > a {
        color: var(--hs-blue);
    }

.main-header .main-menu ul ul.submenu {
    position: absolute;
    width: 220px;
    background: var(--hs-white);
    left: 0;
    top: 110%;
    visibility: hidden;
    opacity: 0;
    box-shadow: var(--hs-shadow-hover);
    padding: 12px 0;
    border-radius: var(--hs-radius);
    border-top: 3px solid var(--hs-blue);
    transition: var(--hs-transition);
    z-index: 99;
}

.main-header ul > li:hover > ul.submenu {
    visibility: visible;
    opacity: 1;
    top: 100%;
}

.main-header .main-menu ul ul.submenu > li {
    display: block;
    margin: 0;
}

    .main-header .main-menu ul ul.submenu > li > a {
        padding: 9px 24px !important;
        font-size: 14px;
        color: var(--hs-text);
    }

        .main-header .main-menu ul ul.submenu > li > a:hover {
            color: var(--hs-blue);
            background: var(--hs-bg);
            padding-left: 28px !important;
        }

.header-sticky.sticky-bar.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--hs-white);
    box-shadow: var(--hs-shadow-md);
    z-index: 9999;
    animation: fadeInDown .5s ease-in-out;
}

    .header-sticky.sticky-bar.sticky .main-menu ul > li > a {
        padding: 20px 15px;
    }

.hs-search-btn {
    background: none;
    border: none;
    color: rgba(255,255,255,.75);
    font-size: 1rem;
    cursor: pointer;
    padding: .5rem .8rem;
    transition: color .15s;
}

    .hs-search-btn:hover {
        color: #fff;
    }

.hs-search-bar {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    background: #fff;
    border: 1px solid var(--hs-border);
    border-radius: var(--hs-radius);
    padding: .4rem .6rem;
    box-shadow: var(--hs-shadow);
    min-width: 260px;
}

    .hs-search-bar.open {
        display: flex;
    }

    .hs-search-bar input {
        border: none;
        outline: none;
        font-size: .9rem;
        flex: 1;
        color: var(--hs-text);
        font-family: var(--hs-font);
    }

.hs-hamburger {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
    padding: .5rem;
}

.hs-mobile-sidebar {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    transition: transform .3s ease-in-out;
    padding: 20px;
    box-shadow: -5px 0 15px rgba(0,0,0,.1);
    overflow-y: auto;
}

    .hs-mobile-sidebar.active {
        transform: translateX(-300px);
    }

.hs-mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    backdrop-filter: blur(2px);
    z-index: 9998;
    display: none;
}

    .hs-mobile-overlay.active {
        display: block;
    }

.hs-mobile-nav {
    display: none;
    background: var(--hs-blue);
    border-top: 1px solid rgba(255,255,255,.1);
}

    .hs-mobile-nav.open {
        display: block;
    }

    .hs-mobile-nav ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

        .hs-mobile-nav ul a {
            display: block;
            padding: .7rem 1.2rem;
            color: rgba(255,255,255,.85);
            text-decoration: none;
            font-size: .9rem;
            border-bottom: 1px solid rgba(255,255,255,.07);
            transition: background .12s;
        }

            .hs-mobile-nav ul a:hover {
                background: rgba(255,255,255,.1);
                color: #fff;
            }

    .hs-mobile-nav .mobile-sub {
        display: none;
        background: rgba(0,0,0,.15);
    }

        .hs-mobile-nav .mobile-sub.open {
            display: block;
        }

        .hs-mobile-nav .mobile-sub a {
            padding-left: 2rem;
            font-size: .85rem;
        }

.hs-mobile-toggle {
    float: right;
    background: none;
    border: none;
    color: rgba(255,255,255,.7);
    cursor: pointer;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: .3rem;
    padding: 0;
    margin: 0;
}

    .mobile-nav-list li {
        position: relative;
        list-style: none;
        overflow: hidden;
    }

        .mobile-nav-list li a {
            display: flex;
            align-items: center;
            gap: .85rem;
            padding: .9rem 1.25rem;
            color: var(--hs-text);
            text-decoration: none;
            font-size: .92rem;
            font-weight: 600;
            border-radius: var(--hs-radius);
            transition: all .2s cubic-bezier(.4,0,.2,1);
            background: transparent;
        }

            .mobile-nav-list li a:hover,
            .mobile-nav-list li a:active {
                background-color: var(--hs-blue-light);
                color: var(--hs-blue);
                padding-left: 1.5rem;
            }

        .mobile-nav-list li.active > a {
            background-color: var(--hs-blue-light);
            color: var(--hs-blue);
            padding-left: 1.5rem;
        }

        .mobile-nav-list li.active::before {
            content: "";
            position: absolute;
            left: 0;
            top: 20%;
            height: 60%;
            width: 4px;
            background-color: var(--hs-blue);
            border-radius: 0 4px 4px 0;
            z-index: 1;
        }

        .mobile-nav-list li a i {
            font-size: 1.05rem;
            min-width: 22px;
            text-align: center;
            opacity: .7;
            transition: opacity .2s;
        }

        .mobile-nav-list li a:hover i,
        .mobile-nav-list li.active a i {
            opacity: 1;
        }

        .mobile-nav-list li:not(:last-child)::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 1.25rem;
            right: 1.25rem;
            height: 1px;
            background: linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.05) 50%, rgba(0,0,0,0) 100%);
        }

.nav-label {
    font-size: .68rem;
    font-weight: 800;
    color: var(--hs-light);
    letter-spacing: 1px;
    padding-left: 5px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.hs-breaking {
    background: #fff;
    border-bottom: 1px solid var(--hs-border);
    font-size: .82rem;
    padding: .38rem 0;
}

    .hs-breaking .label {
        background: var(--hs-red);
        color: #fff;
        font-weight: 700;
        font-size: .72rem;
        text-transform: uppercase;
        letter-spacing: .5px;
        padding: 2px 12px;
        border-radius: var(--hs-radius-full);
        white-space: nowrap;
        flex-shrink: 0;
    }

.hs-page-header {
    background: linear-gradient(135deg, var(--hs-blue) 0%, #264a8f 100%);
    color: #fff;
    padding: 1.5rem 0 1.2rem;
    margin-bottom: 1.5rem;
}

    .hs-page-header h1 {
        font-size: 1.6rem;
        font-weight: 700;
        color: #fff;
        margin: 0 0 .4rem;
    }

    .hs-page-header .breadcrumb {
        margin: 0;
        background: transparent;
        padding: 0;
        font-size: .82rem;
    }

    .hs-page-header .breadcrumb-item + .breadcrumb-item::before {
        color: rgba(255,255,255,.5);
    }

    .hs-page-header .breadcrumb-item a {
        color: rgba(255,255,255,.75);
        text-decoration: none;
    }

    .hs-page-header .breadcrumb-item.active {
        color: rgba(255,255,255,.95);
    }

.hs-card {
    background: #fff;
    border-radius: var(--hs-radius);
    border: 1px solid var(--hs-border);
    box-shadow: var(--hs-shadow);
}

.hs-section-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--hs-blue);
    border-bottom: 2.5px solid var(--hs-blue);
    padding-bottom: .5rem;
    margin-bottom: 1.2rem;
}

.btn-hs-primary {
    background: var(--hs-blue);
    color: #fff;
    border: none;
    border-radius: var(--hs-radius);
    font-weight: 600;
    transition: background .2s, box-shadow .2s;
    cursor: pointer;
}

    .btn-hs-primary:hover {
        background: #153068;
        color: #fff;
        box-shadow: 0 4px 16px rgba(26,58,108,.3);
    }

.btn-hs-red {
    background: var(--hs-red);
    color: #fff;
    border: none;
    border-radius: var(--hs-radius);
    font-weight: 600;
    transition: background .2s;
    cursor: pointer;
}

    .btn-hs-red:hover {
        background: var(--hs-red-hover);
        color: #fff;
    }

.btn-hs-outline {
    background: transparent;
    color: var(--hs-blue);
    border: 1.5px solid var(--hs-blue);
    border-radius: var(--hs-radius);
    font-weight: 600;
    transition: all .2s;
    cursor: pointer;
}

    .btn-hs-outline:hover {
        background: var(--hs-blue);
        color: #fff;
    }

.boxed-btn {
    background: var(--hs-white);
    color: var(--hs-blue) !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    font-family: var(--hs-font);
    font-size: 14px;
    font-weight: 600;
    border: 2px solid var(--hs-blue);
    border-radius: var(--hs-radius-full);
    letter-spacing: .5px;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: var(--hs-shadow);
    transition: var(--hs-transition);
}

    .boxed-btn:hover {
        background: var(--hs-blue);
        color: var(--hs-white) !important;
        box-shadow: var(--hs-shadow-md);
        transform: translateY(-2px);
    }

    .boxed-btn.large-width {
        width: 100%;
        max-width: 280px;
    }

.border-btn {
    background: transparent;
    border: 2px solid var(--hs-blue);
    padding: 12px 28px;
    margin: 8px 0;
    color: var(--hs-blue);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--hs-radius-full);
    position: relative;
    overflow: hidden;
    transition: var(--hs-transition);
    z-index: 1;
}

    .border-btn::before {
        content: "";
        position: absolute;
        inset: 0;
        background: var(--hs-blue);
        z-index: -1;
        transition: transform .35s cubic-bezier(.4,0,.2,1);
        transform: scaleY(0);
        transform-origin: bottom;
    }

    .border-btn:hover {
        color: var(--hs-white);
        border-color: var(--hs-blue);
    }

        .border-btn:hover::before {
            transform: scaleY(1);
        }

.send-btn {
    background: var(--hs-blue);
    color: var(--hs-white);
    font-size: 15px;
    font-weight: 600;
    width: 100%;
    height: 52px;
    border: none;
    border-radius: var(--hs-radius);
    cursor: pointer;
    transition: var(--hs-transition);
    box-shadow: var(--hs-shadow-md);
}

    .send-btn:hover {
        background: #153068;
        box-shadow: var(--hs-shadow-hover);
        transform: translateY(-2px);
    }

.genric-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--hs-radius);
    cursor: pointer;
    transition: var(--hs-transition);
    border: 1px solid transparent;
}

    .genric-btn.e-large {
        padding: 18px 36px;
        font-size: 16px;
    }

    .genric-btn.large {
        padding: 14px 28px;
    }

    .genric-btn.medium {
        padding: 9px 18px;
    }

    .genric-btn.small {
        padding: 7px 14px;
        font-size: 12px;
    }

    .genric-btn.radius {
        border-radius: var(--hs-radius-sm);
    }

    .genric-btn.circle {
        border-radius: var(--hs-radius-full);
    }

    .genric-btn.primary {
        background: var(--hs-dark);
        color: var(--hs-white);
    }

        .genric-btn.primary:hover {
            background: var(--hs-blue);
            box-shadow: var(--hs-shadow-md);
            transform: translateY(-2px);
        }

    .genric-btn.success {
        background: var(--hs-success);
        color: var(--hs-white);
    }

    .genric-btn.info {
        background: var(--hs-info);
        color: var(--hs-white);
    }

    .genric-btn.warning {
        background: var(--hs-warning);
        color: var(--hs-white);
    }

    .genric-btn.danger {
        background: var(--hs-danger);
        color: var(--hs-white);
    }

        .genric-btn.success:hover, .genric-btn.info:hover,
        .genric-btn.warning:hover, .genric-btn.danger:hover {
            filter: brightness(1.1);
            box-shadow: var(--hs-shadow-md);
            transform: translateY(-2px);
        }

    .genric-btn.disable {
        background: var(--hs-border-light);
        color: var(--hs-light);
        cursor: not-allowed;
    }

.form-control {
    border: 1.5px solid var(--hs-border);
    border-radius: var(--hs-radius);
    font-size: .92rem;
    font-family: var(--hs-font);
    padding: .55rem .9rem;
    background: var(--hs-bg);
    transition: var(--hs-transition);
    width: 100%;
    color: var(--hs-text);
}

    .form-control:focus {
        border-color: var(--hs-blue-mid);
        background: var(--hs-white);
        box-shadow: 0 0 0 4px rgba(37,99,235,.12);
        outline: 0;
    }

.form-label {
    font-size: .88rem;
    font-weight: 600;
    color: var(--hs-text);
    margin-bottom: .4rem;
    display: block;
}

.form-select {
    font-family: var(--hs-font);
}

.form-section {
    background: var(--hs-white);
    border-radius: var(--hs-radius-lg);
    border: 1px solid var(--hs-border);
    box-shadow: var(--hs-shadow);
    overflow: hidden;
    margin-bottom: 1.25rem;
    transition: var(--hs-transition);
}

    .form-section:hover {
        box-shadow: var(--hs-shadow-hover);
    }

.form-section-header,
.form-section-head {
    background: var(--hs-blue-light);
    border-bottom: 1px solid #bfdbfe;
    padding: .9rem 1.4rem;
    display: flex;
    align-items: center;
    gap: .75rem;
}

    .form-section-header h6,
    .form-section-head h6 {
        margin: 0;
        color: var(--hs-blue);
        font-weight: 700;
        font-size: .97rem;
    }

    .form-section-header i,
    .form-section-head i {
        color: var(--hs-red);
    }

.form-section-body {
    padding: 1.4rem;
}

.payment-method-card,
.status-option {
    border: 2px solid var(--hs-border);
    border-radius: var(--hs-radius);
    padding: .9rem 1.2rem;
    cursor: pointer;
    transition: var(--hs-transition);
    margin-bottom: .75rem;
    background: var(--hs-white);
    display: block;
}

    .payment-method-card:hover,
    .status-option:hover {
        border-color: #93c5fd;
        background: var(--hs-bg);
    }

    .payment-method-card:has(input:checked),
    .status-option:has(input:checked) {
        border-color: var(--hs-blue);
        background: var(--hs-blue-light);
        box-shadow: 0 4px 6px -1px rgba(30,58,138,.1);
    }

    .payment-method-card input,
    .status-option input[type="radio"] {
        display: none;
    }

.secure-note {
    font-size: .82rem;
    color: var(--hs-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    margin-top: 1rem;
    font-weight: 500;
}

    .secure-note i {
        color: var(--hs-success);
        font-size: 1rem;
    }

.trust-strip,
.trust-bar {
    background: var(--hs-blue-light);
    border: 1.5px solid #bfdbfe;
    border-radius: var(--hs-radius-lg);
    padding: 1rem 1.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .86rem;
    font-weight: 600;
    color: var(--hs-blue);
}

    .trust-item i {
        color: var(--hs-red);
        font-size: 1rem;
    }

.trust-badge,
.guarantee-badge {
    display: flex;
    align-items: center;
    gap: .5rem;
    background: var(--hs-blue-light);
    border-radius: var(--hs-radius);
    padding: .65rem 1rem;
    font-size: .84rem;
    color: var(--hs-blue);
    font-weight: 600;
}

.hs-steps {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid var(--hs-border);
    border-radius: var(--hs-radius);
    overflow: hidden;
    font-size: .82rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hs-step {
    flex: 1;
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .7rem 1rem;
    color: var(--hs-muted);
    border-right: 1px solid var(--hs-border);
    transition: background .2s;
}

    .hs-step:last-child {
        border-right: none;
    }

    .hs-step.active {
        background: var(--hs-blue);
        color: #fff;
    }

    .hs-step.done {
        background: var(--hs-blue-light);
        color: var(--hs-blue);
    }

.hs-step-num {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid currentColor;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .72rem;
    flex-shrink: 0;
}

.hs-step.done .hs-step-num {
    font-size: 0;
}

    .hs-step.done .hs-step-num::after {
        content: '✓';
        font-size: .72rem;
    }

.checkout-wrap {
    background: var(--hs-bg);
    min-height: 60vh;
    padding: 2.5rem 0 5rem;
}

.order-summary,
.order-card {
    background: var(--hs-white);
    border-radius: var(--hs-radius-lg);
    border: 1px solid var(--hs-border);
    box-shadow: var(--hs-shadow);
    overflow: hidden;
    position: sticky;
    top: 100px;
}

.order-summary-header,
.order-card-head,
.payment-card-head {
    background: linear-gradient(135deg, var(--hs-blue), #264a8f);
    color: var(--hs-white);
    padding: 1.2rem 1.5rem;
}

    .order-summary-header h5,
    .order-card-head h5,
    .payment-card-head h5 {
        margin: 0;
        font-size: 1rem;
        font-weight: 700;
        color: var(--hs-white);
    }

.order-summary-body {
    padding: 1.4rem;
}

.order-item-row,
.order-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .75rem 0;
    border-bottom: 1px solid var(--hs-border);
    font-size: .92rem;
    color: var(--hs-text);
}

    .order-item-row:last-child,
    .order-row:last-child {
        border-bottom: none;
    }

.order-total {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--hs-blue);
    padding-top: 1rem;
    margin-top: .5rem;
    border-top: 2px dashed var(--hs-border);
}

.sticky-right,
.sticky-summary,
.sticky-buy-card {
    position: sticky;
    top: 90px;
}

.payment-wrap {
    background: var(--hs-bg);
    min-height: 60vh;
    padding: 2.5rem 0 5rem;
}

.payment-card {
    background: var(--hs-white);
    border-radius: var(--hs-radius-lg);
    border: 1px solid var(--hs-border);
    box-shadow: var(--hs-shadow);
    overflow: hidden;
}

.iban-block {
    background: var(--hs-blue-light);
    border: 1.5px dashed #93c5fd;
    border-radius: var(--hs-radius-lg);
    padding: 1.5rem;
}

    .iban-block .iban-num {
        font-size: .95rem;
        font-weight: 700;
        font-family: monospace;
        letter-spacing: 1px;
        color: var(--hs-blue);
        background: #fff;
        padding: .5rem .8rem;
        border-radius: var(--hs-radius);
        border: 1px solid var(--hs-border);
        word-break: break-all;
    }

.type-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2.5rem 0 1.5rem;
}

    .type-divider::before,
    .type-divider::after {
        content: '';
        flex: 1;
        height: 1.5px;
        background: var(--hs-border);
    }

.type-divider-inner {
    display: flex;
    align-items: center;
    gap: .5rem;
    white-space: nowrap;
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .6px;
    color: var(--hs-muted);
    padding: 0 .5rem;
}

    .type-divider-inner .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
    }

.pkg-card {
    border-radius: var(--hs-radius-lg);
    overflow: hidden;
    border: 1.5px solid var(--hs-border);
    background: var(--hs-white);
    box-shadow: var(--hs-shadow-md);
    transition: var(--hs-transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

    .pkg-card:hover {
        box-shadow: var(--hs-shadow-hover);
        transform: translateY(-6px);
    }

.pkg-head {
    padding: 1.8rem 1.5rem 1.4rem;
    text-align: center;
    position: relative;
}

    .pkg-head.donation {
        background: linear-gradient(135deg, #15803d, #16a34a);
        color: var(--hs-white);
    }

    .pkg-head.membership {
        background: linear-gradient(135deg, var(--hs-blue), #264a8f);
        color: var(--hs-white);
    }

    .pkg-head.apc {
        background: linear-gradient(135deg, #92400e, #b45309);
        color: var(--hs-white);
    }

    .pkg-head h3 {
        color: var(--hs-white);
        font-size: 1.15rem;
        font-weight: 700;
        margin: 10px 0 5px;
    }

    .pkg-head p {
        font-size: .85rem;
        opacity: .85;
        margin: 0;
        color: rgba(255,255,255,.85);
    }

.pkg-icon {
    font-size: 2rem;
    margin-bottom: .5rem;
}

.pkg-popular-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255,255,255,.25);
    color: #fff;
    font-size: .65rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: var(--hs-radius-full);
    text-transform: uppercase;
    letter-spacing: .4px;
    border: 1px solid rgba(255,255,255,.4);
}

.pkg-body {
    padding: 1.6rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pkg-price-area {
    text-align: center;
    padding-bottom: 1.4rem;
    margin-bottom: 1.4rem;
    border-bottom: 1.5px solid var(--hs-border);
}

.pkg-price {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--hs-blue);
    line-height: 1;
}

    .pkg-price sup {
        font-size: 1.3rem;
        font-weight: 700;
        vertical-align: super;
    }

    .pkg-price sub {
        font-size: .9rem;
        font-weight: 400;
        color: var(--hs-muted);
        vertical-align: baseline;
    }

.pkg-price-flexible {
    font-size: .95rem;
    color: var(--hs-muted);
    font-weight: 600;
}

    .pkg-price-flexible strong {
        color: var(--hs-blue);
    }

.pkg-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    flex: 1;
}

    .pkg-features li {
        padding: .55rem 0;
        font-size: .9rem;
        color: var(--hs-text);
        display: flex;
        align-items: flex-start;
        gap: .6rem;
        border-bottom: 1px solid var(--hs-border-light);
    }

        .pkg-features li:last-child {
            border-bottom: none;
        }

        .pkg-features li::before {
            content: '';
            width: 16px;
            height: 16px;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='7' fill='%2316a34a' fill-opacity='.15'/%3E%3Cpath d='M5 8l2 2 4-4' stroke='%2316a34a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
            flex-shrink: 0;
            margin-top: 2px;
        }

.pkg-type-note {
    font-size: .75rem;
    color: var(--hs-muted);
    text-align: center;
    margin-bottom: .8rem;
}

.buy-card {
    border-radius: var(--hs-radius-lg);
    border: 2px solid var(--hs-blue);
    overflow: hidden;
    position: sticky;
    top: 90px;
}

.buy-card-header {
    background: var(--hs-blue);
    color: #fff;
    padding: 1.2rem 1.5rem;
}

.buy-card-body {
    background: var(--hs-white);
    padding: 1.5rem;
}

.price-main {
    font-size: 2.6rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

    .price-main sup {
        font-size: 1.2rem;
        vertical-align: super;
    }

.discount-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .85rem;
}

    .discount-table th {
        background: var(--hs-blue);
        color: #fff;
        padding: .5rem .7rem;
        text-align: left;
        font-weight: 600;
    }

    .discount-table td {
        padding: .45rem .7rem;
        border-bottom: 1px solid var(--hs-border);
    }

    .discount-table tr:nth-child(even) td {
        background: var(--hs-blue-light);
    }

    .discount-table .free {
        color: var(--hs-success);
        font-weight: 700;
    }

.result-wrap,
.status-wrap,
.pending-wrap {
    padding: 3.5rem 0 5rem;
    background: var(--hs-bg);
}

.result-card,
.status-card,
.pending-card {
    max-width: 600px;
    margin: 0 auto;
    border-radius: var(--hs-radius-lg);
    overflow: hidden;
    box-shadow: var(--hs-shadow-xl);
    background: var(--hs-white);
}

.result-hero,
.status-hero,
.pending-hero {
    padding: 2.8rem 2rem 2.2rem;
    text-align: center;
    color: var(--hs-white);
}

    .result-hero.success,
    .status-hero.ok {
        background: linear-gradient(135deg, #0f5132, #198754);
    }

    .result-hero.exempt {
        background: linear-gradient(135deg, #1e3a8a, #2563eb);
    }

    .status-hero.fail {
        background: linear-gradient(135deg, #7b0d0d, var(--hs-red));
    }

.pending-hero {
    background: linear-gradient(135deg, #92400e, var(--hs-warning));
}

.result-icon,
.status-icon,
.pending-icon {
    width: 76px;
    height: 76px;
    border-radius: var(--hs-radius-full);
    background: rgba(255,255,255,.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    box-shadow: 0 0 0 10px rgba(255,255,255,.1);
}

.result-hero h2,
.status-hero h2,
.pending-hero h2 {
    color: var(--hs-white);
    font-size: 1.65rem;
    margin-bottom: .5rem;
}

.result-body,
.status-body,
.pending-body {
    padding: 1.8rem 2rem 2rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .7rem 0;
    border-bottom: 1px solid var(--hs-border-light);
    font-size: .92rem;
    color: var(--hs-text);
}

    .detail-row:last-child {
        border-bottom: none;
    }

    .detail-row .lbl,
    .detail-row .label {
        color: var(--hs-muted);
        display: flex;
        align-items: center;
        gap: .4rem;
    }

.checklist {
    background: var(--hs-blue-light);
    border-radius: var(--hs-radius);
    padding: 1.2rem 1.4rem;
    margin: 1.2rem 0;
}

    .checklist li,
    .checklist-item {
        display: flex;
        align-items: center;
        gap: .7rem;
        padding: .35rem 0;
        font-size: .9rem;
        color: var(--hs-blue);
        font-weight: 600;
    }

        .checklist li i,
        .checklist-item i {
            color: var(--hs-success);
            font-size: 1.1rem;
        }

.step-done {
    background: var(--hs-blue-light);
    border-radius: var(--hs-radius);
    padding: 1rem 1.2rem;
}

.step-done-item {
    display: flex;
    align-items: center;
    gap: .7rem;
    font-size: .88rem;
    color: var(--hs-blue);
    font-weight: 600;
    margin-bottom: .4rem;
}

    .step-done-item:last-child {
        margin-bottom: 0;
    }

    .step-done-item i {
        color: var(--hs-success);
    }

.step-item {
    display: flex;
    align-items: flex-start;
    gap: .8rem;
    padding: .6rem 0;
    border-bottom: 1px solid var(--hs-border);
}

    .step-item:last-child {
        border-bottom: none;
    }

.step-num {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--hs-blue);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.author-card {
    border: 1.5px solid var(--hs-border);
    border-radius: var(--hs-radius-lg);
    padding: 1.2rem 1.2rem .8rem;
    margin-bottom: 1rem;
    background: var(--hs-white);
    transition: border-color .2s;
}

    .author-card:hover {
        border-color: var(--hs-blue-mid);
    }

    .author-card .author-num {
        width: 28px;
        height: 28px;
        background: var(--hs-blue);
        color: #fff;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: .78rem;
        font-weight: 700;
        margin-right: .5rem;
        flex-shrink: 0;
    }

.discount-line {
    color: var(--hs-success);
    font-weight: 700;
}

.exempt-badge {
    background: #dcfce7;
    color: #15803d;
    border: 1px solid #bbf7d0;
    border-radius: var(--hs-radius-full);
    padding: 2px 10px;
    font-size: .72rem;
    font-weight: 700;
}

.commitment-box {
    border: 1.5px dashed var(--hs-blue-mid);
    background: var(--hs-blue-light);
    border-radius: var(--hs-radius);
    padding: 1rem 1.2rem;
}

.hero-wrap,
.hero-banner {
    position: relative;
    border-radius: var(--hs-radius-lg);
    overflow: hidden;
    margin-bottom: 1.5rem;
    background: var(--hs-blue);
}

    .hero-wrap img,
    .hero-banner img {
        width: 100%;
        height: 400px;
        object-fit: cover;
        opacity: .72;
        display: block;
    }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13,34,69,.92) 0%, rgba(13,34,69,.3) 50%, transparent 100%);
}

.hero-cap {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.8rem 2rem;
}

.hero-badge,
.category-badge {
    display: inline-block;
    background: var(--hs-red);
    color: #fff;
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .6px;
    padding: 3px 12px;
    border-radius: var(--hs-radius-full);
    margin-bottom: .6rem;
}

.hero-cap h2 {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.35;
    margin: 0;
}

    .hero-cap h2 a {
        color: #fff;
        text-decoration: none;
    }

        .hero-cap h2 a:hover {
            color: #bfdbfe;
        }

.hero-meta {
    font-size: .78rem;
    color: rgba(255,255,255,.65);
    margin-top: .4rem;
}

.sec-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2.5px solid var(--hs-blue);
    padding-bottom: .55rem;
    margin-bottom: 1.2rem;
}

    .sec-head h3 {
        font-size: 1.05rem;
        font-weight: 700;
        color: var(--hs-blue);
        margin: 0;
        display: flex;
        align-items: center;
        gap: .5rem;
    }

        .sec-head h3 .sec-icon {
            color: var(--hs-red);
            font-size: .9rem;
        }

    .sec-head a {
        font-size: .78rem;
        color: var(--hs-red);
        font-weight: 700;
        text-decoration: none;
        white-space: nowrap;
    }

        .sec-head a:hover {
            text-decoration: underline;
        }

.home-section {
    margin-bottom: 2.5rem;
}

.home-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.2rem;
    border-bottom: 2.5px solid var(--hs-blue);
    padding-bottom: .6rem;
}

    .home-section-head h3 {
        font-size: 1.15rem;
        font-weight: 800;
        color: var(--hs-blue);
        margin: 0;
    }

    .home-section-head a {
        font-size: .82rem;
        color: var(--hs-red);
        font-weight: 600;
        text-decoration: none;
    }

        .home-section-head a:hover {
            text-decoration: underline;
        }

.news-card {
    background: var(--hs-white);
    border-radius: var(--hs-radius);
    border: 1px solid var(--hs-border);
    overflow: hidden;
    box-shadow: var(--hs-shadow);
    transition: var(--hs-transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .news-card:hover {
        box-shadow: var(--hs-shadow-hover);
        transform: translateY(-3px);
    }

.news-card-img {
    position: relative;
    overflow: hidden;
}

    .news-card-img img {
        width: 100%;
        height: 175px;
        object-fit: cover;
        transition: transform .35s ease;
        display: block;
    }

.news-card:hover .news-card-img img {
    transform: scale(1.04);
}

.news-card-cat {
    position: absolute;
    top: .6rem;
    left: .6rem;
    background: var(--hs-red);
    color: #fff;
    font-size: .65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .4px;
    padding: 2px 8px;
    border-radius: var(--hs-radius-full);
}

.news-card-body {
    padding: .9rem 1rem 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-card-category {
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--hs-red);
    margin-bottom: .4rem;
}

.news-card-title {
    font-size: .9rem;
    font-weight: 700;
    line-height: 1.45;
    color: var(--hs-text);
    flex: 1;
    margin-bottom: .5rem;
}

    .news-card-title a {
        color: inherit;
        text-decoration: none;
    }

        .news-card-title a:hover {
            color: var(--hs-blue);
        }

.news-card-foot {
    font-size: .73rem;
    color: var(--hs-muted);
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-top: auto;
}

.list-news-item {
    display: flex;
    align-items: flex-start;
    gap: .8rem;
    padding: .6rem 0;
    border-bottom: 1px solid var(--hs-border);
}

    .list-news-item:last-child {
        border-bottom: none;
    }

.list-news-thumb {
    width: 64px;
    height: 64px;
    border-radius: var(--hs-radius);
    object-fit: cover;
    flex-shrink: 0;
}

.list-news-thumb-placeholder {
    width: 64px;
    height: 64px;
    border-radius: var(--hs-radius);
    flex-shrink: 0;
    background: var(--hs-blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .list-news-thumb-placeholder i {
        color: var(--hs-blue);
        font-size: 1.2rem;
    }

.list-news-body .cat {
    font-size: .65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .4px;
    color: var(--hs-red);
}

.list-news-body .title {
    font-size: .87rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--hs-text);
}

    .list-news-body .title a {
        color: inherit;
        text-decoration: none;
    }

        .list-news-body .title a:hover {
            color: var(--hs-blue);
        }

.partner-card {
    background: var(--hs-white);
    border-radius: var(--hs-radius);
    border: 1px solid var(--hs-border);
    overflow: hidden;
    box-shadow: var(--hs-shadow);
    transition: var(--hs-transition);
    text-decoration: none;
    display: block;
}

    .partner-card:hover {
        box-shadow: var(--hs-shadow-hover);
        transform: translateY(-2px);
    }

    .partner-card img {
        width: 100%;
        height: 120px;
        object-fit: cover;
    }

    .partner-card .p-card-body {
        padding: .7rem .8rem;
    }

    .partner-card .p-card-cat {
        font-size: .65rem;
        font-weight: 700;
        text-transform: uppercase;
        color: var(--hs-red);
    }

    .partner-card .p-card-title {
        font-size: .82rem;
        font-weight: 600;
        color: var(--hs-text);
        line-height: 1.35;
    }

.stat-band {
    background: linear-gradient(135deg, var(--hs-blue) 0%, #264a8f 100%);
    border-radius: var(--hs-radius-lg);
    color: #fff;
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
}

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

.stat-num {
    font-size: 1.9rem;
    font-weight: 800;
    line-height: 1;
}

.stat-lbl {
    font-size: .78rem;
    color: rgba(255,255,255,.7);
    margin-top: .2rem;
}

.stat-divider {
    width: 1px;
    background: rgba(255,255,255,.15);
    align-self: stretch;
}

.page-hero-wrap {
    position: relative;
    border-radius: var(--hs-radius-lg);
    overflow: hidden;
    margin-bottom: 1.5rem;
}

    .page-hero-wrap img {
        width: 100%;
        max-height: 380px;
        object-fit: cover;
        display: block;
    }

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13,34,69,.85) 0%, transparent 55%);
}

.page-hero-cap {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.6rem 2rem;
}

    .page-hero-cap h1 {
        font-size: 1.7rem;
        font-weight: 700;
        color: #fff;
        margin: 0;
        line-height: 1.35;
    }

.page-hero-cat {
    display: inline-block;
    background: var(--hs-red);
    color: #fff;
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: 2px 10px;
    border-radius: var(--hs-radius-full);
    margin-bottom: .5rem;
}

.page-content {
    font-size: .97rem;
    line-height: 1.85;
    color: var(--hs-text);
}

    .page-content h2 {
        font-size: 1.25rem;
        color: var(--hs-blue);
        margin-top: 2rem;
        margin-bottom: .8rem;
        padding-bottom: .4rem;
        border-bottom: 1.5px solid var(--hs-border);
    }

    .page-content h3 {
        font-size: 1.1rem;
        color: var(--hs-blue);
        margin-top: 1.5rem;
        margin-bottom: .6rem;
    }

    .page-content p {
        margin-bottom: 1.1rem;
    }

    .page-content img {
        max-width: 100%;
        border-radius: var(--hs-radius);
        margin: 1rem 0;
        box-shadow: var(--hs-shadow);
    }

    .page-content a {
        color: var(--hs-blue-mid);
    }

        .page-content a:hover {
            color: var(--hs-red);
        }

    .page-content ul,
    .page-content ol {
        padding-left: 1.5rem;
        margin-bottom: 1.1rem;
    }

    .page-content li {
        margin-bottom: .35rem;
    }

    .page-content blockquote {
        border-left: 4px solid var(--hs-red);
        padding: .9rem 1.2rem;
        background: var(--hs-blue-light);
        border-radius: 0 var(--hs-radius) var(--hs-radius) 0;
        color: var(--hs-blue);
        font-style: italic;
        margin: 1.2rem 0;
    }

    .page-content table {
        width: 100%;
        border-collapse: collapse;
        margin: 1.2rem 0;
        font-size: .9rem;
    }

    .page-content th {
        background: var(--hs-blue);
        color: #fff;
        padding: .6rem .8rem;
        text-align: left;
    }

    .page-content td {
        padding: .5rem .8rem;
        border-bottom: 1px solid var(--hs-border);
    }

    .page-content tr:nth-child(even) td {
        background: var(--hs-blue-light);
    }

.child-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--hs-white);
    border-radius: var(--hs-radius);
    border: 1px solid var(--hs-border);
    padding: .85rem 1rem;
    box-shadow: var(--hs-shadow);
    transition: var(--hs-transition);
    text-decoration: none;
}

    .child-card:hover {
        box-shadow: var(--hs-shadow-hover);
        transform: translateY(-2px);
    }

.child-card-thumb {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: var(--hs-radius);
    flex-shrink: 0;
}

.child-card-placeholder {
    width: 72px;
    height: 72px;
    background: var(--hs-blue-light);
    border-radius: var(--hs-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .child-card-placeholder i {
        color: var(--hs-blue);
        font-size: 1.4rem;
    }

.child-card-cat {
    font-size: .67rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--hs-red);
    letter-spacing: .4px;
}

.child-card-title {
    font-size: .93rem;
    font-weight: 700;
    color: var(--hs-text);
    line-height: 1.35;
    margin-top: .15rem;
}

.child-card-arrow {
    margin-left: auto;
    color: var(--hs-muted);
    font-size: .8rem;
    flex-shrink: 0;
}

.share-bar {
    display: flex;
    align-items: center;
    gap: .5rem;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .35rem .9rem;
    border-radius: var(--hs-radius-full);
    font-size: .78rem;
    font-weight: 600;
    text-decoration: none;
    transition: opacity .15s;
    border: none;
    cursor: pointer;
}

    .share-btn:hover {
        opacity: .85;
    }

    .share-btn.fb {
        background: #1877f2;
        color: #fff;
    }

    .share-btn.tw {
        background: #000;
        color: #fff;
    }

    .share-btn.wa {
        background: #25d366;
        color: #fff;
    }

    .share-btn.cp {
        background: var(--hs-bg);
        color: var(--hs-text);
        border: 1px solid var(--hs-border);
    }

.cinfo-card {
    background: var(--hs-white);
    border-radius: var(--hs-radius-lg);
    border: 1px solid var(--hs-border);
    padding: 1.2rem 1.3rem;
    box-shadow: var(--hs-shadow);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: var(--hs-transition);
    margin-bottom: .85rem;
}

    .cinfo-card:hover {
        box-shadow: var(--hs-shadow-hover);
        transform: translateY(-2px);
    }

.cinfo-icon {
    width: 46px;
    height: 46px;
    border-radius: var(--hs-radius);
    background: linear-gradient(135deg, var(--hs-blue) 0%, #264a8f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .cinfo-icon i {
        color: #fff;
        font-size: 1rem;
    }

.cinfo-label {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .4px;
    color: var(--hs-muted);
}

.cinfo-value {
    font-size: .93rem;
    font-weight: 600;
    color: var(--hs-text);
    margin: .1rem 0 0;
}

    .cinfo-value a {
        color: var(--hs-text);
        text-decoration: none;
    }

        .cinfo-value a:hover {
            color: var(--hs-red);
        }

.cinfo-sub {
    font-size: .78rem;
    color: var(--hs-muted);
    margin-top: .15rem;
}

.form-card {
    background: var(--hs-white);
    border-radius: var(--hs-radius-lg);
    border: 1px solid var(--hs-border);
    box-shadow: var(--hs-shadow);
    overflow: hidden;
}

.form-card-head,
.form-card-header {
    background: linear-gradient(135deg, var(--hs-blue) 0%, #264a8f 100%);
    color: #fff;
    padding: 1.4rem 1.8rem;
}

    .form-card-head h3,
    .form-card-header h3 {
        font-size: 1.1rem;
        font-weight: 700;
        color: #fff;
        margin: 0 0 .2rem;
    }

    .form-card-head p,
    .form-card-header p {
        font-size: .83rem;
        color: rgba(255,255,255,.72);
        margin: 0;
    }

.form-card-body {
    padding: 1.8rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .55rem .5rem;
    border-radius: var(--hs-radius);
    text-decoration: none;
    color: var(--hs-text);
    font-size: .9rem;
    font-weight: 500;
    transition: background .12s;
    border-bottom: 1px solid var(--hs-border);
}

    .social-link:last-child {
        border-bottom: none;
    }

    .social-link:hover {
        background: var(--hs-blue-light);
        color: var(--hs-blue);
    }

    .social-link .s-icon {
        width: 32px;
        height: 32px;
        border-radius: var(--hs-radius);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
        flex-shrink: 0;
    }

.map-embed {
    border-radius: var(--hs-radius);
    overflow: hidden;
    border: 1px solid var(--hs-border);
    box-shadow: var(--hs-shadow);
}

    .map-embed iframe {
        display: block;
        width: 100%;
        border: none;
    }

.blog_right_sidebar .single_sidebar_widget {
    background: var(--hs-white);
    border: 1px solid var(--hs-border);
    border-radius: var(--hs-radius-lg);
    padding: 28px;
    margin-bottom: 28px;
    box-shadow: var(--hs-shadow);
}

.blog_right_sidebar .widget_title {
    font-size: 17px;
    font-weight: 700;
    color: var(--hs-dark);
    margin-bottom: 22px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--hs-border-light);
}

.blog_right_sidebar .search_widget .form-control {
    height: 48px;
    border-radius: var(--hs-radius) 0 0 var(--hs-radius);
    border: 1px solid var(--hs-border);
    padding-left: 18px;
    background: var(--hs-bg);
}

.blog_right_sidebar .search_widget button {
    background: var(--hs-blue);
    color: var(--hs-white);
    border: none;
    border-radius: 0 var(--hs-radius) var(--hs-radius) 0;
    padding: 0 18px;
    cursor: pointer;
    transition: var(--hs-transition);
}

    .blog_right_sidebar .search_widget button:hover {
        background: #153068;
    }
.sidebar-action-btn {
    margin: 0.2rem;
    background: var(--hs-blue);
    color: #fff;
    border-radius: 8px;
    padding: .6rem .9rem;
    font-size: .88rem;
    font-weight: 600;
}
    .sidebar-action-btn:hover {
        opacity: .88;
        background:gray;
        transform: translateX(2px);
        transition: all 0.3s ease-out;
    }

.trending-area .trending-main .trending-top .trend-top-img {
    border-radius: var(--hs-radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--hs-shadow-md);
}

    .trending-area .trending-main .trending-top .trend-top-img::before {
        background: linear-gradient(to bottom, rgba(15,23,42,0) 0%, rgba(15,23,42,.8) 100%);
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        bottom: 0;
    }

.trending-area .trending-main .trending-top .trend-top-cap {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 2;
}

    .trending-area .trending-main .trending-top .trend-top-cap span {
        background: var(--hs-red);
        color: var(--hs-white);
        padding: 5px 14px;
        border-radius: var(--hs-radius-full);
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        margin-bottom: 12px;
        display: inline-block;
    }

    .trending-area .trending-main .trending-top .trend-top-cap h2 a {
        color: var(--hs-white);
        font-size: 30px;
        font-weight: 700;
        line-height: 1.3;
    }

.single-bottom {
    background: var(--hs-white);
    border-radius: var(--hs-radius-lg);
    overflow: hidden;
    box-shadow: var(--hs-shadow);
    transition: var(--hs-transition);
    margin-bottom: 28px;
}

    .single-bottom:hover {
        box-shadow: var(--hs-shadow-hover);
        transform: translateY(-4px);
    }

    .single-bottom .trend-bottom-img img {
        width: 100%;
        transition: transform .5s ease;
    }

    .single-bottom:hover .trend-bottom-img img {
        transform: scale(1.05);
    }

    .single-bottom .trend-bottom-cap {
        padding: 18px;
    }

        .single-bottom .trend-bottom-cap span {
            color: var(--hs-red);
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            margin-bottom: 9px;
            display: block;
        }

        .single-bottom .trend-bottom-cap h4 a {
            color: var(--hs-dark);
            font-size: 17px;
            font-weight: 600;
        }

            .single-bottom .trend-bottom-cap h4 a:hover {
                color: var(--hs-blue);
            }

.single-blog {
    background: var(--hs-white);
    border-radius: var(--hs-radius-lg);
    box-shadow: var(--hs-shadow);
    transition: var(--hs-transition);
    border: 1px solid var(--hs-border);
    margin-bottom: 28px;
    overflow: hidden;
}

    .single-blog:hover {
        box-shadow: var(--hs-shadow-hover);
        transform: translateY(-5px);
    }

    .single-blog .thumb {
        position: relative;
        overflow: hidden;
    }

        .single-blog .thumb img {
            width: 100%;
            transition: transform .5s ease;
        }

    .single-blog:hover .thumb img {
        transform: scale(1.05);
    }

    .single-blog .single-blog-content {
        padding: 24px;
    }

        .single-blog .single-blog-content a h4 {
            font-size: 19px;
            font-weight: 600;
            color: var(--hs-dark);
            margin-bottom: 14px;
            transition: var(--hs-transition);
        }

        .single-blog .single-blog-content a:hover h4 {
            color: var(--hs-blue);
        }

    .single-blog .date {
        font-size: 13px;
        color: var(--hs-muted);
        font-weight: 500;
    }

.contact-section {
    background: var(--hs-white);
}

.contact-info {
    display: flex;
    margin-bottom: 28px;
}

.contact-info__icon {
    margin-right: 18px;
}

    .contact-info__icon i {
        color: var(--hs-blue);
        font-size: 26px;
    }

.contact-info .media-body h3 {
    font-size: 17px;
    margin-bottom: 5px;
    color: var(--hs-dark);
}

.contact-info .media-body p {
    color: var(--hs-muted);
    margin: 0;
}

.hs-footer {
    background: var(--hs-blue-dark);
    color: rgba(255,255,255,.8);
    padding: 3rem 0 0;
    margin-top: 3rem;
}

.hs-footer-logo img {
    max-height: 48px;
    filter: brightness(0) invert(1) opacity(.8);
}

.hs-footer-tagline {
    font-size: .88rem;
    color: rgba(255,255,255,.55);
    margin-top: .6rem;
    font-style: italic;
}

.hs-footer-heading {
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,.4);
    font-weight: 700;
    margin-bottom: 1rem;
}

.hs-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .hs-footer-links li {
        margin-bottom: .45rem;
    }

    .hs-footer-links a {
        color: rgba(255,255,255,.65);
        text-decoration: none;
        font-size: .88rem;
        transition: color .15s;
        display: flex;
        align-items: center;
        gap: .4rem;
    }

        .hs-footer-links a::before {
            content: '›';
            color: var(--hs-red);
            font-weight: bold;
        }

        .hs-footer-links a:hover {
            color: #fff;
        }

.hs-footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: .7rem;
    color: rgba(255,255,255,.65);
    font-size: .88rem;
    margin-bottom: .7rem;
}

    .hs-footer-contact li i {
        color: var(--hs-red);
        margin-top: 3px;
        flex-shrink: 0;
    }

.hs-footer-social {
    display: flex;
    gap: .6rem;
    margin-top: 1rem;
}

    .hs-footer-social a {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        border: 1px solid rgba(255,255,255,.2);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: rgba(255,255,255,.65);
        text-decoration: none;
        font-size: .9rem;
        transition: background .15s, border-color .15s, color .15s;
    }

        .hs-footer-social a:hover {
            background: var(--hs-red);
            border-color: var(--hs-red);
            color: #fff;
        }

.hs-footer-bottom {
    margin-top: 2.5rem;
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 1rem 0;
    font-size: .8rem;
    color: rgba(255,255,255,.4);
}

    .hs-footer-bottom a {
        color: rgba(255,255,255,.5);
        text-decoration: none;
    }

        .hs-footer-bottom a:hover {
            color: #fff;
        }

.footer-area {
    background: var(--hs-dark);
    padding-top: 70px;
}

    .footer-area .footer-tittle h4 {
        color: var(--hs-white);
        font-size: 19px;
        margin-bottom: 28px;
        font-weight: 600;
    }

    .footer-area .footer-pera p {
        color: var(--hs-light);
        line-height: 1.8;
    }

    .footer-area .footer-tittle ul li {
        margin-bottom: 13px;
    }

        .footer-area .footer-tittle ul li a {
            color: var(--hs-light);
            font-weight: 400;
            transition: var(--hs-transition);
        }

            .footer-area .footer-tittle ul li a:hover {
                color: var(--hs-red);
                padding-left: 8px;
            }

    .footer-area .footer-social a {
        color: var(--hs-white);
        font-size: 18px;
        margin-right: 15px;
        transition: var(--hs-transition);
    }

        .footer-area .footer-social a:hover {
            color: var(--hs-red);
            transform: translateY(-3px) scale(1.1);
        }

.footer-bottom-area {
    background: #0b1120;
    padding: 22px 0;
    border-top: 1px solid rgba(255,255,255,.05);
}

    .footer-bottom-area .footer-copy-right p {
        color: var(--hs-light);
        margin: 0;
    }

.empty-wrap,
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--hs-muted);
}

    .empty-wrap i,
    .empty-state i {
        font-size: 3rem;
        color: var(--hs-border);
        display: block;
        margin-bottom: 1rem;
    }

@media (max-width: 1199px) {
    .pkg-price {
        font-size: 2.4rem;
    }
}

@media (max-width: 991px) {
    .section-padding,
    .section-padding2,
    .section-padding3 {
        padding: 60px 0;
    }

    .section-paddingt {
        padding-top: 60px;
        padding-bottom: 45px;
    }

    .hs-logo-strip .logo-tagline {
        display: none;
    }

    .sticky-right,
    .sticky-summary,
    .sticky-buy-card,
    .buy-card {
        position: static;
        top: auto;
    }

    .hero-wrap img,
    .hero-banner img {
        height: 300px;
    }
}

@media (max-width: 767px) {
    .hs-topbar .topbar-links {
        display: none;
    }

    .hs-steps {
        font-size: .72rem;
    }

    .hs-step {
        padding: .5rem .6rem;
    }

    .stat-band {
        padding: 1.2rem 1rem;
    }

    .stat-num {
        font-size: 1.5rem;
    }

    .result-body,
    .status-body,
    .pending-body {
        padding: 1.4rem 1.2rem;
    }

    .result-hero,
    .status-hero,
    .pending-hero {
        padding: 2rem 1.2rem 1.5rem;
    }

    .hero-wrap img,
    .hero-banner img {
        height: 220px;
    }

    .hero-cap {
        padding: 1.2rem 1.2rem;
    }

        .hero-cap h2 {
            font-size: 1.1rem;
        }

    .pkg-price {
        font-size: 2.2rem;
    }

    .form-card-body {
        padding: 1.2rem;
    }

    .checkout-wrap {
        padding: 1.5rem 0 3rem;
    }
}

@media (max-width: 480px) {
    .hs-step {
        padding: .4rem .4rem;
        font-size: .65rem;
    }

    .hs-step-num {
        width: 18px;
        height: 18px;
    }

    .pkg-body {
        padding: 1.2rem 1rem;
    }

    .share-bar {
        gap: .3rem;
    }

    .share-btn {
        padding: .3rem .6rem;
        font-size: .72rem;
    }
}
