* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

html,
body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
    background: #ffffff;
    color: #111;
}



/* Hero Section Container */
.about-title-section {
    padding-top: 100px;
    text-align: center;
    background-color: #fff;
    overflow: visible;
}

/* Bada "Projects" Heading */
.main-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 50px;
    margin-top: 40px;
    padding-left: 8%;
    padding-right: 8%;
    color: #000;
    letter-spacing: -1px;
    position: relative;
    z-index: 5;
}

/* Strip Styling */
.skill-strip-container {
    width: 100%;
    position: relative;
    padding: 10px 0 30px 0;
    overflow: hidden;
}

/* HERO IMAGE */
.hero-img {
    width: 380px;
    height: 380px;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

.hero-img::before {
    display: none;
}

.hero-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center top;
    border-radius: 0%;
    position: relative;
    z-index: 2;
}

.tag {
    position: absolute;
    background: #eee6ff;
    color: #a78bfa;
    padding: 12px 22px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 10px 22px rgba(167, 139, 250, 0.18);
    z-index: 5;
}

.tag1 {
    left: -85px;
    top: 48%;
}

.tag2 {
    right: -60px;
    top: 5%;
}

.tag3 {
    right: -78px;
    bottom: 14%;
}

@keyframes float {

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

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

.tag1 {
    animation: float 6s ease-in-out infinite;
}

.tag2 {
    animation: float 5s ease-in-out infinite;
}

.tag3 {
    animation: float 4s ease-in-out infinite;
}

.skill-strip {
    background: linear-gradient(90deg, #a78bfa, #8b73e6);
    padding: 18px 0;
    transform: rotate(-2deg);
    width: 125%;
    margin-left: -12.5%;
    display: flex;
    position: relative;
    z-index: 1;
}

.strip-track {
    display: flex;
    gap: 60px;
    white-space: nowrap;
    width: max-content;
    animation: scrollStrip 18s linear infinite;
}

.strip-track span {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
}

/* IMPORTANT */
@keyframes scrollStrip {
    0% {
        transform: translateX(0);
    }

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

/* BUTTONS & UTILITIES */
.buttons {
    display: flex;
    gap: 18px;
    align-items: center;
}

.buttons.center {
    justify-content: center;
}

.btn {
    min-width: 155px;
    height: 56px;
    padding: 0 28px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s ease;
}

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

.primary {
    background: #a78bfa;
    color: #fff;
    box-shadow: 0 12px 25px rgba(167, 139, 250, 0.35);
}

.outline {
    background: #fff;
    color: #a78bfa;
    border: 1px solid #eee8ff;
}

/* SECTIONS */
.projects,
.about,
.services,
.contact {
    padding: 80px 8%;
}

.section-label {
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

h2 {
    font-size: 34px;
    font-weight: 800;
}

.about h2 span,
.contact h2,
.services h2 {
    color: #a78bfa;
}

.small-btn {
    min-width: auto;
    height: 44px;
    font-size: 13px;
    padding: 0 22px;
}

/* ===== PROJECT SECTION ===== */

.projects {
    position: relative;
    padding: 80px 8% 40px;
    background: #fafafa;
    overflow: hidden;
}

/* BACKGROUND TEXT */
.projects-bg-text {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 60px;
    font-weight: 800;
    letter-spacing: 14px;
    color: rgba(0, 0, 0, 0.06);
    z-index: 0;
}

/* HEADER */
.projects-header {
    position: relative;
    z-index: 2;

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

    margin-bottom: 50px;
    margin-top: -35px;
}

.projects-header h2 {
    font-size: 34px;
    font-weight: 800;
}

.projects-header h2 span {
    color: #a78bfa;
}

.projects-header .section-label {
    margin-bottom: 10px;
}

.projects-header .small-btn {
    padding: 14px 30px;
    border-radius: 40px;
}

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

.project-card {
    background: #ffffff;
    border-radius: 16px;

    padding: 38px 45px;

    display: grid;
    grid-template-columns: 1.1fr 1fr;

    gap: 45px;
    align-items: center;

    margin-bottom: 40px;
    transition: 0.35s ease;
}

/* HOVER */
.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
    background: #e7e6eb;
}

/* IMAGE */
.project-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 14px;
    transition: 0.4s ease;
}

.project-card:hover img {
    transform: scale(1.04);
}

/* CONTENT */
.project-content {
    max-width: 480px;
}

/* CHIPS */
.chips {
    display: flex;
    gap: 14px;
    margin-bottom: 16px;
}

.chips span {
    border: 1px solid #ddd;
    border-radius: 30px;
    padding: 6px 18px;
    font-size: 12px;
}

/* TEXT */
.project-card h3 {
    font-size: 26px;
    margin-bottom: 12px;
}

.project-card p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* BUTTON */
.case-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 28px;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(135deg, #a78bfa, #8b5cf6);
    box-shadow: 0 12px 30px rgba(139, 92, 246, 0.35);
    transition: 0.3s ease;
}

.case-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(139, 92, 246, 0.45);
}

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

@media (max-width: 900px) {
    .about {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-visual {
        width: 320px;
        height: 320px;
    }

    .about-pill {
        font-size: 10px;
        padding: 7px 14px;
    }
}

/* FADE */
.fade {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.7s ease;
}

.fade.show {
    opacity: 1;
    transform: translateY(0);
}





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

@media (max-width: 900px) {
    .about-title-section {
        padding-top: 100px;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        min-height: auto;
        padding: 55px 6% 90px;
        gap: 45px;
    }

    .hero-text h1 {
        font-size: 38px;
    }

    .desc {
        font-size: 17px;
        margin-left: auto;
        margin-right: auto;
    }

    .buttons,
    .stats,
    .contact-links,
    .skill-strip {
        flex-wrap: wrap;
        justify-content: center;
    }

    .btn {
        min-width: 145px;
        height: 52px;
        font-size: 15px;
    }

    .hero-img {
        width: 300px;
        height: 300px;
    }

    .tag {
        font-size: 12px;
        padding: 8px 14px;
    }

    .tag1 {
        left: -15px;
        top: 40%;
    }

    .tag2 {
        right: -5px;
        top: 5%;
    }

    .tag3 {
        right: -10px;
        bottom: 12%;
    }

    .main-title {
        font-size: 1.7rem;
        margin-bottom: 16px;
    }

    .skill-strip {
        margin-top: 10px;
        padding: 12px 0;
    }

    .strip-track {
        gap: 30px;
        animation: scrollStrip 25s linear infinite;
    }

    .strip-track span {
        font-size: 16px;
    }

    .project-card,
    .about,
    .services {
        grid-template-columns: 1fr;
    }

    .project-card {
        gap: 25px;
        padding: 24px;
    }

    .project-card img {
        height: auto;
    }

    .reverse div {
        order: 2;
    }

    .reverse img {
        order: 1;
    }

}