

    :root {
        --primary: #C69A39;
        --primary-dark: #B3882A;
        --primary-light: #F4EAD8;
        --dark: #1B2A4A;
        --text: #233350;
        --muted: #5C687D;
        --border: rgba(198, 154, 57, 0.25);
        --white: #ffffff;
        --sidebar-width: 320px;
        --bg-gradient: linear-gradient(135deg, #FAF7F2 0%, #F5EFE6 50%, #ffffff 100%);
        --glass-bg: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.5) 100%);
        --glass-border: rgba(198, 154, 57, 0.25);
        --glass-blur: blur(20px);
        --glass-shadow: 0 12px 40px 0 rgba(27, 42, 74, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 -1px 0 rgba(198, 154, 57, 0.1);
        --font-heading: "Playfair Display", Georgia, "Times New Roman", serif;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: "Outfit", sans-serif;
        background: var(--bg-gradient) no-repeat fixed;
        background-size: cover;
        color: var(--text);
    }

    h1, h2, h3, .hero-title, .y6-page-title h1 {
        font-family: var(--font-heading);
        letter-spacing: -0.5px;
    }

    a {
        text-decoration: none;
    }


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

    .portfolio-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        width: var(--sidebar-width);
        height: 100vh;
        background: var(--glass-bg);
        backdrop-filter: var(--glass-blur);
        -webkit-backdrop-filter: var(--glass-blur);
        border-right: 1px solid var(--glass-border);
        z-index: 1050;

        display: flex;
        flex-direction: column;

        box-shadow: 5px 0 25px rgba(27, 42, 74, 0.04);
    }


    /* LOGO */

    .sidebar-logo {
        padding: 35px 28px 28px;
    }

    .sidebar-logo a {
        display: inline-flex;
        align-items: center;
    }

    .sidebar-logo img {
        max-width: 235px;
        max-height: 100px;
        object-fit: contain;
    }

    .logo-placeholder {
        font-size: 28px;
        font-weight: 800;
        color: var(--dark);
    }


    /* SEARCH */

    .sidebar-search {
        padding: 0 16px 18px;
    }

    .search-wrapper {
        height: 48px;
        background: rgba(255, 255, 255, 0.4);
        border-radius: 30px;
        border: 2px solid rgba(198, 154, 57, 0.12);

        display: flex;
        align-items: center;
        overflow: hidden;

        transition: .3s ease;
    }

    .search-wrapper:focus-within {
        border-color: var(--primary);
        background: rgba(255, 255, 255, 0.8);
    }

    .search-wrapper input {
        border: 0;
        outline: none;
        background: transparent;
        width: 100%;
        height: 100%;
        padding: 0 18px;
        font-size: 16px;
        color: var(--dark);
    }

    .search-wrapper button {
        width: 50px;
        height: 100%;
        border: 0;
        background: transparent;
        font-size: 20px;
        color: var(--dark);
    }


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

    .sidebar-navigation {
        border-top: 1px solid var(--border);
        overflow-y: auto;
        flex: 1;
    }

    .sidebar-navigation::-webkit-scrollbar {
        width: 4px;
    }

    .sidebar-navigation::-webkit-scrollbar-thumb {
        background: rgba(198, 154, 57, 0.2);
    }

    .sidebar-menu {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .sidebar-menu li {
        border-bottom: 1px solid var(--border);
    }

    .sidebar-menu li a {
        position: relative;

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

        padding: 19px 18px;

        color: #555;
        font-size: 16px;
        font-weight: 600;

        transition: .3s ease;
    }

    .sidebar-menu li a i {
        font-size: 18px;
        width: 20px;
        transition: .3s ease;
    }

    .sidebar-menu li a::before {
        content: "";

        position: absolute;
        left: 0;
        top: 0;

        width: 4px;
        height: 100%;

        background: var(--primary);

        transform: scaleY(0);
        transition: .3s ease;
    }

    .sidebar-menu li a:hover,
    .sidebar-menu li a.active {
        color: var(--dark);
        background: rgba(198, 154, 57, 0.08);
    }

    .sidebar-menu li a:hover::before,
    .sidebar-menu li a.active::before {
        transform: scaleY(1);
    }

    .sidebar-menu li a:hover i,
    .sidebar-menu li a.active i {
        color: var(--primary-dark);
        transform: translateX(3px);
    }


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

    .sidebar-bottom {
        padding: 18px;
        border-top: 1px solid var(--border);
        background: transparent;
    }

    .sidebar-contact-btn {
        width: 100%;
        border: 0;
        background: var(--primary);
        color: #fff;

        padding: 13px 20px;
        border-radius: 10px;

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

        transition: .3s ease;
    }

    .sidebar-contact-btn:hover {
        background: var(--primary-dark);
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(198, 154, 57, 0.2);
    }

    .sidebar-social {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 15px;
    }

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

        border-radius: 50%;
        background: rgba(255, 255, 255, 0.5);

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

        color: #555;

        transition: .3s ease;
    }

    .sidebar-social a:hover {
        background: var(--primary);
        color: #fff;
        transform: translateY(-3px);
    }


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

    .portfolio-main {
        margin-left: var(--sidebar-width);
        min-height: 100vh;
    }


    /* =========================================
       HERO
    ========================================= */

    .portfolio-hero {
        min-height: 100vh;

        display: flex;
        align-items: center;

        padding: 80px 7%;
        position: relative;
        overflow: hidden;
    }

    .hero-content {
        position: relative;
        z-index: 2;
    }

    .hero-small-title {
        display: inline-flex;
        align-items: center;
        gap: 10px;

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

        color: var(--primary-dark);

        margin-bottom: 18px;
    }

    .hero-small-title span {
        width: 45px;
        height: 2px;
        background: var(--primary);
    }

    .hero-title {
        font-size: clamp(48px, 5vw, 78px);
        line-height: 1.05;
        font-weight: 800;
        color: var(--dark);
        margin-bottom: 25px;
    }

    .hero-title span {
        position: relative;
        z-index: 1;
    }

    .hero-title span::after {
        content: "";

        position: absolute;
        left: 0;
        bottom: 4px;

        width: 100%;
        height: 12px;

        background: rgba(198, 154, 57, 0.15);

        z-index: -1;
    }

    .hero-description {
        max-width: 680px;
        font-size: 18px;
        line-height: 1.8;
        color: #666;
        margin-bottom: 32px;
    }

    .hero-buttons {
        display: flex;
        flex-wrap: wrap;
        gap: 14px;
    }

    .btn-main {
        padding: 14px 28px;
        border-radius: 8px;

        background: var(--primary);
        color: #fff;

        font-weight: 700;

        transition: .3s ease;
    }

    .btn-main:hover {
        background: var(--primary-dark);
        color: #fff;
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(198, 154, 57, 0.2);
    }

    .btn-outline {
        padding: 13px 28px;
        border-radius: 8px;

        border: 1px solid #ddd;
        color: var(--dark);

        font-weight: 700;

        transition: .3s ease;
    }

    .btn-outline:hover {
        border-color: var(--primary);
        background: rgba(198, 154, 57, 0.06);
    }

    .hero-competencies-glass {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        margin-top: 35px;
        max-width: 680px;
    }

    .comp-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 10px 18px;
        background: var(--glass-bg);
        border: 1px solid var(--glass-border);
        border-radius: 30px;
        backdrop-filter: var(--glass-blur);
        -webkit-backdrop-filter: var(--glass-blur);
        box-shadow: var(--glass-shadow);
        color: var(--dark);
        font-size: 14px;
        font-weight: 700;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        cursor: default;
    }

    .comp-badge i {
        color: var(--primary);
        font-size: 16px;
    }

    .comp-badge:hover {
        transform: translateY(-2px);
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.45) 100%);
        border-color: rgba(198, 154, 57, 0.35);
        box-shadow: 0 8px 24px rgba(198, 154, 57, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    }


    /* =========================================
       HERO IMAGE
    ========================================= */

    .hero-image-wrap {
        position: relative;
        width: 100%;
        max-width: 470px;
        margin-left: auto;
    }

    .hero-image-bg {
        position: absolute;
        right: -18px;
        top: -18px;

        width: 85%;
        height: 85%;

        background: var(--primary);

        z-index: 0;
    }

    .hero-image {
        position: relative;
        z-index: 2;

        width: 100%;
        aspect-ratio: 4 / 5;

        object-fit: cover;

        border-radius: 0 0 0 10px;

        box-shadow: 0 25px 60px rgba(0,0,0,.12);
    }


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

    .hero-decoration {
        position: absolute;
        width: 500px;
        height: 500px;

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

        right: -220px;
        bottom: -180px;
    }

    .hero-decoration::before {
        content: "";

        position: absolute;
        width: 350px;
        height: 350px;

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

        top: 75px;
        left: 75px;
    }


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

    .mobile-navbar {
        display: none;

        position: fixed;
        top: 0;
        left: 0;
        width: 100%;

        height: 100px;

        background: rgba(255,255,255,.95);
        backdrop-filter: blur(15px);

        border-bottom: 1px solid #eee;

        z-index: 1100;

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

        padding: 0 18px;
    }

    .mobile-logo {
        display: flex;
        align-items: center;
    }

    .mobile-logo img {
        max-width: 145px;
        max-height: 85px;
        object-fit: contain;
    }


    /* =========================================
       HAMBURGER
    ========================================= */

    .mobile-menu-btn {
        width: 48px;
        height: 48px;

        border: 0;
        border-radius: 12px;

        background: var(--primary);

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

        gap: 5px;

        cursor: pointer;

        transition: .3s ease;
    }

    .mobile-menu-btn span {
        width: 21px;
        height: 2px;
        background: var(--dark);

        transition: .3s ease;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }


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

    .mobile-overlay {
        position: fixed;
        inset: 0;

        background: rgba(0,0,0,.55);

        z-index: 1200;

        opacity: 0;
        visibility: hidden;

        transition: .35s ease;
    }

    .mobile-overlay.active {
        opacity: 1;
        visibility: visible;
    }


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

    .mobile-offcanvas {
        position: fixed;

        top: 0;
        left: 0;

        width: min(84%, 350px);
        height: 100vh;

        background: #fff;

        z-index: 1250;

        transform: translateX(-100%);

        transition: transform .4s cubic-bezier(.77,0,.18,1);

        box-shadow: 15px 0 50px rgba(0,0,0,.15);

        display: flex;
        flex-direction: column;
    }

    .mobile-offcanvas.active {
        transform: translateX(0);
    }

    .mobile-offcanvas-header {
        min-height: 82px;

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

        padding: 15px 20px;

        border-bottom: 1px solid #eee;
    }

    .mobile-offcanvas-logo {
        font-size: 24px;
        font-weight: 800;
        color: var(--dark);
    }

    .mobile-close {
        width: 42px;
        height: 42px;

        border: 0;
        border-radius: 10px;

        background: #f5f5f5;

        font-size: 23px;

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


    .mobile-offcanvas-body {
        flex: 1;
        overflow-y: auto;
    }

    .mobile-menu {
        list-style: none;
        padding: 15px 0;
        margin: 0;
    }

    .mobile-menu li {
        border-bottom: 1px solid #f1f1f1;
    }

    .mobile-menu li a {
        display: flex;
        align-items: center;
        gap: 15px;

        padding: 18px 22px;

        color: #444;

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

        transition: .25s ease;
    }

    .mobile-menu li a i {
        width: 22px;
        font-size: 19px;
    }

    .mobile-menu li a:hover {
        background: rgba(198, 154, 57, 0.04);
        color: var(--dark);
        padding-left: 28px;
    }

    .mobile-menu li a:hover i {
        color: var(--primary-dark);
    }


    .mobile-offcanvas-footer {
        padding: 20px;
        border-top: 1px solid #eee;
    }

    .mobile-offcanvas-footer .btn-main {
        display: block;
        text-align: center;
        width: 100%;
    }


    /* =========================================
       RESPONSIVE
    ========================================= */

    @media (max-width: 991.98px) {

        .portfolio-sidebar {
            display: none;
        }

        .portfolio-main {
            margin-left: 0;
        }

        .mobile-navbar {
            display: flex;
        }

        .portfolio-hero {
            padding-top: 130px;
            padding-bottom: 70px;
        }

    }


    @media (max-width: 767.98px) {

        .portfolio-hero {
            min-height: auto;
            padding: 120px 20px 70px;
        }

        .hero-title {
            font-size: 46px;
        }

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

        .hero-image-wrap {
            margin: 55px auto 0;
            max-width: 380px;
        }

        .hero-image-bg {
            right: -10px;
            top: -10px;
        }

        .hero-decoration {
            display: none;
        }

        .hero-buttons {
            flex-direction: column;
        }

        .btn-main,
        .btn-outline {
            text-align: center;
            width: 100%;
        }
    }


    @media (max-width: 400px) {

        .mobile-navbar {
            height: 66px;
            padding: 0 14px;
        }

        .mobile-logo img {
            max-width: 125px;
        }

        .mobile-menu-btn {
            width: 44px;
            height: 44px;
        }

        .hero-title {
            font-size: 40px;
        }
    }




    /* =========================================================
   CAREER TIMELINE SECTION
========================================================= */

.y2-career-section {
    position: relative;
    overflow: hidden;

    background: transparent;

    padding: 120px 40px 140px;

    min-height: 100vh;
}


/* =========================================================
   TOP CURVED BACKGROUND
========================================================= */

.y2-career-bg {
    position: absolute;

    top: -260px;
    left: 50%;

    width: 900px;
    height: 520px;

    transform: translateX(-50%);

    background: #f5f5f3;

    border-radius: 0 0 50% 50%;

    z-index: 0;
}


/* =========================================================
   CONTAINER
========================================================= */

.y2-career-container {
    position: relative;
    z-index: 2;

    max-width: 1050px;
}


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

.y2-career-heading {
    position: relative;

    margin-bottom: 95px;
}


.y2-section-label {
    display: inline-block;

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

    letter-spacing: 2px;

    color: #d2a800;

    margin-bottom: 15px;
}


.y2-career-heading h2 {
    margin: 0;

    color: #24282d;

    font-size: clamp(32px, 4vw, 48px);

    line-height: 1.18;

    font-weight: 800;

    letter-spacing: -1px;
}


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

.y2-heading-line {
    width: 70px;
    height: 4px;

    background: var(--primary);

    border-radius: 20px;

    margin: 25px auto 18px;
}


/* =========================================================
   TAGS
========================================================= */

.y2-career-tags {
    display: flex;

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

    flex-wrap: wrap;

    gap: 0;

    color: #555;

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


.y2-career-tags span {
    position: relative;

    padding: 0 14px;
}


.y2-career-tags span:not(:last-child)::after {
    content: "";

    position: absolute;

    right: 0;
    top: 50%;

    width: 4px;
    height: 4px;

    transform: translateY(-50%);

    background: var(--primary);

    border-radius: 50%;
}


/* =========================================================
   TIMELINE
========================================================= */

.y2-timeline {
    position: relative;

    width: 100%;

    padding: 10px 0;
}


/* CENTER LINE */

.y2-timeline::before {
    content: "";

    position: absolute;

    top: 0;
    bottom: 0;

    left: 50%;

    width: 3px;

    transform: translateX(-50%);

    background: linear-gradient(180deg, rgba(198, 154, 57, 0.15) 0%, rgba(198, 154, 57, 0.5) 50%, rgba(198, 154, 57, 0.15) 100%);
    border-radius: 4px;
}


/* =========================================================
   TIMELINE ITEM
========================================================= */

.y2-timeline-item {
    position: relative;

    width: 50%;

    min-height: 190px;

    display: flex;

    align-items: flex-start;
    margin-bottom: 25px;
}


/* =========================================================
   LEFT ITEM
========================================================= */

.y2-timeline-item.y2-left {
    padding-right: 65px;

    text-align: left;

    justify-content: flex-end;
}


/* =========================================================
   RIGHT ITEM
========================================================= */

.y2-timeline-item.y2-right {
    margin-left: 50%;

    padding-left: 65px;

    text-align: left;

    justify-content: flex-start;
}


/* =========================================================
   TIMELINE DOT
========================================================= */

.y2-timeline-item::after {
    content: "";

    position: absolute;

    top: 25px;

    width: 18px;
    height: 18px;

    background: #C69A39;

    border: 4px solid #ffffff;

    border-radius: 50%;

    box-shadow:
        0 0 0 3px rgba(198, 154, 57, 0.25), 0 4px 12px rgba(198, 154, 57, 0.3);
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}


/* LEFT DOT */

.y2-timeline-item.y2-left::after {
    right: -9px;
}


/* RIGHT DOT */

.y2-timeline-item.y2-right::after {
    left: -9px;
}


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

.y2-timeline-content {
    position: relative;
    max-width: 440px;
    padding: 30px 28px 26px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 20px;
    box-shadow: 0 10px 30px -10px rgba(27, 42, 74, 0.08), 0 20px 25px -5px rgba(198, 154, 57, 0.05);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    overflow: hidden;
    text-align: left;
}

.y2-timeline-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #C69A39, #E1BE73, #C69A39);
    opacity: 0.8;
    transition: opacity 0.3s ease, height 0.3s ease;
}

.y2-date {
    display: table;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding: 5px 16px;
    background: rgba(198, 154, 57, 0.08);
    border: 1px solid rgba(198, 154, 57, 0.18);
    border-radius: 20px;
    color: #C69A39;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.4px;
    margin-bottom: 18px;
    box-shadow: 0 2px 6px rgba(198, 154, 57, 0.05);
}


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

.y2-company-logo {
    width: 88px;
    height: 88px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 50%;
    border: 2.5px solid rgba(198, 154, 57, 0.4);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08), inset 0 0 10px rgba(198, 154, 57, 0.08);
    transition: all 0.35s ease;
}


