/*=================================================

NAVIGATION
=================================================*/
.custom-navbar {
    background: #0b0b0b;
    border-bottom: 1px solid #232323;
    padding: 18px 0;
    transition: .35s ease;
    z-index: 9999;
}
.navbar-space {
    height: 90px;
}
/*========================

Brand
=========================*/
.navbar-brand {
    gap: 12px;
    text-decoration: none;
}
.brand-icon {
    width: 42px;
    height: 42px;
    background: #F96E04;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    font-weight: 800;
    font-size: 15px;
}
.brand-text {
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    letter-spacing: .6px;
    font-size: 19px;
}
/*========================

Menu
=========================*/
.navbar-nav {
    gap: 18px;
}
.nav-link {
    color: #b7b7b7 !important;
    font-weight: 600;
    letter-spacing: .8px;
    font-size: 14px;
    transition: .3s;
    position: relative;
}
.nav-link:hover {
    color: #F96E04 !important;
}
.nav-link.active {
    color: #F96E04 !important;
}
/*========================

Underline
=========================*/
.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: #F96E04;
    transition: .35s;
}
.nav-link:hover::after {
    width: 100%;
}
.nav-link.active::after {
    width: 100%;
}
/*========================

Hire Button
=========================*/
.btn-hire {
    background: #F96E04;
    color: #000;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 8px;
    transition: .35s;
}
.btn-hire:hover {
    background: #ff8f2d;
    color: #000;
    transform: translateY(-2px);
}
/*========================

Mobile
=========================*/
.navbar-toggler {
    border: none;
}
.navbar-toggler:focus {
    box-shadow: none;
}
/*=================================================

FOOTER
=================================================*/
.footer {
    background: #0A0A0A;
    border-top: 1px solid #222;
    padding: 90px 0 40px;
    color: #fff;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}
.footer-logo {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    background: #F96E04;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
}
.footer-description {
    color: #BDBDBD;
    line-height: 1.8;
}
.footer-status {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}
.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #22c55e;
}
.footer-title {
    color: #fff;
    margin-bottom: 25px;
    font-weight: 700;
}
.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li,
.footer-contact li {
    margin-bottom: 14px;
    color: #BDBDBD;
}
.footer-links a,
.footer-contact a {
    color: #BDBDBD;
    text-decoration: none;
    transition: .3s;
}
.footer-links a:hover,
.footer-contact a:hover {
    color: #F96E04;
}
.social-links {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}
.social-links a {
    width: 45px;
    height: 45px;
    background: #171717;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-decoration: none;
    transition: .3s;
}
.social-links a:hover {
    background: #F96E04;
    color: #000;
    transform: translateY(-3px);
}
.footer-divider {
    border-color: #222;
    margin: 60px 0 30px;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    color: #9d9d9d;
}
.floating-whatsapp {
    position: fixed;
    right: 25px;
    bottom: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
    transition: .3s;
}
.floating-whatsapp:hover {
    transform: scale(1.08);
    color: #fff;
}
.back-to-top {
    position: fixed;
    right: 25px;
    bottom: 105px;
    width: 55px;
    height: 55px;
    border: none;
    border-radius: 50%;
    background: #F96E04;
    color: #000;
    cursor: pointer;
    display: none;
    z-index: 9998;
    font-size: 20px;
    transition: .3s;
}
.back-to-top:hover {
    transform: translateY(-3px);
}
/*==============================================================
    JEFF ISAAC PORTFOLIO
    Version : 1.0
    Author  : Jeff Isaac Kamau
    Theme   : Premium Developer Portfolio
==============================================================*/
/*==============================================================
    1. GOOGLE FONTS
==============================================================*/
:root {
    /* Brand */
    --primary: #F96E04;
    --primary-light: #FF8C32;
    --primary-dark: #D85D00;
    /* Backgrounds */
    --bg: #0A0A0A;
    --bg-secondary: #111111;
    --bg-card: #171717;
    --bg-light: #1F1F1F;
    /* Text */
    --white: #FFFFFF;
    --text: #EDEDED;
    --text-light: #B5B5B5;
    --text-muted: #8A8A8A;
    /* Borders */
    --border: #272727;
    /* Status */
    --success: #22C55E;
    --danger: #EF4444;
    --warning: #FACC15;
    /* Radius */
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 18px;
    --radius-xl: 28px;
    /* Shadows */
    --shadow-sm: 0 5px 15px rgba(0, 0, 0, .18);
    --shadow: 0 10px 30px rgba(0, 0, 0, .28);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, .45);
    /* Transition */
    --transition: .35s ease;
    /* Container */
    --container: 1320px;
}
/*==============================================================
    2. RESET
==============================================================*/
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.7;
    font-size: 16px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
}
::selection {
    background: var(--primary);
    color: #000;
}
/*==============================================================
    3. TYPOGRAPHY
==============================================================*/

h1,

h2,

h3,

h4,

h5,

h6 {
    color: var(--white);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 72px;
}

h2 {
    font-size: 52px;
}

h3 {
    font-size: 38px;
}

h4 {
    font-size: 28px;
}

h5 {
    font-size: 22px;
}

h6 {
    font-size: 18px;
}

p {
    color: var(--text-light);
    margin-bottom: 20px;
}

small {
    color: var(--text-muted);
}
/*==============================================================
    4. LAYOUT
==============================================================*/
.container {
    max-width: var(--container);
}

