@charset "UTF-8";

/*--------------------------------------------------------------
# Start Web Hero Header
--------------------------------------------------------------*/

.web-panel-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 460px;
    padding: 140px 20px 100px;
    text-align: center;
    color: #ffffff;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
    isolation: isolate;
}

.web-panel-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.86), rgba(15, 23, 42, 0.64));
    z-index: 1;
}

.web-panel-hero::after {
    content: "";
    position: absolute;
    top: -120px;
    right: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(80, 197, 255, 0.24), transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.web-panel-hero .container {
    position: relative;
    z-index: 2;
    max-width: 860px;
    margin: 0 auto;
}


/*--------------------------------------------------------------
# Hero Badge
--------------------------------------------------------------*/

.web-hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 42px;
    padding: 8px 16px;
    margin-bottom: 20px;
    border-radius: 999px;
    background: rgba(80, 197, 255, 0.14);
    border: 1px solid rgba(80, 197, 255, 0.28);
    color: #e8faff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    backdrop-filter: blur(6px);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
}

.web-hero-badge i {
    color: #50c5ff;
    font-size: 0.92rem;
    line-height: 1;
}


/*--------------------------------------------------------------
# Hero Title & Text
--------------------------------------------------------------*/

.web-panel-hero h1 {
    margin: 0 0 16px;
    color: #ffffff;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.web-panel-hero p {
    margin: 0 auto;
    max-width: 720px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    line-height: 1.8;
}


/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/

.web-panel-hero .breadcrumbs {
    margin-top: 28px;
}

.web-panel-hero .breadcrumbs ol {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.web-panel-hero .breadcrumbs li {
    position: relative;
    display: inline-flex;
    align-items: center;
    font-size: 0.9rem;
    line-height: 1.5;
}

.web-panel-hero .breadcrumbs li a {
    color: rgba(255, 255, 255, 0.74);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.25s ease, opacity 0.25s ease;
}

.web-panel-hero .breadcrumbs li a:hover {
    color: #50c5ff;
}

.web-panel-hero .breadcrumbs li+li::before {
    content: "›";
    margin: 0 8px;
    color: rgba(255, 255, 255, 0.42);
    font-weight: 600;
}

.web-panel-hero .breadcrumbs li:last-child {
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.web-panel-hero .breadcrumbs li:last-child::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #50c5ff, transparent);
}


/*--------------------------------------------------------------
# Large Desktop
--------------------------------------------------------------*/

@media (min-width: 1200px) {
    .web-panel-hero {
        min-height: 490px;
        padding: 150px 20px 105px;
    }
    .web-panel-hero h1 {
        font-size: 3.2rem;
    }
    .web-panel-hero p {
        font-size: 1.08rem;
    }
}


/*--------------------------------------------------------------
# Tablet
--------------------------------------------------------------*/

@media (max-width: 991.98px) {
    .web-panel-hero {
        min-height: 410px;
        padding: 125px 20px 82px;
    }
    .web-panel-hero .container {
        max-width: 760px;
    }
    .web-panel-hero h1 {
        font-size: 2.45rem;
    }
    .web-panel-hero p {
        max-width: 100%;
        font-size: 1rem;
        line-height: 1.76;
    }
    .web-hero-badge {
        min-height: 40px;
        font-size: 0.76rem;
        padding: 7px 15px;
    }
    .web-panel-hero .breadcrumbs {
        margin-top: 24px;
    }
    .web-panel-hero .breadcrumbs li {
        font-size: 0.86rem;
    }
}


/*--------------------------------------------------------------
# Mobile
--------------------------------------------------------------*/

@media (max-width: 767.98px) {
    .web-panel-hero {
        min-height: auto;
        padding: 110px 16px 68px;
    }
    .web-panel-hero::after {
        top: -90px;
        right: -70px;
        width: 220px;
        height: 220px;
    }
    .web-panel-hero .container {
        max-width: 100%;
    }
    .web-hero-badge {
        min-height: 38px;
        padding: 6px 14px;
        margin-bottom: 16px;
        font-size: 0.72rem;
        letter-spacing: 0.05em;
    }
    .web-hero-badge i {
        font-size: 0.86rem;
    }
    .web-panel-hero h1 {
        margin-bottom: 14px;
        font-size: 2rem;
        line-height: 1.12;
    }
    .web-panel-hero p {
        font-size: 0.95rem;
        line-height: 1.72;
    }
    .web-panel-hero .breadcrumbs {
        margin-top: 20px;
    }
    .web-panel-hero .breadcrumbs ol {
        gap: 4px;
    }
    .web-panel-hero .breadcrumbs li {
        font-size: 0.82rem;
    }
    .web-panel-hero .breadcrumbs li+li::before {
        margin: 0 6px;
    }
    .web-panel-hero .breadcrumbs li:last-child::after {
        bottom: -3px;
    }
}


/*--------------------------------------------------------------
# Small Mobile
--------------------------------------------------------------*/

@media (max-width: 575.98px) {
    .web-panel-hero {
        padding: 100px 14px 58px;
    }
    .web-panel-hero h1 {
        font-size: 1.72rem;
    }
    .web-panel-hero p {
        font-size: 0.91rem;
        line-height: 1.68;
    }
    .web-hero-badge {
        min-height: 36px;
        padding: 6px 12px;
        font-size: 0.68rem;
    }
    .web-panel-hero .breadcrumbs li {
        font-size: 0.78rem;
    }
}


/*-------------------------------------------------------------------------------------------------------------------------------------------------
# End Web Hero Header
--------------------------------------------------------------------------------------------------------------------------------------------------*/


/*--------------------------------------------------------------------------------------------------------------------------------------------------
# Section Title (Full Width)
--------------------------------------------------------------------------------------------------------------------------------------------------*/

.section-title {
    position: relative;
    text-align: left;
    margin: 5px 0 32px;
}

.section-title h2 {
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: color-mix(in srgb, var(--default-color), transparent 32%);
}

.section-title h2::after {
    content: "";
    flex: 0 0 120px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
}

.section-title p {
    margin: 0;
    width: 100%;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.22;
    letter-spacing: -0.02em;
    color: var(--heading-color);
    font-family: var(--heading-font);
}


/*-----------------------------------------------------
# Desktop Large
-------------------------------------------------------*/

@media (min-width: 1200px) {
    .section-title {
        margin: 5px 0 36px;
    }
    .section-title p {
        font-size: 2.2rem;
    }
}


/*---------------------------------------------------------
# Tablet
-----------------------------------------------------------*/

@media (max-width: 991.98px) {
    .section-title {
        margin: 5px 0 28px;
    }
    .section-title h2 {
        font-size: 0.78rem;
    }
    .section-title h2::after {
        flex-basis: 90px;
    }
    .section-title p {
        font-size: 1.75rem;
        line-height: 1.28;
    }
}


/*-----------------------------------------------------------
# Mobile
-------------------------------------------------------------*/

@media (max-width: 767.98px) {
    .section-title {
        margin: 5px 0 24px;
    }
    .section-title h2 {
        gap: 8px;
        font-size: 0.72rem;
        flex-wrap: wrap;
    }
    .section-title h2::after {
        flex: 0 0 70px;
    }
    .section-title p {
        font-size: 1.4rem;
        line-height: 1.32;
    }
}


/*------------------------------------------------------------
# Small Mobile
--------------------------------------------------------------*/

@media (max-width: 575.98px) {
    .section-title {
        margin: 5px 0 20px;
    }
    .section-title h2 {
        font-size: 0.68rem;
    }
    .section-title h2::after {
        flex-basis: 55px;
    }
    .section-title p {
        font-size: 1.2rem;
    }
}


/*--------------------------------------------------------------------------------------------------------------------------------------------------
# End Section Title
--------------------------------------------------------------------------------------------------------------------------------------------------*/


/*--------------------------------------------------------------------------------------------------------------------------------------------------
# Start Preloader
----------------------------------------------------------------------------------------------------------------------------------------------------*/

#preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, rgba(80, 197, 255, 0.08), transparent 28%), var(--background-color);
    overflow: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader::before {
    content: "";
    position: absolute;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(80, 197, 255, 0.16), transparent 70%);
    animation: preloader-pulse 1.8s ease-in-out infinite;
}