.y2-company-logo img {
    max-width: 60px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
}


/* =========================================================
   DESIGNATION & GROUP
========================================================= */

.y2-timeline-content h3 {
    color: #1B2A4A;
    font-size: 20px;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.3px;
    line-height: 1.3;
    margin: 0 0 6px 0;
    text-align: center;
}


.y2-timeline-group {
    color: #C69A39;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.1px;
    margin-bottom: 18px;
    text-align: center;
}

.y2-timeline-highlights {
    list-style: none;
    padding-left: 0;
    margin-top: 14px;
    margin-bottom: 0;
}

.y2-timeline-highlights li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    color: #475569;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 500;
    text-align: left;
    transition: color 0.2s ease;
}

.y2-timeline-highlights li:last-child {
    margin-bottom: 0;
}

.y2-timeline-highlights li::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 9px;
    width: 6px;
    height: 6px;
    background: #C69A39;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(198, 154, 57, 0.18);
    transition: all 0.25s ease;
}

.y2-timeline-highlights li:hover {
    color: #233350;
}

.y2-timeline-highlights li:hover::before {
    background: #E1BE73;
    box-shadow: 0 0 0 5px rgba(225, 190, 115, 0.3);
    transform: scale(1.2);
}


/* =========================================================
   TIMELINE HOVER
========================================================= */

.y2-timeline-item {
    transition: .35s ease;
}


.y2-timeline-item:hover::after {
    transform: scale(1.4);
    background: #D1A64D;
    border-color: #ffffff;
    box-shadow: 0 0 0 6px rgba(225, 190, 115, 0.3), 0 0 20px rgba(198, 154, 57, 0.5);
}


.y2-timeline-item:hover .y2-timeline-content {
    transform: translateY(-8px) scale(1.015);
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(198, 154, 57, 0.4);
    box-shadow: 0 25px 50px -12px rgba(27, 42, 74, 0.14), 0 0 25px rgba(198, 154, 57, 0.12);
}

.y2-timeline-item:hover .y2-timeline-content::before {
    opacity: 1;
    height: 5px;
}

.y2-timeline-item:hover .y2-company-logo {
    transform: scale(1.08);
    border-color: #C69A39;
    box-shadow: 0 0 20px rgba(198, 154, 57, 0.35);
}


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