section {
    padding: 100px 0;
    position: relative;
}
.section-header {
    margin-bottom: 60px;
}
.section-subtitle {
    color: var(--primary);
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.section-title {
    font-size: 50px;
    margin-bottom: 20px;
}
.section-description {
    max-width: 700px;
    color: var(--text-light);
}
/*==============================================================
    5. BUTTONS
==============================================================*/
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 34px;
    border-radius: 10px;
    font-weight: 700;
    transition: var(--transition);
}
.btn-primary {
    background: var(--primary);
    color: #000;
}
.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
}
.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}
.btn-outline:hover {
    background: var(--primary);
    color: #000;
}
/*==============================================================
    6. CARDS
==============================================================*/
.card-custom {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 35px;
    transition: var(--transition);
}
.card-custom:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--shadow);
}
/*==============================================================
    7. UTILITIES
==============================================================*/
.text-primary {
    color: var(--primary) !important;
}
.bg-primary {
    background: var(--primary) !important;
}
.rounded-xl {
    border-radius: var(--radius-xl);
}
.shadow {
    box-shadow: var(--shadow);
}
.text-center {
    text-align: center;
}
.mt-5 {
    margin-top: 50px;
}
.mb-5 {
    margin-bottom: 50px;
}
/*==============================================================
    JEFF ISAAC PORTFOLIO
    RESPONSIVE DESIGN SYSTEM
    Version : 1.0
==============================================================*/
/*==============================================================
    BREAKPOINTS
==============================================================

1400px  → Large Desktop

1200px  → Desktop

992px   → Laptop

768px   → Tablet

576px   → Mobile

400px   → Small Mobile
==============================================================*/
/*==============================================================
    LARGE DESKTOP
==============================================================*/
@media (max-width:1400px) {
    :root {
        --container: 1200px;
    }
    h1 {
        font-size: 64px;
    }
    h2 {
        font-size: 46px;
    }
}
/*==============================================================
    DESKTOP
==============================================================*/
@media (max-width:1200px) {
    :root {
        --container: 1140px;
    }
    section {
        padding: 90px 0;
    }
    .section-title {
        font-size: 44px;
    }
    .hero-title {
        font-size: 58px;
    }
    .hero-description {
        max-width: 550px;
    }
}
/*==============================================================
    LAPTOP
==============================================================*/
@media (max-width:992px) {
    section {
        padding: 80px 0;
    }
    .navbar {
        padding: 15px 0;
    }
    .navbar-collapse {
        background: #111;
        border: 1px solid var(--border);
        border-radius: 12px;
        margin-top: 20px;
        padding: 25px;
    }
    .navbar-nav {
        gap: 10px;
    }
    .navbar-nav .nav-link {
        padding: 12px 0;
    }
    .btn-hire {
        width: 100%;
        margin-top: 20px;
    }
    .hero-title {
        font-size: 50px;
    }
    .hero-content {
        text-align: center;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-image {
        margin-top: 50px;
        text-align: center;
    }
    .stats-card {
        margin-bottom: 30px;
    }
    .project-card {
        margin-bottom: 30px;
    }
    .footer {
        text-align: center;
    }
    .footer-brand {
        justify-content: center;
    }
    .social-links {
        justify-content: center;
    }
}
/*==============================================================
    TABLET
==============================================================*/
@media (max-width:768px) {
    section {
        padding: 70px 0;
    }
    h1 {
        font-size: 46px;
    }
    h2 {
        font-size: 38px;
    }
    h3 {
        font-size: 30px;
    }
    .section-title {
        font-size: 38px;
    }
    .hero-title {
        font-size: 42px;
    }
    .hero-subtitle {
        font-size: 16px;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .hero-buttons .btn {
        width: 100%;
    }
    .card-custom {
        padding: 28px;
    }
    .section-header {
        text-align: center;
    }
    .timeline {
        padding-left: 20px;
    }
    .timeline::before {
        left: 8px;
    }
    .timeline-item {
        padding-left: 30px;
    }
    .timeline-item::before {
        left: -2px;
    }
    .floating-whatsapp {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }
    .back-to-top {
        width: 50px;
        height: 50px;
    }
}
/*==============================================================
    MOBILE
==============================================================*/
@media (max-width:576px) {
    body {
        font-size: 15px;
    }
    section {
        padding: 60px 0;
    }
    h1 {
        font-size: 38px;
    }
    h2 {
        font-size: 32px;
    }
    h3 {
        font-size: 26px;
    }
    .section-title {
        font-size: 30px;
    }
    .section-description {
        font-size: 15px;
    }
    .hero-title {
        font-size: 34px;
        line-height: 1.2;
    }
    .hero-description {
        font-size: 15px;
    }
    .btn {
        width: 100%;
        justify-content: center;
    }
    .card-custom {
        padding: 22px;
    }
    .footer {
        padding: 70px 0 30px;
    }
    .footer-title {
        margin-top: 20px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .floating-whatsapp {
        right: 18px;
        bottom: 20px;
    }
    .back-to-top {
        right: 18px;
        bottom: 90px;
    }
}
/*==============================================================
    SMALL MOBILE
==============================================================*/
@media (max-width:400px) {
    h1 {
        font-size: 32px;
    }
    h2 {
        font-size: 28px;
    }
    .hero-title {
        font-size: 28px;
    }
    .section-title {
        font-size: 26px;
    }
    .navbar-brand {
        font-size: 16px;
    }
    .brand-icon {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }
    .card-custom {
        padding: 18px;
    }
    .btn {
        padding: 13px 20px;
        font-size: 14px;
    }
}
/*==============================================================

ABOUT SECTION
==============================================================*/
.about-section {
    padding: 120px 0;
    background: #0d0d0d;
}
.code-window {
    background: #171717;
    border: 1px solid #292929;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .35);
}
.window-header {
    padding: 18px 22px;
    border-bottom: 1px solid #252525;
}
.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
}
.red {
    background: #ff5f56;
}
.yellow {
    background: #ffbd2e;
}
.green {
    background: #27c93f;
}
.code-window pre {
    margin: 0;
    padding: 30px;
    font-size: 15px;
    line-height: 2;
    color: #ddd;
    overflow: auto;
    font-family: Consolas, monospace;
}
.code-orange {
    color: #ff8b2a;
}
.code-purple {
    color: #cb6cff;
}
.code-yellow {
    color: #ffd166;
}
.code-green {
    color: #5cff8d;
}
.about-title {
    font-size: 62px;
    line-height: 1.05;
    margin: 20px 0 35px;
    font-weight: 800;
}
.about-title span {
    display: block;
}
.about-section p {
    font-size: 19px;
    line-height: 1.9;
    margin-bottom: 28px;
    color: #bdbdbd;
}
.about-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 35px;
}
.about-highlights div {
    color: #cfcfcf;
    font-weight: 600;
}
.about-highlights i {
    color: var(--primary);
    margin-right: 10px;
}
/*==============================================================

TECHNICAL SKILLS
==============================================================*/
.skills-section {
    background: #111;
    padding: 120px 0;
}
.skill-card {
    background: #181818;
    border: 1px solid #2b2b2b;
    border-radius: 16px;
    padding: 22px;
    transition: .35s;
    position: relative;
    overflow: hidden;
}
.skill-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, .35);
}
.skill-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}
.skill-title {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-weight: 700;
    font-size: 17px;
}
.skill-title i {
    color: var(--primary);
    font-size: 20px;
}
.skill-percent {
    color: var(--primary);
    font-weight: 700;
    font-size: 15px;
}
.skill-progress {
    width: 100%;
    height: 6px;
    background: #292929;
    border-radius: 30px;
    overflow: hidden;
}
.skill-progress-fill {
    height: 100%;
    background: linear-gradient(90deg,
            var(--primary),
            #ff9836);
    border-radius: 30px;
    animation: progressAnimation 2s ease;
}
@keyframes progressAnimation {
    from {
        width: 0;
    }
}
.skill-card:hover .skill-progress-fill {
    filter: brightness(1.15);
}
.skill-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transition: .35s;
    transform-origin: left;
}
.skill-card:hover::before {
    transform: scaleX(1);
}
/*==============================================================

FEATURED PROJECTS
==============================================================*/
.projects-section {
    background: #0d0d0d;
    padding: 120px 0;
}
.view-all-link {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: .35s;
}
.view-all-link:hover {
    color: #fff;
    transform: translateX(6px);
}
.project-card {
    background: #181818;
    border: 1px solid #2c2c2c;
    border-top: 4px solid var(--primary);
    border-radius: 18px;
    padding: 28px;
    height: 100%;
    transition: .35s;
    position: relative;
}
.project-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .35);
}
.project-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}
.project-top h4 {
    margin: 0;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
}
.project-top a {
    color: var(--primary);
    font-size: 18px;
}
.project-top a:hover {
    transform: rotate(15deg);
}
.project-card p {
    color: #b8b8b8;
    margin-bottom: 22px;
    line-height: 1.8;
    min-height: 95px;
}
.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.project-tags span {
    background: #24180f;
    color: var(--primary);
    border: 1px solid rgba(249, 110, 4, .35);
    border-radius: 6px;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 600;
    transition: .3s;
}
.project-tags span:hover {
    background: var(--primary);
    color: #000;
}
.project-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    border: 1px solid transparent;
    transition: .35s;
}
.project-card:hover::before {
    border-color: rgba(249, 110, 4, .25);
}
.project-card:hover .project-top h4 {
    color: var(--primary);
}
/*==============================================================

WORK EXPERIENCE
==============================================================*/
.experience-section {
    background: #111;
    padding: 130px 0;
}
.timeline {
    position: relative;
    max-width: 1200px;
    margin: auto;
    padding: 40px 0;
}
.timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--primary);
    opacity: .6;
}
.timeline-item {
    position: relative;
    width: 50%;
    padding: 30px 60px;
}
.timeline-item.left {
    left: 0;
    text-align: right;
}
.timeline-item.right {
    left: 50%;
}
.timeline-dot {
    position: absolute;
    top: 48px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 15px rgba(249, 110, 4, .6);
}
.timeline-item.left .timeline-dot {
    right: -6px;
}
.timeline-item.right .timeline-dot {
    left: -6px;
}
.timeline-card {
    background: #181818;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    padding: 28px;
    transition: .35s;
}
.timeline-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .35);
}
.timeline-date {
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.timeline-item.left .timeline-date {
    justify-content: flex-end;
}
.timeline-card h4 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 6px;
}
.timeline-card h5 {
    color: var(--primary);
    font-size: 16px;
    margin-bottom: 18px;
    font-weight: 600;
}
.timeline-card p {
    color: #b9b9b9;
    line-height: 1.8;
    margin-bottom: 18px;
}
.timeline-card a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.timeline-card:hover a {
    color: #fff;
}
.timeline-card:hover h4 {
    color: var(--primary);
}
/*==========================

Responsive Timeline
==========================*/
@media(max-width:991px) {
    .timeline::before {
        left: 25px;
    }
    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 70px;
        padding-right: 0;
        text-align: left !important;
    }
    .timeline-dot {
        left: 19px !important;
        right: auto !important;
    }
    .timeline-date {
        justify-content: flex-start !important;
    }
}
/*==============================================================

CALL TO ACTION
==============================================================*/
.cta-section {
    position: relative;
    overflow: hidden;
    background: var(--primary);
    padding: 120px 0;
}
.cta-grid {
    position: absolute;
    inset: 0;
    opacity: .08;
    background-image:
        linear-gradient(rgba(0, 0, 0, .35) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, .35) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}
