/* Fonts */
:root {
    --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Raleway", sans-serif;
    --nav-font: "Poppins", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
    --background-color: #fefefe;
    /* Background color for the entire website, including individual sections */
    --default-color: #111;
    /* Default color used for the majority of the text content across the entire website */
    --heading-color: #000;
    /* Color for headings, subheadings and title throughout the website */
    --accent-color: #eee;
    /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #eee;
    /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #fff;
    /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
    --nav-color: #ffffff;
    /* The default color of the main navmenu links */
    --nav-hover-color: #1387c1;
    /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #213642;
    /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #051117;
    /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #e7f2f7;
    /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #1387c1;
    /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
    --background-color: #142027;
    --surface-color: #325264;
}

.dark-background {
    --background-color: #0b1419;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #252525;
    --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
}

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

a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
    display: none;
    background: #df1529;
    color: #ffffff;
    text-align: left;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.php-email-form .sent-message {
    display: none;
    color: #ffffff;
    background: #059652;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.php-email-form .loading {
    display: none;
    background: var(--surface-color);
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
}

.php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid var(--accent-color);
    border-top-color: var(--surface-color);
    animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
    0% {
        transform: rotate(0deg);
    }

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

/* ============================================================
   HEADER
============================================================ */

.certification-header {
    position: sticky;
    top: 0;
    z-index: 9999;

    width: 100%;
    height: 88px;

    background: rgba(255, 255, 255, 0.96);

    border-bottom: 1px solid rgba(20, 45, 75, 0.07);

    box-shadow: 0 5px 25px rgba(20, 45, 75, 0.06);

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}


.certification-header .header-inner {
    height: 88px;

    display: flex;
    align-items: center;
}


/* ============================================================
   LOGO
============================================================ */

.certification-header .logo {
    display: flex;
    align-items: center;

    flex-shrink: 0;

    text-decoration: none;
}


.certification-header .logo img {
    display: block;

    width: auto;
    height: 62px;

    max-width: 240px;

    object-fit: contain;

    transition: 0.3s ease;
}


.certification-header .logo:hover img {
    transform: scale(1.02);
}


/* ============================================================
   NAVIGATION
============================================================ */

.certification-header .navmenu {
    margin-left: auto;
}


.certification-header .navmenu ul {
    display: flex;
    align-items: center;

    gap: 5px;

    margin: 0;
    padding: 0;

    list-style: none;
}


.certification-header .navmenu li {
    position: relative;
}


.certification-header .navmenu a {
    display: flex;
    align-items: center;

    position: relative;

    padding: 11px 15px;

    color: #526174;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    border-radius: 8px;

    transition: all 0.25s ease;
}


.certification-header .navmenu a:hover {
    color: #1e5ba5;

    background: rgba(30, 91, 165, 0.06);
}


.certification-header .navmenu a.active {
    color: #1e5ba5;

    background: rgba(30, 91, 165, 0.07);
}


.certification-header .navmenu a.active::after {
    content: "";

    position: absolute;

    left: 15px;
    right: 15px;
    bottom: 3px;

    height: 2px;

    background: #1e5ba5;

    border-radius: 10px;
}


/* ============================================================
   DESKTOP APPLY BUTTON
============================================================ */

.header-actions {
    margin-left: 22px;
}


.header-apply-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    min-height: 44px;

    padding: 0 19px;

    color: #fff !important;

    background: #1e5ba5;

    border-radius: 8px;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;

    box-shadow: 0 7px 20px rgba(30, 91, 165, 0.18);

    transition: all 0.3s ease;
}


.header-apply-btn:hover {
    background: #174b88;

    transform: translateY(-2px);

    box-shadow: 0 10px 25px rgba(30, 91, 165, 0.25);
}


.header-apply-btn i {
    transition: transform 0.25s ease;
}


.header-apply-btn:hover i {
    transform: translate(2px, -2px);
}


/* ============================================================
   MOBILE BUTTON
============================================================ */

.mobile-nav-toggle {
    display: none;

    width: 44px;
    height: 44px;

    margin-left: auto;

    padding: 0;

    border: 0;

    background: transparent;

    color: #172033;

    font-size: 28px;

    cursor: pointer;

    align-items: center;
    justify-content: center;
}


/* ============================================================
   MOBILE APPLY
============================================================ */

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


.mobile-apply-btn {
    justify-content: center !important;

    margin-top: 10px;

    color: #fff !important;

    background: #1e5ba5 !important;

    border-radius: 8px !important;

    padding: 13px 20px !important;
}


.mobile-apply-btn::after {
    display: none !important;
}


/* ============================================================
   TABLET
============================================================ */

@media (max-width: 1199px) {

    .certification-header .navmenu a {
        padding-left: 10px;
        padding-right: 10px;

        font-size: 13px;
    }

    .header-actions {
        margin-left: 10px;
    }

    .header-apply-btn {
        padding: 0 15px;
    }

}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 991px) {

    .certification-header {
        height: 76px;
    }


    .certification-header .header-inner {
        height: 76px;
    }


    /* Logo */

    .certification-header .logo img {
        height: 54px;
        max-width: 220px;
    }


    /* Hide desktop CTA */

    .header-actions {
        display: none;
    }


    /* Show hamburger */

    .mobile-nav-toggle {
        display: flex;
    }


    /* ========================================================
       MOBILE NAV
    ======================================================== */

    .certification-header .navmenu {
        position: absolute;

        top: 100%;
        left: 15px;
        right: 15px;

        margin: 0;

        padding: 10px;

        background: rgba(255, 255, 255, 0.98);

        border: 1px solid rgba(20, 45, 75, 0.08);

        border-radius: 14px;

        box-shadow:
            0 20px 50px rgba(20, 45, 75, 0.15);

        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);

        opacity: 0;
        visibility: hidden;

        transform: translateY(-10px);

        transition:
            opacity 0.25s ease,
            transform 0.25s ease,
            visibility 0.25s ease;
    }


    /* Open menu */

    .certification-header.menu-open .navmenu {
        opacity: 1;
        visibility: visible;

        transform: translateY(0);
    }


    /* Reset list */

    .certification-header .navmenu ul {
        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 3px;
    }


    .certification-header .navmenu li {
        width: 100%;
    }


    /* Mobile links */

    .certification-header .navmenu a {
        width: 100%;

        padding: 14px 16px;

        font-size: 14px;

        border-radius: 8px;
    }


    .certification-header .navmenu a.active::after {
        display: none;
    }


    .certification-header .navmenu a.active {
        background: rgba(30, 91, 165, 0.08);
    }


    /* Mobile CTA */

    .mobile-apply-item {
        display: block !important;

        margin-top: 7px;

        padding-top: 7px;

        border-top: 1px solid #edf0f4;
    }

}


/* ============================================================
   SMALL MOBILE
============================================================ */

@media (max-width: 575px) {

    .certification-header {
        height: 70px;
    }


    .certification-header .header-inner {
        height: 70px;
    }


    .certification-header .logo img {
        height: 48px;

        max-width: 200px;
    }


    .mobile-nav-toggle {
        width: 40px;
        height: 40px;

        font-size: 26px;
    }


    .certification-header .navmenu {
        left: 10px;
        right: 10px;
    }

}

/* ============================================================
   PROFESSIONAL CERTIFICATION FOOTER
============================================================ */

.certification-footer {
    position: relative;
    padding: 70px 0 0;
    background: #111d2e;
    color: #ffffff;
    overflow: hidden;
}



/* ============================================================
   MAIN FOOTER
============================================================ */

.footer-main {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        1.5fr
        0.8fr
        0.8fr
        1.3fr;

    gap: 55px;

    padding-bottom: 55px;
}


/* ============================================================
   BRAND
============================================================ */

.footer-brand {
    max-width: 330px;
}


.footer-logo {
    display: inline-flex;
    align-items: center;

    margin-bottom: 20px;
}


.footer-logo img {
    display: block;

    width: auto;
    height: 58px;

    max-width: 230px;

    object-fit: contain;

    background: #ffffff;
    border-radius: 7px;

    padding: 4px 9px;
}


.footer-brand p {
    margin: 0;

    color: #a9b5c5;

    font-size: 14px;

    line-height: 1.8;
}


/* ============================================================
   FOOTER COLUMNS
============================================================ */

.footer-column h4,
.footer-cta h4 {
    margin: 5px 0 20px;

    color: #ffffff;

    font-size: 15px;
    font-weight: 700;
}


.footer-column ul {
    margin: 0;
    padding: 0;

    list-style: none;
}


.footer-column li {
    margin-bottom: 12px;
}


.footer-column a {
    color: #9eacbd;

    font-size: 13px;

    text-decoration: none;

    transition: all 0.25s ease;
}


.footer-column a:hover {
    color: #ffffff;

    padding-left: 4px;
}


/* ============================================================
   FOOTER CTA
============================================================ */

.footer-cta {
    padding-left: 15px;
}


.footer-cta-label {
    display: inline-block;

    margin-bottom: 8px;

    color: #6fa5d7;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;
}


.footer-cta h4 {
    max-width: 270px;

    margin-top: 0;

    margin-bottom: 22px;

    font-size: 21px;
    line-height: 1.4;
}


.footer-apply-btn {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    padding: 12px 17px;

    color: #ffffff !important;

    background: #1e5ba5;

    border-radius: 8px;

    font-size: 12px;
    font-weight: 700;

    text-decoration: none;

    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);

    transition: all 0.3s ease;
}


.footer-apply-btn:hover {
    background: #347dc4;

    transform: translateY(-2px);
}


.footer-apply-btn i {
    transition: transform 0.25s ease;
}


.footer-apply-btn:hover i {
    transform: translateX(4px);
}


/* ============================================================
   BOTTOM
============================================================ */

.footer-bottom {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: space-between;

    min-height: 75px;

    border-top: 1px solid rgba(255, 255, 255, 0.09);

    gap: 20px;
}


.footer-copyright {
    color: #8997a9;

    font-size: 11px;
}


.footer-copyright strong {
    color: #b9c5d3;

    font-weight: 600;
}


/* ============================================================
   SOCIAL
============================================================ */

.footer-social {
    display: flex;
    align-items: center;

    gap: 8px;
}


.footer-social a {
    width: 35px;
    height: 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #9aa8b9;

    background: rgba(255, 255, 255, 0.055);

    border: 1px solid rgba(255, 255, 255, 0.07);

    border-radius: 8px;

    text-decoration: none;

    transition: all 0.25s ease;
}