@media (max-width: 767.98px) {

    .y2-career-section {
        padding: 90px 20px 100px;
    }


    /* Background */

    .y2-career-bg {
        width: 650px;

        height: 380px;

        top: -190px;
    }


    /* Heading */

    .y2-career-heading {
        margin-bottom: 65px;
    }


    .y2-section-label {
        font-size: 11px;

        letter-spacing: 1.5px;
    }


    .y2-career-heading h2 {
        font-size: 32px;

        line-height: 1.2;
    }


    .y2-career-tags {
        font-size: 13px;

        line-height: 2;
    }


    .y2-career-tags span {
        padding: 0 8px;
    }


    /* Timeline moves to left */

    .y2-timeline::before {
        left: 10px;

        transform: none;
    }


    .y2-timeline-item,
    .y2-timeline-item.y2-left,
    .y2-timeline-item.y2-right {

        width: 100%;

        margin-left: 0;

        padding-left: 48px;

        padding-right: 0;

        text-align: left;

        justify-content: flex-start;

        min-height: auto;

        margin-bottom: 20px;
    }


    /* All dots left */

    .y2-timeline-item.y2-left::after,
    .y2-timeline-item.y2-right::after {

        left: 0;

        right: auto;

        top: 0;

        transform: none;
    }


    .y2-timeline-content {
        max-width: 100%;

        padding-bottom: 45px;
    }


    .y2-date {
        font-size: 14px;

        margin-bottom: 10px;
    }


    .y2-company-logo img {
        max-width: 220px;

        max-height: 50px;
    }


    .y2-company-name {
        font-size: 24px;
    }


    .y2-timeline-content h3:not(.y2-company-name) {
        font-size: 18px;
    }


    .y2-timeline-content p {
        font-size: 16px;
    }

}


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

@media (max-width: 420px) {

    .y2-career-heading h2 {
        font-size: 28px;
    }


    .y2-career-tags {
        display: block;
    }


    .y2-career-tags span {
        display: inline-block;
    }


    .y2-company-logo img {
        max-width: 190px;
    }

}





/* =========================================================
   TECHNICAL CAPABILITIES SECTION
========================================================= */

.y3-tech-section {
    position: relative;
    overflow: hidden;
    background: transparent;
}


/* =========================================================
   GLASSY BANNER
========================================================= */

.y3-tech-banner {
    position: relative;

    min-height: 600px;

    display: flex;
    align-items: center;

    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);

    overflow: hidden;
}


/* =========================================================
   BANNER CONTAINER
========================================================= */

.y3-banner-container {
    position: relative;
    z-index: 3;

    max-width: 1250px;
}


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

.y3-banner-content {
    padding: 80px 20px 80px 50px;

    max-width: 760px;
}


.y3-eyebrow {
    color: #20242a;

    font-size: 21px;

    font-weight: 500;

    line-height: 1.5;

    margin-bottom: 18px;
}


.y3-banner-content h2 {
    margin: 0 0 28px;

    color: #20242a;

    font-size: clamp(40px, 4vw, 58px);

    line-height: 1.12;

    font-weight: 800;

    letter-spacing: -1.5px;
}


.y3-banner-content h2 span {
    position: relative;

    display: inline-block;
}


.y3-banner-content h2 span::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: -8px;

    height: 5px;

    background: #20242a;

    border-radius: 10px;
}


.y3-banner-content > p {
    max-width: 700px;

    color: #292c30;

    font-size: 20px;

    line-height: 1.65;

    margin-bottom: 28px;
}


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

.y3-main-btn {
    display: inline-flex;

    align-items: center;
    gap: 12px;

    padding: 13px 22px;

    background: var(--primary);

    color: #20242a;

    border-radius: 8px;

    font-size: 18px;

    font-weight: 700;

    transition: .3s ease;
}


.y3-main-btn i {
    transition: .3s ease;
}


.y3-main-btn:hover {
    background: #20242a;

    color: #ffffff;

    transform: translateY(-3px);
}


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


/* =========================================================
   CURVED DECORATIVE LINES
========================================================= */

.y3-curve-decoration {
    position: absolute;

    left: 8%;

    top: -80px;

    width: 420px;
    height: 760px;

    transform: rotate(-10deg);

    z-index: 1;
}


.y3-curve-decoration span {
    position: absolute;

    top: 0;

    width: 240px;
    height: 850px;

    border: 3px solid rgba(255,255,255,.95);

    border-left: 0;

    border-top: 0;

    border-bottom: 0;

    border-radius: 0 50% 50% 0;

    transform: rotate(22deg);
}


.y3-curve-decoration span:nth-child(1) {
    left: 40px;
}


.y3-curve-decoration span:nth-child(2) {
    left: 70px;

    width: 260px;
}


.y3-curve-decoration span:nth-child(3) {
    left: 100px;

    width: 280px;
}


/* =========================================================
   FLUENCY SECTION
========================================================= */

.y3-fluency-section {
    position: relative;

    padding: 120px 0 140px;

    background: #ffffff;
}


.y3-fluency-section .container {
    max-width: 1200px;
}


/* =========================================================
   ILLUSTRATION AREA
========================================================= */

.y3-illustration-box {
    position: relative;

    min-height: 520px;

    display: flex;

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


.y3-illustration-bg {
    position: absolute;

    width: 430px;
    height: 310px;

    left: 30px;
    bottom: 30px;

    background: #f0f1f6;

    border-radius: 55% 45% 50% 40%;

    transform: rotate(-5deg);

    z-index: 0;
}


.y3-illustration {
    position: relative;

    z-index: 2;

    width: 85%;

    max-width: 500px;

    height: auto;

    object-fit: contain;
}


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

.y3-floating-card {
    position: absolute;

    right: 20px;
    bottom: 45px;

    z-index: 5;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 13px 18px;

    background: #ffffff;

    border: 1px solid #eeeeee;

    border-radius: 12px;

    box-shadow: 0 15px 40px rgba(0,0,0,.10);

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


.y3-floating-icon {
    width: 42px;
    height: 42px;

    display: flex;

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

    border-radius: 10px;

    background: rgba(198, 154, 57, 0.15);

    color: #20242a;

    font-size: 20px;
}


.y3-floating-card strong {
    display: block;

    color: #25282d;

    font-size: 14px;
}


.y3-floating-card small {
    display: block;

    color: #777;

    font-size: 12px;

    margin-top: 2px;
}


@keyframes y3Float {

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

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

}


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

.y3-fluency-content {
    position: relative;

    padding-left: 20px;
}


.y3-section-number {
    position: absolute;

    top: -30px;
    right: 10px;

    color: #f2f2f2;

    font-size: 110px;

    line-height: 1;

    font-weight: 800;

    z-index: 0;
}


.y3-small-title {
    position: relative;

    z-index: 2;

    color: #c19d00;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 12px;
}


.y3-fluency-content h2 {
    position: relative;

    z-index: 2;

    color: #25292e;

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

    line-height: 1.05;

    font-weight: 800;

    margin: 0 0 25px;
}


.y3-fluency-content h2 span {
    position: relative;
}


.y3-fluency-content h2 span::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: -5px;

    height: 5px;

    background: var(--primary);
}


.y3-fluency-intro {
    position: relative;

    z-index: 2;

    max-width: 600px;

    color: #656970;

    font-size: 18px;

    line-height: 1.75;

    margin-bottom: 35px;
}


/* =========================================================
   SKILLS
========================================================= */

.y3-skill-list {
    display: flex;

    flex-direction: column;

    gap: 22px;
}


.y3-skill-item {
    display: flex;

    gap: 16px;

    padding-bottom: 20px;

    border-bottom: 1px solid #eeeeee;
}


.y3-skill-icon {
    flex: 0 0 48px;

    width: 48px;
    height: 48px;

    display: flex;

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

    background: rgba(198, 154, 57, 0.05);

    color: var(--primary);

    border-radius: 12px;

    font-size: 21px;

    transition: .3s ease;
}


.y3-skill-item:hover .y3-skill-icon {
    background: var(--primary);

    color: #ffffff;

    transform: rotate(-5deg);
}


.y3-skill-item h4 {
    color: #282c31;

    font-size: 18px;

    font-weight: 800;

    margin: 0 0 4px;
}


.y3-skill-item p {
    color: #777;

    font-size: 14px;

    line-height: 1.5;

    margin: 0;
}


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

.y3-text-link {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-top: 30px;

    color: #25292e;

    font-size: 16px;

    font-weight: 800;

    border-bottom: 2px solid var(--primary);

    padding-bottom: 5px;

    transition: .3s ease;
}


.y3-text-link i {
    transition: .3s ease;
}


.y3-text-link:hover {
    color: #bd9900;
}


.y3-text-link:hover i {
    transform: translate(4px,-4px);
}


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

@media (max-width: 991.98px) {

    .y3-tech-banner {
        min-height: auto;
    }


    .y3-banner-content {
        padding: 100px 30px 100px 50px;
    }


    .y3-eyebrow {
        font-size: 18px;
    }


    .y3-banner-content h2 {
        font-size: 44px;
    }


    .y3-banner-content > p {
        font-size: 18px;
    }


    .y3-curve-decoration {
        left: -40px;
        opacity: .8;
    }


    .y3-fluency-section {
        padding: 90px 0;
    }


    .y3-illustration-box {
        min-height: 400px;
    }


    .y3-fluency-content {
        padding-left: 0;
    }

}


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

@media (max-width: 767.98px) {

    .y3-tech-banner {
        min-height: auto;
    }


    .y3-tech-banner .row {
        display: block;
    }


    .y3-banner-container {
        width: 100%;
    }


    .y3-banner-content {
        padding: 85px 20px 90px;

        max-width: 100%;
    }


    .y3-eyebrow {
        font-size: 17px;

        line-height: 1.5;
    }


    .y3-banner-content h2 {
        font-size: 36px;

        line-height: 1.15;

        letter-spacing: -1px;
    }


    .y3-banner-content h2 span::after {
        height: 4px;

        bottom: -5px;
    }


    .y3-banner-content > p {
        font-size: 16px;

        line-height: 1.65;
    }


    .y3-main-btn {
        font-size: 16px;

        padding: 12px 19px;
    }


    /* Curves */

    .y3-curve-decoration {
        left: -150px;

        top: -100px;

        transform: rotate(-10deg) scale(.75);

        opacity: .65;
    }


    /* Fluency */

    .y3-fluency-section {
        padding: 75px 20px 90px;
    }


    .y3-illustration-box {
        min-height: 320px;

        margin-bottom: 30px;
    }


    .y3-illustration-bg {
        width: 300px;
        height: 220px;

        left: 50%;

        transform: translateX(-50%) rotate(-5deg);
    }


    .y3-illustration {
        width: 90%;
    }


    .y3-floating-card {
        right: 0;

        bottom: 20px;

        padding: 10px 13px;
    }


    .y3-floating-icon {
        width: 38px;
        height: 38px;

        font-size: 17px;
    }


    .y3-section-number {
        font-size: 80px;

        top: -10px;

        right: 0;
    }


    .y3-fluency-content h2 {
        font-size: 43px;
    }


    .y3-fluency-intro {
        font-size: 16px;

        line-height: 1.7;
    }


    .y3-skill-item {
        gap: 13px;
    }


    .y3-skill-icon {
        flex-basis: 43px;

        width: 43px;
        height: 43px;
    }


    .y3-skill-item h4 {
        font-size: 16px;
    }

}


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

@media (max-width: 400px) {

    .y3-banner-content {
        padding-left: 18px;
        padding-right: 18px;
    }


    .y3-banner-content h2 {
        font-size: 31px;
    }


    .y3-eyebrow {
        font-size: 15px;
    }


    .y3-fluency-content h2 {
        font-size: 38px;
    }


    .y3-floating-card {
        transform: scale(.9);

        transform-origin: bottom right;
    }

}





/* =========================================================
   FAQ SECTION
========================================================= */

.y4-faq-section {
    position: relative;
    overflow: hidden;

    padding: 120px 0 130px;

    background: transparent;
}

.y4-faq-section .accordion-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: 12px !important;
    margin-bottom: 16px;
    box-shadow: var(--glass-shadow);
    overflow: hidden;
}