#preloader::after {
    content: "";
    position: relative;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 4px solid rgba(80, 197, 255, 0.16);
    border-top-color: var(--accent-color);
    border-right-color: var(--accent-color);
    animation: preloader-spin 0.9s linear infinite;
    box-shadow: 0 0 20px rgba(80, 197, 255, 0.12);
}

@keyframes preloader-spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes preloader-pulse {
    0%,
    100% {
        transform: scale(0.92);
        opacity: 0.55;
    }
    50% {
        transform: scale(1.08);
        opacity: 1;
    }
}


/*--------------------------------------------------------------
# Scroll Top
--------------------------------------------------------------*/

.scroll-top {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 99999;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transform: translateY(16px);
    background: var(--accent-color);
    color: var(--contrast-color);
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.18);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.scroll-top i {
    font-size: 22px;
    line-height: 0;
    color: var(--contrast-color);
}

.scroll-top:hover {
    background-color: var(--accent-hover);
    color: var(--contrast-color);
    transform: translateY(0) scale(1.05);
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.22);
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}


/*--------------------------------------------------------------
# AOS Mobile Fix
--------------------------------------------------------------*/

@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}


/*--------------------------------------------------------------
# Tablet
--------------------------------------------------------------*/

@media (max-width: 991.98px) {
    #preloader::before {
        width: 96px;
        height: 96px;
    }
    #preloader::after {
        width: 54px;
        height: 54px;
    }
}


/*--------------------------------------------------------------
# Mobile
--------------------------------------------------------------*/

@media (max-width: 767.98px) {
    #preloader::before {
        width: 86px;
        height: 86px;
    }
    #preloader::after {
        width: 48px;
        height: 48px;
        border-width: 3px;
    }
    .scroll-top {
        right: 14px;
        bottom: 14px;
        width: 42px;
        height: 42px;
    }
    .scroll-top i {
        font-size: 20px;
    }
}


/*--------------------------------------------------------------------------------------------------------------------------------------------------
# End Preloader
----------------------------------------------------------------------------------------------------------------------------------------------------*/


/*----------------------------------------------------------------------------------------------------------------------------------------------------
# Start Footer
------------------------------------------------------------------------------------------------------------------------------------------------------*/

.footer {
    position: relative;
    overflow: hidden;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.82);
    background: linear-gradient(90deg, #0c1630 0%, #0c1630 45%, #0c1630 100%);
    border-top: 1px solid rgba(80, 197, 255, 0.08);
}

.footer::before {
    content: "";
    position: absolute;
    top: -140px;
    right: -120px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(80, 197, 255, 0.12), transparent 72%);
    pointer-events: none;
}

.footer::after {
    content: "";
    position: absolute;
    bottom: -180px;
    left: -120px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(80, 197, 255, 0.08), transparent 72%);
    pointer-events: none;
}

.footer .footer-top {
    position: relative;
    z-index: 2;
    padding: 56px 0 24px;
}


/*--------------------------------------------------------------
# Footer Brand / About
--------------------------------------------------------------*/

.footer .footer-about .logo {
    line-height: 1;
    margin-bottom: 18px;
    text-decoration: none;
}

.footer .footer-about .logo img {
    max-height: 40px;
    margin-right: 8px;
}

.footer .footer-about .logo span,
.footer .footer-about .sitename {
    color: #ffffff;
    font-family: var(--heading-font);
    font-size: 25px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.footer .footer-desc {
    max-width: 390px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.82;
}


/*--------------------------------------------------------------
# Footer Contact
--------------------------------------------------------------*/

.footer .footer-contact {
    padding-top: 4px;
}

.footer .footer-about p,
.footer .footer-contact p {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.65;
}

.footer .footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.84);
}

.footer .footer-contact p i {
    width: 18px;
    min-width: 18px;
    margin-top: 2px;
    color: var(--accent-color);
    font-size: 15px;
    text-align: center;
}

.footer .footer-contact strong {
    color: #ffffff;
    font-weight: 600;
}

.footer .footer-contact a {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer .footer-contact a:hover {
    color: var(--accent-color);
}


/*--------------------------------------------------------------
# Footer Headings
--------------------------------------------------------------*/

.footer h4 {
    position: relative;
    margin-bottom: 16px;
    padding-bottom: 10px;
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
}

.footer h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 34px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
}


/*--------------------------------------------------------------
# Footer Links
--------------------------------------------------------------*/

.footer .footer-links {
    margin-bottom: 24px;
}

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

.footer .footer-links ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 0;
}

.footer .footer-links ul li:first-child {
    padding-top: 0;
}