.footer-social a:hover {
    color: #ffffff;

    background: #1e5ba5;

    border-color: #1e5ba5;

    transform: translateY(-3px);
}


/* ============================================================
   CREDITS
============================================================ */

.footer-credits {
    color: #8997a9;

    font-size: 11px;
}


.footer-credits a {
    margin-left: 4px;

    color: #c2cfdd;

    font-weight: 700;

    text-decoration: none;

    transition: color 0.25s ease;
}


.footer-credits a:hover {
    color: #6fa5d7;
}


/* ============================================================
   TABLET
============================================================ */

@media (max-width: 991px) {

    .certification-footer {
        padding-top: 60px;
    }


    .footer-main {
        grid-template-columns: 1.5fr 1fr 1fr;

        gap: 40px;
    }


    .footer-cta {
        grid-column: 1 / -1;

        padding-left: 0;

        padding-top: 10px;
    }


    .footer-cta h4 {
        max-width: 400px;
    }


    .footer-bottom {
        flex-wrap: wrap;

        padding: 20px 0;
    }

}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 767px) {

    .certification-footer {
        padding-top: 50px;
    }


    .footer-main {
        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 35px 25px;

        padding-bottom: 40px;
    }


    .footer-brand {
        grid-column: 1 / -1;

        max-width: 100%;
    }


    .footer-column h4,
    .footer-cta h4 {
        margin-bottom: 15px;
    }


    .footer-cta {
        grid-column: 1 / -1;

        padding-top: 5px;
    }


    .footer-bottom {
        flex-direction: column;

        justify-content: center;

        text-align: center;

        padding: 25px 0;

        gap: 18px;
    }


    .footer-social {
        order: -1;
    }

}


/* ============================================================
   SMALL MOBILE
============================================================ */

@media (max-width: 480px) {

    .certification-footer {
        padding-top: 45px;
    }


    .footer-main {
        grid-template-columns: 1fr;

        gap: 30px;
    }


    .footer-brand,
    .footer-cta,
    .footer-column {
        grid-column: auto;
    }


    .footer-logo img {
        height: 52px;
    }


    .footer-brand p {
        font-size: 13px;
    }


    .footer-cta h4 {
        font-size: 19px;
    }


    .footer-bottom {
        gap: 15px;
    }

}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
    color: var(--default-color);
    background-color: var(--background-color);
    position: relative;
}

.page-title .heading {
    padding: 80px 0;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
    font-size: 38px;
    font-weight: 700;
}

.page-title nav {
    background-color: color-mix(in srgb, var(--default-color), transparent 96%);
    padding: 20px 0;
}

.page-title nav ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 16px;
    font-weight: 400;
}

.page-title nav ol li+li {
    padding-left: 10px;
}

.page-title nav ol li+li::before {
    content: "/";
    display: inline-block;
    padding-right: 10px;
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 60px 0;
    scroll-margin-top: 100px;
    overflow: clip;
}

@media (max-width: 1199px) {

    section,
    .section {
        scroll-margin-top: 66px;
    }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
    text-align: center;
    padding-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.2;
    color: var(--heading-color);
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 2.5rem;
    }
}

.section-title p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    max-width: 900px;
    margin: 0 auto;
    text-wrap: balance;
}

/* ============================================================
   PROFESSIONAL CERTIFICATION HERO
============================================================ */

.certification-hero {
    position: relative;
    min-height: 720px;
    padding: 110px 0 90px;
    overflow: hidden;
    background:
        radial-gradient(circle at 85% 30%, rgba(34, 88, 160, 0.10), transparent 35%),
        radial-gradient(circle at 15% 80%, rgba(34, 88, 160, 0.06), transparent 30%),
        #ffffff;
}


/* ============================================================
   CONTENT
============================================================ */

.certification-hero .hero-content {
    position: relative;
    z-index: 5;
    max-width: 650px;
}


/* Eyebrow */

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 15px 8px 9px;
    margin-bottom: 25px;

    background: rgba(30, 91, 165, 0.07);
    border: 1px solid rgba(30, 91, 165, 0.12);
    border-radius: 50px;

    color: #1e5ba5;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;
}


.eyebrow-icon {
    width: 28px;
    height: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #1e5ba5;
    color: #fff;
    border-radius: 50%;
}


.eyebrow-icon i {
    font-size: 14px;
}


/* ============================================================
   HEADING
============================================================ */

.certification-hero h1 {
    margin: 0 0 20px;

    font-size: clamp(44px, 5vw, 68px);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -2.5px;

    color: #172033;
}


.certification-hero h1 span {
    background: linear-gradient(
        135deg,
        #1e5ba5 0%,
        #347dc4 55%,
        #173f78 100%
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* ============================================================
   SUB HEADING
============================================================ */

.certification-hero h2 {
    margin-bottom: 20px;

    font-size: 22px;
    line-height: 1.5;
    font-weight: 600;

    color: #39465b;
}


.certification-hero h2 .typed {
    color: #1e5ba5;
    font-weight: 700;
}


/* ============================================================
   DESCRIPTION
============================================================ */

.hero-description {
    max-width: 590px;
    margin-bottom: 32px;

    font-size: 17px;
    line-height: 1.8;

    color: #697589;
}


/* ============================================================
   ACTION BUTTONS
============================================================ */

.hero-actions {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}


.hero-primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 13px;

    min-height: 56px;
    padding: 0 25px;

    border: 0;
    border-radius: 10px;

    background: linear-gradient(
        135deg,
        #1e5ba5,
        #347dc4
    );

    color: #fff !important;

    font-size: 15px;
    font-weight: 700;

    box-shadow: 0 12px 30px rgba(30, 91, 165, 0.22);

    transition: all 0.3s ease;
}


.hero-primary-btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}


.hero-primary-btn:hover {
    transform: translateY(-3px);

    box-shadow:
        0 18px 35px rgba(30, 91, 165, 0.30);
}


.hero-primary-btn:hover i {
    transform: translateX(5px);
}


/* Secondary */

.hero-secondary-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: #27354a;

    font-size: 15px;
    font-weight: 700;

    text-decoration: none;

    transition: all 0.3s ease;
}


.play-icon {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #d9e1eb;
    border-radius: 50%;

    color: #1e5ba5;
    background: #fff;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}


.hero-secondary-btn:hover {
    color: #1e5ba5;
}


.hero-secondary-btn:hover .play-icon {
    background: #1e5ba5;
    color: #fff;
    border-color: #1e5ba5;
}


/* ============================================================
   TRUST ITEMS
============================================================ */

.hero-trust {
    display: flex;
    align-items: center;

    margin-top: 45px;
}


.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
}


.trust-icon {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background: #f1f6fb;
    color: #1e5ba5;
}


.trust-item strong {
    display: block;

    color: #27354a;

    font-size: 12px;
    font-weight: 800;
}


.trust-item small {
    display: block;

    margin-top: 2px;

    color: #8792a3;

    font-size: 10px;
}


.trust-divider {
    width: 1px;
    height: 35px;

    margin: 0 20px;

    background: #e4e8ee;
}


/* ============================================================
   VISUAL AREA
============================================================ */

.hero-visual {
    position: relative;

    min-height: 550px;

    display: flex;
    align-items: center;
    justify-content: center;
}


.visual-glow {
    position: absolute;

    width: 430px;
    height: 430px;

    border-radius: 50%;

    background: rgba(30, 91, 165, 0.08);

    filter: blur(5px);
}


/* Decorative circles */

.visual-circle {
    position: absolute;

    border: 1px solid rgba(30, 91, 165, 0.12);

    border-radius: 50%;
}


.circle-one {
    width: 430px;
    height: 430px;
}


.circle-two {
    width: 560px;
    height: 560px;

    border-color: rgba(30, 91, 165, 0.06);
}


/* ============================================================
   CERTIFICATE
============================================================ */

.certificate-wrapper {
    position: relative;
    z-index: 3;

    width: min(100%, 500px);

    padding: 20px;

    transform: rotate(-2deg);

    transition: transform 0.5s ease;
}


.certificate-wrapper:hover {
    transform: rotate(0deg) translateY(-8px);
}


.certificate-shadow {
    position: absolute;

    inset: 35px 25px 15px;

    background: rgba(18, 43, 74, 0.22);

    filter: blur(30px);

    border-radius: 20px;

    z-index: -1;
}


.certificate-image {
    display: block;

    width: 100%;
    height: auto;

    border-radius: 8px;

    box-shadow:
        0 20px 50px rgba(20, 45, 75, 0.18),
        0 3px 8px rgba(20, 45, 75, 0.10);

    background: #fff;
}


/* ============================================================
   FLOATING CARDS
============================================================ */

.floating-card {
    position: absolute;
    z-index: 10;

    display: flex;
    align-items: center;
    gap: 11px;

    min-width: 165px;

    padding: 13px 16px;

    background: rgba(255, 255, 255, 0.94);

    border: 1px solid rgba(255, 255, 255, 0.8);

    border-radius: 13px;

    box-shadow:
        0 15px 40px rgba(31, 53, 80, 0.14);

    backdrop-filter: blur(10px);

    animation: floatingCard 4s ease-in-out infinite;
}


.floating-icon {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: #eef5fc;
    color: #1e5ba5;

    font-size: 18px;
}


.floating-card strong {
    display: block;

    color: #26364c;

    font-size: 13px;
    font-weight: 800;
}


.floating-card span {
    display: block;

    margin-top: 2px;

    color: #8994a4;

    font-size: 10px;
}


.verified-card {
    top: 18%;
    right: 1%;

    animation-delay: 0s;
}


.award-card {
    bottom: 18%;
    left: 0;

    animation-delay: 1s;
}


.trusted-card {
    bottom: 3%;
    right: 7%;

    animation-delay: 2s;
}