.y4-faq-section .accordion-button {
    background: transparent;
    color: var(--dark);
    font-weight: 700;
    border: 0;
}

.y4-faq-section .accordion-button:not(.collapsed) {
    background: rgba(198, 154, 57, 0.08);
    color: var(--primary);
    box-shadow: none;
}


/* =========================================================
   DECORATIVE BACKGROUND
========================================================= */

.y4-faq-section::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    left: -250px;
    top: 80px;

    border: 1px solid #f1f1f1;

    border-radius: 50%;
}


.y4-faq-section::after {
    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    left: -140px;
    top: 165px;

    background: rgba(198, 154, 57, 0.05);

    border-radius: 50%;

    z-index: 0;
}


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

.y4-faq-intro {
    position: sticky;

    top: 100px;

    z-index: 2;

    padding-right: 50px;
}


.y4-faq-label {
    display: inline-block;

    color: #b08d00;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 18px;
}


.y4-faq-intro h2 {
    color: #24282d;

    font-size: clamp(40px, 4vw, 58px);

    line-height: 1.08;

    font-weight: 800;

    letter-spacing: -1.5px;

    margin: 0 0 25px;
}


.y4-faq-intro h2 span {
    display: block;

    position: relative;

    width: fit-content;
}


.y4-faq-intro h2 span::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;

    bottom: -6px;

    height: 5px;

    background: var(--primary);

    border-radius: 10px;
}


.y4-faq-intro > p {
    max-width: 480px;

    color: #6b6f75;

    font-size: 17px;

    line-height: 1.8;

    margin-bottom: 35px;
}


/* =========================================================
   CONTACT BOX
========================================================= */

.y4-faq-contact {
    display: inline-flex;

    align-items: center;

    gap: 14px;

    padding: 14px 20px 14px 14px;

    background: #fafafa;

    border: 1px solid #eeeeee;

    border-radius: 14px;

    transition: .3s ease;
}


.y4-faq-contact:hover {
    background: rgba(198, 154, 57, 0.04);

    border-color: #f3d55d;

    transform: translateY(-3px);
}


.y4-faq-contact-icon {
    width: 45px;
    height: 45px;

    display: flex;

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

    background: var(--primary);

    color: #25292e;

    border-radius: 11px;

    font-size: 19px;
}


.y4-faq-contact small {
    display: block;

    color: #777;

    font-size: 12px;

    margin-bottom: 2px;
}


.y4-faq-contact a {
    color: #24282d;

    font-size: 15px;

    font-weight: 800;
}


.y4-faq-contact a i {
    margin-left: 5px;

    transition: .3s ease;
}


.y4-faq-contact:hover a i {
    transform: translate(3px, -3px);
}


/* =========================================================
   FAQ LIST
========================================================= */

.y4-faq-list {
    position: relative;

    z-index: 2;

    border-top: 1px solid #dedede;
}


/* =========================================================
   FAQ ITEM
========================================================= */

.y4-faq-item {
    position: relative;

    border-bottom: 1px solid #dedede;

    transition: .3s ease;
}


.y4-faq-item.active {
    background: rgba(198, 154, 57, 0.08);
}


/* =========================================================
   QUESTION
========================================================= */

.y4-faq-question {
    width: 100%;

    display: flex;

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

    gap: 20px;

    padding: 25px 8px;

    border: 0;

    background: transparent;

    text-align: left;

    cursor: pointer;
}


.y4-faq-question-left {
    display: flex;

    align-items: center;

    gap: 20px;

    min-width: 0;
}


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

.y4-faq-number {
    flex: 0 0 auto;

    color: #c5a300;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 1px;
}


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

.y4-faq-title {
    color: #282c31;

    font-size: 18px;

    line-height: 1.4;

    font-weight: 700;

    transition: .3s ease;
}


.y4-faq-question:hover .y4-faq-title {
    color: #b08d00;
}


/* =========================================================
   TOGGLE
========================================================= */

.y4-faq-toggle {
    flex: 0 0 auto;

    width: 38px;
    height: 38px;

    display: flex;

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

    border: 1px solid #dedede;

    border-radius: 50%;

    background: #ffffff;

    color: #25292e;

    font-size: 19px;

    transition: .35s ease;
}


.y4-faq-toggle i {
    transition: transform .35s ease;
}


/* Active */

.y4-faq-item.active .y4-faq-toggle {
    background: var(--primary);

    border-color: var(--primary);
}


.y4-faq-item.active .y4-faq-toggle i {
    transform: rotate(45deg);
}


/* =========================================================
   ANSWER
========================================================= */

.y4-faq-answer {
    display: grid;

    grid-template-rows: 0fr;

    transition: grid-template-rows .4s ease;
}


.y4-faq-item.active .y4-faq-answer {
    grid-template-rows: 1fr;
}


.y4-faq-answer-inner {
    overflow: hidden;

    max-width: 650px;

    padding: 0 60px 0 58px;

    color: #696d72;

    font-size: 15px;

    line-height: 1.8;

    transition: padding .4s ease;
}


.y4-faq-item.active .y4-faq-answer-inner {
    padding-bottom: 28px;
}


/* =========================================================
   HOVER LINE
========================================================= */

.y4-faq-item::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 3px;
    height: 100%;

    background: var(--primary);

    transform: scaleY(0);

    transform-origin: center;

    transition: transform .3s ease;
}


.y4-faq-item:hover::before,
.y4-faq-item.active::before {
    transform: scaleY(1);
}


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

@media (max-width: 991.98px) {

    .y4-faq-section {
        padding: 90px 0 100px;
    }


    .y4-faq-intro {
        position: relative;

        top: auto;

        padding-right: 0;

        margin-bottom: 45px;
    }


    .y4-faq-intro h2 {
        font-size: 45px;
    }

}


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

@media (max-width: 767.98px) {

    .y4-faq-section {
        padding: 75px 20px 90px;
    }


    .y4-faq-section::before {
        width: 280px;
        height: 280px;

        left: -190px;

        top: 50px;
    }


    .y4-faq-section::after {
        width: 180px;
        height: 180px;

        left: -110px;

        top: 100px;
    }


    .y4-faq-intro {
        margin-bottom: 45px;
    }


    .y4-faq-label {
        font-size: 10px;

        letter-spacing: 1.5px;
    }


    .y4-faq-intro h2 {
        font-size: 37px;

        line-height: 1.1;

        letter-spacing: -1px;
    }


    .y4-faq-intro > p {
        font-size: 15px;

        line-height: 1.7;
    }


    .y4-faq-question {
        padding: 20px 5px;
    }


    .y4-faq-question-left {
        gap: 13px;

        align-items: flex-start;
    }


    .y4-faq-number {
        font-size: 11px;

        padding-top: 3px;
    }


    .y4-faq-title {
        font-size: 16px;

        line-height: 1.45;
    }


    .y4-faq-toggle {
        width: 34px;
        height: 34px;

        font-size: 17px;
    }


    .y4-faq-answer-inner {
        padding-left: 30px;
        padding-right: 35px;

        font-size: 14px;

        line-height: 1.7;
    }


    .y4-faq-item.active .y4-faq-answer-inner {
        padding-bottom: 22px;
    }

}


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

@media (max-width: 400px) {

    .y4-faq-intro h2 {
        font-size: 32px;
    }


    .y4-faq-question-left {
        gap: 9px;
    }


    .y4-faq-title {
        font-size: 15px;
    }


    .y4-faq-answer-inner {
        padding-left: 24px;
        padding-right: 25px;
    }

}




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

.y5-footer {
    position: relative;

    background: transparent;

    overflow: hidden;
}


/* =========================================================
   LINKEDIN CTA SECTION
========================================================= */

.y5-linkedin-section {
    position: relative;

    min-height: 300px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background: transparent;
}


.y5-linkedin-section .container {
    position: relative;

    z-index: 5;

    width: 100%;
}


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

.y5-linkedin-content {
    position: relative;

    padding: 60px 45px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: 20px;
    box-shadow: var(--glass-shadow);
    margin: 40px 0;
}