.cta-content {
    position: relative;
    z-index: 2;
}
.cta-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 84px;
    line-height: 1;
    color: #000;
    letter-spacing: 1px;
    margin-bottom: 30px;
}
.cta-description {
    max-width: 760px;
    margin: 0 auto 45px;
    color: #111;
    font-size: 18px;
    line-height: 1.9;
    font-weight: 500;
}
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.btn-dark-custom {
    background: #000;
    color: #fff;
    border: 2px solid #000;
    padding: 16px 38px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 10px;
    transition: .35s;
}
.btn-dark-custom:hover {
    background: #fff;
    color: #000;
    transform: translateY(-5px);
}
.btn-outline-dark-custom {
    background: transparent;
    color: #000;
    border: 2px solid rgba(0, 0, 0, .35);
    padding: 16px 38px;
    border-radius: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: .35s;
}
.btn-outline-dark-custom:hover {
    background: #000;
    color: #fff;
    border-color: #000;
    transform: translateY(-5px);
}
.cta-buttons .btn i {
    margin-right: 8px;
}
/*==============================================================

RESPONSIVE
==============================================================*/
@media(max-width:992px) {
    .cta-title {
        font-size: 64px;
    }
}
@media(max-width:768px) {
    .cta-section {
        padding: 90px 0;
    }
    .cta-title {
        font-size: 52px;
    }
    .cta-description {
        font-size: 16px;
    }
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .cta-buttons .btn {
        width: 280px;
    }
}
@media(max-width:576px) {
    .cta-title {
        font-size: 42px;
    }
    .cta-description {
        font-size: 15px;
    }
}
/*==============================================================

STATISTICS
==============================================================*/
.stats-section {
    background: #111;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
    padding: 70px 0;
}
.stat-box {
    text-align: center;
    position: relative;
    transition: .35s;
}
.stat-box::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 55px;
    background: #2a2a2a;
}
.col-lg-3:last-child .stat-box::after {
    display: none;
}
.stat-box h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 64px;
    color: var(--primary);
    margin-bottom: 8px;
    line-height: 1;
}
.stat-box h2 span {
    font-size: .75em;
}
.stat-box p {
    color: #999;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
    margin: 0;
}
.stat-box:hover {
    transform: translateY(-8px);
}
.stat-box:hover h2 {
    text-shadow: 0 0 20px rgba(249, 110, 4, .35);
}
@media(max-width:768px) {
    .stat-box {
        padding: 30px 0;
    }
    .stat-box::after {
        display: none;
    }
    .stat-box h2 {
        font-size: 48px;
    }
}
#scroll-progress {
    position: fixed;
    left: 0;
    top: 0;
    height: 3px;
    width: 0;
    background: var(--primary);
    z-index: 99999;
}
/* HERO SECTION IMPROVEMENTS */
.developer-card img {
    width: 100%;
    height: 620px;
    object-fit: cover;
    border-radius: 20px;
    filter: brightness(.9);
    transition: .5s;
}
.developer-card:hover img {
    transform: scale(1.03);
}
.developer-card {
    overflow: hidden;
    position: relative;
}
.floating-card {
    animation: floatCard 5s ease-in-out infinite;
}
.bottom-card {
    animation-delay: 2s;
}
@keyframes floatCard {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
    100% {
        transform: translateY(0);
    }
}
.hero-section {
    background:
        radial-gradient(circle at top right, rgba(249, 110, 4, .08), transparent 35%),
        radial-gradient(circle at bottom left, rgba(249, 110, 4, .04), transparent 40%),
        #0b0b0b;
}
/* HERO SECTION REFINEMENT AND OVERIDES */
/*==============================================================
    HERO SECTION
    Premium Developer Portfolio
==============================================================*/
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(249, 110, 4, .12), transparent 35%),
        radial-gradient(circle at bottom left, rgba(249, 110, 4, .05), transparent 40%),
        linear-gradient(180deg, #0A0A0A, #111111);
    padding: 140px 0 120px;
}
/*==============================================================

GRID
==============================================================*/
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
    background-size: 55px 55px;
    opacity: .45;
    pointer-events: none;
}
/*==============================================================

BACKGROUND GLOWS
==============================================================*/
.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
}
.hero-glow-1 {
    width: 420px;
    height: 420px;
    background: rgba(249, 110, 4, .18);
    right: -120px;
    top: -120px;
}
.hero-glow-2 {
    width: 300px;
    height: 300px;
    background: rgba(249, 110, 4, .10);
    left: -80px;
    bottom: -60px;
}
/*==============================================================

LEFT COLUMN
==============================================================*/
.hero-section .container {
    position: relative;
    z-index: 5;
}
.hero-title {
    font-size: 82px;
    line-height: 1;
    margin: 25px 0;
    font-weight: 800;
    letter-spacing: -2px;
}
.hero-title span {
    display: block;
}
.hero-role {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    color: #d6d6d6;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 28px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.hero-line {
    width: 70px;
    height: 3px;
    border-radius: 50px;
    background: var(--primary);
}
.hero-divider {
    color: var(--primary);
    font-size: 22px;
}
.hero-description {
    max-width: 640px;
    font-size: 18px;
    line-height: 1.9;
    color: #bdbdbd;
    margin-bottom: 40px;
}
/*==============================================================

BADGE
==============================================================*/
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid rgba(249, 110, 4, .30);
    background: rgba(249, 110, 4, .08);
    color: #fff;
    font-weight: 700;
    letter-spacing: .6px;
    text-transform: uppercase;
    backdrop-filter: blur(16px);
}
.hero-badge .status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #22c55e;
    animation: pulse 2s infinite;
}
/*==============================================================

BUTTONS
==============================================================*/
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 42px;
}
.hero-buttons .btn {
    min-width: 190px;
    height: 58px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: .5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.hero-buttons .btn-primary {
    box-shadow:
        0 15px 35px rgba(249, 110, 4, .28);
}
.hero-buttons .btn-outline {
    border: 2px solid rgba(249, 110, 4, .45);
}
/*==============================================================

EXPERTISE GRID
==============================================================*/
.hero-expertise {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 40px;
    margin-bottom: 20px;
    max-width: 650px;
}
.expertise-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 12px;
    background: #171717;
    border: 1px solid rgba(255, 255, 255, .06);
    transition: .35s;
}
.expertise-item:hover {
    transform: translateY(-4px);
    border-color: rgba(249, 110, 4, .45);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .35);
}
.expertise-item i {
    color: var(--primary);
    font-size: 18px;
}
.expertise-item {
    font-weight: 600;
    color: #ececec;
}
/*==============================================================

REMOTE PLATFORMS
==============================================================*/
.hero-platforms {
    margin-top: 35px;
}
.hero-platforms small {
    display: block;
    margin-bottom: 18px;
    color: #8f8f8f;
    letter-spacing: 2px;
    font-weight: 700;
}
.platform-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.platform-list span {
    padding: 10px 18px;
    border-radius: 50px;
    background: #111;
    border: 1px solid rgba(255, 255, 255, .08);
    color: #ddd;
    font-size: 14px;
    font-weight: 600;
    transition: .35s;
}
.platform-list span:hover {
    background: var(--primary);
    color: #000;
    transform: translateY(-3px);
}
/*==============================================================

TECH STACK
==============================================================*/
.hero-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 45px;
}
.hero-stack .tech-pill {
    padding: 12px 18px;
    border-radius: 50px;
    background: #181818;
    border: 1px solid rgba(249, 110, 4, .18);
    color: #f2f2f2;
    font-size: 14px;
    font-weight: 600;
    transition: .35s;
}
.hero-stack .tech-pill:hover {
    background: var(--primary);
    color: #000;
    transform: translateY(-4px);
    border-color: transparent;
}
/*==============================================================

RIGHT SIDE
==============================================================*/
.hero-right {
    position: relative;
    min-height: 760px;
    display: flex;
    align-items: center;
    justify-content: center;
}
/*==============================================================

PROFILE WRAPPER
==============================================================*/
.hero-profile-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 5;
}
/*==============================================================

PROFILE GLOW
==============================================================*/
.profile-glow {
    position: absolute;
    width: 560px;
    height: 560px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(249, 110, 4, .28),
            rgba(249, 110, 4, .08),
            transparent 72%);
    filter: blur(45px);
    animation: heroGlow 6s ease-in-out infinite;
}
/*==============================================================

PROFILE RING
==============================================================*/
.profile-ring {
    position: relative;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    padding: 10px;
    background:
        linear-gradient(135deg,
            #F96E04,
            #ffb067,
            #F96E04);
    box-shadow:
        0 25px 80px rgba(249, 110, 4, .30),
        0 0 80px rgba(249, 110, 4, .12);
    animation: rotateBorder 12s linear infinite;
}
.profile-ring::before {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: 50%;
    background: #111;
}
.profile-ring img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 50%;
    z-index: 2;
    transition: .45s;
}
.profile-ring:hover img {
    transform: scale(1.05);
}
/*==============================================================

OPEN TO WORK
==============================================================*/
.open-badge {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 26px;
    border-radius: 60px;
    background: rgba(17, 17, 17, .92);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(249, 110, 4, .30);
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 10;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .35);
}
.pulse-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #22C55E;
    animation: pulse 2s infinite;
}
/*==============================================================

IDENTITY CARD
==============================================================*/
.identity-card {
    margin-top: -45px;
    width: 360px;
    padding: 30px;
    background: rgba(18, 18, 18, .95);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(249, 110, 4, .15);
    border-radius: 22px;
    text-align: center;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .45);
    position: relative;
    z-index: 6;
}
.identity-card h3 {
    margin-bottom: 10px;
    font-size: 30px;
}
.identity-card span {
    display: block;
    color: #BDBDBD;
    margin-bottom: 18px;
    font-size: 15px;
}
.identity-location {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
}
.identity-location i {
    font-size: 18px;
}
/*==============================================================

FLOATING CARDS
==============================================================*/
.floating-card {
    position: absolute;
    width: 230px;
    padding: 22px;
    border-radius: 18px;
    background: rgba(22, 22, 22, .92);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, .08);
    display: flex;
    gap: 16px;
    align-items: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .35);
    transition: .35s;
    z-index: 20;
}
.floating-card:hover {
    transform: translateY(-10px);
    border-color: rgba(249, 110, 4, .45);
}
.floating-icon {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 24px;
    flex-shrink: 0;
}
.floating-content h3 {
    margin: 0;
    font-size: 26px;
    color: #fff;
}
.floating-content p {
    margin: 4px 0 0;
    color: #A8A8A8;
    font-size: 14px;
}
/*==============================================================

CARD POSITIONS
==============================================================*/
.experience-card {
    top: 130px;
    left: -40px;
    animation: floatCard 6s ease-in-out infinite;
}
.projects-card {
    top: 310px;
    right: -50px;
    animation: floatCard 6s ease-in-out infinite;
    animation-delay: 1.5s;
}
.remote-card {
    bottom: 110px;
    left: -20px;
    animation: floatCard 6s ease-in-out infinite;
    animation-delay: 3s;
}
/*==============================================================

MINI STATS
==============================================================*/
.hero-mini-stats {
    margin-top: 45px;
    display: flex;
    justify-content: center;
    gap: 28px;
}
.mini-stat {
    text-align: center;
}
.mini-stat strong {
    display: block;
    color: var(--primary);
    font-size: 34px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
}
.mini-stat span {
    color: #9D9D9D;
    font-size: 14px;
    letter-spacing: 1px;
}
/*==============================================================

DECORATIVE CIRCLES
==============================================================*/
.hero-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(249, 110, 4, .14);
}
.hero-circle-1 {
    width: 120px;
    height: 120px;
    top: 80px;
    right: 30px;
}
.hero-circle-2 {
    width: 70px;
    height: 70px;
    bottom: 120px;
    right: 90px;
}
.hero-circle-3 {
    width: 42px;
    height: 42px;
    top: 280px;
    left: 35px;
}
/*==============================================================

HERO ANIMATIONS
==============================================================*/
@keyframes heroGlow {
    0% {
        transform: scale(1);
        opacity: .55;
    }
    50% {
        transform: scale(1.08);
        opacity: .9;
    }
    100% {
        transform: scale(1);
        opacity: .55;
    }
}
@keyframes rotateBorder {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
@keyframes floatCard {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0);
    }
}
/*==============================================================

HERO HOVER EFFECTS
==============================================================*/
.profile-ring {
    transition: .45s;
}
.profile-ring:hover {
    transform: scale(1.03);
    box-shadow:
        0 35px 90px rgba(249, 110, 4, .35),
        0 0 90px rgba(249, 110, 4, .20);
}
.identity-card {
    transition: .35s;
}
.identity-card:hover {
    transform: translateY(-8px);
    border-color: rgba(249, 110, 4, .35);
}
.hero-badge {
    transition: .35s;
}
.hero-badge:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
}
.tech-pill {
    transition: .35s;
}
.tech-pill:hover {
    transform: translateY(-5px);
}
.platform-list span {
    transition: .35s;
}
.platform-list span:hover {
    box-shadow: 0 15px 35px rgba(249, 110, 4, .22);
}
.hero-buttons .btn {
    transition: .35s;
}
.hero-buttons .btn:hover {
    transform: translateY(-5px);
}
.floating-card {
    transition: .35s;
}
.floating-card:hover {
    transform: translateY(-10px) scale(1.03);
}
/*==============================================================

SCROLL REVEAL
==============================================================*/
.hero-title,
.hero-role,
.hero-description,
.hero-buttons,
.hero-stack,
.hero-platforms,
.hero-expertise {
    will-change: transform, opacity;
}
/*==============================================================

RESPONSIVE
==============================================================*/
@media(max-width:1400px) {
    .hero-title {
        font-size: 74px;
    }
    .profile-ring {
        width: 390px;
        height: 390px;
    }
}
@media(max-width:1200px) {
    .hero-title {
        font-size: 66px;
    }
    .profile-ring {
        width: 360px;
        height: 360px;
    }
    .identity-card {
        width: 330px;
    }
    .floating-card {
        width: 210px;
    }
}
@media(max-width:992px) {
    .hero-section {
        padding: 120px 0 80px;
        text-align: center;
    }
    .hero-role {
        justify-content: center;
    }
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-expertise {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-stack {
        justify-content: center;
    }
    .platform-list {
        justify-content: center;
    }
    .hero-right {
        margin-top: 80px;
        min-height: auto;
    }
    .profile-ring {
        width: 340px;
        height: 340px;
    }
    .floating-card {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        width: 100%;
        max-width: 420px;
        margin: 18px auto;
        animation: none;
    }
    .hero-mini-stats {
        margin-top: 35px;
    }
}
@media(max-width:768px) {
    .hero-title {
        font-size: 54px;
    }
    .hero-description {
        font-size: 16px;
    }
    .hero-expertise {
        grid-template-columns: 1fr;
    }
    .profile-ring {
        width: 300px;
        height: 300px;
    }
    .identity-card {
        width: 100%;
        max-width: 340px;
        margin-top: -35px;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .hero-buttons .btn {
        width: 100%;
    }
    .hero-mini-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
}
@media(max-width:576px) {
    .hero-section {
        padding: 100px 0 60px;
    }
    .hero-title {
        font-size: 42px;
    }
    .hero-role {
        font-size: 14px;
    }
    .hero-description {
        font-size: 15px;
        line-height: 1.8;
    }
    .hero-badge {
        font-size: 12px;
        padding: 10px 18px;
    }
    .profile-ring {
        width: 260px;
        height: 260px;
        padding: 8px;
    }
    .identity-card {
        padding: 24px;
    }
    .identity-card h3 {
        font-size: 24px;
    }
    .floating-card {
        padding: 18px;
    }
    .hero-stack {
        gap: 10px;
    }
    .hero-stack .tech-pill {
        font-size: 13px;
        padding: 10px 14px;
    }
    .platform-list span {
        font-size: 13px;
        padding: 9px 14px;
    }
}
@media(max-width:400px) {
    .hero-title {
        font-size: 36px;
    }
    .hero-role {
        font-size: 13px;
    }
    .profile-ring {
        width: 220px;
        height: 220px;
    }
    .identity-card {
        padding: 20px;
    }
    .identity-card h3 {
        font-size: 22px;
    }
    .hero-mini-stats {
        flex-direction: column;
        gap: 12px;
    }
}
/*==============================================================

PREMIUM BACKGROUND NOISE
==============================================================*/
.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: .25;
    pointer-events: none;
}
/*==============================================================

SUBTLE ORANGE OVERLAY
==============================================================*/
.hero-section::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 220px;
    background:
        linear-gradient(180deg,
            transparent,
            rgba(249, 110, 4, .05));
    pointer-events: none;
}
/*==============================================================

BACK TO TOP BUTTON
==============================================================*/
.back-to-top {
    position: fixed;
    right: 25px;
    bottom: 100px;
    width: 62px;
    height: 62px;
    border: none;
    outline: none;
    border-radius: 50%;
    background: linear-gradient(135deg,
            var(--primary),
            var(--primary-light));
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(40px);
    transition: .45s;
    z-index: 9999;
    box-shadow:
        0 15px 40px rgba(249, 110, 4, .30);
}
.back-to-top i {
    transition: .35s;
}
.back-to-top:hover {
    transform: translateY(-8px);
    box-shadow:
        0 25px 55px rgba(249, 110, 4, .45);
}
.back-to-top:hover i {
    transform: translateY(-3px);
}
.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
/* Ripple */
.back-to-top::before {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(249, 110, 4, .25);
    animation: backRipple 2s infinite;
}
@keyframes backRipple {
    0% {
        transform: scale(.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}
/*==============================================================

SECTION OFFSET
==============================================================*/

section {
    scroll-margin-top: 100px;
}
/*==============================================================
    FEATURED PROJECTS
==============================================================*/
.projects-section {
    background: var(--bg);
    position: relative;
    overflow: hidden;
}
.projects-section::before {
    content: "";
    position: absolute;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle,
            rgba(249, 110, 4, .08) 0%,
            transparent 70%);
    top: -250px;
    right: -180px;
    pointer-events: none;
}
.projects-section::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle,
            rgba(249, 110, 4, .05),
            transparent 75%);
    bottom: -220px;
    left: -150px;
    pointer-events: none;
}
/*==============================================================

SECTION HEADER
==============================================================*/
.view-all-link {
    color: var(--primary);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: .5px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: .35s;
}
.view-all-link:hover {
    color: #fff;
    transform: translateX(6px);
}
.view-all-link i {
    font-size: 20px;
}
/*==============================================================

PROJECT CARD
==============================================================*/
.project-card {
    background: linear-gradient(180deg,
            rgba(255, 255, 255, .02),
            rgba(255, 255, 255, .01));
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 24px;
    overflow: hidden;
    transition: .45s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    backdrop-filter: blur(15px);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, .30);
}
.project-card:hover {
    transform: translateY(-12px);
    border-color: rgba(249, 110, 4, .65);
    box-shadow:
        0 30px 70px rgba(249, 110, 4, .15);
}
/*==============================================================

IMAGE
==============================================================*/
.project-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
    background: #111;
}
.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s ease;
}
.project-card:hover .project-image img {
    transform: scale(1.08);
}
/*==============================================================

IMAGE OVERLAY
==============================================================*/
.project-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top,
            rgba(0, 0, 0, .70),
            rgba(0, 0, 0, .05));
}
/*==============================================================

STATUS BADGE
==============================================================*/
.project-status {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 3;
    background: #22C55E;
    color: #fff;
    padding: 7px 16px;
    border-radius: 40px;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 8px 20px rgba(34, 197, 94, .35);
}
.project-status i {
    font-size: 13px;
}
/*==============================================================

BODY
==============================================================*/
.project-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.project-category {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px;
}
.project-body h3 {
    font-size: 25px;
    margin-bottom: 16px;
    color: #fff;
    transition: .3s;
}
.project-card:hover h3 {
    color: var(--primary);
}
.project-body p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 22px;
    flex: 1;
}
/*==============================================================

CLIENT
==============================================================*/
.client-name {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #d7d7d7;
    margin-bottom: 20px;
    font-size: 14px;
}
.client-name i {
    color: var(--primary);
}
/*==============================================================

TECH TAGS
==============================================================*/
.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}
.project-tags span {
    background: #171717;
    border: 1px solid #2c2c2c;
    color: #dadada;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    transition: .35s;
}
.project-tags span:hover {
    background: var(--primary);
    color: #000;
    border-color: var(--primary);
}
/*==============================================================

BUTTON
==============================================================*/
.project-buttons {
    margin-top: auto;
}
.project-buttons .btn {
    width: 100%;
    justify-content: center;
    border-radius: 14px;
    padding: 15px;
    font-weight: 700;
    letter-spacing: .5px;
    transition: .35s;
}
.project-buttons .btn:hover {
    transform: translateY(-4px);
}
/*==============================================================

FEATURED BADGE
==============================================================*/
.project-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
    opacity: 0;
    transition: .4s;
}
.project-card:hover::before {
    opacity: 1;
}
/*==============================================================

HOVER GLOW
==============================================================*/
.project-card::after {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 24px;
    pointer-events: none;
    opacity: 0;
    transition: .45s;
    background:
        linear-gradient(135deg,
            rgba(249, 110, 4, .18),
            transparent,
            rgba(249, 110, 4, .10));
}
.project-card:hover::after {
    opacity: 1;
}
/*==============================================================

GRID ANIMATION
==============================================================*/
.project-card {
    animation: fadeUp .8s ease both;
}
/*==============================================================

VIEW ALL BUTTON
==============================================================*/
.projects-section .btn-outline {
    padding: 17px 40px;
    border-width: 2px;
    border-radius: 40px;
}
.projects-section .btn-outline:hover {
    transform: translateY(-4px);
}
/*==============================================================

ACHIEVEMENTS
==============================================================*/
.achievements-section {
    background: #090909;
    position: relative;
    overflow: hidden;
}
.achievement-card {
    display: flex;
    gap: 25px;
    padding: 35px;
    height: 100%;
    border-radius: 22px;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, .03),
            rgba(255, 255, 255, .01));
    border: 1px solid rgba(255, 255, 255, .08);
    transition: .4s;
}
.achievement-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(249, 110, 4, .18);
}
.achievement-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: rgba(249, 110, 4, .12);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}
.achievement-icon i {
    font-size: 34px;
    color: var(--primary);
}
.achievement-year {
    display: inline-block;
    margin-bottom: 10px;
    padding: 6px 15px;
    border-radius: 30px;
    background: rgba(249, 110, 4, .12);
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .8px;
}
.achievement-content h4 {
    font-size: 23px;
    margin-bottom: 15px;
}
.achievement-content p {
    margin: 0;
    line-height: 1.8;
    color: var(--text-light);
}
/*==========================================================

CONTACT PAGE
==========================================================*/
.contact-hero{

padding:120px 0 70px;
}
.contact-info-section{

padding:30px 0 70px;
}
.contact-card{

background:#171717;

border:1px solid var(--border);

border-radius:18px;

padding:40px 30px;

text-align:center;

height:100%;

transition:.35s;
}
.contact-card:hover{

transform:translateY(-8px);

border-color:var(--primary);

box-shadow:var(--shadow);
}
.contact-icon{

width:75px;

height:75px;

margin:auto;

margin-bottom:25px;

border-radius:50%;

background:rgba(249,110,4,.12);

display:flex;

align-items:center;

justify-content:center;

font-size:30px;

color:var(--primary);
}
.contact-card h5{

margin-bottom:15px;
}
.contact-card p{

margin-bottom:18px;

color:var(--text-light);
}
.contact-card a{

color:var(--primary);

font-weight:700;
}
.contact-form-section{

padding-top:30px;

padding-bottom:120px;
}
.contact-form-wrapper{

background:#171717;

border:1px solid var(--border);

padding:60px;

border-radius:22px;
}
.custom-input{

background:#111!important;

border:1px solid #2b2b2b!important;

color:#fff!important;

padding:16px 20px;

border-radius:12px;
}
.custom-input::placeholder{

color:#888;
}
.custom-input:focus{

background:#111;

border-color:var(--primary)!important;

box-shadow:none;

color:#fff;
}

