:root {
    --font-main: 'Satoshi', sans-serif;
    --font-accent: 'Instrument Serif', serif;
    --glow-blue: rgba(23, 61, 237, 0.4);
    --glow-purple: rgba(115, 33, 223, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #050505;
    color: #ffffff;
    font-family: var(--font-main);
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

.bg-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at 50% 100%, rgb(9, 20, 61) 0%, rgba(0, 0, 0, 0) 70%);
    filter: blur(120px);
    z-index: -1;
    opacity: 0.6;
    pointer-events: none;
}

section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* =========================================
   🌐 NAVBAR (GLASSMORPHISM)
=========================================== */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-logo {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.logo-img {
    height: 75px;
    width: auto;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.logo-img:hover {
    opacity: 0.8;
}

.nav-links {
    display: flex;
    gap: 30px;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
}

.nav-links a {
    color: #a1a1aa;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ffffff;
}

.nav-btn {
    background-color: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background-color: #fff;
    color: #000;
}

.hero {
    padding-top: 300px;

}

.hero-title {
    font-family: var(--font-main);
    font-size: clamp(32px, 5vw, 84px);
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1.1;
    color: #ffffff;
    margin: 0;
    margin-bottom: 20px;
}

.hero-title .line {
    display: block;
}

.hero-title .highlight {
    font-weight: 700;
    /* background: linear-gradient(90deg, #bbd14f 0%, #fa8900 40%, #ffb342 100%); */
    color: #fff;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-title .accent {
    font-family: var(--font-accent);
    font-style: italic;
    font-weight: 400;
    opacity: 0.9;
}

.accent-font {
    font-family: var(--font-accent);
    font-style: italic;
    font-weight: 400;
    opacity: 0.9;
    font-size: 1.15em;
    /* relative to the current heading size */
    line-height: inherit;
}

.hero p {
    color: #a5a5a5;
    font-weight: 600;
    font-size: clamp(0.95rem, 1.7vw, 1.4rem);
    line-height: 1.6;
    max-width: 580px;
    margin: 0 auto 32px;
    text-align: center;
}

.btn {
    display: inline-block;
    background-color: #ffffff;
    color: #000000;
    padding: 10px 22px;
    font-size: 1rem;
    font-weight: 800;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #e0e0e0;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

/* =========================================
   🎬 SHOWREEL (YOUTUBE AMBIENT GLOW EFFECT)
=========================================== */
.showreel {
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.showreel-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: transparent;
}

.showreel-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
    z-index: 2;
}

.showreel-container::before {
    content: "";
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background: linear-gradient(45deg, var(--glow-blue), var(--glow-purple), var(--glow-blue));
    background-size: 200% 200%;
    z-index: 0;
    filter: blur(50px);
    border-radius: 25px;
    opacity: 0.6;
    animation: ambientGlow 8s ease infinite;
}

@keyframes ambientGlow {
    0% {
        background-position: 0% 50%;
        opacity: 0.5;
    }

    50% {
        background-position: 100% 50%;
        opacity: 0.9;
    }

    100% {
        background-position: 0% 50%;
        opacity: 0.5;
    }
}

.value-prop h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.value-prop p {
    color: #a5a5a5;
    font-weight: 600;
    font-size: clamp(0.95rem, 1.7vw, 1.4rem);
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.cta-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 100px auto;
    width: 90%;
    max-width: 1000px;
    padding: 60px 50px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.015);
    backdrop-filter: blur(40px) saturate(100%) brightness(120%);
    -webkit-backdrop-filter: blur(40px) saturate(100%) brightness(120%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
}

.cta-section h2 {
    font-size: clamp(1.9rem, 4vw, 3rem);
    line-height: 1.1;
    max-width: 100%;
    margin: 0;
    text-align: center;
}

.cta-section p {
    color: #c1c1c1;
    font-weight: 600;
    font-size: clamp(0.95rem, 1.7vw, 1.4rem);
    line-height: 1.6;
    max-width: 640px;
    margin: 16px auto 24px;
    text-align: center;
}


footer {
    text-align: center;
    padding: 50px 20px;
    color: #a2a0a0;
    font-size: 0.9rem;
}


/* =========================================
   📦 SERVICES (BENTO GRID)
=========================================== */
.services {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: clamp(2rem, 5vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 60px;
    letter-spacing: -1px;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    text-align: left;
}

.bento-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.bento-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #fff, #777);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.bento-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.bento-card p {
    font-size: 1rem;
    color: #a1a1aa;
    line-height: 1.6;
}


/* =========================================
   🖼️ PORTFOLIO (GALLERY GRID)
=========================================== */
.portfolio {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.portfolio-subtitle {
    color: #a1a1aa;
    font-size: 1.1rem;
    margin-top: -40px;
    margin-bottom: 50px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

.portfolio-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
    background: #111;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0.8;
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-item:hover img {
    transform: scale(1.05);
    opacity: 1;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay span {
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.5px;
    transform: translateY(10px);
    transition: transform 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay span {
    transform: translateY(0);
}

/* =========================================
   🎛️ PORTFOLIO TABS
=========================================== */
.portfolio-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.tab-btn {
    background: transparent;
    color: #a1a1aa;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

.tab-btn.active {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.reels-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 80px;
}

.reel-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 9 / 16;
    border: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
    background: #111;
}

.reel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0.8;
}

.reel-item:hover img {
    transform: scale(1.05);
    opacity: 1;
}

.reel-item .portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.reel-item:hover .portfolio-overlay {
    opacity: 1;
}

.reel-item .portfolio-overlay span {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    transform: translateY(10px);
    transition: transform 0.4s ease;
}

.reel-item:hover .portfolio-overlay span {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .hero {
        padding-bottom: 0;
    }

    .hero p {
        margin-bottom: 22px;
    }

    .showreel {
        margin-top: 24px;
    }

    .reels-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.btn-outline {
    background-color: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background-color: #fff;
    color: #000;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

/* =========================================
   ❓ FAQ SECTION (ACCORDION)
=========================================== */
.faq-section {
    padding: 80px 20px 120px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary {
    padding: 24px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    letter-spacing: -0.5px;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: #a1a1aa;
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
    color: #fff;
}

.faq-item[open] {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.15);
}

.faq-content {
    padding: 0 30px 30px 30px;
}

.faq-content p {
    color: #a1a1aa;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* =========================================
   🪄 CINEMATIC SCROLL ANIMATIONS
=========================================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}




body {
    background-color: #000;
    position: relative;
    overflow-x: hidden;
    margin: 0;
    min-height: 100vh;
}

body::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 901px;
    background: radial-gradient(circle at 50% 70%, rgb(9, 20, 61) 0%, rgba(0, 0, 0, 0) 40%);
    pointer-events: none;
    z-index: -1;
}