.y5-linkedin-content h2 {
    position: relative;

    z-index: 5;

    max-width: 700px;

    margin: 0 0 45px;

    color: #24282d;

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

    line-height: 1.1;

    font-weight: 800;

    letter-spacing: -1.5px;
}


/* =========================================================
   LINKEDIN BUTTON
========================================================= */

.y5-linkedin-btn {
    position: relative;

    z-index: 5;

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 11px 17px;

    background: var(--primary);

    color: #ffffff;

    border-radius: 8px;

    font-size: 16px;

    font-weight: 600;

    transition: all .3s ease;
}


.y5-linkedin-btn i {
    font-size: 17px;
}


.y5-linkedin-btn:hover {
    background: var(--primary-dark);

    color: #ffffff;

    transform: translateY(-3px);

    box-shadow: 0 8px 20px rgba(0,0,0,.12);
}


/* =========================================================
   CIRCUIT BACKGROUND
========================================================= */

.y5-circuit-pattern {
    position: absolute;

    right: -20px;

    bottom: -130px;

    width: 75%;

    height: 400px;

    pointer-events: none;

    opacity: .75;
}


.y5-circuit-pattern span {
    position: absolute;

    display: block;

    width: 850px;

    height: 180px;

    border-top: 4px solid rgba(243,197,27,.18);

    border-right: 4px solid rgba(243,197,27,.18);

    transform: skewX(-42deg);

    transform-origin: right center;

    border-radius: 3px;
}


/* Individual circuit lines */

.y5-circuit-pattern span:nth-child(1) {
    right: 0;
    bottom: 30px;
}


.y5-circuit-pattern span:nth-child(2) {
    right: 0;
    bottom: 55px;

    width: 820px;
}


.y5-circuit-pattern span:nth-child(3) {
    right: 0;
    bottom: 80px;

    width: 790px;
}


.y5-circuit-pattern span:nth-child(4) {
    right: 0;
    bottom: 105px;

    width: 760px;
}


.y5-circuit-pattern span:nth-child(5) {
    right: 0;
    bottom: 130px;

    width: 730px;
}


.y5-circuit-pattern span:nth-child(6) {
    right: 0;
    bottom: 155px;

    width: 700px;
}


.y5-circuit-pattern span:nth-child(7) {
    right: 0;
    bottom: 180px;

    width: 670px;
}


.y5-circuit-pattern span:nth-child(8) {
    right: 0;
    bottom: 205px;

    width: 640px;
}


.y5-circuit-pattern span:nth-child(9) {
    right: 0;
    bottom: 230px;

    width: 610px;
}


.y5-circuit-pattern span:nth-child(10) {
    right: 0;
    bottom: 255px;

    width: 580px;
}


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

.y5-footer-bottom {
    position: relative;

    background: #f5f5f4;

    padding: 35px 0 30px;

    border-top: 1px solid #eeeeee;
}


/* =========================================================
   LOCATION
========================================================= */

.y5-footer-location {
    display: flex;

    justify-content: center;

    align-items: center;

    flex-wrap: wrap;

    gap: 8px;

    margin-bottom: 30px;

    color: #282c31;

    font-size: 16px;

    text-align: center;
}


.y5-footer-location a {
    color: var(--primary);

    font-weight: 500;

    transition: .3s ease;
}


.y5-footer-location a:hover {
    color: var(--primary-dark);
}


.y5-flag {
    font-size: 18px;

    margin-left: 2px;
}


/* =========================================================
   FOOTER ROW
========================================================= */

.y5-footer-row {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}


/* =========================================================
   COPYRIGHT
========================================================= */

.y5-copyright {
    color: #707277;

    font-size: 16px;
}


.y5-copyright strong {
    color: #4f5257;

    font-weight: 600;
}


/* =========================================================
   POWERED
========================================================= */

.y5-powered {
    display: flex;

    align-items: center;

    gap: 8px;

    color: #4f5257;

    font-size: 14px;
}


.y5-powered-badge {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 3px 8px;

    background: #ffffff;

    border-radius: 20px;

    color: #85858a;

    font-size: 13px;

    font-weight: 600;

    box-shadow: 0 1px 4px rgba(0,0,0,.05);
}


.y5-dash {
    color: #777;

    margin: 0 2px;
}


.y5-powered a {
    color: var(--primary);

    font-weight: 600;

    transition: .3s ease;
}


.y5-powered a:hover {
    color: var(--primary-dark);
}


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

@media (max-width: 991.98px) {

    .y5-linkedin-section {
        min-height: 280px;
    }


    .y5-linkedin-content {
        padding: 60px 25px;
    }


    .y5-linkedin-content h2 {
        margin-bottom: 35px;
    }


    .y5-circuit-pattern {
        width: 85%;

        right: -150px;
    }

}


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

@media (max-width: 767.98px) {

    .y5-linkedin-section {
        min-height: 300px;

        align-items: center;
    }


    .y5-linkedin-content {
        padding: 65px 20px;
    }


    .y5-linkedin-content h2 {
        font-size: 36px;

        line-height: 1.12;

        letter-spacing: -1px;

        margin-bottom: 30px;
    }


    .y5-linkedin-btn {
        padding: 10px 16px;

        font-size: 15px;
    }


    /* Circuit */

    .y5-circuit-pattern {
        right: -300px;

        bottom: -100px;

        width: 850px;

        opacity: .65;
    }


    .y5-circuit-pattern span {
        border-width: 3px;
    }


    /* Footer bottom */

    .y5-footer-bottom {
        padding: 28px 20px 25px;
    }


    .y5-footer-location {
        font-size: 14px;

        line-height: 1.6;

        margin-bottom: 25px;
    }


    .y5-footer-row {
        flex-direction: column;

        justify-content: center;

        gap: 18px;

        text-align: center;
    }


    .y5-copyright {
        font-size: 14px;
    }


    .y5-powered {
        justify-content: center;

        flex-wrap: wrap;

        font-size: 13px;
    }

}


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

@media (max-width: 400px) {

    .y5-linkedin-content h2 {
        font-size: 31px;
    }


    .y5-footer-location {
        font-size: 13px;
    }


    .y5-powered {
        font-size: 12px;
    }

}




/* =========================================================
   SMALL PAGE HEADER
========================================================= */

.y6-page-header {
    position: relative;

    width: 100%;

    min-height: 170px;

    display: flex;

    align-items: center;

    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);

    overflow: hidden;
}


/* =========================================================
   CONTAINER
========================================================= */

.y6-page-header .container-fluid {
    position: relative;

    z-index: 2;

    width: 100%;

    padding-left: 55px;
    padding-right: 55px;
}


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

.y6-page-header-inner {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;
}


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

.y6-page-title {
    min-width: 0;
}


.y6-page-label {
    display: block;

    margin-bottom: 8px;

    color: #9c7e00;

    font-size: 11px;

    line-height: 1;

    font-weight: 800;

    letter-spacing: 2px;
}


.y6-page-header h1 {
    margin: 0;

    color: #20242a;

    font-size: clamp(32px, 4vw, 50px);

    line-height: 1.1;

    font-weight: 800;

    letter-spacing: -1.5px;

    word-break: break-word;
}


/* =========================================================
   BREADCRUMB
========================================================= */

.y6-breadcrumb {
    flex: 0 0 auto;

    display: flex;

    align-items: center;

    gap: 10px;

    white-space: nowrap;

    font-size: 14px;

    font-weight: 600;
}


.y6-breadcrumb a {
    color: #25292e;

    text-decoration: none;

    transition: .3s ease;
}


.y6-breadcrumb a:hover {
    color: #987a00;
}


.y6-breadcrumb i {
    color: #8d792b;

    font-size: 11px;
}


.y6-breadcrumb span {
    color: #676a6f;
}


/* =========================================================
   DECORATIVE CIRCLE
========================================================= */

.y6-page-header::before {
    content: "";

    position: absolute;

    width: 360px;
    height: 360px;

    right: -120px;
    top: -210px;

    border: 2px solid rgba(255,255,255,.55);

    border-radius: 50%;
}


/* =========================================================
   DECORATIVE SECOND CIRCLE
========================================================= */

.y6-page-header::after {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    right: 100px;
    bottom: -170px;

    border: 2px solid rgba(255,255,255,.4);

    border-radius: 50%;
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1200px) {

    .y6-page-header {
        min-height: 180px;
    }

}


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

@media (max-width: 991.98px) {

    .y6-page-header {
        min-height: 155px;
        margin-top: 86px;
    }


    .y6-page-header .container-fluid {
        padding-left: 35px;
        padding-right: 35px;
    }


    .y6-page-header-inner {
        gap: 25px;
    }


    .y6-page-header h1 {
        font-size: 38px;
    }


    .y6-breadcrumb {
        font-size: 13px;
    }

}


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

@media (max-width: 767.98px) {

    .y6-page-header {
        min-height: auto;
        margin-top: 86px;
        padding: 35px 0 38px;
    }


    .y6-page-header .container-fluid {
        padding-left: 20px;
        padding-right: 20px;
    }


    /* STACK CONTENT */

    .y6-page-header-inner {
        display: flex;

        flex-direction: column;

        align-items: flex-start;

        justify-content: center;

        gap: 16px;
    }


    /* TITLE */

    .y6-page-label {
        font-size: 10px;

        margin-bottom: 9px;

        letter-spacing: 1.6px;
    }


    .y6-page-header h1 {
        max-width: 100%;

        font-size: 30px;

        line-height: 1.15;

        letter-spacing: -.7px;
    }


    /* BREADCRUMB */

    .y6-breadcrumb {
        width: 100%;

        display: flex;

        justify-content: flex-start;

        gap: 8px;

        font-size: 13px;
    }


    /* DECORATION */

    .y6-page-header::before {
        width: 220px;
        height: 220px;

        right: -120px;
        top: -125px;
    }


    .y6-page-header::after {
        width: 140px;
        height: 140px;

        right: 20px;
        bottom: -110px;
    }

}


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

