@charset "UTF-8";

:root {
    --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
    --heading-font: "Poppins", system-ui, sans-serif;

    --background-color: #f4f7fb;
    --surface-color: #ffffff;
    --default-color: #475467;
    --heading-color: #101828;

    --accent-color: #50c5ff;
    --accent-hover: #16a6e6;
    --accent-soft: rgba(80, 197, 255, 0.12);

    --border-color: #e4e7ec;
    --shadow-md: 0 14px 35px rgba(15, 23, 42, 0.08);
    --contrast-color: #ffffff;

    scroll-behavior: smooth;
}

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

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

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

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

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

section,
.section {
    padding: 54px 0;
    background: var(--background-color);
    overflow: clip;
}

/* Hero */

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

.web-panel-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(circle at top right, rgba(80, 197, 255, 0.28), transparent 32%),
        linear-gradient(135deg, rgba(12, 22, 48, 0.92), rgba(17, 24, 39, 0.78));
}

.web-panel-hero::after {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(80, 197, 255, 0.18);
    z-index: 1;
}

.web-panel-hero .container {
    position: relative;
    z-index: 2;
    max-width: 880px;
}

.web-hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 40px;
    padding: 7px 15px;
    margin-bottom: 16px;
    border-radius: 999px;
    background: rgba(80, 197, 255, 0.14);
    border: 1px solid rgba(80, 197, 255, 0.32);
    color: #e8faff;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.web-hero-badge i {
    color: var(--accent-color);
}

.web-panel-hero h1 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.08;
}

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

/* Breadcrumbs */

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

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

.web-panel-hero .breadcrumbs li {
    display: inline-flex;
    align-items: center;
    color: #ffffff;
    font-size: 0.86rem;
    font-weight: 700;
}

.web-panel-hero .breadcrumbs li a {
    color: rgba(255, 255, 255, 0.72);
}

.web-panel-hero .breadcrumbs li a:hover {
    color: var(--accent-color);
}

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

/* Section Title */

.section-title {
    margin-bottom: 28px;
}

.section-title h2 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 12px;
    color: var(--default-color);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

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

.section-title p {
    margin: 0;
    color: var(--heading-color);
    font-family: var(--heading-font);
    font-size: clamp(1.3rem, 3vw, 1.9rem);
    font-weight: 800;
    line-height: 1.25;
}

/* Content Area */

.create-page {
    min-height: 400px;
}

.create-page .col-lg-10 {
    min-height: 260px;
    padding: 26px;
    border-radius: 22px;
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

/* 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: 0.3s ease;
}

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

.scroll-top:hover {
    background: var(--accent-hover);
    color: var(--contrast-color);
}

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

/* Mobile Fix */

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

/* Responsive */

@media (max-width: 991.98px) {
    .web-panel-hero {
        min-height: 310px;
        padding: 82px 18px 50px;
    }

    .web-panel-hero p {
        font-size: 0.95rem;
    }

    .section-title h2::after {
        width: 80px;
    }
}

@media (max-width: 767.98px) {

    section,
    .section {
        padding: 44px 0;
    }

    .web-panel-hero {
        min-height: auto;
        padding: 72px 16px 44px;
    }

    .web-hero-badge {
        min-height: 36px;
        padding: 6px 13px;
        font-size: 0.7rem;
        margin-bottom: 14px;
    }

    .web-panel-hero h1 {
        margin-bottom: 10px;
    }

    .web-panel-hero p {
        font-size: 0.91rem;
        line-height: 1.65;
    }

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

    .section-title h2 {
        font-size: 0.72rem;
        flex-wrap: wrap;
    }

    .section-title h2::after {
        width: 60px;
    }

    .create-page .col-lg-10 {
        padding: 20px;
        border-radius: 18px;
    }
}

@media (max-width: 575.98px) {
    .web-panel-hero {
        padding: 66px 14px 40px;
    }

    .web-panel-hero h1 {
        font-size: 1.7rem;
    }

    .web-panel-hero p {
        font-size: 0.89rem;
    }

    .web-panel-hero .breadcrumbs li {
        font-size: 0.78rem;
    }

    .section-title p {
        font-size: 1.2rem;
    }
}