/* Global Settings */
:root {
    --primary: #85ee00;
    --secondary: #a6ff33;
    /* A lighter shade of primary for the gradient effect */
    --bg: #000;
    --text: rgba(255, 255, 255, 0.64);
    --border: rgba(255, 255, 255, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.05);
}

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

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: "Inter", sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Preloader */
.preloader {
    position: fixed;
    z-index: 9999;
    width: 100%;
    height: 100%;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.preloader svg {
    display: none;
}


.preloader svg .circle-bg {
    stroke: rgba(255, 255, 255, 0.1);
    stroke-dashoffset: 0;
    stroke-dasharray: 1884;
}

.preloader .percent-display {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 50%;
    transform: translateY(-50%) scale(1.4);
    text-align: center;
    overflow: hidden;
    height: 90px;
    z-index: 1000;
    color: #FFF;
}

.preloader .percent-display .number {
    display: block;
    line-height: 0;
}

.preloader .percent-display span {
    font-size: 100px;
    line-height: 92px;
    display: inline-block;
    font-weight: 900;
    color: #fff;
}


/* Video Background */
.video-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.2;
    pointer-events: none;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Main Layout */
.wrapper {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
    justify-content: space-between;
}

/* Profile Sidebar */
.profile-box-wrap {
    width: 30%;
    position: sticky;
    top: 60px;
    height: calc(100vh - 120px);
}

@media (min-width: 1200px) {
    .profile-box-wrap {
        width: 25%;
    }
}

.profile-box {
    background: var(--glass-bg);
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 40px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    backdrop-filter: blur(10px);
}

.profile-image img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    margin-bottom: 20px;
}

.profile-info h5 {
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    margin-top: 10px;
}

.profile-info p {
    font-size: 15px;
    margin-top: 10px;
}

.profile-info-skills {
    font-size: 12px !important;
    margin-top: 10px !important;
    color: var(--primary);
}

.social-links {
    margin-top: auto;
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    color: var(--text);
    font-size: 20px;
    text-decoration: none;
    width: 45px;
    height: 45px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.social-links a:hover {
    color: var(--primary);
    border-color: var(--primary);
}

.email-info {
    margin-top: 20px;
    width: 100%;
}

@media (min-width: 1200px) {
    .email-info {
        margin-top: 40px;
    }
}

.email-info h6 {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    opacity: .6;
    transition: all 300ms ease;
}

.email-info:hover h6 {
    opacity: 1;
}

/* Right Content Side */
.content-side {
    width: 60%;
    padding-bottom: 50px;
}

@media (min-width: 1200px) {
    .content-side {
        width: 65%;
    }
}

@media (max-width: 991px) {
    .wrapper {
        padding: 30px 20px;
        flex-direction: column;
    }

    .profile-box-wrap {
        width: 100%;
        position: relative;
        top: 0;
        min-height: 600px;
        margin-top: 40px;
        margin-bottom: 0px;
        order: 2;
    }

    .content-side {
        width: 100%;
        order: 1;
    }
}

@media (min-width: 600px) and (max-width: 991px) {
    .profile-box-wrap {
        min-height: auto;
    }

    .profile-box {
        display: grid;
        grid-template-columns: 200px 1fr;
        gap: 15px 30px;
        text-align: left;
        align-items: center;
        padding: 30px;
    }

    .profile-image {
        grid-column: 1 / 2;
        grid-row: 1 / 4;
        height: 100%;
    }

    .profile-image img {
        margin-bottom: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .profile-info {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
    }

    .profile-info h5 {
        margin-top: 0;
    }

    .social-links {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
        justify-content: flex-start;
        margin-top: 0;
    }

    .email-info {
        grid-column: 2 / 3;
        grid-row: 3 / 4;
        margin-top: 0;
    }
}

/* Typography & Titles */
section {
    padding: 70px 0;
}

.eyebrow-badge {
    display: inline-block;
    padding: 5px 20px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.08);
    font-size: 12px;
    font-weight: 500;
    color: #9c9c9c;
    border: 1px solid rgba(255, 255, 255, 0.07);
    margin-bottom: 25px;
    letter-spacing: 1.5px;
}

.section-title {
    font-size: clamp(36px, 5vw, 60px);
    line-height: 1.2;
    font-weight: 500;
    margin-bottom: 30px;
    color: #fff;
}

.color {
    background-image: linear-gradient(278deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.text-body {
    font-size: 16px;
    line-height: 1.8;
    max-width: 800px;
    font-weight: 300;
}

/* Buttons */
.buttons-container {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.btn-color {
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    box-shadow: var(--secondary) 0px 0px 15px 0px, rgba(255, 255, 255, 0.5) 0px 0px 4px 0px inset;
    color: #000;
    /* Dark text for better contrast with bright green */
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border: 1px solid var(--secondary);
    transition: 0.3s;
}

.btn-arrow {
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid transparent;
    transition: 0.3s;
}

.btn-arrow:hover {
    color: var(--primary);
}

/* Resume Section */
.experience-item {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.experience-item div {
    font-size: 16px;
    font-weight: 300;
    flex: 1;
    min-width: 200px;
    margin-bottom: 10px;
}

.experience-item div span {
    display: block;
    font-size: 12px;
    color: var(--primary);
}

.experience-item .job-title {
    color: #fff;
}

/* Skills Section */
.skills-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.skill-category {
    background: var(--glass-bg);
    border: 1px solid var(--border);
    padding: 30px;
    border-radius: 20px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.skill-category:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.skill-category h3 {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skill-tag {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    transition: all 0.3s ease;
}

.skill-tag:hover {
    background: rgba(133, 238, 0, 0.1);
    border-color: var(--primary);
    color: #fff;
}

/* Accordion / Services */
.accordion-item {
    border-bottom: 1px solid var(--border);
}

.accordion-header {
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    transition: 0.3s;
}

.accordion-header i {
    font-size: 24px;
    color: var(--text);
}

.accordion-content {
    padding-bottom: 15px;
    font-size: 16px;
}

.accordion-content p {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 300;
}

/* Brands Marquee */
.marquee-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 20px 0;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: scroll-marquee 100s linear infinite;
}

.marquee-wrapper:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-items {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 80px;
    padding-right: 80px;
}

.marquee-image {
    height: 80px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    filter: grayscale(1) invert(1);
    mix-blend-mode: screen;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.marquee-image:hover {
    opacity: 1;
}

@keyframes scroll-marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.experience-content {
    margin-top: 20px;
}

.experience-content p {
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 10px;
}