@media (max-width: 480px) {

    .y6-page-header {
        padding: 30px 0 32px;
    }


    .y6-page-header .container-fluid {
        padding-left: 16px;
        padding-right: 16px;
    }


    .y6-page-header-inner {
        gap: 14px;
    }


    .y6-page-header h1 {
        font-size: 26px;

        line-height: 1.2;
    }


    .y6-page-label {
        font-size: 9px;

        letter-spacing: 1.4px;
    }


    .y6-breadcrumb {
        font-size: 12px;

        gap: 7px;
    }


    .y6-breadcrumb i {
        font-size: 9px;
    }

}


/* =========================================================
   VERY SMALL DEVICES
========================================================= */

@media (max-width: 360px) {

    .y6-page-header h1 {
        font-size: 23px;
    }


    .y6-page-header {
        padding-top: 27px;

        padding-bottom: 29px;
    }

}







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

.y7-contact-section {
    position: relative;

    padding: 110px 0 120px;

    background: transparent;

    overflow: hidden;
}


.y7-contact-section::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    left: -280px;
    top: 100px;

    border: 1px solid #f2f2f2;

    border-radius: 50%;
}


.y7-contact-section::after {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    left: -110px;
    top: 200px;

    background: #fff9dc;

    border-radius: 50%;

    z-index: 0;
}


/* =========================================================
   LEFT CONTACT INFORMATION
========================================================= */

.y7-contact-info {
    position: relative;

    z-index: 2;

    padding-right: 45px;
}


.y7-contact-label {
    display: inline-block;

    margin-bottom: 15px;

    color: #ae8c00;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;
}


.y7-contact-info h2 {
    margin: 0 0 25px;

    color: #24282d;

    font-size: clamp(40px, 4vw, 57px);

    line-height: 1.08;

    font-weight: 800;

    letter-spacing: -1.5px;
}


.y7-contact-info h2 span {
    position: relative;

    display: inline-block;
}


.y7-contact-info h2 span::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;

    bottom: -6px;

    height: 5px;

    background: var(--primary);

    border-radius: 10px;
}


.y7-contact-intro {
    max-width: 520px;

    margin-bottom: 40px;

    color: #6b6f74;

    font-size: 17px;

    line-height: 1.8;
}


/* =========================================================
   CONTACT ITEMS
========================================================= */

.y7-contact-item {
    display: flex;

    align-items: center;

    gap: 16px;

    margin-bottom: 25px;
}


.y7-contact-icon {
    flex: 0 0 50px;

    width: 50px;
    height: 50px;

    display: flex;

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

    background: #fff8d8;

    color: #b18e00;

    border-radius: 13px;

    font-size: 20px;

    transition: all .3s ease;
}


.y7-contact-item:hover .y7-contact-icon {
    background: var(--primary);

    color: #24282d;

    transform: translateY(-3px);
}


.y7-contact-details span {
    display: block;

    margin-bottom: 4px;

    color: #a28a32;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.y7-contact-details p {
    margin: 0;

    color: #30343a;

    font-size: 15px;

    line-height: 1.5;
}


.y7-contact-details a {
    color: #30343a;

    font-size: 15px;

    font-weight: 600;

    text-decoration: none;

    transition: .3s ease;
}


.y7-contact-details a:hover {
    color: #ae8c00;
}


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

.y7-social-area {
    margin-top: 35px;

    padding-top: 28px;

    border-top: 1px solid #eeeeee;
}


.y7-social-area > span {
    display: block;

    margin-bottom: 14px;

    color: #777;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.y7-social-links {
    display: flex;

    align-items: center;

    gap: 10px;
}


.y7-social-links a {
    width: 42px;
    height: 42px;

    display: flex;

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

    background: #f5f5f4;

    color: #292d32;

    border-radius: 50%;

    font-size: 17px;

    transition: all .3s ease;
}


.y7-social-links a:hover {
    background: var(--primary);

    color: #ffffff;

    transform: translateY(-4px);
}


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

.y7-contact-form-wrapper {
    position: relative;

    z-index: 2;

    padding: 45px;

    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);

    border-radius: 20px;

    box-shadow: var(--glass-shadow);

    overflow: hidden;
}


/* Yellow corner */

.y7-contact-form-wrapper::before {
    content: "";

    position: absolute;

    width: 130px;
    height: 130px;

    right: -55px;
    top: -55px;

    background: var(--primary);

    border-radius: 50%;
}


.y7-form-heading {
    position: relative;

    z-index: 2;

    margin-bottom: 35px;
}


.y7-form-heading > span {
    display: block;

    margin-bottom: 9px;

    color: #ae8c00;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;
}


.y7-form-heading h3 {
    margin: 0;

    color: #25292e;

    font-size: 32px;

    line-height: 1.2;

    font-weight: 700;
}


.y7-form-heading h3 strong {
    position: relative;

    font-weight: 800;
}


.y7-form-heading h3 strong::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;

    bottom: -3px;

    height: 4px;

    background: var(--primary);
}


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

.y7-contact-form {
    position: relative;

    z-index: 2;
}


.y7-form-group label {
    display: block;

    margin-bottom: 9px;

    color: #35393e;

    font-size: 13px;

    font-weight: 700;
}


.y7-form-group input,
.y7-form-group textarea {
    width: 100%;

    display: block;

    padding: 14px 16px;

    background: #ffffff;

    border: 1px solid #e2e2df;

    border-radius: 9px;

    outline: none;

    color: #25292e;

    font-family: inherit;

    font-size: 14px;

    transition: all .3s ease;
}


.y7-form-group textarea {
    resize: vertical;

    min-height: 150px;
}


.y7-form-group input::placeholder,
.y7-form-group textarea::placeholder {
    color: #a0a2a5;
}


.y7-form-group input:focus,
.y7-form-group textarea:focus {
    border-color: #e0b900;

    background: #fffef7;

    box-shadow: 0 0 0 3px rgba(243,197,27,.12);
}


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

.y7-submit-btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 14px 23px;

    background: var(--primary);

    border: 0;

    border-radius: 9px;

    color: #ffffff;

    font-size: 16px;

    font-weight: 700;

    cursor: pointer;

    transition: all .3s ease;
}


.y7-submit-btn i {
    transition: .3s ease;
}


.y7-submit-btn:hover {
    background: var(--primary-dark);

    color: #ffffff;

    transform: translateY(-3px);

    box-shadow: 0 10px 25px rgba(0,0,0,.12);
}


.y7-submit-btn:hover i {
    transform: translate(4px,-4px);
}


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

@media (max-width: 991.98px) {

    .y7-contact-section {
        padding: 90px 0 100px;
    }


    .y7-contact-info {
        padding-right: 0;
    }


    .y7-contact-info h2 {
        font-size: 45px;
    }


    .y7-contact-form-wrapper {
        padding: 35px;
    }

}


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

@media (max-width: 767.98px) {

    .y7-contact-section {
        padding: 70px 20px 80px;
    }


    .y7-contact-section::before {
        width: 280px;
        height: 280px;

        left: -190px;

        top: 40px;
    }


    .y7-contact-section::after {
        width: 160px;
        height: 160px;

        left: -90px;

        top: 100px;
    }


    /* LEFT */

    .y7-contact-info {
        padding-right: 0;

        margin-bottom: 20px;
    }


    .y7-contact-label {
        font-size: 10px;

        letter-spacing: 1.5px;
    }


    .y7-contact-info h2 {
        font-size: 37px;

        line-height: 1.12;

        letter-spacing: -1px;
    }


    .y7-contact-intro {
        font-size: 15px;

        line-height: 1.7;

        margin-bottom: 30px;
    }


    .y7-contact-item {
        gap: 13px;

        margin-bottom: 20px;
    }


    .y7-contact-icon {
        flex-basis: 45px;

        width: 45px;
        height: 45px;

        font-size: 18px;
    }


    .y7-contact-details p,
    .y7-contact-details a {
        font-size: 14px;
    }


    /* FORM */

    .y7-contact-form-wrapper {
        padding: 27px 20px;

        border-radius: 16px;
    }


    .y7-form-heading {
        margin-bottom: 27px;
    }


    .y7-form-heading h3 {
        font-size: 27px;
    }


    .y7-form-group input,
    .y7-form-group textarea {
        padding: 13px 14px;

        font-size: 14px;
    }


    .y7-form-group textarea {
        min-height: 130px;
    }


    .y7-submit-btn {
        width: 100%;

        padding: 14px 20px;
    }

}


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

@media (max-width: 400px) {

    .y7-contact-section {
        padding-left: 16px;
        padding-right: 16px;
    }


    .y7-contact-info h2 {
        font-size: 32px;
    }


    .y7-form-heading h3 {
        font-size: 24px;
    }


    .y7-contact-form-wrapper {
        padding: 24px 16px;
    }

}








/* =========================================================
   RESUME SECTION
========================================================= */

.r8-resume-section {
    position: relative;

    width: 100%;

    padding: 75px 0 100px;

    background: transparent;

    overflow: hidden;
}


/* =========================================================
   CONTAINER
========================================================= */

.r8-resume-container {
    position: relative;

    z-index: 2;

    padding-left: 25px;
    padding-right: 55px;
}


/* =========================================================
   DECORATIVE CURVED LINES
========================================================= */

.r8-resume-lines {
    position: absolute;

    left: 15px;
    top: -150px;

    width: 300px;
    height: 1200px;

    opacity: .65;

    z-index: 0;

    overflow: hidden;
}


.r8-resume-lines::before,
.r8-resume-lines::after {
    content: "";

    position: absolute;

    width: 270px;
    height: 900px;

    border: 1px solid #e8eef4;

    border-radius: 50%;
}


.r8-resume-lines::before {
    left: -155px;

    top: 80px;

    transform: rotate(-7deg);
}


.r8-resume-lines::after {
    left: -130px;

    top: 80px;

    width: 250px;
    height: 900px;

    transform: rotate(-7deg);
}


/* Additional lines */

.r8-resume-section {
    background-image:
        repeating-radial-gradient(
            ellipse at -5% 50%,
            transparent 0,
            transparent 18px,
            rgba(225,232,239,.45) 19px,
            rgba(225,232,239,.45) 20px,
            transparent 21px,
            transparent 38px
        );

    background-size: 420px 1100px;

    background-position: -190px center;

    background-repeat: no-repeat;
}


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