@keyframes floatingCard {

    0%,
    100% {
        transform: translateY(0);
    }

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


/* ============================================================
   TABLET
============================================================ */

@media (max-width: 991px) {

    .certification-hero {
        padding: 80px 0 100px;
    }

    .certification-hero .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-eyebrow {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-visual {
        min-height: 500px;
    }

    .verified-card {
        right: 4%;
    }

    .award-card {
        left: 4%;
    }

}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 767px) {

    .certification-hero {
        min-height: auto;
        padding: 65px 0 85px;
    }

    .certification-hero h1 {
        font-size: 42px;
        letter-spacing: -1.5px;
    }

    .certification-hero h2 {
        font-size: 18px;
    }

    .hero-description {
        font-size: 15px;
        line-height: 1.7;
    }

    .hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .hero-primary-btn {
        width: 100%;
        justify-content: center;
    }

    .hero-trust {
        flex-wrap: wrap;
        gap: 15px;
    }

    .trust-divider {
        display: none;
    }

    .hero-visual {
        min-height: 390px;
        margin-top: 20px;
    }

    .certificate-wrapper {
        width: 90%;
    }

    .visual-circle.circle-one {
        width: 300px;
        height: 300px;
    }

    .visual-circle.circle-two {
        width: 380px;
        height: 380px;
    }

    .visual-glow {
        width: 280px;
        height: 280px;
    }

    .floating-card {
        min-width: 135px;
        padding: 9px 11px;
    }

    .floating-icon {
        width: 34px;
        height: 34px;
        font-size: 15px;
    }

    .floating-card strong {
        font-size: 11px;
    }

    .floating-card span {
        font-size: 9px;
    }

    .verified-card {
        top: 8%;
        right: 0;
    }

    .award-card {
        bottom: 14%;
        left: 0;
    }

    .trusted-card {
        bottom: 0;
        right: 3%;
    }

    .hero-scroll {
        display: none;
    }

}


/* ============================================================
   SMALL MOBILE
============================================================ */

@media (max-width: 480px) {

    .certification-hero h1 {
        font-size: 36px;
    }

    .hero-eyebrow {
        font-size: 11px;
    }

    .hero-visual {
        min-height: 330px;
    }

    .floating-card {
        transform: scale(0.88);
    }

    .verified-card {
        right: -8px;
    }

    .award-card {
        left: -8px;
    }

    .trusted-card {
        right: -8px;
    }

}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .intro-content .eyebrow {
    display: inline-block;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 12px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin-bottom: 16px;
}

.about .intro-content .headline {
    font-family: var(--heading-font);
    font-weight: 300;
    line-height: 1.2;
    font-size: clamp(28px, 4vw, 44px);
    margin: 0 0 24px 0;
}

.about .intro-content .lead {
    font-size: 18px;
    line-height: 1.8;
    color: color-mix(in srgb, var(--default-color), transparent 10%);
    margin-bottom: 24px;
}

.about .intro-content p {
    line-height: 1.8;
    margin-bottom: 24px;
    color: color-mix(in srgb, var(--default-color), transparent 5%);
}

.about .intro-content .cta-group {
    display: flex;
    gap: 24px;
    align-items: center;
    margin-top: 24px;
}

.about .intro-content .cta-group .btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 6px;
    color: var(--accent-color);
    background: color-mix(in srgb, var(--accent-color), transparent 92%);
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
    transition: 0.3s ease-in-out;
}

.about .intro-content .cta-group .btn-ghost:hover,
.about .intro-content .cta-group .btn-ghost:focus {
    color: var(--contrast-color);
    background: var(--accent-color);
    border-color: var(--accent-color);
    outline: none;
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.about .intro-content .cta-group .link-underline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    color: var(--accent-color);
    padding-bottom: 4px;
    transition: 0.3s ease-in-out;
}

.about .intro-content .cta-group .link-underline::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: color-mix(in srgb, var(--accent-color), transparent 40%);
    transform: scaleX(0.4);
    transform-origin: left;
    transition: 0.3s ease-in-out;
}

.about .intro-content .cta-group .link-underline:hover,
.about .intro-content .cta-group .link-underline:focus {
    color: color-mix(in srgb, var(--accent-color), transparent 10%);
    outline: none;
}

.about .intro-content .cta-group .link-underline:hover::after,
.about .intro-content .cta-group .link-underline:focus::after {
    transform: scaleX(1);
}

.about .profile-figure {
    margin: 0;
}

.about .profile-figure .profile-photo {
    width: 88%;
    max-width: 440px;
    border-radius: 18px;
    box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 92%);
    transform: translateY(0);
    transition: transform 0.3s ease-in-out;
}

.about .profile-figure .profile-caption {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about .profile-figure .profile-caption .meta {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.about .profile-figure .profile-caption .meta .funfact {
    font-size: 13px;
    margin-top: 4px;
    color: color-mix(in srgb, var(--default-color), transparent 35%);
}

.about .profile-figure:hover .profile-photo {
    transform: translateY(-4px);
}

.about .skill-item {
    padding: 24px;
    border-radius: 6px;
    transition: 0.3s ease-in-out;
    background: color-mix(in srgb, var(--surface-color), var(--accent-color) 2%);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
    height: 100%;
}

.about .skill-item i {
    font-size: 24px;
    color: var(--accent-color);
    margin-bottom: 16px;
    display: inline-block;
}

.about .skill-item h3 {
    font-size: 16px;
    margin-bottom: 6px;
    font-weight: 500;
}

.about .skill-item p {
    margin: 0;
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.about .skill-item:hover {
    transform: translateY(-3px);
    border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
    box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 92%);
}

.about .timeline-item {
    position: relative;
    padding-left: 26px;
}

.about .timeline-item time {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: color-mix(in srgb, var(--default-color), transparent 45%);
    margin-bottom: 6px;
}

.about .timeline-item h4 {
    font-size: 18px;
    font-weight: 400;
    margin: 0 0 6px;
}

.about .timeline-item p {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    margin: 0;
}

.about .timeline-item .dot {
    position: absolute;
    left: 0;
    top: 4px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent-color);
    box-shadow: 0 0 0 6px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.about .personal-quote {
    padding: 24px 0;
}

.about .personal-quote p {
    font-family: var(--heading-font);
    font-weight: 300;
    font-size: clamp(20px, 3vw, 28px);
    line-height: 1.5;
    color: color-mix(in srgb, var(--default-color), transparent 5%);
    margin: 0 auto;
    max-width: 800px;
}

.about .fact-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    background: var(--surface-color);
    color: color-mix(in srgb, var(--default-color), transparent 10%);
    transition: 0.3s ease-in-out;
}

.about .fact-pill i {
    color: var(--accent-color);
}

.about .fact-pill span {
    font-size: 14px;
}

.about .fact-pill:hover {
    transform: translateY(-2px);
    border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
    box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 92%);
}

.about .fact-pill:focus-within {
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 70%);
}

@media (max-width: 992px) {
    .about .profile-figure {
        text-align: center !important;
    }

    .about .profile-figure .profile-photo {
        width: 72%;
    }

    .about .intro-content .cta-group {
        flex-wrap: wrap;
    }
}

@media (max-width: 576px) {
    .about .profile-figure .profile-photo {
        width: 100%;
    }
}

/*--------------------------------------------------------------
# Skills Section
--------------------------------------------------------------*/
.skills .skill-box {
    background-color: var(--surface-color);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.skills .skill-box h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.skills .skill-box p {
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    opacity: 0.6;
}

.skills .skill-box .progress {
    background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
    border-radius: 50px;
    height: 8px;
    margin-top: 5px;
    overflow: hidden;
}

.skills .skill-box .progress .progress-bar {
    background-color: var(--accent-color);
    height: 100%;
    position: relative;
    border-radius: 50px;
    transition: 0.9s;
    width: 1px;
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .avatars {
    position: relative;
}

.stats .avatars img {
    width: 60px;
    height: 60px;
    border: 3px solid var(--accent-color);
    margin-right: -15px;
    transition: transform 0.3s ease;
}

.stats .avatars img:hover {
    transform: translateY(-5px);
    z-index: 2;
}

.stats .counters h2 {
    color: var(--heading-color);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stats .counters h2 span {
    display: inline-block;
}

.stats .counters p {
    color: var(--default-color);
    font-size: 18px;
    margin: 0;
    opacity: 0.9;
}

@media (max-width: 991px) {
    .stats .row {
        text-align: center;
    }

    .stats .avatars {
        justify-content: center;
        margin-bottom: 40px;
    }

    .stats .counters h2 {
        font-size: 36px;
    }

    .stats .counters p {
        font-size: 16px;
    }

    .stats .counters .col-md-4 {
        margin-bottom: 30px;
    }

    .stats .counters .col-md-4:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 576px) {
    .stats {
        padding: 60px 0;
    }

    .stats .avatars {
        flex-wrap: wrap;
        justify-content: center;
    }

    .stats .avatars img {
        margin: 0 -8px;
    }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
    overflow: hidden;
}

.testimonials .testimonial-item .testimonial-content {
    border-left: 3px solid var(--accent-color);
    padding-left: 30px;
}

.testimonials .testimonial-item .testimonial-img {
    border-radius: 50%;
    border: 4px solid var(--background-color);
    margin: 0 auto;
}

.testimonials .testimonial-item h3 {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin: 0 0 10px 0;
}

.testimonials .testimonial-item .stars i {
    color: #ffc107;
    margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
    color: color-mix(in srgb, var(--accent-color), transparent 50%);
    font-size: 26px;
    line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
    transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
    font-style: italic;
}

.testimonials .swiper-wrapper {
    height: auto;
}

.testimonials .swiper-pagination {
    margin-top: 30px;
    position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: color-mix(in srgb, var(--default-color), transparent 85%);
    opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Resume Section
--------------------------------------------------------------*/
.resume .resume-item {
    margin-bottom: 3rem;
}

.resume .resume-item .resume-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    position: relative;
    color: var(--heading-color);
}

.resume .resume-item .resume-title::after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    bottom: 0;
    left: 0;
}

.resume .resume-item .resume-content {
    padding-left: 1.25rem;
    border-left: 2px solid color-mix(in srgb, var(--accent-color), transparent 85%);
}

.resume .resume-item article {
    position: relative;
    margin-bottom: 2.5rem;
}

.resume .resume-item article::before {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    left: -1.8rem;
    top: 0.25rem;
    background: var(--background-color);
    border: 2px solid var(--accent-color);
}

.resume .resume-item article h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--heading-color);
}

.resume .resume-item article h5 {
    font-size: 1rem;
    background: color-mix(in srgb, var(--accent-color), transparent 92%);
    padding: 0.375rem 0.75rem;
    display: inline-block;
    font-weight: 600;
    margin: 0.5rem 0;
    color: var(--accent-color);
    border-radius: 4px;
}