textarea.custom-input{

resize:none;
}
.form-select.custom-input{

cursor:pointer;
}
/*==============================================================
    RECENT PROJECTS
==============================================================*/
.recent-projects-section{
    background:#111;
    padding:120px 0;
}
.recent-project-image{
    background:#181818;
    border:1px solid #2a2a2a;
    border-radius:20px;
    overflow:hidden;
    padding:35px;
    transition:.35s;
    box-shadow:0 20px 45px rgba(0,0,0,.25);
}
.recent-project-image:hover{
    transform:translateY(-8px);
    border-color:var(--primary);
}
.recent-project-image img{
    width:100%;
    border-radius:14px;
    object-fit:contain;
}
.recent-project-card{
    background:#181818;
    border:1px solid #2a2a2a;
    border-left:5px solid var(--primary);
    border-radius:18px;
    padding:40px;
    transition:.35s;
}
.recent-project-card:hover{
    border-color:var(--primary);
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.35);
}
.recent-project-category{
    display:inline-block;
    margin-bottom:18px;
    color:var(--primary);
    font-weight:700;
    letter-spacing:2px;
    font-size:13px;
    text-transform:uppercase;
}
.recent-project-card h3{
    font-size:34px;
    margin-bottom:20px;
}
.recent-project-card p{
    color:#bcbcbc;
    line-height:1.9;
    margin-bottom:30px;
}
.recent-project-meta{
    display:flex;
    flex-wrap:wrap;
    gap:18px;
    margin-bottom:10px;
}
.recent-project-meta div{
    display:flex;
    align-items:center;
    gap:10px;
    background:#111;
    border:1px solid #292929;
    padding:12px 18px;
    border-radius:10px;
    color:#ddd;
    font-weight:600;
}
.recent-project-meta i{
    color:var(--primary);
    font-size:18px;
}
@media(max-width:768px){
    .recent-project-card{
        padding:30px;
    }
    .recent-project-card h3{
        font-size:28px;
    }
    .recent-project-meta{
        flex-direction:column;
    }
}
/*==============================================================
    RECENT PROJECTS
==============================================================*/
.recent-projects-section{
    background:#111;
    padding:120px 0;
}
.recent-project-card{
    background:#181818;
    border:1px solid #2b2b2b;
    border-top:4px solid var(--primary);
    border-radius:18px;
    overflow:hidden;
    transition:.35s;
    height:100%;
}
.recent-project-card:hover{
    transform:translateY(-10px);
    border-color:var(--primary);
    box-shadow:0 20px 50px rgba(0,0,0,.35);
}
.recent-project-image{
    background:#111;
    padding:25px;
    border-bottom:1px solid #2b2b2b;
}
.recent-project-image img{
    width:100%;
    height:250px;
    object-fit:contain;
    border-radius:10px;
    transition:.35s;
}
.recent-project-card:hover img{
    transform:scale(1.03);
}
.recent-project-body{
    padding:28px;
}
.recent-project-body h3{
    font-size:24px;
    margin:15px 0;
}
.recent-project-body p{
    color:#b8b8b8;
    line-height:1.8;
    min-height:130px;
}
.recent-project-card .project-buttons{
    margin-top:25px;
}
.recent-project-card .btn{
    width:100%;
}