.r8-resume-intro {
    position: relative;

    z-index: 3;

    max-width: 1200px;

    margin: 0 auto;
}


.r8-resume-intro h1 {
    margin: 0 0 22px;

    color: #25292e;

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

    line-height: 1.1;

    font-weight: 400;

    letter-spacing: -2px;
}


.r8-resume-intro p {
    margin: 0 0 28px;

    color: #34383d;

    font-size: 18px;

    line-height: 1.58;

    font-weight: 400;
}


.r8-resume-intro p em {
    font-style: italic;

    color: #25292e;
}


.r8-resume-last-text {
    margin-top: 38px !important;

    margin-bottom: 0 !important;
}


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

.r8-resume-card {
    position: relative;

    z-index: 4;

    width: min(690px, 90%);

    min-height: 230px;

    margin: 95px auto 0;

    display: flex;

    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);

    border-radius: 12px;

    overflow: hidden;

    box-shadow: var(--glass-shadow);

    transition: all .4s cubic-bezier(0.25, 1, 0.5, 1);
}


.r8-resume-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 22px 45px rgba(198, 154, 57, 0.1);
    border-color: rgba(198, 154, 57, 0.3);
}


/* =========================================================
   PHOTO
========================================================= */

.r8-resume-photo {
    width: 230px;

    flex: 0 0 230px;

    min-height: 230px;

    overflow: hidden;

    background: #eeeeee;
}


.r8-resume-photo img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;
}


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

.r8-resume-card-content {
    flex: 1;

    padding: 25px 28px;
}


.r8-resume-card-content h3 {
    margin: 0 0 12px;

    color: #272b30;

    font-size: 21px;

    line-height: 1.3;

    font-weight: 800;
}


.r8-file-info {
    margin: 0 0 3px;

    color: #33373b;

    font-size: 15px;

    line-height: 1.5;
}


/* =========================================================
   VIEW RESUME
========================================================= */

.r8-view-resume {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: 18px;

    color: #a68100;

    font-size: 18px;

    font-weight: 600;

    text-decoration: none;

    transition: all .3s ease;
}


.r8-view-resume i {
    font-size: 14px;

    transition: .3s ease;
}


.r8-view-resume:hover {
    color: #25292e;
}


.r8-view-resume:hover i {
    transform: translate(4px,-4px);
}


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

@media (max-width: 991.98px) {

    .r8-resume-section {
        padding: 65px 0 85px;
    }


    .r8-resume-container {
        padding-left: 30px;
        padding-right: 30px;
    }


    .r8-resume-intro {
        max-width: 100%;
    }


    .r8-resume-intro h1 {
        font-size: 48px;
    }


    .r8-resume-intro p {
        font-size: 17px;

        line-height: 1.6;
    }


    .r8-resume-card {
        margin-top: 70px;
    }

}


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

@media (max-width: 767.98px) {

    .r8-resume-section {
        padding: 55px 0 70px;

        background-size: 280px 850px;

        background-position: -145px center;
    }


    .r8-resume-container {
        padding-left: 20px;
        padding-right: 20px;
    }


    /* Heading */

    .r8-resume-intro h1 {
        font-size: 37px;

        line-height: 1.12;

        letter-spacing: -1px;

        margin-bottom: 20px;
    }


    /* Paragraph */

    .r8-resume-intro p {
        font-size: 15.5px;

        line-height: 1.7;

        margin-bottom: 24px;
    }


    .r8-resume-last-text {
        margin-top: 30px !important;
    }


    /* Card */

    .r8-resume-card {
        width: 100%;

        margin-top: 55px;

        display: flex;

        flex-direction: column;

        min-height: auto;

        border-radius: 10px;
    }


    /* Image */

    .r8-resume-photo {
        width: 100%;

        height: 260px;

        flex: none;
    }


    .r8-resume-photo img {
        object-position: center 25%;
    }


    /* Content */

    .r8-resume-card-content {
        padding: 22px 20px 25px;
    }


    .r8-resume-card-content h3 {
        font-size: 19px;

        line-height: 1.35;
    }


    .r8-file-info {
        font-size: 14px;
    }


    .r8-view-resume {
        font-size: 16px;

        margin-top: 15px;
    }


    /* Decorative lines */

    .r8-resume-lines {
        left: -70px;

        width: 180px;
    }

}


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

@media (max-width: 480px) {

    .r8-resume-section {
        padding: 45px 0 60px;
    }


    .r8-resume-container {
        padding-left: 16px;
        padding-right: 16px;
    }


    .r8-resume-intro h1 {
        font-size: 32px;
    }


    .r8-resume-intro p {
        font-size: 15px;

        line-height: 1.65;
    }


    .r8-resume-card {
        margin-top: 45px;
    }


    .r8-resume-photo {
        height: 230px;
    }


    .r8-resume-card-content {
        padding: 20px 17px 23px;
    }


    .r8-resume-card-content h3 {
        font-size: 18px;
    }

}


/* =========================================================
   EXTRA SMALL
========================================================= */

@media (max-width: 360px) {

    .r8-resume-intro h1 {
        font-size: 29px;
    }


    .r8-resume-intro p {
        font-size: 14px;
    }


    .r8-resume-photo {
        height: 210px;
    }

}








/* =========================================================
   SUCCESS HERO
========================================================= */

.s9-success-hero {
    position: relative;

    min-height: 665px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        linear-gradient(
            115deg,
            #FBF8F3 0%,
            #dbeafe 32%,
            #bfdbfe 68%,
            #ffffff 100%
        );
}


/* =========================================================
   BACKGROUND GLOW
========================================================= */

.s9-hero-glow {
    position: absolute;

    width: 600px;
    height: 600px;

    right: -150px;
    top: -250px;

    border-radius: 50%;

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

    filter: blur(5px);

    pointer-events: none;
}


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

.s9-success-content {
    position: relative;

    z-index: 5;

    text-align: center;

    max-width: 1000px;

    margin: 0 auto;

    padding: 60px 20px 100px;
}


/* Small heading */

.s9-small-title {
    color: #202329;

    font-size: clamp(34px, 4vw, 56px);

    line-height: 1.15;

    font-weight: 300;

    letter-spacing: -1.5px;

    margin-bottom: 10px;
}


/* Main heading */

.s9-success-content h1 {
    margin: 0 0 25px;

    color: #202329;

    font-size: clamp(55px, 7vw, 82px);

    line-height: 1.05;

    font-weight: 300;

    letter-spacing: -3px;
}


/* Description */

.s9-success-content p {
    max-width: 900px;

    margin: 0 auto;

    color: #25272d;

    font-size: 20px;

    line-height: 1.6;

    font-weight: 400;
}


/* =========================================================
   BOTTOM ANGLED SHAPE
========================================================= */

.s9-hero-bottom {
    position: absolute;

    z-index: 4;

    left: -5%;

    bottom: -105px;

    width: 110%;

    height: 170px;

    background: #ffffff;

    clip-path: polygon(
        0 30%,
        50% 100%,
        100% 30%,
        100% 100%,
        0 100%
    );
}


/* =========================================================
   STORY SECTION
========================================================= */

.s9-story-section {
    position: relative;

    padding: 70px 30px 100px;

    background: transparent;
}


/* Image */

.s9-story-image {
    position: relative;

    overflow: hidden;

    border-radius: 5px;
}


.s9-story-image img {
    width: 100%;

    display: block;

    min-height: 420px;

    object-fit: cover;

    transition: transform .5s ease;
}


.s9-story-image:hover img {
    transform: scale(1.03);
}


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

.s9-story-card {
    position: relative;

    margin-left: -70px;

    padding: 55px 50px;

    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);

    border-radius: 12px;

    box-shadow: var(--glass-shadow);
}


.s9-story-label {
    display: inline-block;

    margin-bottom: 15px;

    color: var(--primary);

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;
}


.s9-story-card h2 {
    margin: 0 0 22px;

    color: #282b30;

    font-size: clamp(32px, 4vw, 48px);

    line-height: 1.15;

    font-weight: 700;

    letter-spacing: -1px;
}


.s9-story-card p {
    margin: 0 0 28px;

    color: #45484d;

    font-size: 18px;

    line-height: 1.65;
}


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

.s9-story-btn {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 13px 21px;

    background: #f4c629;

    color: #222;

    border-radius: 6px;

    text-decoration: none;

    font-size: 16px;

    font-weight: 600;

    transition: all .3s ease;
}


.s9-story-btn i {
    transition: transform .3s ease;
}


.s9-story-btn:hover {
    background: #222;

    color: #ffffff;
}


.s9-story-btn:hover i {
    transform: translate(4px,-4px);
}


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

@media (max-width: 991.98px) {

    .s9-success-hero {
        min-height: 600px;
    }


    .s9-success-content {
        padding: 55px 25px 90px;
    }


    .s9-success-content p {
        font-size: 18px;
    }


    .s9-story-section {
        padding: 55px 25px 80px;
    }


    .s9-story-card {
        margin-left: 0;

        margin-top: -40px;

        position: relative;

        z-index: 5;
    }

}


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

@media (max-width: 767.98px) {

    .s9-success-hero {
        min-height: 570px;

        align-items: center;
    }


    .s9-success-content {
        padding: 45px 18px 90px;
    }


    .s9-small-title {
        font-size: 31px;

        letter-spacing: -1px;
    }


    .s9-success-content h1 {
        font-size: 47px;

        line-height: 1.05;

        letter-spacing: -2px;

        margin-bottom: 20px;
    }


    .s9-success-content p {
        font-size: 16px;

        line-height: 1.65;
    }


    /* Bottom shape */

    .s9-hero-bottom {
        bottom: -75px;

        height: 125px;

        width: 120%;

        left: -10%;
    }


    /* Story */

    .s9-story-section {
        padding: 45px 18px 70px;
    }


    .s9-story-image img {
        min-height: 280px;
    }


    .s9-story-card {
        margin-top: -25px;

        padding: 35px 25px;
    }


    .s9-story-card h2 {
        font-size: 32px;
    }


    .s9-story-card p {
        font-size: 16px;
    }

}


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

