
/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: #0b0f19;
    color: white;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.logo {
    font-size: 28px;
    font-weight: bold;
}

.logo span {
    color: #ff4d4d;
}

.navbar nav a {
    margin-left: 25px;
    text-decoration: none;
    color: white;
}

.btn-talk {
    background: #ff4d4d;
    padding: 10px 18px;
    border-radius: 25px;
}

/* ===== HERO ===== */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

/* Background video */
.hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dark overlay */
.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
}

/* Content */
.hero-content {
    position: relative;
    max-width: 900px;
    padding: 20px;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
}

.hero-content h1 span {
    color: #ff4d4d;
}

.hero-content p {
    margin: 20px 0 35px;
    color: #cfd3dc;
    font-size: 18px;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-primary {
    background: #ff4d4d;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
}

.btn-secondary {
    border: 1px solid #ffffff55;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    color: white;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 34px;
    }

    .navbar {
        padding: 15px 20px;
    }
}

/* ===== WORKFLOW SECTION ===== */

.workflow {
    background: #0b0f19;
    padding: 100px 20px;
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: auto;
}

/* small pill */
.pill {
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid #ffffff33;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 20px;
}

/* heading */
.workflow h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

/* subtitle */
.subtitle {
    color: #aab2c0;
    max-width: 700px;
    margin: auto;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* filters */
.filters {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.filters span {
    font-size: 13px;
    color: #aab2c0;
    cursor: pointer;
    position: relative;
}

.filters span.active,
.filters span:hover {
    color: #ff4d4d;
}

/* card row */
.card-row {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 10px;
}

/* card */
.work-card {
    min-width: 200px;
    height: 300px;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
    transition: 0.4s;
    cursor: pointer;
}

.work-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

/* hover effect */
.work-card:hover img {
    transform: scale(1.1);
}

/* scrollbar hide */
.card-row::-webkit-scrollbar {
    display: none;
}

/* responsive */
@media (max-width: 768px) {
    .workflow h2 {
        font-size: 32px;
    }

    .work-card {
        min-width: 160px;
        height: 240px;
    }
}


/* ===== PORTFOLIO ===== */

.portfolio {
    padding: 80px 20px;
    background: #0b0f19;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* card */
.portfolio-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    height: 420px;
    background: #111;
}

.portfolio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

/* hover zoom */
.portfolio-card:hover img {
    transform: scale(1.08);
}

/* play button */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background: #ff4d4d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    z-index: 3;
    transition: 0.3s;
}

.portfolio-card:hover .play-btn {
    transform: translate(-50%, -50%) scale(1.1);
}

/* bottom gradient */
.card-gradient {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 45%;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
}

/* title */
.card-title {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-weight: 600;
    z-index: 2;
}

/* responsive */
@media (max-width: 900px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-card {
        height: 320px;
    }
}