.footer .footer-links ul i {
    font-size: 12px;
    line-height: 0;
    color: var(--accent-color);
    transition: transform 0.25s ease;
}

.footer .footer-links ul li:hover i {
    transform: translateX(3px);
}

.footer .footer-links ul a {
    position: relative;
    display: inline-block;
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    line-height: 1.45;
    transition: color 0.25s ease;
}

.footer .footer-links ul a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: var(--accent-color);
    transition: width 0.25s ease;
}

.footer .footer-links ul a:hover {
    color: #ffffff;
}

.footer .footer-links ul a:hover::after {
    width: 100%;
}


/*--------------------------------------------------------------
# Social Links
--------------------------------------------------------------*/

.footer .social-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.footer .social-links a {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    color: var(--accent-color);
    border: 1px solid rgba(80, 197, 255, 0.28);
    text-decoration: none;
    transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.footer .social-links a:hover {
    transform: translateY(-3px);
    background: var(--accent-color);
    color: var(--contrast-color);
    border-color: var(--accent-color);
}


/*--------------------------------------------------------------
# Subscribe Block
--------------------------------------------------------------*/

.footer .subscribe-note {
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.72;
}

.footer form {
    margin-top: 8px;
}

.footer .form-label {
    display: block;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 600;
}


/*--------------------------------------------------------------
# Subscription Methods
--------------------------------------------------------------*/

.footer .subscribe-methods {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.footer .subscribe-methods .form-check {
    margin: 0;
    padding: 0;
}

.footer .subscribe-methods label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.92);
    font-size: 13px;
    font-weight: 500;
}

.footer .subscribe-methods .form-check-input {
    margin: 0;
    cursor: pointer;
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.7);
    box-shadow: none;
}

.footer .subscribe-methods .form-check-input:checked {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.footer .subscribe-methods .form-check-input:focus {
    box-shadow: 0 0 0 0.15rem rgba(80, 197, 255, 0.16);
}

.footer .subscribe-methods i {
    color: var(--accent-color);
    font-size: 14px;
}

.footer .subscribe-methods span {
    color: rgba(255, 255, 255, 0.92);
    font-size: 13px;
}


/*--------------------------------------------------------------
# Subscribe Inputs
--------------------------------------------------------------*/

.footer .subscribe-input {
    border-color: color-mix(in srgb, var(--default-color), transparent 80%);
    border-radius: 50px;
    padding: 10px 16px;
    min-height: 46px;
    background: rgba(255, 255, 255, 0.96);
    color: #0f172a;
    box-shadow: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.footer .subscribe-input::placeholder {
    color: #94a3b8;
}

.footer .subscribe-input:focus {
    border-color: rgba(80, 197, 255, 0.55);
    box-shadow: 0 0 0 0.18rem rgba(80, 197, 255, 0.16);
    background: #ffffff;
}

.footer .subscribe-btn {
    width: 100%;
    border: 0;
    padding: 10px 16px;
    min-height: 46px;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 0.01em;
    box-shadow: 0 14px 26px rgba(80, 197, 255, 0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.footer .subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(80, 197, 255, 0.22);
}

.footer .form-text-error {
    display: block;
    margin-top: 6px;
    color: #ff8f8f;
    font-size: 0.84rem;
    line-height: 1.45;
}


/*--------------------------------------------------------------
# Copyright
--------------------------------------------------------------*/

.footer .copyright {
    position: relative;
    z-index: 2;
    padding: 22px 0 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(2, 10, 28, 0.74);
}

.footer .copyright p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.6;
}

.footer .copyright .sitename {
    color: #ffffff;
}

.footer .credits {
    margin-top: 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.68);
}

.footer .credits a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.25s ease;
}

.footer .credits a:hover {
    text-decoration: none;
    text-shadow: 0 0 8px rgba(80, 197, 255, 0.6);
}


/*--------------------------------------------------------------
# Tablet
--------------------------------------------------------------*/

@media (max-width: 991.98px) {
    .footer .footer-top {
        padding: 48px 0 20px;
    }
    .footer .footer-about .logo span,
    .footer .footer-about .sitename {
        font-size: 23px;
    }
    .footer .footer-desc {
        max-width: 100%;
    }
    .footer .subscribe-methods {
        gap: 0.9rem;
    }
}


/*--------------------------------------------------------------
# Mobile
--------------------------------------------------------------*/

@media (max-width: 767.98px) {
    .footer {
        font-size: 13.5px;
    }
    .footer .footer-top {
        padding: 42px 0 14px;
    }
    .footer .footer-about .logo {
        margin-bottom: 14px;
    }
    .footer .footer-about .logo span,
    .footer .footer-about .sitename {
        font-size: 21px;
    }
    .footer .footer-desc,
    .footer .subscribe-note {
        font-size: 13.5px;
    }
    .footer h4 {
        margin-bottom: 14px;
        font-size: 15px;
    }
    .footer .footer-links {
        margin-bottom: 20px;
    }
    .footer .footer-links ul li {
        padding: 8px 0;
    }
    .footer .social-links a {
        width: 39px;
        height: 39px;
    }
    .footer .subscribe-methods {
        gap: 0.8rem;
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
    }
    .footer .subscribe-input,
    .footer .subscribe-btn {
        min-height: 44px;
    }
    .footer .copyright {
        padding: 18px 0 16px;
    }
    .footer .credits {
        font-size: 12px;
    }
}


/*--------------------------------------------------------------
# Small Mobile
--------------------------------------------------------------*/

@media (max-width: 575.98px) {
    .footer .footer-top {
        padding: 38px 0 10px;
    }
    .footer .footer-about .logo span,
    .footer .footer-about .sitename {
        font-size: 20px;
    }
    .footer .footer-about p,
    .footer .footer-contact p,
    .footer .footer-links ul a,
    .footer .subscribe-note,
    .footer .credits {
        font-size: 13px;
    }
    .footer h4 {
        font-size: 14px;
    }
    .footer .social-links {
        gap: 8px;
    }
    .footer .social-links a {
        width: 36px;
        height: 36px;
    }
    .footer .subscribe-methods {
        gap: 0.7rem;
    }
    .footer .subscribe-input,
    .footer .subscribe-btn {
        min-height: 42px;
    }
    .footer .copyright {
        padding: 16px 0 14px;
    }
}


/*----------------------------------------------------------------------------------------------------------------------------------------------------
# End Footer
------------------------------------------------------------------------------------------------------------------------------------------------------*/