@media (max-width: 480px) {

    .s9-success-hero {
        min-height: 540px;
    }


    .s9-success-content {
        padding-left: 15px;

        padding-right: 15px;
    }


    .s9-small-title {
        font-size: 27px;
    }


    .s9-success-content h1 {
        font-size: 40px;

        letter-spacing: -1.5px;
    }


    .s9-success-content p {
        font-size: 15px;

        line-height: 1.6;
    }


    .s9-story-card {
        padding: 30px 20px;
    }


    .s9-story-card h2 {
        font-size: 28px;
    }

}









/* =========================================================
   SUCCESS STORY DETAIL
========================================================= */

.ss10-detail-section {
    position: relative;

    padding: 80px 28px 110px;

    background: #ffffff;

    overflow: hidden;
}


/* =========================================================
   ROW
========================================================= */

.ss10-detail-row {
    max-width: 1250px;

    margin: 0 auto;

    position: relative;
}


/* =========================================================
   IMAGE WRAPPER
========================================================= */

.ss10-detail-image {
    position: relative;

    width: 100%;

    height: 635px;

    overflow: hidden;

    border-radius: 4px 4px 0 0;

    z-index: 1;
}


/* Diagonal white cut at bottom */

.ss10-detail-image::after {
    content: "";

    position: absolute;

    left: -5%;

    bottom: -2px;

    width: 110%;

    height: 125px;

    background: #ffffff;

    clip-path: polygon(
        0 72%,
        100% 0,
        100% 100%,
        0 100%
    );

    z-index: 3;
}


.ss10-detail-image img {
    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center;

    display: block;

    transition: transform .6s ease;
}


.ss10-detail-image:hover img {
    transform: scale(1.025);
}


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

.ss10-detail-card {
    position: relative;

    z-index: 5;

    margin-left: -85px;

    margin-top: 45px;

    padding: 58px 45px 48px;

    background: #f5f4f1;

    border-radius: 7px;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, .035);
}


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

.ss10-detail-card h2 {
    margin: 0 0 18px;

    color: #302916;

    font-size: clamp(34px, 4vw, 49px);

    line-height: 1.08;

    letter-spacing: -1.4px;

    font-weight: 800;
}


/* =========================================================
   PARAGRAPHS
========================================================= */

.ss10-detail-card > p {
    margin: 0 0 24px;

    color: #34373b;

    font-size: 18px;

    line-height: 1.55;

    font-weight: 400;
}


.ss10-detail-card > p:last-child {
    margin-bottom: 0;
}


.ss10-detail-card strong {
    font-weight: 700;

    color: #252525;
}


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

.ss10-highlight {
    position: relative;

    margin: 22px 0 24px;

    padding: 13px 0 13px 22px;

    border-left: 5px solid var(--primary);
}


.ss10-highlight p {
    margin: 0;

    color: #36393d;

    font-size: 17px;

    line-height: 1.75;

    font-style: italic;
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1400px) {

    .ss10-detail-section {
        padding-left: 35px;

        padding-right: 35px;
    }


    .ss10-detail-row {
        max-width: 1320px;
    }


    .ss10-detail-image {
        height: 650px;
    }


    .ss10-detail-card {
        margin-left: -90px;

        padding: 62px 48px 52px;
    }

}


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

@media (max-width: 1199.98px) {

    .ss10-detail-image {
        height: 570px;
    }


    .ss10-detail-card {
        margin-left: -60px;

        padding: 45px 35px;
    }


    .ss10-detail-card h2 {
        font-size: 40px;
    }


    .ss10-detail-card > p {
        font-size: 17px;
    }

}


/* =========================================================
   TABLET / SMALL LAPTOP
========================================================= */

@media (max-width: 991.98px) {

    .ss10-detail-section {
        padding: 65px 25px 80px;
    }


    .ss10-detail-image {
        height: 500px;

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


    .ss10-detail-card {
        margin-left: 40px;

        margin-right: 40px;

        margin-top: -55px;

        padding: 40px 35px;

        z-index: 5;
    }


    .ss10-detail-card h2 {
        font-size: 38px;
    }

}


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

@media (max-width: 767.98px) {

    .ss10-detail-section {
        padding: 45px 16px 65px;
    }


    .ss10-detail-row {
        width: 100%;
    }


    /* Image */

    .ss10-detail-image {
        height: 370px;

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


    .ss10-detail-image::after {
        height: 85px;

        clip-path: polygon(
            0 72%,
            100% 0,
            100% 100%,
            0 100%
        );
    }


    /* Card */

    .ss10-detail-card {
        margin-left: 12px;

        margin-right: 12px;

        margin-top: -35px;

        padding: 32px 23px 30px;

        border-radius: 7px;
    }


    /* Heading */

    .ss10-detail-card h2 {
        font-size: 30px;

        line-height: 1.12;

        letter-spacing: -.7px;

        margin-bottom: 17px;
    }


    /* Text */

    .ss10-detail-card > p {
        font-size: 15.5px;

        line-height: 1.65;

        margin-bottom: 21px;
    }


    /* Quote */

    .ss10-highlight {
        margin: 20px 0;

        padding: 10px 0 10px 16px;

        border-left-width: 4px;
    }


    .ss10-highlight p {
        font-size: 14.5px;

        line-height: 1.7;
    }

}


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

@media (max-width: 480px) {

    .ss10-detail-section {
        padding: 35px 12px 55px;
    }


    .ss10-detail-image {
        height: 320px;
    }


    .ss10-detail-card {
        margin-left: 5px;

        margin-right: 5px;

        margin-top: -30px;

        padding: 27px 19px;
    }


    .ss10-detail-card h2 {
        font-size: 27px;

        line-height: 1.13;
    }


    .ss10-detail-card > p {
        font-size: 14.5px;

        line-height: 1.65;
    }


    .ss10-highlight p {
        font-size: 14px;

        line-height: 1.65;
    }

}

/* =========================================================
   HIGH-VISIBILITY AVAILABILITY STATUS BADGE SYSTEM
========================================================= */

.availability-status-container {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    margin-bottom: 14px;
}

.availability-status-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13.5px;
    font-weight: 800;
    letter-spacing: 0.3px;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    cursor: default;
    z-index: 5;
}

.availability-status-badge .status-text {
    line-height: 1.2;
    white-space: nowrap;
}

.availability-status-badge:hover {
    transform: translateY(-2px) scale(1.03);
}

/* Status 1: 🟢 Open to Opportunities (Neon Emerald Glass) */
.status-badge-open {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.22), rgba(5, 150, 105, 0.32));
    border: 1.5px solid #10b981;
    color: #024e3a;
    box-shadow: 0 6px 20px -2px rgba(16, 185, 129, 0.4), 0 0 15px rgba(16, 185, 129, 0.2);
}

.status-badge-open:hover {
    box-shadow: 0 8px 25px -2px rgba(16, 185, 129, 0.55), 0 0 20px rgba(16, 185, 129, 0.35);
}

/* Status 2: 🟡 Open to Selective Opportunities (Vibrant Amber Glass) */
.status-badge-selective {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.22), rgba(217, 119, 6, 0.32));
    border: 1.5px solid #f59e0b;
    color: #78350f;
    box-shadow: 0 6px 20px -2px rgba(245, 158, 11, 0.4), 0 0 15px rgba(245, 158, 11, 0.2);
}

.status-badge-selective:hover {
    box-shadow: 0 8px 25px -2px rgba(245, 158, 11, 0.55), 0 0 20px rgba(245, 158, 11, 0.35);
}

/* Status 3: ⚪ Not Currently Available (Sleek Slate Glass) */
.status-badge-unavailable {
    background: linear-gradient(135deg, rgba(100, 116, 139, 0.2), rgba(71, 85, 105, 0.3));
    border: 1.5px solid #64748b;
    color: #233350;
    box-shadow: 0 6px 18px -2px rgba(100, 116, 139, 0.3);
}

/* Live Dual-Ring Radar Pulsating Dots */
.status-pulse-dot {
    position: relative;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.status-pulse-dot::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

/* Green Dual Radar Ripple */
.status-pulse-dot.dot-green {
    background-color: #10b981;
    box-shadow: 0 0 10px #10b981;
}

.status-pulse-dot.dot-green::before {
    background-color: rgba(16, 185, 129, 0.6);
    animation: statusRadarRipple 2s infinite cubic-bezier(0, 0.2, 0.8, 1);
}

/* Amber Dual Radar Ripple */
.status-pulse-dot.dot-yellow {
    background-color: #f59e0b;
    box-shadow: 0 0 10px #f59e0b;
}

.status-pulse-dot.dot-yellow::before {
    background-color: rgba(245, 158, 11, 0.6);
    animation: statusRadarRipple 2s infinite cubic-bezier(0, 0.2, 0.8, 1);
}

/* Gray Dot */
.status-pulse-dot.dot-gray {
    background-color: #64748b;
}

/* =========================================================
   UNIVERSAL LOGO THEME & CARD OVERRIDES
========================================================= */
.text-primary, .text-indigo, .text-blue {
    color: var(--primary) !important;
}
.bg-primary, .bg-indigo, .bg-blue {
    background-color: var(--primary) !important;
}
.border-primary, .border-indigo, .border-blue {
    border-color: var(--primary) !important;
}
.btn-primary {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(198, 154, 57, 0.3) !important;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
    background-color: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
    color: #ffffff !important;
    box-shadow: 0 6px 18px rgba(198, 154, 57, 0.4) !important;
}
.btn-outline-primary {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}
.btn-outline-primary:hover, .btn-outline-primary:focus, .btn-outline-primary:active {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #ffffff !important;
}
.badge.bg-primary, .badge.bg-indigo, .box-header-badge {
    background-color: rgba(198, 154, 57, 0.12) !important;
    color: var(--primary-dark) !important;
    border: 1px solid rgba(198, 154, 57, 0.25) !important;
}
.card, .pf52-card, .y2-timeline-content, .ss10-detail-card, .resume-brief-box, .y7-calendly-card {
    border-color: rgba(198, 154, 57, 0.2) !important;
}