.resume .resume-item article .institution,
.resume .resume-item article .company {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.resume .resume-item article p {
    margin-bottom: 1rem;
}

.resume .resume-item article ul {
    padding-left: 1.25rem;
    margin-bottom: 0;
}

.resume .resume-item article ul li {
    padding-bottom: 0.75rem;
    position: relative;
}

.resume .resume-item article ul li:last-child {
    padding-bottom: 0;
}

.resume .skill-item {
    margin-bottom: 2rem;
}

.resume .skill-item h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--heading-color);
}

.resume .skill-item .progress {
    height: 0.75rem;
    background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
    border-radius: 1rem;
    overflow: visible;
}

.resume .skill-item .progress .progress-bar {
    background-color: var(--accent-color);
    position: relative;
    border-radius: 1rem;
    width: 0;
    transition: width 1s ease;
}

.resume .skill-item .progress .progress-bar::after {
    content: attr(aria-valuenow) "%";
    position: absolute;
    right: 0;
    top: -1.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

@media (max-width: 991.98px) {
    .resume .resume-item {
        margin-bottom: 2rem;
    }
}

@media (max-width: 767.98px) {
    .resume .resume-content {
        padding-left: 1rem !important;
    }

    .resume article::before {
        left: -2rem !important;
    }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
    display: flex;
    background-color: var(--surface-color);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
}

.services .service-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background-color: var(--accent-color);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

.services .service-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.services .service-item:hover::before {
    transform: scaleY(1);
}

.services .service-item:hover .service-icon {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotateY(180deg);
}

.services .service-item:hover .service-icon i {
    transform: rotateY(180deg);
}

.services .service-item:hover .service-link i {
    transform: translateX(5px);
}

.services .service-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: 12px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    transition: all 0.5s ease;
}

.services .service-icon i {
    font-size: 2rem;
    transition: transform 0.5s ease;
}

.services .service-content {
    flex-grow: 1;
}

.services .service-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--heading-color);
}

.services .service-content p {
    margin-bottom: 1.25rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.services .service-link {
    display: inline-flex;
    align-items: center;
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.services .service-link span {
    margin-right: 0.5rem;
}

.services .service-link i {
    transition: transform 0.3s ease;
}

.services .service-link:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

@media (max-width: 767.98px) {
    .services .service-item {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }

    .services .service-icon {
        width: 60px;
        height: 60px;
        margin-right: 1rem;
    }

    .services .service-icon i {
        font-size: 1.5rem;
    }

    .services .service-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }

    .services .service-content p {
        margin-bottom: 1rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 575.98px) {
    .services .service-item {
        flex-direction: column;
        text-align: center;
    }

    .services .service-item::before {
        width: 100%;
        height: 4px;
        transform: scaleX(0);
        transform-origin: left;
    }

    .services .service-item:hover::before {
        transform: scaleX(1);
    }

    .services .service-icon {
        margin-right: 0;
        margin-bottom: 1.25rem;
    }

    .services .service-link {
        justify-content: center;
    }
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-hero {
    margin-bottom: 4rem;
}

.service-details .service-hero .service-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-details .service-hero .service-meta .service-category {
    background: color-mix(in srgb, var(--accent-color), transparent 85%);
    color: var(--accent-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.service-details .service-hero .service-meta .reading-time {
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 0.9rem;
    font-weight: 300;
}

.service-details .service-hero h1 {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--heading-color);
    letter-spacing: -0.02em;
}

.service-details .service-hero .service-description {
    font-size: 1.25rem;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    font-weight: 300;
    margin: 0;
}

.service-details .service-visual {
    margin-bottom: 4rem;
    overflow: hidden;
    border-radius: 4px;
}

.service-details .service-visual img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-details .service-visual img:hover {
    transform: scale(1.02);
}

.service-details .service-narrative {
    margin-bottom: 5rem;
}

.service-details .service-narrative h3 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: var(--heading-color);
    letter-spacing: -0.01em;
}

.service-details .service-narrative p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--default-color);
    font-weight: 300;
}

.service-details .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-details .benefits-grid .benefit-card {
    text-align: center;
    padding: 0;
}

.service-details .benefits-grid .benefit-card .benefit-icon {
    width: 60px;
    height: 60px;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.service-details .benefits-grid .benefit-card .benefit-icon i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.service-details .benefits-grid .benefit-card:hover .benefit-icon {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.service-details .benefits-grid .benefit-card:hover .benefit-icon i {
    color: var(--contrast-color);
}

.service-details .benefits-grid .benefit-card h4 {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--heading-color);
}

.service-details .benefits-grid .benefit-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin: 0;
}

.service-details .timeline-section {
    margin-bottom: 4rem;
}

.service-details .timeline-section h3 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 3rem;
    color: var(--heading-color);
    letter-spacing: -0.01em;
}

.service-details .timeline-section .timeline {
    position: relative;
}

.service-details .timeline-section .timeline::before {
    content: "";
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: color-mix(in srgb, var(--default-color), transparent 85%);
}

.service-details .timeline-section .timeline .timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 3rem;
}

.service-details .timeline-section .timeline .timeline-item:last-child {
    margin-bottom: 0;
}

.service-details .timeline-section .timeline .timeline-item .timeline-marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: var(--surface-color);
    border: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.service-details .timeline-section .timeline .timeline-item .timeline-marker span {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--accent-color);
}

.service-details .timeline-section .timeline .timeline-item .timeline-content h4 {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
    color: var(--heading-color);
}

.service-details .timeline-section .timeline .timeline-item .timeline-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    color: var(--default-color);
}

.service-details .timeline-section .timeline .timeline-item .timeline-content small {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-size: 0.9rem;
    font-weight: 500;
}

.service-details .service-sidebar {
    padding-left: 2rem;
}

@media (max-width: 992px) {
    .service-details .service-sidebar {
        padding-left: 0;
        margin-top: 4rem;
    }
}

.service-details .overview-card,
.service-details .success-story,
.service-details .consultation-form {
    background: var(--surface-color);
    border-radius: 8px;
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 93%);
    transition: all 0.3s ease;
}

.service-details .overview-card:hover,
.service-details .success-story:hover,
.service-details .consultation-form:hover {
    border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.service-details .overview-card .overview-header h4 {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: var(--heading-color);
}

.service-details .overview-card .overview-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.service-details .overview-card .overview-stats .stat-item {
    text-align: center;
}

.service-details .overview-card .overview-stats .stat-item .stat-number {
    font-size: 2rem;
    font-weight: 300;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.service-details .overview-card .overview-stats .stat-item .stat-label {
    font-size: 0.85rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-details .overview-card .overview-details {
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    padding-top: 1.5rem;
}

.service-details .overview-card .overview-details .detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.service-details .overview-card .overview-details .detail-row:last-child {
    margin-bottom: 0;
}

.service-details .overview-card .overview-details .detail-row .detail-label {
    font-size: 0.95rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-weight: 400;
}

.service-details .overview-card .overview-details .detail-row .detail-value {
    font-size: 0.95rem;
    color: var(--heading-color);
    font-weight: 500;
}

.service-details .success-story .story-quote p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    font-style: italic;
    margin-bottom: 2rem;
}

.service-details .success-story .story-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-details .success-story .story-author .author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.service-details .success-story .story-author .author-details h5 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
    color: var(--heading-color);
}

.service-details .success-story .story-author .author-details span {
    display: block;
    font-size: 0.9rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin-bottom: 0.25rem;
}

.service-details .success-story .story-author .author-details small {
    font-size: 0.8rem;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.service-details .success-story .story-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .success-story .story-metrics .metric {
    text-align: center;
}

.service-details .success-story .story-metrics .metric .metric-value {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--accent-color);
    display: block;
    margin-bottom: 0.25rem;
}

.service-details .success-story .story-metrics .metric .metric-label {
    font-size: 0.8rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-details .consultation-form .form-header {
    margin-bottom: 2rem;
}

.service-details .consultation-form .form-header h4 {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
    color: var(--heading-color);
}

.service-details .consultation-form .form-header p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin: 0;
}

.service-details .consultation-form .form-group {
    margin-bottom: 1.5rem;
}

.service-details .consultation-form .form-input {
    width: 100%;
    padding: 1rem;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    border-radius: 4px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: transparent;
}

.service-details .consultation-form .form-input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 90%);
}

.service-details .consultation-form input[type=text],
.service-details .consultation-form input[type=email],
.service-details .consultation-form input[type=tel],
.service-details .consultation-form select,
.service-details .consultation-form textarea {
    color: var(--default-color);
    background-color: var(--surface-color);
    font-size: 14px;
    border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.service-details .consultation-form input[type=text]:focus,
.service-details .consultation-form input[type=email]:focus,
.service-details .consultation-form input[type=tel]:focus,
.service-details .consultation-form select:focus,
.service-details .consultation-form textarea:focus {
    border-color: var(--accent-color);
}

.service-details .consultation-form input[type=text]::placeholder,
.service-details .consultation-form input[type=email]::placeholder,
.service-details .consultation-form input[type=tel]::placeholder,
.service-details .consultation-form select::placeholder,
.service-details .consultation-form textarea::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.service-details .consultation-form .btn-consultation {
    background: var(--accent-color);
    color: var(--contrast-color);
    border: none;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 500;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-transform: none;
}

.service-details .consultation-form .btn-consultation:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 10%);
    transform: translateY(-1px);
}

.service-details .consultation-form .btn-consultation i {
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .service-details .service-hero h1 {
        font-size: 2.5rem;
    }

    .service-details .service-hero .service-description {
        font-size: 1.1rem;
    }

    .service-details .service-visual img {
        height: 250px;
    }

    .service-details .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-details .timeline-section .timeline::before {
        left: 20px;
    }

    .service-details .timeline-section .timeline .timeline-item {
        padding-left: 60px;
    }

    .service-details .timeline-section .timeline .timeline-item .timeline-marker {
        width: 40px;
        height: 40px;
    }

    .service-details .timeline-section .timeline .timeline-item .timeline-marker span {
        font-size: 1rem;
    }

    .service-details .overview-card .overview-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    padding: 0;
    list-style: none;
}

.portfolio .portfolio-filters li {
    padding: 8px 20px;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
}

.portfolio .portfolio-filters li:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.portfolio .portfolio-filters li.filter-active {
    background-color: var(--accent-color);
    color: var(--contrast-color);
}

