* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f5f6f8;
    color: #111;
}

/* NAVBAR */

header {
    padding: 20px 8%;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 800;
    font-size: 22px;   /* was 50px */
    letter-spacing: 2px;
}


nav a {
    margin-left: 25px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.nav-btn {
    background: #111;
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
}

/* HERO */

.hero {
    padding: 80px 20px;
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.primary-btn,
.secondary-btn {
    padding: 14px 28px;
    margin: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
}

.primary-btn {
    background: #111;
    color: #fff;
}

.primary-btn:hover {
    background: #333;
}

.secondary-btn {
    border: 2px solid #111;
    color: #111;
}

.secondary-btn:hover {
    background: #111;
    color: #fff;
}



/* BRAND BLOCK */

.brand-block {
    margin-bottom: 50px;
}

.brand-top {
    display: flex;
    justify-content: space-between;
    max-width: 400px;
    margin: auto;
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.brand-title {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: 4px;
}

.brand-sub {
    font-size: 10px;
    letter-spacing: 4px;
    margin-top: 1px;
    color: #555;
}

/* HERO CONTENT */

.hero-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin: 20px 0;
}

.hero-content p {
    color: #555;
    margin-bottom: 30px;
}


/* Hover Effects */

.primary-btn:hover {
    background: #333;
}

.secondary-btn:hover {
    background: #111;
    color: white;
}

/* Responsive */

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    nav {
        display: none;
    }
}

/* SERVICES */

.services {
    padding: 100px 8%;
    background: white;
}

.section-container {
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

.services h2 {
    font-size: 2rem;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    padding: 40px 30px;
    border-radius: 14px;
    background: #f5f6f8;
    transition: all 0.4s ease;
    cursor: pointer;
    opacity: 0;
    transform: translateY(40px);
}


/* Desktop hover */
.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: #111;
    color: #fff;
}


/* Active state (mobile tap support) */
.service-card.active {
    background: #111;
    color: #fff;
    transform: scale(1.02);
}

/* CTA SECTION */

.cta-section {
    padding: 50px 8%;
    background: #111;
    color: white;
    text-align: center;
}

.cta-section p {
    margin: 5px 0 40px;
}

footer {
    padding: 40px 8%;
    background: #000;
    color: #777;
    text-align: center;
}

/* PAGE HERO */

.page-hero {
    padding: 100px 20px 60px;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 800;
}

.page-hero p {
    margin-top: 15px;
    color: #555;
}

/* PORTFOLIO */

.portfolio {
    padding: 60px 8% 100px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.project-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 18px;
    transition: all 0.4s ease;
    overflow: hidden;
}

.project-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.project-media {
    height: 240px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

.project-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover video {
    transform: scale(1.05);
}


/* ABOUT */

.about-section {
    padding: 80px 8%;
}

.about-container {
    max-width: 1000px;
    margin: auto;
}

.about-text h2 {
    margin: 30px 0 15px;
    font-size: 1.8rem;
}

/* CONTACT */

.contact-section {
    padding: 80px 8%;
}

.contact-container {
    max-width: 600px;
    margin: auto;
}

.contact-container form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-container input,
.contact-container textarea {
    padding: 14px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-family: 'Inter', sans-serif;
}

.contact-container button {
    cursor: pointer;
}

/* WORK HERO - DARK CINEMATIC */

.work-hero {
    height: 85vh;
    background: url('Image.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.work-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
}

.work-hero-overlay {
    position: relative;
    text-align: center;
    color: white;
    animation: fadeUp 5s ease forwards;
}

.work-hero-overlay h1 {
    font-size: 6.5rem;
    font-weight: 800;
}

.work-hero-overlay p {
    margin-top: 15px;
    opacity: 0.8;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.about-intro {
    margin-bottom: 60px;
}

.about-intro h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.pillars {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin: 60px 0;
    flex-wrap: wrap;
}

.pillar {
    flex: 1;
    min-width: 220px;
}

.pillar h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.impact-strip {
    background: #000;
    color: #fff;
    display: flex;
    justify-content: space-around;
    padding: 60px 8%;
    margin: 80px 0;
    flex-wrap: wrap;
    text-align: center;
}

.impact-box h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.founder {
    margin-top: 60px;
}

.hero-about {
    height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-img {
    width: 90%;
    max-width: 1000px;
    height: auto;
}



.about-split {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 100px 8%;
    flex-wrap: wrap;
}

.about-image {
    flex: 1;
    min-height: 400px;
    background: url('https://images.unsplash.com/photo-1556761175-b413da4baf72?q=80&w=2070') center/cover no-repeat;
    border-radius: 10px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.video-section {
    position: relative;
    height: 80vh;
    overflow: hidden;
}

.video-section video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    background: rgba(0,0,0,0.55);
}

.video-overlay h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.results-strip {
    background: #111;
    color: #fff;
    display: flex;
    justify-content: space-around;
    padding: 60px 8%;
    text-align: center;
    flex-wrap: wrap;
}

.results-box h3 {
    font-size: 4rem;
    margin-bottom: 10px;
}

.results-box p {
    opacity: 0.8;
}

/* ABOUT BRAND IDENTITY */

.brand-identity {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 16px;
    max-width: 800px;
    margin: -40px auto 80px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.about-logo {
    max-width: 180px;
    margin-bottom: 25px;
    transition: transform 0.4s ease;
}

.about-logo:hover {
    transform: scale(1.05);
}

.brand-identity h2 {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: 3px;
}

.brand-identity p {
    margin-top: 10px;
    color: #666;
}

.about-section {
    padding: 120px 10%;
    font-size: 1.15rem;
}

.about-section h2 {
    font-size: 2.8rem;
}

.about-section h3 {
    font-size: 1.6rem;
}

.about-section p {
    font-size: 1.15rem;
    line-height: 1.9;
}

/* WORK HERO ENHANCEMENT */

.work-label {
    font-size: 0.9rem;
    letter-spacing: 3px;
    opacity: 0.7;
    display: inline-block;
    margin-bottom: 20px;
}

.work-hero-overlay h1 {
    font-size: 5rem;
    line-height: 1.1;
}

.work-hero-overlay p {
    max-width: 700px;
    margin: 20px auto 30px;
    font-size: 1.2rem;
}


/* WORK INTRO */

.work-intro {
    padding: 100px 8%;
    text-align: center;
    background: white;
}

.work-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.work-intro p {
    max-width: 750px;
    margin: auto;
    font-size: 1.1rem;
    line-height: 1.8;
}


/* WORK PROCESS */

.work-process {
    padding: 100px 8%;
    background: #f5f6f8;
    text-align: center;
}

.process-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.process-box {
    flex: 1;
    min-width: 250px;
    background: white;
    padding: 40px;
    border-radius: 14px;
    transition: all 0.3s ease;
}

.process-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.process-box h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* VIDEO HERO */

.work-hero-video {
    position: relative;
    height: 90vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.work-hero-video::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
}

.work-hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 0 20px;
}

.work-label {
    font-size: 0.9rem;
    letter-spacing: 3px;
    opacity: 0.8;
    display: inline-block;
    margin-bottom: 20px;
}

.work-hero-overlay h1 {
    font-size: 5rem;
    line-height: 1.1;
    font-weight: 800;
}

.work-hero-overlay p {
    margin: 20px auto 30px;
    font-size: 1.2rem;
    opacity: 0.9;
}

.contact-hero-overlay h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

.contact-section {
    padding: 120px 8%;
    background: #f9f9f9;
}

.contact-container {
    max-width: 700px;
    margin: auto;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 50px;
}

.contact-form input,
.contact-form textarea {
    padding: 18px;
    border: 1px solid #ddd;
    font-size: 1rem;
    border-radius: 8px;
}

.contact-form button {
    padding: 18px;
    background: #000;
    color: #fff;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    background: #333;
}

.whatsapp-btn {
    display: block;
    text-align: center;
    margin-top: 3px;
    padding: 14px;
    background-color: #1eb957;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s ease;
}

.whatsapp-btn:hover {
    background-color: #136434;
}

.divider {
    text-align: center;
    margin: 20px 0;
    font-weight: 1000;
    color: #000000;
}

.contact-details {
    margin-top: 30px;
}

.contact-details h3 {
    margin-bottom: 10px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.brand-symbol {
    width: 180px;              /* Control size here */
    margin-bottom: 10px;      /* Space between logo & text */
    opacity: 0.9;             /* Clean solid look */
}