/*----------------------------------------------------------------------------------------------------------------------------------------------------
# Start Nav Menu
------------------------------------------------------------------------------------------------------------------------------------------------------*/

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 16px 0;
    transition: all 0.35s ease;
}

.site-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 27, 48, 0.58), rgba(15, 27, 48, 0.46));
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    z-index: -1;
}

.site-header.scrolled {
    padding: 10px 0;
}

.site-header.scrolled::before {
    background: rgba(15, 27, 48, 0.74);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.16);
}

.site-header .container {
    position: relative;
}

.navbar-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 72px;
}


/*--------------------------------------------------------------
# Logo
--------------------------------------------------------------*/

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    text-decoration: none;
    flex-shrink: 0;
    min-width: 0;
}

.site-logo img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.14);
    padding: 4px;
    box-shadow: 0 10px 24px rgba(80, 197, 255, 0.12);
}

.site-name {
    color: #ffffff;
    font-size: 1.72rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
    font-family: var(--heading-font);
    white-space: nowrap;
}


/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/

.site-nav {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-list>li {
    display: flex;
    align-items: center;
}

.nav-list>li>a:not(.btn-1):not(.btn-2):not(.btn-3) {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.97rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s ease;
}

.nav-list>li>a:not(.btn-1):not(.btn-2):not(.btn-3)::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 8px;
    height: 2px;
    border-radius: 999px;
    background: var(--accent-color, #50c5ff);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.nav-list>li>a:not(.btn-1):not(.btn-2):not(.btn-3):hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.nav-list>li>a:not(.btn-1):not(.btn-2):not(.btn-3):hover::after,
.nav-list>li>a.active:not(.btn-1):not(.btn-2):not(.btn-3)::after {
    transform: scaleX(1);
}

.nav-list>li>a.active:not(.btn-1):not(.btn-2):not(.btn-3) {
    color: #ffffff;
    background: rgba(80, 197, 255, 0.11);
    box-shadow: inset 0 0 0 1px rgba(80, 197, 255, 0.16);
}


/*--------------------------------------------------------------
# User Chip
--------------------------------------------------------------*/

.nav-user-chip .chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    max-width: 210px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: rgba(255, 255, 255, 0.94);
    font-size: 0.92rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-user-chip .chip i {
    color: var(--accent-color, #50c5ff);
    font-size: 1rem;
    flex-shrink: 0;
}


/*--------------------------------------------------------------
# Nav Buttons
--------------------------------------------------------------*/

.nav-btn-item {
    display: flex;
    align-items: center;
}

.nav-inline-form {
    margin: 0;
    display: flex;
    align-items: center;
}

.nav-btn-item .btn-1,
.nav-btn-item .btn-2,
.nav-btn-item .btn-3 {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    padding: 0 18px;
    white-space: nowrap;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.25s ease;
    border: none;
}

.nav-btn-item .btn-1 {
    background: linear-gradient(135deg, #6ad2ff, #50c5ff);
    color: #052033;
    box-shadow: 0 14px 28px rgba(80, 197, 255, 0.18);
}

.nav-btn-item .btn-1:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 30px rgba(80, 197, 255, 0.24);
}

.nav-btn-item .btn-2,
.nav-btn-item .btn-3 {
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.07);
    color: #ffffff;
}

.nav-btn-item .btn-2:hover,
.nav-btn-item .btn-3:hover {
    background: rgba(255, 255, 255, 0.11);
    border-color: rgba(255, 255, 255, 0.22);
    transform: translateY(-1px);
}


/*--------------------------------------------------------------
# Mobile Toggle
--------------------------------------------------------------*/

.mobile-nav-toggle {
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.10);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.10);
    transition: all 0.25s ease;
    padding: 0;
}

.mobile-nav-toggle:hover {
    background: rgba(255, 255, 255, 0.16);
    transform: translateY(-1px);
}

.mobile-nav-toggle:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(80, 197, 255, 0.18);
}

.mobile-nav-toggle-icon {
    width: 20px;
    height: 14px;
    display: inline-flex;
    flex-direction: column;
    justify-content: space-between;
    pointer-events: none;
}

.mobile-nav-toggle-icon span {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: #ffffff;
}


/*--------------------------------------------------------------
# Menu Overlay
--------------------------------------------------------------*/

.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(8, 15, 30, 0.30);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.28s ease;
    z-index: 997;
}

body.mobile-nav-active .mobile-nav-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


/*--------------------------------------------------------------
# Mobile Menu Header / Image Area
--------------------------------------------------------------*/

.mobile-nav-header {
    display: none;
}

.mobile-nav-visual {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    padding: 18px;
    min-height: 118px;
    background: linear-gradient(135deg, rgba(80, 197, 255, 0.16), rgba(80, 197, 255, 0.05)), linear-gradient(160deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.mobile-nav-visual::before {
    content: "";
    position: absolute;
    right: -30px;
    top: -30px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(80, 197, 255, 0.22), transparent 70%);
}

.mobile-nav-brand {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 14px;
}

.mobile-nav-brand img {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.14);
    padding: 5px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.mobile-nav-brand-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav-brand-text .brand-title {
    color: #ffffff;
    font-size: 1.18rem;
    font-weight: 700;
    font-family: var(--heading-font);
    line-height: 1.1;
}

.mobile-nav-brand-text .brand-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.88rem;
    line-height: 1.4;
}


/*--------------------------------------------------------------
# Mobile Close Button
--------------------------------------------------------------*/

.mobile-close-item {
    display: none;
}

.mobile-close-btn {
    width: 100%;
    min-height: 46px;
    border: 0;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.09);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: all 0.25s ease;
}

.mobile-close-btn:hover {
    background: rgba(255, 255, 255, 0.13);
    transform: translateY(-1px);
}


/*--------------------------------------------------------------
# Large Desktop
--------------------------------------------------------------*/

@media (min-width: 1200px) {
    .site-header {
        padding: 18px 0;
    }
    .site-name {
        font-size: 1.78rem;
    }
    .nav-list {
        gap: 10px;
    }
}


/*--------------------------------------------------------------
# Tablet and Below
--------------------------------------------------------------*/