.portfolio .portfolio-card {
    background-color: var(--surface-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.portfolio .portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.portfolio .portfolio-card:hover .portfolio-img .portfolio-overlay {
    opacity: 1;
}

.portfolio .portfolio-card:hover .portfolio-img img {
    transform: scale(1.1);
}

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

.portfolio .portfolio-card .portfolio-img img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.portfolio .portfolio-card .portfolio-img .portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transition: all 0.3s ease;
}

.portfolio .portfolio-card .portfolio-img .portfolio-overlay a {
    width: 45px;
    height: 45px;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.portfolio .portfolio-card .portfolio-img .portfolio-overlay a:hover {
    background-color: color-mix(in srgb, var(--accent-color), #fff 20%);
    transform: translateY(-5px);
}

.portfolio .portfolio-card .portfolio-info {
    padding: 20px;
}

.portfolio .portfolio-card .portfolio-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--heading-color);
}

.portfolio .portfolio-card .portfolio-info p {
    font-size: 0.9rem;
    color: var(--default-color);
    margin-bottom: 10px;
}

.portfolio .portfolio-card .portfolio-info .portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.portfolio .portfolio-card .portfolio-info .portfolio-tags span {
    font-size: 0.8rem;
    padding: 4px 12px;
    border-radius: 20px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
}

.portfolio .btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.portfolio .btn-primary:hover {
    background-color: color-mix(in srgb, var(--accent-color), #000 10%);
    border-color: color-mix(in srgb, var(--accent-color), #000 10%);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details {
    --section-spacing: 2.5rem;
}

.portfolio-details .portfolio-details-media {
    position: relative;
}

.portfolio-details .portfolio-details-media .main-image {
    margin-bottom: 1rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.portfolio-details .portfolio-details-media .main-image .portfolio-details-slider {
    position: relative;
}

.portfolio-details .portfolio-details-media .main-image .portfolio-details-slider .swiper-wrapper {
    height: auto !important;
}

.portfolio-details .portfolio-details-media .main-image .portfolio-details-slider .swiper-slide img {
    aspect-ratio: 3/2;
    object-fit: cover;
    width: 100%;
}

.portfolio-details .portfolio-details-media .main-image .portfolio-details-slider .swiper-button-next,
.portfolio-details .portfolio-details-media .main-image .portfolio-details-slider .swiper-button-prev {
    background-color: var(--contrast-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.portfolio-details .portfolio-details-media .main-image .portfolio-details-slider .swiper-button-next:after,
.portfolio-details .portfolio-details-media .main-image .portfolio-details-slider .swiper-button-prev:after {
    font-size: 16px;
    color: var(--accent-color);
    font-weight: bold;
}

.portfolio-details .portfolio-details-media .main-image .portfolio-details-slider .swiper-button-next:hover,
.portfolio-details .portfolio-details-media .main-image .portfolio-details-slider .swiper-button-prev:hover {
    background-color: var(--accent-color);
}

.portfolio-details .portfolio-details-media .main-image .portfolio-details-slider .swiper-button-next:hover:after,
.portfolio-details .portfolio-details-media .main-image .portfolio-details-slider .swiper-button-prev:hover:after {
    color: var(--contrast-color);
}

.portfolio-details .portfolio-details-media .thumbnail-grid img {
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.portfolio-details .portfolio-details-media .thumbnail-grid img:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-details-media .tech-stack-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 1.5rem;
}

.portfolio-details .portfolio-details-media .tech-stack-badges span {
    display: inline-block;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 20px;
    background-color: color-mix(in srgb, var(--heading-color), transparent 85%);
    color: var(--heading-color);
    transition: all 0.3s ease;
}

.portfolio-details .portfolio-details-media .tech-stack-badges span:hover {
    background-color: color-mix(in srgb, var(--heading-color), transparent 70%);
    transform: translateY(-2px);
}

.portfolio-details .portfolio-details-content {
    padding: 0 0 0 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.portfolio-details .portfolio-details-content .project-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.portfolio-details .portfolio-details-content .project-meta .badge-wrapper .project-badge {
    display: inline-block;
    padding: 8px 16px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
}

.portfolio-details .portfolio-details-content .project-meta .date-client {
    display: flex;
    gap: 1.5rem;
}

.portfolio-details .portfolio-details-content .project-meta .date-client .meta-item {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.portfolio-details .portfolio-details-content .project-meta .date-client .meta-item i {
    margin-right: 6px;
    color: var(--accent-color);
}

.portfolio-details .portfolio-details-content .project-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--heading-color);
}

.portfolio-details .portfolio-details-content .project-website {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.portfolio-details .portfolio-details-content .project-website i {
    font-size: 22px;
    color: var(--accent-color);
    margin-right: 8px;
}

.portfolio-details .portfolio-details-content .project-website a {
    font-weight: 500;
    transition: all 0.3s;
}

.portfolio-details .portfolio-details-content .project-website a:hover {
    letter-spacing: 0.5px;
}

.portfolio-details .portfolio-details-content .project-overview {
    margin-bottom: var(--section-spacing);
}

.portfolio-details .portfolio-details-content .project-overview .lead {
    font-size: 1.1rem;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 15%);
    margin-bottom: 1.5rem;
}

.portfolio-details .portfolio-details-content .project-overview .project-accordion .accordion-item {
    border: none;
    background: none;
    margin-bottom: 10px;
}

.portfolio-details .portfolio-details-content .project-overview .project-accordion .accordion-item .accordion-header .accordion-button {
    padding: 1rem;
    font-weight: 600;
    font-size: 1rem;
    color: var(--heading-color);
    background-color: color-mix(in srgb, var(--surface-color), transparent 70%);
    border-radius: 8px !important;
    box-shadow: none;
}

.portfolio-details .portfolio-details-content .project-overview .project-accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
    background-color: var(--surface-color);
    color: var(--accent-color);
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.portfolio-details .portfolio-details-content .project-overview .project-accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) i {
    color: var(--accent-color);
}

.portfolio-details .portfolio-details-content .project-overview .project-accordion .accordion-item .accordion-header .accordion-button::after {
    background-size: 14px;
    width: 14px;
    height: 14px;
}

.portfolio-details .portfolio-details-content .project-overview .project-accordion .accordion-item .accordion-header .accordion-button i {
    font-size: 1.1rem;
}

.portfolio-details .portfolio-details-content .project-overview .project-accordion .accordion-item .accordion-body {
    padding: 1rem;
    background-color: var(--surface-color);
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.portfolio-details .portfolio-details-content .project-overview .project-accordion .accordion-item .accordion-body p {
    margin-bottom: 0;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    line-height: 1.6;
}

.portfolio-details .portfolio-details-content .project-features {
    margin-bottom: var(--section-spacing);
}

.portfolio-details .portfolio-details-content .project-features h3 {
    display: flex;
    align-items: center;
    font-size: 1.25rem;
    margin-bottom: 1.2rem;
}

.portfolio-details .portfolio-details-content .project-features h3 i {
    margin-right: 10px;
    color: var(--accent-color);
    font-size: 1.1em;
}

.portfolio-details .portfolio-details-content .project-features .feature-list {
    list-style: none;
    padding-left: 0;
}

.portfolio-details .portfolio-details-content .project-features .feature-list li {
    display: flex;
    align-items: center;
    padding: 8px 0;
    font-size: 15px;
    color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.portfolio-details .portfolio-details-content .project-features .feature-list li i {
    color: var(--accent-color);
    margin-right: 10px;
    font-size: 1.1em;
}

.portfolio-details .portfolio-details-content .cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: auto;
}

.portfolio-details .portfolio-details-content .cta-buttons .btn-view-project {
    padding: 12px 28px;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.portfolio-details .portfolio-details-content .cta-buttons .btn-view-project:hover {
    background-color: color-mix(in srgb, var(--accent-color), black 15%);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-details-content .cta-buttons .btn-next-project {
    padding: 12px 28px;
    background-color: color-mix(in srgb, var(--heading-color), transparent 90%);
    color: var(--heading-color);
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.portfolio-details .portfolio-details-content .cta-buttons .btn-next-project i {
    transition: transform 0.3s ease;
}

.portfolio-details .portfolio-details-content .cta-buttons .btn-next-project:hover {
    background-color: color-mix(in srgb, var(--heading-color), transparent 80%);
}

.portfolio-details .portfolio-details-content .cta-buttons .btn-next-project:hover i {
    transform: translateX(3px);
}

@media (max-width: 1199.98px) {
    .portfolio-details .portfolio-details-content {
        padding-left: 1rem;
    }
}

@media (max-width: 991.98px) {
    .portfolio-details .portfolio-details-content {
        padding: 2rem 0 0 0;
    }

    .portfolio-details .portfolio-details-content .cta-buttons {
        margin-top: 2rem;
    }
}

@media (max-width: 767.98px) {
    .portfolio-details .project-meta {
        flex-direction: column;
        gap: 1rem;
    }

    .portfolio-details .project-meta .date-client {
        flex-direction: column;
        gap: 0.5rem;
    }

    .portfolio-details .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .portfolio-details .cta-buttons a {
        width: 100%;
        text-align: center;
    }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-box {
    background-color: var(--surface-color);
    padding: 3rem;
    border-radius: 1rem;
    height: 100%;
}

.contact .info-box h3 {
    color: var(--contrast-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

@media (max-width: 767.98px) {
    .contact .info-box h3 {
        font-size: 1.75rem;
    }
}

.contact .info-box p {
    opacity: 0.8;
    margin-bottom: 2rem;
}

.contact .info-box a {
    color: var(--contrast-color);
}

@media (max-width: 992px) {
    .contact .info-box {
        padding: 1.5rem;
    }
}

.contact .info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact .info-item:last-child {
    margin-bottom: 0;
}

.contact .info-item .icon-box {
    width: 3.5rem;
    height: 3.5rem;
    background-color: var(--surface-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: 0.3s;
}

.contact .info-item .icon-box i {
    font-size: 1.5rem;
    color: var(--contrast-color);
}

.contact .info-item:hover .icon-box {
    background-color: var(--accent-color);
}

.contact .info-item .content h4 {
    color: var(--contrast-color);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.contact .info-item .content p {
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.contact .info-item .content p:last-child {
    margin-bottom: 0;
}

.contact .contact-form {
    background-color: var(--surface-color);
    padding: 3rem;
    border-radius: 1rem;
    height: 100%;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
    .contact .contact-form {
        padding: 1.5rem;
    }
}

.contact .contact-form h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .contact .contact-form h3 {
        font-size: 1.75rem;
    }
}

.contact .contact-form p {
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    margin-bottom: 2rem;
}

.contact .contact-form .form-control,
.contact .contact-form .form-select {
    padding: 0.875rem 1.25rem;
    border-color: color-mix(in srgb, var(--default-color), transparent 90%);
    border-radius: 0.5rem;
    background-color: transparent;
    color: var(--default-color);
}

.contact .contact-form .form-control:focus,
.contact .contact-form .form-select:focus {
    box-shadow: none;
    border-color: var(--accent-color);
}

.contact .contact-form .form-control::placeholder,
.contact .contact-form .form-select::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.contact .contact-form .btn {
    background-color: color-mix(in srgb, var(--surface-color), transparent 80%);
    color: var(--contrast-color);
    padding: 1rem 2rem;
    border-radius: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: 0.3s;
}

.contact .contact-form .btn i {
    font-size: 1.25rem;
}

.contact .contact-form .btn:hover {
    background-color: color-mix(in srgb, var(--surface-color), transparent 70%);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
    /* Add your styles here */
}


/* ============================================================
   CERTIFICATION CATEGORIES
============================================================ */

.categories-section {
    position: relative;

    padding: 100px 0;

    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(30, 91, 165, 0.05),
            transparent 30%
        ),
        radial-gradient(
            circle at 90% 80%,
            rgba(52, 125, 196, 0.05),
            transparent 30%
        ),
        #f8fafc;

    overflow: hidden;
}


/* ============================================================
   HEADING
============================================================ */

.categories-heading {
    max-width: 720px;

    margin: 0 auto 60px;

    text-align: center;
}


.section-eyebrow {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    margin-bottom: 18px;

    padding: 8px 14px;

    color: #1e5ba5;

    background: rgba(30, 91, 165, 0.07);

    border: 1px solid rgba(30, 91, 165, 0.10);

    border-radius: 50px;

    font-size: 12px;
    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.7px;
}


.section-eyebrow i {
    font-size: 14px;
}


.categories-heading h1 {
    margin: 0 0 18px;

    color: #172033;

    font-size: clamp(36px, 4vw, 52px);

    line-height: 1.1;

    font-weight: 800;

    letter-spacing: -1.5px;
}


.categories-heading h1 span {
    color: #1e5ba5;
}


.categories-heading p {
    max-width: 620px;

    margin: 0 auto;

    color: #718096;

    font-size: 16px;

    line-height: 1.8;
}


/* ============================================================
   CARD
============================================================ */

.certification-card {
    position: relative;

    height: 100%;

    display: flex;

    flex-direction: column;

    padding: 34px;

    background: #ffffff;

    border: 1px solid #e7edf3;

    border-radius: 16px;

    box-shadow:
        0 8px 30px rgba(20, 45, 75, 0.055);

    overflow: hidden;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}


/* Top accent */

.certification-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;
    right: 0;

    height: 3px;

    background: linear-gradient(
        90deg,
        #1e5ba5,
        #4a8bca
    );

    transform: scaleX(0);

    transform-origin: left;

    transition: transform 0.35s ease;
}


.certification-card:hover {
    transform: translateY(-8px);

    border-color: rgba(30, 91, 165, 0.18);

    box-shadow:
        0 20px 45px rgba(20, 45, 75, 0.12);
}


.certification-card:hover::before {
    transform: scaleX(1);
}


/* ============================================================
   NUMBER
============================================================ */

.category-number {
    position: absolute;

    top: 20px;
    right: 24px;

    color: #edf2f7;

    font-size: 42px;

    line-height: 1;

    font-weight: 800;

    user-select: none;
}


/* ============================================================
   ICON
============================================================ */

.category-icon {
    position: relative;

    width: 62px;
    height: 62px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

    color: #1e5ba5;

    background:
        linear-gradient(
            135deg,
            #eef5fc,
            #f7faff
        );

    border: 1px solid #e0ebf5;

    border-radius: 14px;

    font-size: 27px;

    transition: all 0.35s ease;
}


.certification-card:hover .category-icon {
    color: #ffffff;

    background: #1e5ba5;

    border-color: #1e5ba5;

    transform: translateY(-3px);
}


/* ============================================================
   CONTENT
============================================================ */

.category-content {
    flex: 1;
}


.category-label {
    display: block;

    margin-bottom: 8px;

    color: #8a96a6;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 0.8px;

    text-transform: uppercase;
}


.category-content h3 {
    margin: 0 0 13px;

    color: #1c2b3e;

    font-size: 21px;

    line-height: 1.35;

    font-weight: 750;
}


.category-content p {
    margin: 0;

    color: #788597;

    font-size: 13px;

    line-height: 1.75;
}


/* ============================================================
   ACTION
============================================================ */

.category-action {
    margin-top: 30px;

    padding-top: 22px;

    border-top: 1px solid #edf1f5;
}


.category-btn {
    display: inline-flex;

    align-items: center;

    justify-content: space-between;

    gap: 12px;

    width: 100%;

    padding: 12px 15px;

    color: #1e5ba5;

    background: #f5f8fc;

    border-radius: 9px;

    font-size: 13px;

    font-weight: 700;

    text-decoration: none;

    transition: all 0.3s ease;
}


.category-btn i {
    font-size: 16px;

    transition: transform 0.25s ease;
}


.category-btn:hover {
    color: #ffffff;

    background: #1e5ba5;
}


.category-btn:hover i {
    transform: translateX(5px);
}


/* ============================================================
   EMPTY STATE
============================================================ */

.categories-empty {
    max-width: 600px;

    margin: 20px auto 0;

    padding: 60px 30px;

    text-align: center;

    background: #ffffff;

    border: 1px solid #e6ebf1;

    border-radius: 16px;

    box-shadow: 0 10px 35px rgba(20, 45, 75, 0.06);
}


.empty-icon {
    width: 75px;
    height: 75px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin: 0 auto 20px;

    color: #8b98a8;

    background: #f3f6f9;

    border-radius: 50%;

    font-size: 32px;
}


.categories-empty h3 {
    margin-bottom: 10px;

    color: #26364a;

    font-size: 21px;

    font-weight: 700;
}


.categories-empty p {
    max-width: 420px;

    margin: 0 auto 25px;

    color: #7c8999;

    font-size: 14px;

    line-height: 1.7;
}


.empty-btn {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 11px 17px;

    color: #ffffff;

    background: #1e5ba5;

    border-radius: 8px;

    font-size: 13px;

    font-weight: 700;

    text-decoration: none;

    transition: 0.25s ease;
}


.empty-btn:hover {
    color: #ffffff;

    background: #174b88;

    transform: translateY(-2px);
}


/* ============================================================
   TABLET
============================================================ */

@media (max-width: 991px) {

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

    .categories-heading {
        margin-bottom: 45px;
    }

    .certification-card {
        padding: 28px;
    }

}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 767px) {

    .categories-section {
        padding: 65px 0;
    }

    .categories-heading {
        margin-bottom: 35px;
    }

    .categories-heading h1 {
        font-size: 36px;
    }

    .categories-heading p {
        font-size: 14px;
    }

    .certification-card {
        padding: 25px;
    }

}


/* ============================================================
   SMALL MOBILE
============================================================ */

@media (max-width: 480px) {

    .categories-section {
        padding: 55px 0;
    }

    .categories-heading h1 {
        font-size: 32px;
    }

    .section-eyebrow {
        font-size: 10px;
    }

    .category-content h3 {
        font-size: 19px;
    }

}

/* ============================================================
   ABOUT PAGE
============================================================ */

.about-page {
    position: relative;

    min-height: 620px;

    display: flex;

    align-items: center;

    padding: 90px 0;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(30, 91, 165, 0.07),
            transparent 30%
        ),
        radial-gradient(
            circle at 85% 80%,
            rgba(52, 125, 196, 0.06),
            transparent 30%
        ),
        #f8fafc;
}


/* ============================================================
   MAIN CARD
============================================================ */

.about-card {
    position: relative;

    max-width: 920px;

    margin: 0 auto;

    padding: 65px 80px;

    text-align: center;

    background: rgba(255, 255, 255, 0.96);

    border: 1px solid #e5ebf1;

    border-radius: 22px;

    box-shadow:
        0 25px 70px rgba(22, 45, 75, 0.09);

    overflow: hidden;
}


/* ============================================================
   CARD TOP ACCENT
============================================================ */

.about-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 50%;

    width: 150px;
    height: 4px;

    transform: translateX(-50%);

    background: linear-gradient(
        90deg,
        #1e5ba5,
        #5d9bd0
    );

    border-radius: 0 0 10px 10px;
}


/* ============================================================
   CONTENT
============================================================ */

.about-card-content {
    position: relative;

    z-index: 3;

    max-width: 720px;

    margin: 0 auto;
}


/* ============================================================
   BADGE
============================================================ */

.about-badge {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 22px;

    padding: 8px 15px;

    color: #1e5ba5;

    background: #eef5fc;

    border: 1px solid #dceaf7;

    border-radius: 50px;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: .6px;

    text-transform: uppercase;
}


.about-badge i {
    font-size: 14px;
}


/* ============================================================
   TITLE
============================================================ */

.about-card h1 {
    margin: 0;

    color: #172033;

    font-size: clamp(42px, 5vw, 58px);

    line-height: 1.1;

    font-weight: 800;

    letter-spacing: -1.5px;
}


.about-card h1 span {
    color: #1e5ba5;
}


/* ============================================================
   DIVIDER
============================================================ */

.about-divider {
    width: 55px;
    height: 3px;

    margin: 25px auto 28px;

    background: #1e5ba5;

    border-radius: 10px;
}


/* ============================================================
   TEXT
============================================================ */

.about-card p {
    max-width: 680px;

    margin: 0 auto 17px;

    color: #718096;

    font-size: 14px;

    line-height: 1.85;
}


.about-card .about-lead {
    margin-bottom: 20px;

    color: #536276;

    font-size: 16px;

    line-height: 1.8;

    font-weight: 500;
}


/* ============================================================
   HIGHLIGHT
============================================================ */

.about-highlight {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-top: 12px;

    padding: 13px 20px;

    color: #1e5ba5;

    background: #f5f9fd;

    border: 1px solid #e4edf6;

    border-radius: 10px;

    font-size: 12px;

    font-weight: 600;

    line-height: 1.5;
}


.about-highlight i {
    font-size: 19px;

    opacity: .55;
}


/* ============================================================
   CTA
============================================================ */

.about-action {
    margin-top: 30px;
}


.about-cta-btn {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 13px 20px;

    color: #ffffff !important;

    background: #1e5ba5;

    border-radius: 9px;

    font-size: 12px;

    font-weight: 700;

    text-decoration: none;

    box-shadow:
        0 8px 22px rgba(30, 91, 165, .18);

    transition: all .3s ease;
}


.about-cta-btn:hover {
    background: #174b88;

    transform: translateY(-3px);

    box-shadow:
        0 12px 28px rgba(30, 91, 165, .25);
}


.about-cta-btn i {
    transition: transform .25s ease;
}


.about-cta-btn:hover i {
    transform: translateX(5px);
}


/* ============================================================
   DECORATIVE CIRCLES
============================================================ */

.about-decoration {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;
}


.about-decoration-one {
    width: 240px;
    height: 240px;

    top: -130px;
    left: -100px;

    border: 1px solid rgba(30, 91, 165, .08);

    animation: aboutRotate 18s linear infinite;
}


.about-decoration-two {
    width: 320px;
    height: 320px;

    right: -170px;
    bottom: -190px;

    border: 1px solid rgba(30, 91, 165, .07);

    animation: aboutRotateReverse 22s linear infinite;
}


/* ============================================================
   FLOATING ICONS
============================================================ */

.about-floating-icon {
    position: absolute;

    z-index: 5;

    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #1e5ba5;

    background: #ffffff;

    border: 1px solid #e4ebf2;

    border-radius: 13px;

    box-shadow:
        0 10px 30px rgba(20, 45, 75, .10);

    font-size: 19px;

    animation: aboutFloat 4s ease-in-out infinite;
}


.about-floating-one {
    top: 55px;
    left: 55px;
}


.about-floating-two {
    right: 55px;
    bottom: 55px;

    animation-delay: 1.5s;
}


/* ============================================================
   ANIMATIONS
============================================================ */

@keyframes aboutFloat {

    0%,
    100% {
        transform: translateY(0);
    }

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

}


@keyframes aboutRotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}


@keyframes aboutRotateReverse {

    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }

}


/* ============================================================
   TABLET
============================================================ */

@media (max-width: 991px) {

    .about-page {
        padding: 70px 0;
    }

    .about-card {
        padding: 55px 55px;
    }

    .about-floating-one {
        left: 30px;
    }

    .about-floating-two {
        right: 30px;
    }

}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 767px) {

    .about-page {
        min-height: auto;

        padding: 55px 0;
    }

    .about-card {
        padding: 45px 25px;

        border-radius: 17px;
    }

    .about-card h1 {
        font-size: 38px;
    }

    .about-card .about-lead {
        font-size: 14px;
    }

    .about-card p {
        font-size: 13px;

        line-height: 1.8;
    }

    .about-highlight {
        display: flex;

        text-align: left;

        align-items: flex-start;
    }

    .about-floating-icon {
        width: 40px;
        height: 40px;

        font-size: 16px;
    }

    .about-floating-one {
        top: 18px;
        left: 18px;
    }

    .about-floating-two {
        right: 18px;
        bottom: 18px;
    }

}


/* ============================================================
   SMALL MOBILE
============================================================ */

@media (max-width: 480px) {

    .about-card {
        padding: 42px 20px;
    }

    .about-card h1 {
        font-size: 34px;
    }

    .about-badge {
        font-size: 9px;
    }

    .about-highlight {
        font-size: 11px;
    }

    .about-cta-btn {
        width: 100%;

        justify-content: center;
    }

}



/* ============================================================
   CONTACT PAGE
============================================================ */

.contact-page {
    position: relative;

    padding: 80px 0;

    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(30, 91, 165, 0.06),
            transparent 30%
        ),
        radial-gradient(
            circle at 90% 80%,
            rgba(52, 125, 196, 0.05),
            transparent 30%
        ),
        #f8fafc;

    overflow: hidden;
}


/* ============================================================
   HEADING
============================================================ */

.contact-heading {
    max-width: 680px;

    margin: 0 auto 50px;

    text-align: center;
}


.contact-label {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 17px;

    padding: 8px 14px;

    color: #1e5ba5;

    background: rgba(30, 91, 165, 0.07);

    border: 1px solid rgba(30, 91, 165, 0.1);

    border-radius: 50px;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: .6px;

    text-transform: uppercase;
}


.contact-heading h1 {
    margin: 0 0 15px;

    color: #172033;

    font-size: clamp(38px, 4vw, 52px);

    line-height: 1.1;

    font-weight: 800;

    letter-spacing: -1.2px;
}


.contact-heading h1 span {
    color: #1e5ba5;
}


.contact-heading p {
    max-width: 600px;

    margin: auto;

    color: #718096;

    font-size: 15px;

    line-height: 1.8;
}


/* ============================================================
   INFORMATION CARD
============================================================ */

.contact-info-card {
    position: relative;

    height: 100%;

    padding: 35px;

    color: #ffffff;

    background:
        linear-gradient(
            145deg,
            #173f78,
            #1e5ba5
        );

    border-radius: 17px;

    overflow: hidden;

    box-shadow:
        0 20px 45px rgba(30, 91, 165, .15);
}


.contact-info-top {
    position: relative;

    z-index: 2;
}


.contact-info-label {
    display: block;

    margin-bottom: 10px;

    color: rgba(255, 255, 255, .65);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;
}


.contact-info-top h2 {
    margin: 0 0 13px;

    color: #ffffff;

    font-size: 28px;

    line-height: 1.25;

    font-weight: 750;
}


.contact-info-top p {
    margin: 0;

    color: rgba(255, 255, 255, .72);

    font-size: 13px;

    line-height: 1.8;
}


/* ============================================================
   INFO ITEMS
============================================================ */

.contact-info-item {
    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    gap: 14px;

    margin-top: 28px;

    padding-top: 22px;

    border-top: 1px solid rgba(255, 255, 255, .12);
}


.contact-info-icon {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #ffffff;

    background: rgba(255, 255, 255, .1);

    border: 1px solid rgba(255, 255, 255, .12);

    border-radius: 10px;

    font-size: 17px;
}


.contact-info-item span {
    display: block;

    margin-bottom: 3px;

    color: rgba(255, 255, 255, .55);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .7px;

    text-transform: uppercase;
}


.contact-info-item a,
.contact-info-item strong {
    color: #ffffff;

    font-size: 12px;

    font-weight: 600;

    text-decoration: none;
}


.contact-info-item a:hover {
    text-decoration: underline;
}


/* ============================================================
   DECORATION
============================================================ */

.contact-info-decoration {
    position: absolute;

    right: -50px;
    bottom: -60px;

    width: 190px;
    height: 190px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, .08);

    border-radius: 50%;

    color: rgba(255, 255, 255, .08);

    font-size: 55px;

    animation: contactRotate 20s linear infinite;
}


@keyframes contactRotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}


/* ============================================================
   FORM CARD
============================================================ */

.contact-form-card {
    height: 100%;

    padding: 35px;

    background: #ffffff;

    border: 1px solid #e5ebf1;

    border-radius: 17px;

    box-shadow:
        0 15px 40px rgba(20, 45, 75, .06);
}


.contact-form-header {
    margin-bottom: 25px;
}


.contact-form-header > span {
    color: #1e5ba5;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .8px;

    text-transform: uppercase;
}


.contact-form-header h2 {
    margin: 5px 0 7px;

    color: #1b293c;

    font-size: 25px;

    font-weight: 750;
}


.contact-form-header p {
    margin: 0;

    color: #8490a0;

    font-size: 12px;
}


/* ============================================================
   LABELS
============================================================ */

.contact-form-card label {
    display: block;

    margin-bottom: 7px;

    color: #334258;

    font-size: 11px;

    font-weight: 700;
}


.contact-form-card label span {
    color: #1e5ba5;
}


/* ============================================================
   INPUTS
============================================================ */

.contact-input,
.contact-textarea {
    position: relative;
}


.contact-input i,
.contact-textarea i {
    position: absolute;

    top: 50%;
    left: 14px;

    z-index: 2;

    color: #9aa6b5;

    font-size: 14px;

    transform: translateY(-50%);

    pointer-events: none;

    transition: .25s ease;
}


.contact-textarea i {
    top: 18px;

    transform: none;
}


.contact-input input,
.contact-textarea textarea {
    width: 100%;

    color: #26364a;

    background: #f9fbfd;

    border: 1px solid #e2e8ef;

    border-radius: 8px;

    outline: none;

    font-family: inherit;

    font-size: 12px;

    transition: all .25s ease;
}


.contact-input input {
    height: 45px;

    padding: 0 14px 0 40px;
}


.contact-textarea textarea {
    min-height: 135px;

    padding: 13px 14px 13px 40px;

    resize: vertical;
}


.contact-input input::placeholder,
.contact-textarea textarea::placeholder {
    color: #a4aebb;
}


.contact-input input:focus,
.contact-textarea textarea:focus {
    background: #ffffff;

    border-color: #1e5ba5;

    box-shadow:
        0 0 0 3px rgba(30, 91, 165, .08);
}


.contact-input:focus-within i,
.contact-textarea:focus-within i {
    color: #1e5ba5;
}


/* ============================================================
   SUBMIT
============================================================ */

.contact-submit {
    width: 100%;

    min-height: 45px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    margin-top: 5px;

    color: #ffffff;

    background: #1e5ba5;

    border: 0;

    border-radius: 8px;

    font-family: inherit;

    font-size: 12px;

    font-weight: 700;

    cursor: pointer;

    box-shadow:
        0 8px 20px rgba(30, 91, 165, .16);

    transition: all .3s ease;
}


.contact-submit:hover {
    background: #174b88;

    transform: translateY(-2px);

    box-shadow:
        0 12px 25px rgba(30, 91, 165, .22);
}


.contact-submit i {
    transition: transform .25s ease;
}


.contact-submit:hover i {
    transform: translateX(5px);
}


/* ============================================================
   ALERTS
============================================================ */

.contact-alert {
    display: flex;

    align-items: flex-start;

    gap: 12px;

    margin-bottom: 22px;

    padding: 13px 15px;

    border-radius: 9px;

    font-size: 11px;
}


.contact-alert > i {
    margin-top: 2px;

    font-size: 16px;
}


.contact-alert strong {
    display: block;

    margin-bottom: 3px;

    font-size: 11px;
}


.contact-alert span {
    display: block;

    line-height: 1.5;
}


.contact-alert ul {
    margin: 5px 0 0;
    padding-left: 16px;
}


.contact-alert-success {
    color: #21683d;

    background: #edf9f2;

    border: 1px solid #d4efdf;
}


.contact-alert-error {
    color: #9b3535;

    background: #fff2f2;

    border: 1px solid #f3dada;
}


/* ============================================================
   TABLET
============================================================ */

@media (max-width: 991px) {

    .contact-page {
        padding: 65px 0;
    }

    .contact-heading {
        margin-bottom: 40px;
    }

}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 767px) {

    .contact-page {
        padding: 55px 0;
    }

    .contact-heading h1 {
        font-size: 36px;
    }

    .contact-heading p {
        font-size: 14px;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 27px;
    }

    .contact-info-top h2 {
        font-size: 24px;
    }

}


/* ============================================================
   CONTACT SECTION
============================================================ */

.contact-section {
    position: relative;

    padding: 85px 0;

    background:
        radial-gradient(
            circle at 5% 15%,
            rgba(30, 91, 165, .055),
            transparent 28%
        ),
        radial-gradient(
            circle at 95% 85%,
            rgba(30, 91, 165, .045),
            transparent 28%
        ),
        #f8fafc;

    overflow: hidden;
}


/* ============================================================
   INTRO
============================================================ */

.contact-intro {
    max-width: 650px;

    margin: 0 auto 48px;

    text-align: center;
}


.contact-eyebrow {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 18px;

    color: #1e5ba5;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;

    text-transform: uppercase;
}


.contact-eyebrow i {
    font-size: 14px;
}


.contact-intro h1 {
    margin: 0 0 14px;

    color: #172033;

    font-size: clamp(40px, 5vw, 56px);

    line-height: 1.08;

    font-weight: 800;

    letter-spacing: -1.7px;
}


.contact-intro h1 span {
    color: #1e5ba5;
}


.contact-intro p {
    max-width: 580px;

    margin: auto;

    color: #748195;

    font-size: 14px;

    line-height: 1.85;
}


/* ============================================================
   MAIN PANEL
============================================================ */

.contact-panel {
    position: relative;

    max-width: 1080px;

    margin: auto;

    background: #ffffff;

    border: 1px solid #e3e9ef;

    border-radius: 16px;

    box-shadow:
        0 25px 70px rgba(25, 48, 75, .08);

    overflow: hidden;
}


.contact-panel-glow {
    position: absolute;

    width: 400px;
    height: 400px;

    right: -220px;
    bottom: -230px;

    border: 1px solid rgba(30, 91, 165, .06);

    border-radius: 50%;

    pointer-events: none;
}


/* ============================================================
   SIDEBAR
============================================================ */

.contact-sidebar {
    position: relative;

    height: 100%;

    min-height: 610px;

    padding: 45px 38px;

    color: #ffffff;

    background:
        linear-gradient(
            145deg,
            #173f78 0%,
            #1e5ba5 100%
        );

    overflow: hidden;
}


.contact-sidebar::after {
    content: "";

    position: absolute;

    width: 230px;
    height: 230px;

    right: -120px;
    bottom: -110px;

    border: 1px solid rgba(255,255,255,.08);

    border-radius: 50%;
}


.contact-sidebar-content {
    position: relative;

    z-index: 2;
}


.contact-sidebar-small {
    display: block;

    margin-bottom: 13px;

    color: rgba(255,255,255,.58);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.2px;
}


.contact-sidebar h2 {
    margin: 0 0 16px;

    color: #ffffff;

    font-size: 29px;

    line-height: 1.2;

    font-weight: 750;
}


.contact-sidebar > .contact-sidebar-content > p {
    margin: 0;

    color: rgba(255,255,255,.72);

    font-size: 13px;

    line-height: 1.85;
}


/* ============================================================
   CONTACT DETAILS
============================================================ */

.contact-details {
    margin-top: 40px;
}


.contact-detail {
    display: flex;

    align-items: center;

    gap: 14px;

    padding: 20px 0;

    border-top: 1px solid rgba(255,255,255,.12);
}


.contact-detail-icon {
    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #ffffff;

    background: rgba(255,255,255,.10);

    border: 1px solid rgba(255,255,255,.10);

    border-radius: 9px;

    font-size: 16px;
}


.contact-detail small {
    display: block;

    margin-bottom: 4px;

    color: rgba(255,255,255,.50);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .7px;

    text-transform: uppercase;
}


.contact-detail a,
.contact-detail strong {
    color: #ffffff;

    font-size: 12px;

    font-weight: 600;

    text-decoration: none;
}


.contact-detail a:hover {
    text-decoration: underline;
}


/* ============================================================
   SIDEBAR DECORATION
============================================================ */

.contact-sidebar-decoration {
    position: absolute;

    right: 28px;
    bottom: 25px;

    color: rgba(255,255,255,.08);

    font-size: 100px;

    transform: rotate(-12deg);

    animation: contactAwardFloat 5s ease-in-out infinite;
}


@keyframes contactAwardFloat {

    0%,
    100% {
        transform: rotate(-12deg) translateY(0);
    }

    50% {
        transform: rotate(-8deg) translateY(-8px);
    }

}


/* ============================================================
   FORM WRAPPER
============================================================ */

.contact-form-wrapper {
    padding: 45px 48px;
}


.contact-form-heading {
    margin-bottom: 28px;
}


.contact-form-heading > span {
    color: #1e5ba5;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1px;
}


.contact-form-heading h2 {
    margin: 5px 0 7px;

    color: #1c2a3d;

    font-size: 25px;

    font-weight: 750;
}


.contact-form-heading p {
    margin: 0;

    color: #8490a0;

    font-size: 12px;
}


/* ============================================================
   FORM FIELDS
============================================================ */

.form-field label {
    display: block;

    margin-bottom: 8px;

    color: #354357;

    font-size: 10px;

    font-weight: 750;

    letter-spacing: .1px;
}


.form-field label b {
    color: #1e5ba5;
}


.form-field input,
.form-field textarea {
    width: 100%;

    color: #26364a;

    background: #fbfcfd;

    border: 1px solid #dfe6ed;

    border-radius: 7px;

    outline: none;

    font-family: inherit;

    font-size: 12px;

    transition:
        border-color .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}


.form-field input {
    height: 45px;

    padding: 0 13px;
}


.form-field textarea {
    min-height: 145px;

    padding: 13px;

    resize: vertical;

    line-height: 1.7;
}


.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #a7b0bc;
}


.form-field input:focus,
.form-field textarea:focus {
    background: #ffffff;

    border-color: #1e5ba5;

    box-shadow:
        0 0 0 3px rgba(30,91,165,.07);
}


/* ============================================================
   CHARACTER NOTE
============================================================ */

.character-note {
    margin-top: 7px;

    color: #9aa4b1;

    font-size: 9px;
}


/* ============================================================
   SUBMIT ROW
============================================================ */

.contact-submit-row {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding-top: 3px;
}


.secure-note {
    display: flex;

    align-items: center;

    gap: 7px;

    color: #929daa;

    font-size: 9px;
}


.secure-note i {
    color: #1e5ba5;

    font-size: 13px;
}


.contact-submit {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    min-width: 155px;

    height: 45px;

    padding: 0 20px;

    color: #ffffff;

    background: #1e5ba5;

    border: 0;

    border-radius: 7px;

    font-family: inherit;

    font-size: 11px;

    font-weight: 750;

    cursor: pointer;

    box-shadow:
        0 7px 18px rgba(30,91,165,.16);

    transition: all .25s ease;
}


.contact-submit:hover {
    background: #174b88;

    transform: translateY(-2px);

    box-shadow:
        0 10px 24px rgba(30,91,165,.22);
}


.contact-submit i {
    transition: transform .25s ease;
}


.contact-submit:hover i {
    transform: translateX(4px);
}


/* ============================================================
   ALERTS
============================================================ */

.contact-message {
    display: flex;

    align-items: flex-start;

    gap: 11px;

    margin-bottom: 22px;

    padding: 13px 15px;

    border-radius: 7px;

    font-size: 11px;
}


.contact-message > i {
    margin-top: 1px;

    font-size: 15px;
}


.contact-message strong {
    display: block;

    margin-bottom: 3px;
}


.contact-message p {
    margin: 0;

    line-height: 1.5;
}


.contact-message ul {
    margin: 5px 0 0;

    padding-left: 15px;
}


.contact-message.success {
    color: #246b42;

    background: #eff9f3;

    border: 1px solid #d8efdf;
}


.contact-message.error {
    color: #963e3e;

    background: #fff3f3;

    border: 1px solid #f0dada;
}


/* ============================================================
   BOTTOM NOTE
============================================================ */

.contact-bottom-note {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 7px;

    margin-top: 25px;

    color: #99a3af;

    font-size: 9px;

    letter-spacing: .1px;
}


.contact-bottom-note i {
    color: #1e5ba5;

    font-size: 12px;
}


/* ============================================================
   TABLET
============================================================ */

@media (max-width: 991px) {

    .contact-section {
        padding: 70px 0;
    }

    .contact-sidebar {
        min-height: auto;

        padding: 35px;
    }

    .contact-form-wrapper {
        padding: 38px 35px;
    }

}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 767px) {

    .contact-section {
        padding: 55px 0;
    }

    .contact-intro {
        margin-bottom: 35px;
    }

    .contact-intro h1 {
        font-size: 38px;
    }

    .contact-intro p {
        font-size: 13px;
    }

    .contact-panel {
        border-radius: 13px;
    }

    .contact-sidebar {
        padding: 30px 25px;
    }

    .contact-sidebar h2 {
        font-size: 25px;
    }

    .contact-form-wrapper {
        padding: 30px 25px;
    }

    .contact-submit-row {
        align-items: stretch;

        flex-direction: column;
    }

    .secure-note {
        justify-content: center;
    }

    .contact-submit {
        width: 100%;
    }

}


/* ============================================================
   SMALL MOBILE
============================================================ */

@media (max-width: 480px) {

    .contact-intro h1 {
        font-size: 34px;
    }

    .contact-sidebar,
    .contact-form-wrapper {
        padding: 25px 20px;
    }

    .contact-detail {
        padding: 17px 0;
    }

}