@media (max-width: 1199.98px) {
    .site-header {
        padding: 14px 0;
    }
    .site-header::before {
        background: rgba(15, 27, 48, 0.72);
    }
    .site-name {
        font-size: 1.8rem;
    }
    .site-logo img {
        width: 44px;
        height: 44px;
    }
    .site-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(390px, 100%);
        margin-left: 0;
        z-index: 998;
        opacity: 0;
        visibility: hidden;
        transform: translateX(100%);
        transition: all 0.3s ease;
        display: block;
    }
    body.mobile-nav-active .site-nav {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }
    .site-nav::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(20, 34, 58, 0.95) 0%, rgba(25, 42, 70, 0.93) 100%);
        border-left: 1px solid rgba(255, 255, 255, 0.10);
        box-shadow: -20px 0 40px rgba(15, 23, 42, 0.16);
        z-index: 0;
    }
    .nav-list {
        position: relative;
        z-index: 2;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        height: 100%;
        padding: 20px;
        overflow-y: auto;
    }
    .mobile-nav-header {
        display: block;
        margin-bottom: 6px;
    }
    .nav-list>li {
        width: 100%;
    }
    .nav-list>li>a:not(.btn-1):not(.btn-2):not(.btn-3) {
        justify-content: flex-start;
        width: 100%;
        min-height: 48px;
        padding: 0 16px;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.04);
        color: rgba(255, 255, 255, 0.92);
    }
    .nav-list>li>a:not(.btn-1):not(.btn-2):not(.btn-3)::after {
        display: none;
    }
    .nav-list>li>a:not(.btn-1):not(.btn-2):not(.btn-3):hover {
        background: rgba(255, 255, 255, 0.08);
        transform: none;
    }
    .nav-list>li>a.active:not(.btn-1):not(.btn-2):not(.btn-3) {
        background: rgba(80, 197, 255, 0.12);
        box-shadow: inset 0 0 0 1px rgba(80, 197, 255, 0.18);
        color: #ffffff;
    }
    .nav-user-chip .chip {
        width: 100%;
        max-width: 100%;
        min-height: 48px;
        justify-content: flex-start;
        border-radius: 14px;
        padding: 0 16px;
        background: rgba(255, 255, 255, 0.06);
    }
    .nav-btn-item .btn-1,
    .nav-btn-item .btn-2,
    .nav-btn-item .btn-3,
    .nav-inline-form,
    .nav-inline-form button {
        width: 100%;
    }
    .nav-btn-item .btn-1,
    .nav-btn-item .btn-2,
    .nav-btn-item .btn-3 {
        min-height: 48px;
        justify-content: center;
        border-radius: 14px;
    }
    .mobile-close-item {
        display: block;
        margin-top: 6px;
    }
}


/*--------------------------------------------------------------
# Tablet Fine Tuning
--------------------------------------------------------------*/

@media (max-width: 991.98px) {
    .navbar-wrap {
        min-height: 64px;
    }
    .site-name {
        font-size: 1.48rem;
    }
}


/*--------------------------------------------------------------
# Mobile
--------------------------------------------------------------*/

@media (max-width: 767.98px) {
    .site-header {
        padding: 12px 0;
    }
    .navbar-wrap {
        min-height: 58px;
        gap: 12px;
    }
    .site-logo {
        gap: 10px;
    }
    .site-logo img {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }
    .site-name {
        font-size: 1.54rem;
    }
    .mobile-nav-toggle {
        width: 42px;
        height: 42px;
        border-radius: 12px;
    }
    .site-nav {
        width: 100%;
    }
    .nav-list {
        padding: 16px;
        gap: 9px;
    }
    .mobile-nav-visual {
        min-height: 108px;
        padding: 16px;
        border-radius: 18px;
    }
    .mobile-nav-brand img {
        width: 50px;
        height: 50px;
        border-radius: 14px;
    }
    .mobile-nav-brand-text .brand-title {
        font-size: 1.08rem;
    }
    .mobile-nav-brand-text .brand-subtitle {
        font-size: 0.83rem;
    }
    .nav-list>li>a:not(.btn-1):not(.btn-2):not(.btn-3),
    .nav-user-chip .chip,
    .nav-btn-item .btn-1,
    .nav-btn-item .btn-2,
    .nav-btn-item .btn-3 {
        min-height: 46px;
        font-size: 0.94rem;
    }
}


/*--------------------------------------------------------------
# Small Mobile
--------------------------------------------------------------*/

@media (max-width: 575.98px) {
    .site-name {
        font-size: 1.42rem;
    }
    .site-logo img {
        width: 38px;
        height: 38px;
    }
    .mobile-nav-brand-text .brand-title {
        font-size: 1rem;
    }
    .nav-list>li>a:not(.btn-1):not(.btn-2):not(.btn-3),
    .nav-user-chip .chip,
    .nav-btn-item .btn-1,
    .nav-btn-item .btn-2,
    .nav-btn-item .btn-3,
    .mobile-close-btn {
        font-size: 0.9rem;
    }
}


/*----------------------------------------------------------------------------------------------------------------------------------------------------
# End Nav Menu
------------------------------------------------------------------------------------------------------------------------------------------------------*/


/*-----------------------------------------------------------------------------------------------------------------------------------------------------
# Start Starter Page Content Card
-------------------------------------------------------------------------------------------------------------------------------------------------------*/

.starter-page .contact-extra-card {
    position: relative;
    border-radius: 28px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbfe 100%);
    border: 1px solid rgba(80, 197, 255, 0.12);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06);
    transition: all 0.3s ease;
    overflow: hidden;
}

.starter-page .contact-extra-card::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(80, 197, 255, 0.18), transparent 70%);
    opacity: 0.8;
}

.starter-page .contact-extra-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 65px rgba(15, 23, 42, 0.1);
    border-color: rgba(80, 197, 255, 0.22);
}


/*--------------------------------------------------------------
# Icon Styling
--------------------------------------------------------------*/

.starter-page .contact-extra-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(80, 197, 255, 0.2), rgba(80, 197, 255, 0.08));
    color: #1593cd;
    font-size: 1.5rem;
    box-shadow: inset 0 0 0 1px rgba(80, 197, 255, 0.14);
    transition: all 0.3s ease;
}

.starter-page .contact-extra-card:hover .contact-extra-icon {
    transform: scale(1.08) rotate(3deg);
    box-shadow: 0 12px 28px rgba(80, 197, 255, 0.25);
}


/*--------------------------------------------------------------
# Title
--------------------------------------------------------------*/

.starter-page .contact-extra-card h4 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
    font-family: var(--heading-font);
}


/*--------------------------------------------------------------
# Text
--------------------------------------------------------------*/

.starter-page .contact-extra-card p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}


/*--------------------------------------------------------------
# Optional Divider Line
--------------------------------------------------------------*/

.starter-page .contact-extra-card::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    border-radius: 10px;
    background: linear-gradient(90deg, #50c5ff, #9be3ff);
    margin: 20px auto 0;
    opacity: 0.7;
}


/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/

@media (max-width: 991.98px) {
    .starter-page .contact-extra-card {
        border-radius: 24px;
    }
    .starter-page .contact-extra-card h4 {
        font-size: 1.35rem;
    }
}

@media (max-width: 767.98px) {
    .starter-page .contact-extra-card {
        padding: 22px !important;
        border-radius: 22px;
    }
    .starter-page .contact-extra-icon {
        width: 56px;
        height: 56px;
        font-size: 1.3rem;
    }
    .starter-page .contact-extra-card h4 {
        font-size: 1.2rem;
    }
    .starter-page .contact-extra-card p {
        font-size: 0.95rem;
    }
}

@media (max-width: 575.98px) {
    .starter-page .contact-extra-card {
        padding: 18px !important;
        border-radius: 20px;
    }
    .starter-page .contact-extra-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    .starter-page .contact-extra-card h4 {
        font-size: 1.1rem;
    }
    .starter-page .contact-extra-card p {
        font-size: 0.92rem;
    }
}


/*-----------------------------------------------------------------------------------------------------------------------------------------------------
# End Starter Page Content Card
-------------------------------------------------------------------------------------------------------------------------------------------------------*/


/*--------------------------------------------------------------
# Root Variables
--------------------------------------------------------------*/

:root {
    /* Fonts */
    --default-font: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --heading-font: "Poppins", sans-serif;
    --nav-font: "Poppins", sans-serif;
    /* Global Colors */
    --background-color: #f8fbfd;
    --surface-color: #ffffff;
    --default-color: #1f2937;
    --heading-color: #0f172a;
    --minor-color: #475569;
    --accent-color: #50c5ff;
    --accent-hover: #27b4f5;
    --accent-strong: #1193d9;
    --accent-soft: #edf9ff;
    --accent-border: #cdeefe;
    --accent-lightest: #f6fcff;
    --contrast-color: #ffffff;
    /* Navigation Colors */
    --nav-color: rgba(255, 255, 255, 0.95);
    --nav-hover-color: #50c5ff;
    --nav-mobile-background-color: #ffffff;
    --nav-dropdown-background-color: #ffffff;
    --nav-dropdown-color: #1f2937;
    --nav-dropdown-hover-color: #50c5ff;
    scroll-behavior: smooth;
}


/*--------------------------------------------------------------
# Background Helpers
--------------------------------------------------------------*/

.light-background {
    --background-color: #f3fbff;
    --surface-color: #ffffff;
}

.dark-background {
    --background-color: #0f172a;
    --default-color: #f8fafc;
    --heading-color: #ffffff;
    --surface-color: #1e293b;
    --contrast-color: #ffffff;
}


/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/

body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
    font-size: 15.5px;
    line-height: 1.65;
    font-weight: 400;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s ease;
}

a:hover {
    color: var(--accent-hover);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

img {
    max-width: 100%;
    height: auto;
}

section,
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 60px 0;
    scroll-margin-top: 90px;
    overflow: clip;
}

@media (max-width: 1199px) {
    section,
    .section {
        scroll-margin-top: 70px;
    }
}


/*--------------------------------------------------------------
# Section Title
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Web Top Cards - Compact Clean Style
--------------------------------------------------------------*/

.web-top-cards {
    margin-top: 28px;
}

.web-top-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px 24px;
    height: 100%;
    border-radius: 22px;
    background: #f8fbff;
    border: 1px solid rgba(80, 197, 255, 0.10);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    transition: all 0.25s ease;
}

.web-top-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
    border-color: rgba(80, 197, 255, 0.22);
}

.web-top-card-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(80, 197, 255, 0.14);
    color: var(--accent-color);
}

.web-top-card-icon i {
    font-size: 24px;
}

.web-top-card-content h4 {
    margin: 0 0 6px;
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
}

.web-top-card-value {
    margin: 0 0 6px;
    font-size: 2.3rem;
    font-weight: 800;
    line-height: 1;
    color: #0f172a;
    font-family: var(--heading-font);
}

.web-top-card-content p {
    margin: 0;
    font-size: 14.5px;
    line-height: 1.6;
    color: #64748b;
}


/*--------------------------------------------------------------
# Tablet
--------------------------------------------------------------*/

@media (max-width: 991px) {
    .web-top-card {
        padding: 21px;
    }
    .web-top-card-icon {
        width: 56px;
        height: 56px;
    }
    .web-top-card-icon i {
        font-size: 23px;
    }
    .web-top-card-content h4 {
        font-size: 16px;
    }
    .web-top-card-value {
        font-size: 2.15rem;
    }
    .web-top-card-content p {
        font-size: 14.5px;
    }
}


/*--------------------------------------------------------------
# Mobile
--------------------------------------------------------------*/

@media (max-width: 768px) {
    .web-top-card {
        gap: 16px;
        padding: 20px;
        border-radius: 18px;
    }
    .web-top-card-icon {
        width: 50px;
        height: 50px;
    }
    .web-top-card-icon i {
        font-size: 21px;
    }
    .web-top-card-content h4 {
        font-size: 16px;
    }
    .web-top-card-value {
        font-size: 1.9rem;
    }
    .web-top-card-content p {
        font-size: 17px;
    }
}


/*--------------------------------------------------------------
# Web Top Cards - Compact Clean Style
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Web Headers
--------------------------------------------------------------*/

.contact-socials {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.contact-socials a {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: color-mix(in srgb, var(--default-color), transparent 92%);
    color: var(--accent-color);
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-socials a:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
}


/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/

.btn-1,
.btn-2,
.btn-3,
.action-btn,
.admin-soft-danger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 999px;
    font-family: var(--nav-font);
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid transparent;
    transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
    white-space: nowrap;
}

.btn-1 i,
.btn-2 i,
.btn-3 i,
.action-btn i,
.admin-soft-danger i {
    font-size: 0.95em;
    line-height: 1;
}


/* Main button sizes */

.btn-1,
.btn-2,
.btn-3,
.admin-soft-danger {
    padding: 12px 22px;
    font-size: 15px;
    min-height: 46px;
}


/* Primary */

.btn-1 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #ffffff;
}

.btn-1:hover,
.btn-1:focus-visible {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(80, 197, 255, 0.22);
}


/* Dark secondary */

.btn-2 {
    background: #0f172a;
    border-color: #0f172a;
    color: #ffffff;
}

.btn-2:hover,
.btn-2:focus-visible {
    background: #1e293b;
    border-color: #1e293b;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.22);
}


/* Soft accent */

.btn-3 {
    background: var(--accent-soft);
    border-color: var(--accent-border);
    color: var(--heading-color);
}

.btn-3:hover,
.btn-3:focus-visible {
    background: #dcf5ff;
    border-color: var(--accent-color);
    color: var(--heading-color);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(80, 197, 255, 0.14);
}


/* Table / inline action */

.action-btn {
    padding: 9px 14px;
    min-height: 38px;
    font-size: 13px;
    background: var(--accent-soft);
    border-color: var(--accent-border);
    color: var(--heading-color);
    box-shadow: none;
}

.action-btn:hover,
.action-btn:focus-visible {
    background: #dcf5ff;
    border-color: var(--accent-color);
    color: var(--heading-color);
    transform: translateY(-1px);
    box-shadow: 0 10px 18px rgba(80, 197, 255, 0.12);
}


/* Soft danger */

.admin-soft-danger {
    background: rgba(220, 53, 69, 0.08);
    border-color: rgba(220, 53, 69, 0.16);
    color: #b02a37;
}

.admin-soft-danger:hover,
.admin-soft-danger:focus-visible {
    background: rgba(220, 53, 69, 0.14);
    border-color: rgba(220, 53, 69, 0.24);
    color: #b02a37;
    transform: translateY(-2px);
    box-shadow: 0 12px 22px rgba(220, 53, 69, 0.12);
}


/* Active press */

.btn-1:active,
.btn-2:active,
.btn-3:active,
.action-btn:active,
.admin-soft-danger:active {
    transform: translateY(0);
    box-shadow: none;
}


/* Focus visibility */

.btn-1:focus-visible,
.btn-2:focus-visible,
.btn-3:focus-visible,
.action-btn:focus-visible,
.admin-soft-danger:focus-visible {
    outline: none;
}


/* Disabled */

.btn-1:disabled,
.btn-2:disabled,
.btn-3:disabled,
.action-btn:disabled,
.admin-soft-danger:disabled,
.btn-1.disabled,
.btn-2.disabled,
.btn-3.disabled,
.action-btn.disabled,
.admin-soft-danger.disabled {
    opacity: 0.65;
    cursor: not-allowed;
    pointer-events: none;
    transform: none;
    box-shadow: none;
}


/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/

@media (max-width: 991.98px) {
    .btn-1,
    .btn-2,
    .btn-3,
    .admin-soft-danger {
        padding: 11px 20px;
        font-size: 14px;
        min-height: 44px;
    }
    .action-btn {
        padding: 8px 13px;
        font-size: 13px;
        min-height: 36px;
    }
}

@media (max-width: 767.98px) {
    .btn-1,
    .btn-2,
    .btn-3,
    .admin-soft-danger {
        padding: 10px 18px;
        font-size: 13.5px;
        min-height: 42px;
    }
    .action-btn {
        padding: 8px 12px;
        font-size: 12.5px;
        min-height: 34px;
    }
}


/*--------------------------------------------------------------
# Admin Access CSS
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Admin Panel Main Card
--------------------------------------------------------------*/

.admin-panel-card {
    position: relative;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 252, 255, 0.98) 100%);
    border: 1px solid rgba(80, 197, 255, 0.16);
    border-radius: 32px;
    padding: 34px;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08), 0 8px 24px rgba(80, 197, 255, 0.06);
    overflow: hidden;
    isolation: isolate;
}

.admin-panel-card::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -90px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(80, 197, 255, 0.18), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.admin-panel-card::after {
    content: "";
    position: absolute;
    bottom: -140px;
    left: -100px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.08), transparent 74%);
    pointer-events: none;
    z-index: 0;
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

.management-header {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
    padding: 22px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(80, 197, 255, 0.08), rgba(255, 255, 255, 0.78));
    border: 1px solid rgba(80, 197, 255, 0.14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.management-header-left {
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: 0;
}

.management-title-icon {
    width: 68px;
    height: 68px;
    border-radius: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #50c5ff 0%, #1eb4f3 100%);
    color: #ffffff;
    font-size: 1.5rem;
    box-shadow: 0 16px 34px rgba(80, 197, 255, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.28);
    flex-shrink: 0;
}

.management-title {
    margin: 0;
    font-size: 1.85rem;
    line-height: 1.15;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.03em;
}

.soft-muted {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.7;
    max-width: 620px;
}


/*--------------------------------------------------------------
# Header Actions
--------------------------------------------------------------*/

.top-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 12px;
}

.chip-stat {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(80, 197, 255, 0.18);
    color: #0f172a;
    font-weight: 700;
    font-size: 0.94rem;
    white-space: nowrap;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

.chip-stat i {
    color: #149ddd;
    font-size: 1rem;
}


/*--------------------------------------------------------------
# Secondary / Danger Buttons
--------------------------------------------------------------*/

.btn-2,
.admin-soft-danger {
    min-height: 48px;
    padding: 0 18px;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.28s ease;
}

.btn-2 {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(15, 23, 42, 0.08);
    color: #0f172a;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.04);
}

.btn-2:hover {
    background: #ffffff;
    border-color: rgba(80, 197, 255, 0.26);
    color: #149ddd;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(80, 197, 255, 0.1);
}

.admin-soft-danger {
    border: 1px solid rgba(239, 68, 68, 0.16);
    background: linear-gradient(180deg, #fff6f6 0%, #fff1f1 100%);
    color: #dc2626;
    box-shadow: 0 10px 22px rgba(239, 68, 68, 0.05);
}

.admin-soft-danger:hover {
    background: #ffeaea;
    border-color: rgba(239, 68, 68, 0.24);
    color: #b91c1c;
    transform: translateY(-2px);
}


/*--------------------------------------------------------------
# Note
--------------------------------------------------------------*/

.admin-panel-note {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    margin-bottom: 4px;
    border-radius: 18px;
    background: linear-gradient(135deg, #eefaff 0%, #f8fcff 100%);
    border: 1px solid rgba(80, 197, 255, 0.18);
    color: #334155;
    font-size: 0.96rem;
    line-height: 1.65;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 10px 24px rgba(80, 197, 255, 0.05);
}

.admin-panel-note i {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(80, 197, 255, 0.12);
    color: #149ddd;
    font-size: 1rem;
    flex-shrink: 0;
}


/*--------------------------------------------------------------
# Feature Cards
--------------------------------------------------------------*/

.admin-feature-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 24px;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(243, 249, 253, 0.96) 100%);
    border: 1px solid rgba(148, 163, 184, 0.18);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.75);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    overflow: hidden;
    isolation: isolate;
}

.admin-feature-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #50c5ff 0%, #1eb4f3 60%, rgba(80, 197, 255, 0.2) 100%);
}

.admin-feature-card::after {
    content: "";
    position: absolute;
    top: -72px;
    right: -56px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(80, 197, 255, 0.1), transparent 72%);
    pointer-events: none;
    z-index: 0;
}

.admin-feature-card:hover {
    transform: translateY(-7px);
    border-color: rgba(80, 197, 255, 0.28);
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.09), 0 10px 30px rgba(80, 197, 255, 0.08);
}

.admin-feature-primary {
    background: linear-gradient(180deg, rgba(237, 249, 255, 0.98) 0%, rgba(247, 252, 255, 0.98) 100%);
    border-color: rgba(80, 197, 255, 0.26);
}


/*--------------------------------------------------------------
# Feature Top
--------------------------------------------------------------*/

.admin-feature-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.admin-feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #50c5ff 0%, #27b1f2 100%);
    color: #ffffff;
    font-size: 1.3rem;
    box-shadow: 0 14px 28px rgba(80, 197, 255, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.28);
    flex-shrink: 0;
}

.admin-feature-chip {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(15, 23, 42, 0.08);
    color: #475569;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
}

.admin-feature-card h4 {
    margin: 0 0 10px;
    font-size: 1.28rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 2;
}

.admin-feature-card p {
    margin: 0 0 18px;
    color: #64748b;
    font-size: 0.96rem;
    line-height: 1.72;
    position: relative;
    z-index: 2;
}


/*--------------------------------------------------------------
# Feature Stats
--------------------------------------------------------------*/

.admin-feature-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
}

.admin-feature-stat {
    padding: 14px 14px 12px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(15, 23, 42, 0.07);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.035);
}

.admin-feature-stat span {
    display: block;
    margin-bottom: 6px;
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #64748b;
}

.admin-feature-stat strong {
    display: block;
    font-size: 1.14rem;
    font-weight: 800;
    color: #0f172a;
}


/*--------------------------------------------------------------
# Feature List
--------------------------------------------------------------*/

.admin-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
    display: grid;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.admin-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    color: #334155;
    font-size: 0.94rem;
    line-height: 1.65;
}

.admin-feature-list li i {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(80, 197, 255, 0.1);
    color: #149ddd;
    font-size: 0.9rem;
    margin-top: 1px;
    flex-shrink: 0;
}

.admin-feature-actions {
    margin-top: auto;
    position: relative;
    z-index: 2;
}


/*--------------------------------------------------------------
# Shortcuts
--------------------------------------------------------------*/

.admin-shortcuts {
    margin-top: 30px;
    padding: 24px;
    border-radius: 24px;
    background: linear-gradient(180deg, #f3f8fc 0%, #edf4f8 100%);
    border: 1px solid rgba(148, 163, 184, 0.18);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.admin-shortcuts-title {
    margin-bottom: 16px;
    font-size: 1.02rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.01em;
}

.admin-shortcuts-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.admin-shortcut-item {
    min-height: 112px;
    border-radius: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
    border: 1px solid rgba(15, 23, 42, 0.07);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    color: #334155;
    text-align: center;
    padding: 18px 12px;
    transition: all 0.28s ease;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.admin-shortcut-item i {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(80, 197, 255, 0.12);
    color: #149ddd;
    font-size: 1.2rem;
    transition: all 0.28s ease;
}

.admin-shortcut-item span {
    font-size: 0.93rem;
    font-weight: 700;
    line-height: 1.4;
}

.admin-shortcut-item:hover {
    transform: translateY(-5px);
    border-color: rgba(80, 197, 255, 0.24);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08), 0 10px 24px rgba(80, 197, 255, 0.06);
    color: #0f172a;
    background: #ffffff;
}

.admin-shortcut-item:hover i {
    transform: scale(1.06);
    background: linear-gradient(135deg, #50c5ff 0%, #27b1f2 100%);
    color: #ffffff;
}


/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/

@media (max-width: 1199.98px) {
    .admin-shortcuts-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .admin-panel-card {
        padding: 28px;
    }
    .management-header {
        flex-direction: column;
        align-items: stretch;
    }
    .top-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 767.98px) {
    .admin-panel-card {
        border-radius: 24px;
        padding: 20px;
    }
    .management-header {
        padding: 18px;
        border-radius: 20px;
        gap: 18px;
    }
    .management-header-left {
        align-items: flex-start;
        gap: 14px;
    }
    .management-title-icon {
        width: 56px;
        height: 56px;
        border-radius: 18px;
        font-size: 1.2rem;
    }
    .management-title {
        font-size: 1.42rem;
    }
    .soft-muted {
        font-size: 0.94rem;
    }
    .admin-panel-note {
        align-items: flex-start;
        padding: 14px 16px;
        border-radius: 16px;
    }
    .admin-feature-card {
        padding: 20px;
        border-radius: 22px;
    }
    .admin-feature-icon {
        width: 54px;
        height: 54px;
        border-radius: 18px;
        font-size: 1.15rem;
    }
    .admin-feature-stats {
        grid-template-columns: 1fr;
    }
    .admin-shortcuts {
        padding: 18px;
        border-radius: 20px;
    }
    .admin-shortcuts-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
    .admin-shortcut-item {
        min-height: 96px;
        border-radius: 16px;
    }
    .admin-shortcut-item i {
        width: 42px;
        height: 42px;
        border-radius: 14px;
        font-size: 1.05rem;
    }
}

@media (max-width: 575.98px) {
    .top-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .chip-stat,
    .btn-2,
    .admin-soft-danger {
        width: 100%;
        justify-content: center;
    }
    .admin-shortcuts-grid {
        grid-template-columns: 1fr;
    }
    .admin-feature-card h4 {
        font-size: 1.16rem;
    }
    .admin-feature-card p,
    .admin-feature-list li,
    .admin-panel-note,
    .soft-muted {
        font-size: 0.92rem;
    }
}