* {
    box-sizing: border-box;
}

@font-face {
    font-family: 'Delight';
    src: url('fonts/Delight-Thin.woff2') format('woff2'),
        url('fonts/Delight-Thin.woff') format('woff'),
        url('fonts/Delight-Thin.ttf') format('truetype'),
        url('fonts/Delight-Thin.svg#Delight-Thin') format('svg');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Delight';
    src: url('fonts/Delight-ExtraLight.woff2') format('woff2'),
        url('fonts/Delight-ExtraLight.woff') format('woff'),
        url('fonts/Delight-ExtraLight.ttf') format('truetype'),
        url('fonts/Delight-ExtraLight.svg#Delight-ExtraLight') format('svg');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Delight';
    src: url('fonts/Delight-Light.woff2') format('woff2'),
        url('fonts/Delight-Light.woff') format('woff'),
        url('fonts/Delight-Light.ttf') format('truetype'),
        url('fonts/Delight-Light.svg#Delight-Light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Delight';
    src: url('fonts/Delight-Regular.woff2') format('woff2'),
        url('fonts/Delight-Regular.woff') format('woff'),
        url('fonts/Delight-Regular.ttf') format('truetype'),
        url('fonts/Delight-Regular.svg#Delight-Regular') format('svg');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Delight';
    src: url('fonts/Delight-Regular_1.woff2') format('woff2'),
        url('fonts/Delight-Regular_1.woff') format('woff'),
        url('fonts/Delight-Regular_1.ttf') format('truetype'),
        url('fonts/Delight-Regular_1.svg#Delight-Regular_1') format('svg');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Delight';
    src: url('fonts/Delight-Medium.woff2') format('woff2'),
        url('fonts/Delight-Medium.woff') format('woff'),
        url('fonts/Delight-Medium.ttf') format('truetype'),
        url('fonts/Delight-Medium.svg#Delight-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Delight';
    src: url('fonts/Delight-SemiBold.woff2') format('woff2'),
        url('fonts/Delight-SemiBold.woff') format('woff'),
        url('fonts/Delight-SemiBold.ttf') format('truetype'),
        url('fonts/Delight-SemiBold.svg#Delight-SemiBold') format('svg');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Delight';
    src: url('fonts/Delight-Bold.woff2') format('woff2'),
        url('fonts/Delight-Bold.woff') format('woff'),
        url('fonts/Delight-Bold.ttf') format('truetype'),
        url('fonts/Delight-Bold.svg#Delight-Bold') format('svg');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Delight';
    src: url('fonts/Delight-ExtraBold.woff2') format('woff2'),
        url('fonts/Delight-ExtraBold.woff') format('woff'),
        url('fonts/Delight-ExtraBold.ttf') format('truetype'),
        url('fonts/Delight-ExtraBold.svg#Delight-ExtraBold') format('svg');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Delight';
    src: url('fonts/Delight-Black.woff2') format('woff2'),
        url('fonts/Delight-Black.woff') format('woff'),
        url('fonts/Delight-Black.ttf') format('truetype'),
        url('fonts/Delight-Black.svg#Delight-Black') format('svg');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --bg-color: #ffffff;
    --text-color: #111111;
    --pink-color: #ff3366;
    --grey-color: rgb(0 0 0 / 40%);
    --light-grey: #f0f0f0;
    --black-bg: #0a0a0a;
}

body {
    font-family: 'Delight', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.5;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}


.pink-text {
    color: var(--pink-color);
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Delight', sans-serif;
}

.hero{
    padding: 30px 30px 60px 30px;
}
.recently-saved{
    padding: 60px 0px;
}
/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--bg-color);
    padding: 30px 30px;
}

.logo {
    font-weight: 700;
    font-size: 1.2rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-links a {
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--pink-color);
}

.nav-links a.nav-active {
    color: var(--pink-color);
    font-weight: 700;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-color);
}

/* Logo as link */
a.logo {
    text-decoration: none;
    color: inherit;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Hero Section */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

.hero-left h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.04em;
    max-width: 800px;
}

.hero-right {
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-top: 1rem;
}

.hero-desc {
    color: var(--pink-color);
    font-size: 0.95rem;
    line-height: 1.6;
}

.hero-tag {
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Show Reel */
.show-reel-section {
    width: 100%;
}

.show-reel {
    background-color: var(--black-bg);
    color: white;
    height: 800px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.show-reel-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.6;
}

.show-reel h2 {
    font-size: 5rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    position: relative;
    z-index: 2;
}

.show-reel-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    pointer-events: none;
}

.show-reel-overlay h2 {
    margin: 0;
    font-size: clamp(3rem, 8vw, 5rem);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* Marquee Section */
.marquee-section {
    background-color: var(--black-bg);
    color: white;
    padding: 1.5rem 0;
    overflow: hidden;
    margin-top: 70px;
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
    gap: 4rem;
    font-size: 24px;
    font-weight: 600;
}


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

/* Section Header Shared */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    padding: 0px 30px;
}
.section-header h2 {
    font-size: 69px;
    font-weight: 600;
}
.view-all {
 background-color: var(--grey-color);
    color: white;
    padding: 7px 24px;
    border-radius: 2rem;
    font-size: 24px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.view-all:hover {
    background-color: #666;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.portfolio-card .img-wrapper {
    width: 100%;
    border-radius: 1rem;
    overflow: hidden;
    aspect-ratio: 4/5;
}

.portfolio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-card:hover img {
    transform: scale(1.05);
}

.slider-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.slider-text {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    max-width: 250px;
}

.progress-bar {
    width: 200px;
    height: 4px;
    background-color: var(--light-grey);
    border-radius: 2px;
    position: relative;
}

.progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 20%;
    background-color: var(--grey-color);
    border-radius: 2px;
}

.slider-count {
    font-size: 0.85rem;
    font-weight: 600;
}

.services-content {
    position: relative;
    height: 610px;
    width: 100%;
}

.services-carousel {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
    height: 100%;
    padding: 0px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
}

.services-carousel::-webkit-scrollbar {
    display: none;
}

.service-card {
    position: relative;
    height: 393px;
    flex-shrink: 0;
    /* Fixed pixel width to guarantee a perfect vertical rectangle on all screens */
    width: 270px;
    border-radius: 1.5rem;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    scroll-snap-align: center;
}

.service-card.active {
    height: 610px;
    width: 420px;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    transition: height 0.4s ease;
    z-index: 1;
}

.service-card.active::after {
    height: 80%;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
}

.service-card .card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform 0.4s ease;
}

.service-card.active .card-bg {
    transform: scale(1.05);
}

.service-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    color: white;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.service-card-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    transition: transform 0.3s ease;
}

.service-card-desc {
    font-size: 0.9rem;
    line-height: 1.4;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.3s ease, max-height 0.4s ease;
}

.service-card.active .service-card-desc {
    opacity: 1;
    max-height: 100px;
}

.services-info-panel {
    position: absolute;
    bottom: 0;
    height: 217px; /* 610px active height - 393px normal height = 217px perfectly fills the empty space */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: left 0.3s ease, right 0.3s ease;
    z-index: 10;
}

.service-desc-block {
    text-align: left;
    max-width: 480px;
    margin-bottom: 1.5rem;
    padding-top: 1.5rem;
}

.service-desc-block h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.service-desc-block .light-text {
    font-weight: 400;
    color: var(--grey-color);
    font-size: 1.1rem;
}

.service-desc-block p {
    font-size: 1.05rem;
    line-height: 1.5;
    color: #333;
}

.custom-scrollbar-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.services-scrollbar-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.custom-track {
    width: 130px;
    height: 20px;
    background-color: #a0a0a0;
    border-radius: 10px;
    position: relative;
}

.custom-thumb {
    position: absolute;
    top: 3px;
    left: 3px;
    height: 14px;
    width: 45px;
    background-color: #ffffff;
    border-radius: 7px;
    transition: transform 0.1s linear;
}

.underlined-title {
    font-size: 3rem;
    font-weight: 700;
}

.portfolio-content {
    position: relative;
    width: 100%;
    margin-top: 20px;
    padding-left: 30px;
}

.portfolio-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    margin-right: calc(-50vw + 50%);
    padding-right: 5vw;
    counter-reset: portfolio-counter;
}

.portfolio-carousel::-webkit-scrollbar {
    display: none;
}

.portfolio-card {
    position: relative;
    width: calc((100% - 60px) / 3.1);
    aspect-ratio: 4 / 5;
    flex-shrink: 0;
    border-radius: 1.5rem;
    overflow: hidden;
    scroll-snap-align: start;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.portfolio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    color: white;
    font-weight: 600;
}

.portfolio-title {
    font-size: 1.2rem;
}

.portfolio-num {
    font-size: 1.2rem;
    opacity: 0.8;
}

.portfolio-num::before {
    counter-increment: portfolio-counter;
    content: counter(portfolio-counter, decimal-leading-zero);
}

.portfolio-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3rem;
}

.portfolio-scrollbar-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.scroll-option-text {
    color: #ff3366;
    font-size: 0.9rem;
}

/* Manifesto Section */
.manifesto {
    text-align: center;
    padding: 0px 0px 0px 0px;
}

.manifesto h2 {
font-size: 110px;
    line-height: 125px;
    margin-bottom: 1.5rem;
    font-weight: bold;
    margin-top: 40px;
}

.manifesto-subtitle {
    font-size:36px;
    margin-bottom:50px;
}

.manifesto-boast {
    font-size: 1rem;
}

/* Split Images Section */
.split-images {
    display: flex;
    width: 100%;
}

.split-img {
    width: 50%;
    height: 600px;
    object-fit: cover;
}

/* About Section */
.about {
    padding: 60px 30px;
}

.about-header {
    margin-bottom: 2rem;
}

.about-header h2 {
    font-size: 69px;
    line-height: 70px;
    font-weight: 600;
    margin-bottom: 30px;
}

.about-subtitle {
    font-size: 50px;
    font-weight: 500;
    line-height: 60px;
}

.about-content {
    display: flex;
    gap: 5rem;
    align-items: flex-start;
}

.about-image-wrapper {
    flex: 1;
}

.founders-img {
    width: 100%;
    border-radius: 1rem;
    object-fit: cover;
}

.about-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    padding-top: 0;
}

.about-text h3 {
    font-size:40px;
    font-weight: 500;
}

.about-text p {
    font-size:20px;
    line-height: 30px;
    color:black;
}

.meet-team {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    font-size: 40px;
    margin-top: 1rem;
    transition: gap 0.3s ease;
}

.meet-team:hover {
    gap: 1.2rem;
}

.arrow-circle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    background-color: #e6e6e6;
    border: none;
    border-radius: 50%;
    font-size: 1rem;
    color: #000;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
    }
    
    .hero-left h1 {
        font-size: 3rem;
    }
    
    .show-reel h2 {
        font-size: 4rem;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-text {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
    
    .split-images {
        flex-direction: column;
    }
    
    .split-img {
        width: 100%;
        height: 400px;
    }
    
    .about-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .hero-left h1 {
        font-size: 2.5rem;
    }
    
    .nav-links {
        display: none; /* Hide on very small screens for now */
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .manifesto h2 {
        font-size: 3rem;
    }
}

/* Contact Section */
.contact {
    display: flex;
    padding: 0rem 5%;
    gap: 4rem;
}

.contact-form-container {
    background-color: var(--black-bg);
    color: white;
    padding: 3rem;
    border-radius: 1rem;
    flex: 1;
}

.form-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 0.5rem;
    color: white;
    font-family: inherit;
    font-size: 0.9rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group textarea {
    height: 120px;
    resize: none;
}

.submit-btn {
    background-color: rgba(255, 255, 255, 0.4);
    color: white;
    border: none;
    padding: 0.8rem 2.5rem;
    border-radius: 2rem;
    font-size: 1rem;
    cursor: pointer;
    display: block;
    margin: 2rem auto 0;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: rgba(255, 255, 255, 0.6);
}

.contact-text {
    flex: 1.4;
}

.contact-text h2 {
    font-size: 4rem;
    margin-bottom: 1rem;
    letter-spacing: -0.04em;
}

.contact-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 500px;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.5rem;
}

.contact-link .arrow-circle {
    background-color: #e0e0e0;
    border: none;
}

/* Footer Section */
.site-footer {
    background-color: var(--black-bg);
    color: white;
    padding: 5rem 0 2rem;
    border-top-left-radius: 3rem;
    border-top-right-radius: 3rem;
    margin-top: 2rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6rem;
}

.footer-desc {
    font-size: 1.5rem;
    max-width: 350px;
    margin-bottom: 3rem;
    line-height: 1.4;
}

.contact-info p {
    font-size: 24px;
    margin-bottom:40px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-info .label {
    font-size: 0.8rem;
    color: #888;
}

.nav-label {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 1rem;
}

.footer-nav {
    list-style: none;
}

.footer-nav li {
    margin-bottom: 0.5rem;
}

.footer-nav a {
    font-size: 1.5rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--pink-color);
}

.footer-middle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.socials {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.social-label {
    color: #888;
    margin-right: 1rem;
}

.socials a {
    transition: color 0.3s ease;
}

.socials a:hover {
    color: var(--pink-color);
}

.footer-bottom {
    position: relative;
    text-align: center;
}

.big-footer-logo {
    font-size: 12vw;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.05em;
    white-space: nowrap;
}

.animated-text {
    color: #888;
    margin-top: 1rem;
}

.footer-links {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    gap: 1.5rem;
    font-size: 0.8rem;
    color: #888;
}

.footer-links a:hover {
    color: white;
}

@media (max-width: 768px) {
    .contact {
        flex-direction: column-reverse;
    }
    
    .contact-form-container {
        width: 100%;
        max-width: 100%;
    }
    
    .contact-text h2 {
        font-size: 3rem;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 4rem;
    }
    
    .footer-middle {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }
    
    .big-footer-logo {
        font-size: 4rem;
    }
    
    .footer-links {
        position: static;
        margin-top: 2rem;
        justify-content: center;
    }
}
/* ===========================
   ABOUT PAGE STYLES
   =========================== */


/* About Hero */
.about-hero {
    padding-top: 5rem;
    padding-bottom: 4rem;
}

.about-hero-label {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--grey-color);
    margin-bottom: 1.5rem;
}

.about-hero-title {
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.05em;
    max-width: 900px;
}

/* BTS Section */
.bts-section {
    padding: 4rem 0;
}

.bts-header {
    text-align: center;
    margin-bottom: 3rem;
}

.bts-title {
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 0.5rem;
}

.bts-subtitle {
    color: var(--grey-color);
    font-size: 1rem;
}

.bts-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1rem;
    margin-bottom: 4rem;
}

.services-hero-video {
    position: relative;
    width: 100%;
    height: 520px;
    border-radius: 2rem;
    overflow: hidden;
    margin-top: 2rem;
}

.services-hero-video .show-reel-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

/* Services List Section */
.services-list-section {
    padding: 90px 30px;
}

.services-list-header {
    margin-bottom: 4rem;
}

.services-list-header h2 {
    font-size: 69px;
    font-weight: bold;
    line-height: 72px;
}

.services-list-header h3 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 25px;
    line-height: 34px;
    margin-top: 5px;
}

.services-list-header p {
    font-size: 24px;
    color: black;
    line-height: 36px;
    margin-bottom: 50px;
    padding-right: 62px;
}

.services-list-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 6rem;
    align-items: start;
}

.services-list-items {
    display: flex;
    flex-direction: column;
}

.service-list-item {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e5e5e5;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.service-list-item:first-child {
    border-top: unset;
}
.service-list-item:last-child{
    border:unset;
}

.service-list-item.active .svc-name,
.service-list-item:hover .svc-name {
    color:black;
    font-weight:bold;
    font-size: 64px;
}

.service-list-item.active .svc-num,
.service-list-item:hover .svc-num {
    color:black;
}

.svc-num {
    font-size: 36px;
    font-weight: 600;
    color:rgb(0 0 0 / 75%);
    min-width: 60px;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.svc-name {
    flex: 1;
    font-size: 64px;
    font-weight: 500;
    color:rgb(0 0 0 / 75%);
    transition: all 0.3s ease;
    padding-left: 80px;
}

.services-list-preview {
    position: relative;
    padding-top: 100px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.services-preview-card {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.services-preview-image {
    background-color: #0a0a0a;
    color: white;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 2rem;
    border-radius: 30px;
    position: relative;
}

.preview-img-client {
    position: absolute;
    bottom: 30px;
    left: 30px;
    font-size: 20px;
    font-weight: 600;
    text-transform: lowercase;
    color: white;
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 1;
    transform: translateY(0);
}

.services-preview-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 1;
    transform: translateY(0);
}

.fade-out {
    opacity: 0 !important;
    transform: translateY(10px) !important;
}

.services-preview-title {
    font-size: 20px;
    font-weight: 600;
    color:black;
}

.services-preview-text {
    font-size: 20px;
    line-height: 32px;
    color:black;
}

.service-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-category-pill {
    background: rgb(0 0 0 / 40%);
    color: white;
    border-radius: 999px;
    padding: 7px 38px;
    font-size: 24px;
    font-weight: 600;
    width: calc(50% - 8px);
    text-align: center;
}

.services-list-hint {
    margin-top: 2rem;
    color: #ff3366;
    font-size: 0.85rem;
    line-height: 1.6;
    max-width: 360px;
}

/* Approach Section */
.approach-section {
    background-color: white;
    color: black;
    padding:30px 30px 90px 30px;
}

.approach-title {
    font-size: 80px;
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 20px;
    color: black;
}

.approach-subtitle {
    color: black;
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 60px;
    font-weight: 500;
}

.approach-steps {
    display: flex;
    gap: 15px;
    height: 480px;
    margin-bottom: 20px;
}

.approach-step {
    background-color: #0a0a0a;
    color: white;
    border-radius: 20px;
    padding: 30px 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.5s ease;
    height: 550px;
}

.approach-step.active,
.approach-step:hover {
    flex: 2.8;
}

.step-header {
    margin-bottom: auto;
    min-width: 200px;
}

.step-num {
    font-size: 16px;
    font-weight: 400;
    color: white;
    display: block;
    margin-bottom: 5px;
}

.approach-step h3 {
font-size: 36px;
    font-weight: 500;
    margin: 0;
    line-height: 45px;
    white-space: nowrap;
}
.approach-step.active h3{
    font-size: 69px;
    font-weight: bold;
    line-height: 77px;
}

.step-content {
    opacity: 0;
    transition: opacity 0.3s ease;
    width: 350px;
    pointer-events: none;
    max-height: 0;
}

.approach-step.active .step-content,
.approach-step:hover .step-content {
    opacity: 1;
    pointer-events: auto;
    max-height: 500px;
    transition-delay: 0.2s;
}

.step-content p {
    font-size: 16px;
    line-height: 25px;
    color: white;
    margin-bottom: 20px;
    white-space: normal;
}

.step-content ul {
    list-style: none;
    padding-left: 0;
    margin: 40px 0px 0px 0px;
}

.step-content li {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
    white-space: nowrap;
}

.step-content li::before {
    content: "•";
    margin-right: 8px;
}

.approach-hint {
    font-size: 16px;
    color: #ff3366;
    margin-top: 10px;
}

/* Testimonials / Listen Section */
.listen-section {
    color: white;
    padding: 80px 0 0;
    overflow: hidden;
}

.listen-card-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 30px;
    min-height: 580px;
    background-color: #000000;
}

.listen-bg-text {
    position: absolute;
    font-size: 180px;
    font-weight: 800;
    letter-spacing: -0.04em;
    opacity: 0.12;
    text-transform: lowercase;
    color: white;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    user-select: none;
}

.listen-bg-text.left {
    left: 40px;
}

.listen-bg-text.right {
    right: 40px;
}

/* The testimonial card */
.testimonial-card--light {
    background: white;
    color: #111;
    width: 100%;
    max-width: 605px;
    border-radius: 20px;
    border: 2px solid #4fa3f7;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    z-index: 1;
}

.testimonial-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.testimonial-avatar-row {
    display: flex;
    align-items: center;
    column-gap: 18px;
}

.testimonial-author strong {
    display: block;
    font-size: 48px;
    font-weight: 500;
    color:black;
    line-height: 48px;
}

.testimonial-author span {
    font-size: 24px;
    font-weight: 400;
    color:black;
}

.quote-image-section img {
    width: 66px;
}

.quote-image-section {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
}

.quote-icon {
    font-size: 52px;
    font-weight: 800;
    color: #111;
    line-height: 1;
}

.testimonial-body p {
    font-size: 32px;
    font-weight: 600;
    line-height: 46px;
    color: #111;
}

.testimonial-meta {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    color:black;
    padding-top: 16px;
}
.testimonial-body {
    margin-bottom: 130px;
}

/* Slider */
.testimonial-slider {
    position: relative;
    width: 100%;
    max-width: 605px;
    z-index: 1;
}

.testimonial-slide {
    display: none;
    animation: fadeSlide 0.45s ease;
}

.testimonial-slide.active {
    display: block;
}

@keyframes fadeSlide {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Scroll indicator */
.listen-scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 30px 0 50px;
}

.scroll-bar {
    width: 200px;
    height: 25px;
    background: rgb(0 0 0 / 40%);
    border-radius: 999px;
    position: relative;
    cursor: pointer;
    padding: 0 10px;
    box-sizing: border-box;
}

.scroll-thumb {
    position: absolute;
    top: 7px;
    left: 0;
    height: 12px;
    background: white;
    border-radius: 999px;
    cursor: grab;
    transition: left 0.3s ease;
    box-shadow: 0px 4px 4px 0px rgb(0 0 0 / 25%);
}

.scroll-hint {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    text-align: center;
}

.scroll-hint.pink-text {
    color: #ff3366;
}

/* Large Quote */
.large-quote {
    text-align: center;
    padding:90px 30px 0px 30px;
    margin-bottom: 3rem;
}

.large-quote blockquote {
    font-size: 96px;
    font-weight: bold;
    line-height: 1.1;
    font-style: normal;
    margin-bottom: 40px;
}

.large-quote p {
    font-size: 20px;
    max-width: 640px;
    margin: 0 auto;
    font-weight: 500;
}

.large-quote-icon {
    color: var(--pink-color);
    font-size: 4rem;
    line-height: 1;
}

/* Work marquee */
.work-marquee-wrap {
    overflow: hidden;
    padding: 2rem 0;
}

.work-marquee {
    display: flex;
    gap: 2rem;
    white-space: nowrap;
    animation: marquee 18s linear infinite;
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 800;
    letter-spacing: -0.05em;
    color: #e5e5e5;
}

.work-sep {
    color: var(--pink-color);
}

/* Services Contact override */
.svc-contact {
    padding: 5rem 5%;
}

/* Responsive */
/* Removed duplicate mobile block; styles moved to main @media at bottom */
@media (max-width: 768px) {
    .approach-steps {
        grid-template-columns: 1fr;
    }
    .services-hero-title {
        font-size: 4rem;
    }
}
/* ===========================
   CONTACT PAGE STYLES
   =========================== */

/* Contact Hero */
.contact-hero {
    padding-top: 5rem;
    padding-bottom: 4rem;
}

.contact-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.contact-hero-label {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--grey-color);
    margin-bottom: 1.5rem;
}

.contact-hero-title {
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -0.05em;
    margin-bottom: 1.2rem;
}

.contact-hero-sub {
    font-size: 1rem;
    color: var(--grey-color);
    line-height: 1.65;
    max-width: 400px;
    margin-bottom: 2.5rem;
}

.contact-hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    border-radius: 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-btn--primary {
    background-color: var(--black-bg);
    color: white;
}

.cta-btn--primary:hover {
    background-color: var(--pink-color);
}

.cta-btn--outline {
    border: 2px solid #ddd;
    color: var(--text-color);
}

.cta-btn--outline:hover {
    border-color: var(--text-color);
}

/* Contact Page Form */
.contact-page-form {
    background: var(--black-bg);
    padding: 2.5rem;
    border-radius: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-page-form .form-group {
    margin-bottom: 1.2rem;
}

.contact-page-form .form-group label {
    display: block;
    color: rgba(255,255,255,0.6);
    font-size: 0.82rem;
    font-weight: 500;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.contact-page-form .form-group input,
.contact-page-form .form-group textarea,
.contact-page-form .form-group select {
    width: 100%;
    padding: 0.9rem 1rem;
    background-color: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 0.6rem;
    color: white;
    font-family: inherit;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
    outline: none;
}

.contact-page-form .form-group input::placeholder,
.contact-page-form .form-group textarea::placeholder {
    color: rgba(255,255,255,0.35);
}

.contact-page-form .form-group select option {
    background: #111;
    color: white;
}

.contact-page-form .form-group input:focus,
.contact-page-form .form-group textarea:focus,
.contact-page-form .form-group select:focus {
    border-color: rgba(255,255,255,0.4);
}

.contact-page-form .form-group textarea {
    height: 120px;
    resize: none;
}

.contact-page-form .submit-btn {
    margin-top: 0.5rem;
    width: 100%;
    padding: 1rem;
    background: white;
    color: #111;
    border: none;
    border-radius: 0.7rem;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
}

.contact-page-form .submit-btn:hover {
    background: var(--pink-color);
    color: white;
}

/* Contact Visual (globe/blob) */
.contact-visual {
    background: var(--black-bg);
    margin: 0;
    padding: 6rem 0;
    overflow: hidden;
}

.contact-visual-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.contact-visual-blob {
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 40%, #6c63ff, #3b82f6 40%, #0a0a0a 75%);
    margin-bottom: 3rem;
    animation: blobPulse 6s ease-in-out infinite;
    box-shadow: 0 0 120px rgba(108, 99, 255, 0.35);
}

@keyframes blobPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.06); }
}

.contact-visual-text {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    color: white;
    line-height: 1.1;
    margin-bottom: 1.2rem;
}

.contact-visual-sub {
    color: rgba(255,255,255,0.5);
    font-size: 1rem;
    max-width: 480px;
    line-height: 1.65;
    margin-bottom: 2rem;
}

.contact-visual-cta {
    display: inline-block;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(255,255,255,0.4);
    padding-bottom: 2px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.contact-visual-cta:hover {
    color: var(--pink-color);
    border-color: var(--pink-color);
}

/* Contact Details */
.contact-details {
    padding: 6rem 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.contact-details-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.contact-details-sub {
    font-size: 1rem;
    color: var(--grey-color);
}

.contact-detail-item {
    display: flex;
    align-items: baseline;
    gap: 1.5rem;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.contact-detail-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--grey-color);
    min-width: 90px;
}

.contact-detail-value {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-color);
}

.contact-detail-link {
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-detail-link:hover {
    color: var(--pink-color);
}

.contact-detail-divider {
    height: 2rem;
}


.faq-inner {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 6rem;
    align-items: start;
}

.faq-left h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 1rem;
}

.faq-left p {
    font-size: 1rem;
    color: var(--grey-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.faq-cta-text {
    font-size: 0.9rem !important;
    color: #555 !important;
}

.faq-email-link {
    color: var(--pink-color);
    font-weight: 600;
    text-decoration: underline;
}

.faq-item {
    border-bottom: 1px solid #e5e5e5;
    overflow: hidden;
}

.faq-item:first-child {
    border-top: 1px solid #e5e5e5;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    padding: 1.3rem 0;
    cursor: pointer;
    font-family: inherit;
    font-size: 20px;
    font-weight: 500;
    color: var(--text-color);
    text-align: left;
    gap: 1rem;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--pink-color);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1;
    flex-shrink: 0;
    color: var(--grey-color);
    transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item.open .faq-icon {
    color: var(--pink-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 0;
    font-size:15px;
    font-weight: 300;
    line-height: 1.7;
    color:black;
    transition: max-height 0.35s ease, padding-top 0.3s ease, padding-bottom 0.3s ease;
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-hero-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .contact-details {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .faq-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .contact-hero-title {
        font-size: 3rem;
    }
    .contact-visual-blob {
        width: 280px;
        height: 280px;
    }
}

/* NEW ABOUT PAGE UPDATES */
.bts-works-placeholder {
    background-color: var(--black-bg);
    border-radius: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: 700;
    letter-spacing: 0.1em;
    position: relative;
}

.works-img-text {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.works-progress-container {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.works-progress-bar {
    width: 120px;
    height: 6px;
    background-color: rgba(255,255,255,0.2);
    border-radius: 3px;
    overflow: hidden;
}

.works-progress-fill {
    width: 20%;
    height: 100%;
    background-color: white;
    border-radius: 3px;
}

.works-progress-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--pink-color);
    letter-spacing: 0.1em;
}

.founder-name-wrap {
    display: flex;
    flex-direction: column;
}

.founder-name {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.2;
}

.founder-role-text {
    font-size: 0.85rem;
    opacity: 0.9;
    font-weight: 500;
}

.team-join-btn {
    padding: 0.8rem 2rem;
    border-radius: 2rem;
    background-color: rgba(255,255,255,0.8);
    border: none;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-color);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.team-join-btn:hover {
    background-color: white;
}

/* =========================================================
   EXACT ABOUT PAGE STYLES
   ========================================================= */

body {
    background-color: #ffffff;
    color: #111111;
}

/* Hero Section */
.about-hero-exact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 30px;
}

.about-hero-title-exact {
    font-size: 120px;
    font-weight: bold;
    letter-spacing:-0.04em;
    line-height: 1;
    margin: 0;
    flex: 1;
}

.about-hero-text-exact {
    flex: 1;
    font-size:24px;
    font-weight: 500;
    line-height: inherit;
    display: flex;
    justify-content: end;
}

/* Black Banner */
.black-banner-exact {
    width: 100%;
    background-color: #0a0a0a;
    color: #ffffff;
    text-align: center;
    padding: 34px 0px;
}

.bts-banner-exact {
    height: 850px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.black-banner-exact h2 {
    font-size: 96px;
    font-weight: bold;
    margin: 0;
    line-height: 104px;
}

/* Visual Story Section */
.visual-story-section {
   padding: 90px 30px;
}

.visual-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap:20px;
}

.visual-card-left {
    background: black url(./assets/about-bg-for-right-coloumn.png) no-repeat center / cover;
    border-radius: 30px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    aspect-ratio: 4/5;
    color: white;
}

.visual-card-top {
    font-size:64px;
    font-weight: 500;
    line-height: 75px;
    margin-top: 30px;
}

.pink-text-exact {
    color: #b75be2; /* Or your specific pink/purple variable */
}

.visual-card-bottom {
    font-size: 24px;
    line-height:32px;
    max-width: 80%;
    word-spacing: 10px;
}

.visual-card-right {
    background-color: #0a0a0a;
    border-radius: 1.5rem;
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/5;
    display: flex;
    flex-direction: column;
}

.works-slider-viewport {
    width: 100%;
    height: 100%;
    overflow: hidden;
    cursor: grab;
    position: relative;
}

.works-slider-track {
    display: flex;
    height: 100%;
    will-change: transform;
}

.works-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #0a0a0a;
    color: white;
    font-size: 36px;
    font-weight: bold;
    user-select: none;
}

.works-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.slider-controls-exact {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}
.slider-track-exact {
    width: 200px;
    height: 25px;
    background-color: rgb(105 105 105 / 40%);
    border-radius: 25px;
    position: relative;
    padding: 6px 8px;
    cursor: pointer;
    margin-bottom: 20px;
}

.slider-thumb-exact {
    width: 50px;
    height: 13px;
    background-color: #ffffff;
    border-radius: 25px;
    position: absolute;
    top: 6px;
    left: 8px;
    cursor: pointer;
    transition: transform 0.15s ease-out;
}

.scroll-option-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #ff3366;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pink-subtitle-exact {
    text-align: center;
    color: #ff3366;
    font-size: 0.95rem;
    font-weight: 500;
    margin-top: 1rem;
}

/* Building Something Bigger Section */
.building-bigger-section {
    padding:0px 30px 100px 30px;
}

.building-bigger-title {
    text-align: center;
    font-size: 64px;
    font-weight: 600;
    line-height: 76px;
    margin-bottom: 30px;
}

.building-bigger-sub {
    text-align: center;
    font-size: 24px;
    color: #000000;
    line-height: 34px;
    margin-bottom: 100px;
    font-weight: 500;
}

.two-img-grid-exact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin: 0 auto;
    align-items: normal;
}

.img-col-exact {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: space-between;
}

.img-placeholder-exact {
    background-color: #0a0a0a;
    border-radius:30px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: 800;
    font-size:36px;
}

.left-img-exact {
    aspect-ratio: 1.15 / 1;
    height: 586px;
}

.right-img-exact {
    aspect-ratio: 0.85 / 1;
        height: 751px;
}

.img-caption-exact {
    font-size: 24px;
    color: #000000;
    line-height:36px;
    font-weight: 500;
}

/* Founders Stack */
.founders-stack-exact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5rem;
    padding:75px 30px;
}

.founder-item-exact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap:20px;
    width: 100%;
    max-width: 650px;
}

.founder-card-exact {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.founder-card-exact.blue-top { background-color:#2D7CFC; }
.founder-card-exact.purple-top { background-color:#802DFC; }

.founder-card-header {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    color: white;
}

.founder-name-col {
    display: flex;
    flex-direction: column;
}

.f-name {
    font-size: 36px;
    font-weight: 800;
    color: white;
    line-height: 25px;
    margin-bottom: 8px;
}

.f-role {
    font-size: 32px;
    font-weight: 600;
    color:white;
}

.f-pills {
    display: flex;
    gap: 0.5rem;
}

.f-pills span {
    width: 99px;
    height: 34px;
    border-radius: 34px;
    background-color: white;
}

.founder-card-img {
    background-color: #0a0a0a;
    aspect-ratio: 4/3;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: 800;
    font-size:48px;
    border-radius: 43px 43px 20px 20px;
    margin-top: 20px;
}

.founder-desc-exact {
    text-align: center;
    font-size: 32px;
    line-height: 41px;
    color: #000000;
    max-width: 920px;
    font-weight: 500;
}

/* Team Section */
.team-section-exact {
    padding:0px 30px 60px 30px;
}

.team-wrapper-exact {
    background-color: #C4C4C4;
    border-radius: 20px;
    padding: 4rem;
}

.team-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4rem;
}

.team-header-left h2 {
    font-size: 69px;
    font-weight: 600;
    color: white;
    margin: 0 0 13px 0;
    line-height: 50px;
}

.team-header-left p {
    color: white;
    font-size: 24px;
    line-height: 32px;
}

.join-us-btn {
    border-radius: 2rem;
    background-color: rgba(255, 255, 255, 0.4);
    color: white;
    font-weight: 600;
    font-size: 24px;
    border: none;
    cursor: pointer;
    padding: 7px 26px;
}

.team-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.team-member-card {
    border-radius:20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.tm-top {
    padding: 2rem;
    color: #111;
    display: flex;
    flex-direction: column;
}

.orange-top { background-color: #fb923c; }
.pink-top { background-color: #f43f5e; }
.green-top { background-color: #bef264; }

.tm-name {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 13px;
    margin-top: 40px;
}

.tm-role {
font-size: 40px;
    font-weight: 600;
}

.tm-desc {
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
}

.tm-img {
    background-color: #0a0a0a;
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: 800;
    font-size: 48px;
    border-radius: 43px 43px 20px 20px;
    height: 375px;
}

/* Get in Touch Section */
.get-in-touch-exact {
    padding:60px 30px;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.git-left {
    flex: 1;
}

.git-form-container {
    background-color: #0a0a0a;
    border-radius: 20px;
    padding: 30px;
    color: white;
}
.git-form-container h3 {
    font-size: 24px;
    margin-bottom: 25px;
}

.git-form-container form {
    padding: 0px 20px 20px 20px;
}

.form-group-exact {
    margin-bottom: 1.2rem;
}

.form-group-exact label {
    display: block;
    font-size: 20px;
    color: white;
    margin-bottom: 10px;
}

.form-group-exact input,
.form-group-exact textarea {
    width: 100%;
    padding: 1rem;
    background-color: rgb(210 210 210 / 50%);
    border: none;
    border-radius: 20px;
    color: white;
    font-size: 20px;
    margin-bottom: 10px;
    height: 65px;
}

.form-group-exact textarea {
    height: 151px;
    resize: none;
}

.submit-btn-exact {
    padding: 0.8rem 2.5rem;
    border-radius: 2rem;
    background-color: rgba(255,255,255,0.2);
    color: white;
    border: none;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    margin-top: 0.5rem;
}

.git-right {
    flex: 1;
}

.git-right h2 {
    font-weight: 600;
    font-size: 69px;
    line-height: 60px;
    margin-bottom: 40px;
}

.git-right p {
font-size: 24px;
    color: black;
    line-height: 30px;
    padding-right: 50px;
}

.contact-link-exact {
font-size: 36px;
    font-weight: 700;
    color: black;
    margin-top: 10px;
    display: flex;
    align-items: center;
    column-gap: 20px;
}

/* Footer Exact */
.footer-exact {
    background-color: #0a0a0a;
    color: white;
    padding: 90px 30px 30px 30px;
    border-top-left-radius: 2rem;
    border-top-right-radius: 2rem;
}

.footer-grid-exact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 4rem;
}

.footer-col-1 p {
    font-size: 32px;
    color: white;
    line-height: 42px;
    margin-bottom: 2rem;
}

.footer-contact p {
    font-size: 36px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-contact span {
    font-size: 20px;
    text-transform: uppercase;
    color: white;
    margin-right: 1rem;
}

.footer-col-2 {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col-2 .f-label {
    font-size: 20px;
    color: white;
    margin-bottom: 0px;
    font-weight: 400;
}

.footer-col-2 a {
    font-size: 40px;
    font-weight: 800;
    line-height: 40px;
}

.footer-bottom-exact {
    display: flex;
    justify-content: space-between;
    padding-top: 2rem;
    margin-bottom: 4rem;
    font-size: 0.85rem;
    color:white;
    align-items: center;
}

.fb-left {
    font-size: 20px;
    color: white;
}

.fb-right {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.huge-footer-logo {
    font-size: 200px;
    font-weight: 800;
    text-align: center;
    position: relative;
    line-height: 200px;
}

span.copy-right-icon {
    font-size: 145px;
}

.footer-legal {
    display: flex;
    justify-content: flex-end;
    font-size: 20px;
    color: white;
    column-gap: 20px;
}

.contact-link-exact svg {
    background-color: #D9D9D9;
    padding: 9px;
    box-sizing: border-box;
    border-radius: 30px;
    width: 31px;
    height: 31px;
}

.fb-right span {
    font-size: 24px;
    color: white;
    font-weight: 500;
}

.fb-right span.heading {
    font-size: 18px;
    font-weight: 400;
}
.huge-footer-logo::before {
    content: "";
    display: block;
    width: 100vw;
    height: 1px;
    background-color: #FFFFFF;
    left: 50%;
    transform: translatex(-50%);
    position: absolute;
    top: -30px;
}

/* Contact Page Styles */
.contact-page {
    color: black;
    background-color: white;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
    padding:0px 30px;
}

.contact-title {
    font-size: 80px;
    font-weight: 800;
    margin-bottom: 20px;
}

.contact-toggle-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.contact-toggle {
    display: flex;
    background-color: rgb(0 0 0 / 45%);
    border-radius: 999px;
    padding: 5px;
    width: 300px;
}

.toggle-btn {
    flex: 1;
    padding: 8px 0;
    border-radius: 999px;
    border: none;
    background: transparent;
    color: white;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-btn.active {
        background-color: rgb(0 0 0 / 45%);
    box-shadow: 0px 4px 4px 0px rgb(0 0 0 / 25%);
}

.toggle-hint {
    font-size: 14px;
}

.contact-views {
    position: relative;
    padding:0px 30px
}

.contact-view {
    display: none;
}

.contact-view.active {
    display: block;
}

/* Message View */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    padding-right: 40px;
}

.info-label {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    display: block;
}

.contact-info h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 60px;
    margin-bottom: 15px;
}

.info-desc {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 60px;
}

.info-details {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.contact-divider {
    border: none;
    border-top: 3px solid #000000;
    margin: 35px 0;
    opacity: 5%;
}

.info-row {
    display: flex;
    margin-bottom: 20px;
    align-items: center;
}

.info-row .label {
    width: 120px;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 500;
    color:black;
}

.info-row .value {
    font-size: 36px;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.info-socials {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.social-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-row a {
    font-size: 24px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    color: black;
    text-decoration: none;
    min-width: 135px;
    justify-content: space-between;
}

.social-handle {
    font-size: 24px;
    font-weight: 600;
}

.info-address {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.info-address .label {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 500;
    color: black;
}

.info-address .value {
    font-size: 32px;
    font-weight: 500;
}

.contact-form-wrapper {
    display: flex;
    justify-content: flex-end;
}

.black-card {
    background-color: #0a0a0a;
    border-radius: 20px;
    padding: 60px 50px;
    width: 100%;
    max-width: 600px;
}

.black-card h3 {
    color: white;
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 600;
}

.black-card .form-group {
    margin-bottom: 25px;
}

.black-card label {
    display: block;
    color: white;
    font-size: 16px;
    margin-bottom: 10px;
}

.black-card input,
.black-card textarea {
    width: 100%;
    padding: 15px 20px;
    background-color: #636363;
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 18px;
}

.black-card textarea {
    height: 120px;
    resize: none;
}

.black-card input::placeholder,
.black-card textarea::placeholder {
    color: rgba(255,255,255,0.5);
}

.form-submit {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.submit-btn-grey {
    background-color: #636363;
    color: white;
    border: none;
    padding: 12px 40px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn-grey:hover {
    background-color: #7a7a7a;
}

/* Call View */
.call-card {
    border-radius: 20px;
    padding: 80px 60px;
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 716px;
    margin-bottom: 20px;
}

.call-card h2 {
    font-size: 96px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
}

.call-card p {
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 60px;
    max-width: 600px;
    margin-top: 20px;
}

.book-call-btn {
    display: inline-block;
    background-color: rgb(210 210 210 / 50%);
    color: white;
    padding: 15px 40px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
}

.call-hint {
    text-align: center;
    font-size: 16px;
}

/* FAQ Section */
.faq-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
        padding: 90px 30px 90px 30px;
}

.faq-header h2 {
    font-size: 69px;
    font-weight: bold;
    margin-bottom: 20px;
}

.faq-header p {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 20px;
    max-width: 400px;
}

.faq-hint {
    font-size: 16px !important;
}

.faq-accordion-wrapper {
    display: flex;
    justify-content: flex-end;
}

.faq-accordion {
    width: 100%;
    max-width: 600px;
    background-color: #d9d9d9;
    padding: 20px;
    border-radius: 20px;
}

.faq-item {
    background-color: white;
    border-radius: 20px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: none;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item.active {
    background-color: white;
    border: none;
    box-shadow: none;
    transform: scale(1);
}

.faq-question {
    padding: 20px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px 20px;
    max-height: 200px; /* arbitrary max-height for animation */
}

/* Responsive Exact */
@media (max-width: 1024px) {
    /* Global Typography Rescale for Mobile */
    h1 { font-size: 36px !important; line-height: 1.2 !important; letter-spacing: -1px !important; }
    h2 { font-size: 30px !important; line-height: 1.3 !important; letter-spacing: -0.5px !important; }
    h3 { font-size: 24px !important; line-height: 1.4 !important; }
    p { font-size: 16px; line-height: 1.5; }

    .about-hero-title-exact { font-size: 38px !important; line-height: 1.1 !important; margin-bottom: 0px;}
    .about-hero-text-exact p { font-size: 16px !important; line-height: 1.5; }

    /* General Typography & Spacing Overrides */
    .navbar { padding: 15px 20px; flex-direction: row; justify-content: space-between; align-items: center; position: relative; }
    .hero { padding: 20px 20px 0px 20px; flex-direction: column; align-items: flex-start; }
    .hero-left h1 { font-size: 36px !important; line-height: 1.2 !important; margin-bottom: 20px; letter-spacing: -1px; }
    
    .show-reel { height: 350px; }
    .show-reel h2 { font-size: 32px !important; }
    .show-reel-overlay h2 { font-size: 28px !important; }
    .marquee-section { margin-top: 30px; padding: 10px 0; }
    .marquee-content { font-size: 15px; gap: 1.5rem; }
    
    .manifesto { padding: 30px 20px; text-align: center; }
    .manifesto h2 { font-size: 30px !important; line-height: 1.25 !important; margin-bottom: 15px; letter-spacing: -0.5px; }
    .manifesto-subtitle { font-size: 16px !important; margin-bottom: 0px;}
    .git-form-container{
            padding: 20px;
    }
    .get-in-touch-exact{
            gap: 2rem;
    }
    .git-form-container form
    {    padding: 0px;}
    .git-left{width: 100%;}
    .section-header { padding: 0 20px; flex-direction: column; align-items: flex-start; gap: 10px; margin-bottom: 1.5rem; }
    .section-header h2 { font-size: 30px !important; line-height: 1.2; }
    .view-all { font-size: 14px; padding: 6px 14px; }
    
    .portfolio-grid { grid-template-columns: 1fr; padding: 0 20px; gap: 1rem; }
    .portfolio-content { padding-left: 20px; }
    
    .underlined-title { font-size: 28px !important; }
    .recently-saved { padding: 40px 0; }
    
    .mobile-menu-btn { display: block; }
    .nav-links { 
        display: none; 
        position: absolute; 
        top: 100%; 
        left: 0; 
        width: 100%; 
        background-color: var(--bg-color); 
        flex-direction: column; 
        align-items: center; 
        padding: 20px; 
        gap: 15px; 
        box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); 
        z-index: 100;
    }
    .nav-links.active { display: flex; }
    
    .services-carousel { padding-left: 25px; padding-right: 25px; }
    .service-card { width: 240px; height: 350px; }
    .service-card.active { width: 85vw; height: 500px; }
    .service-card-content { padding: 20px; }
    .service-card-content h4 { font-size: 22px; margin-bottom: 8px; }
    .service-card.active .service-card-desc { font-size: 15px; max-height: 150px; }
    .services-info-panel { height: 160px; }
    .slider-indicator { margin-top: 1rem; }
    
    .portfolio-carousel { margin-right: 0; padding-right: 25px; padding-left: 25px; width: 100%; }
    .portfolio-card { width: 85vw; }
    
    .footer-exact { padding: 30px 20px 20px 20px; }
    .footer-grid-exact { grid-template-columns: 1fr; gap: 25px; margin-bottom: 25px; }
    .footer-col-1 p { font-size: 16px !important; line-height: 1.5; }
    .footer-contact p { font-size: 16px !important; }
    .footer-contact span { font-size: 12px; }
    .f-label { font-size: 12px; margin-bottom: 8px; }
    .footer-col-2 a { font-size: 20px; line-height: 1.4; }
    
    .footer-bottom-exact { flex-direction: column; gap: 15px; text-align: center; margin-bottom: 20px; }
    .fb-right { flex-wrap: wrap; justify-content: center; gap: 10px; }
    .fb-right span, .fb-right span.heading { font-size: 16px; margin-right: 10px; }
    .fb-left { font-size: 14px; }
    
    .huge-footer-logo { font-size: 32px !important; margin: 20px 0 15px 0; line-height: 40px; }
    .huge-footer-logo::before { top: -15px; }
    .footer-legal { justify-content: center; gap: 15px; }
    .footer-legal a { font-size: 13px; }
span.copy-right-icon {
    font-size: 24px !important;
    line-height: 24px !important;
}
    .about-hero-exact { flex-direction: column; gap: 2rem; }
    .visual-cards-grid { grid-template-columns: 1fr; }
    .two-img-grid-exact { grid-template-columns: 1fr; }
    .team-grid-3 { grid-template-columns: 1fr; }
    .get-in-touch-exact { flex-direction: column-reverse; }

    /* Contact Page Mobile Adjustments */
    .contact-page { padding: 30px 0; }
    .contact-header { padding: 0 15px; margin-bottom: 30px; }
    .contact-title { font-size: 36px !important; margin-bottom: 15px; }
    
    .contact-views { padding: 0 15px; }
    .contact-grid { grid-template-columns: 1fr; gap: 30px; }
    .contact-info { padding-right: 0; }
    .contact-info h2 { font-size: 26px !important; line-height: 32px !important; margin-bottom: 10px; }
    
    .info-row { flex-direction: column; align-items: flex-start; gap: 5px; margin-bottom: 15px; }
    .info-row .label { width: auto; font-size: 12px; }
    .info-row .value { font-size: 18px !important; }
    
    .info-socials { gap: 10px; }
    .social-row a, .social-handle { font-size: 15px; }
    .social-row a { min-width: 110px; }
    
    .info-address .label { font-size: 13px; }
    .info-address .value { font-size: 16px !important; }
    
    .contact-form-wrapper { justify-content: center; }
    .black-card { padding: 30px 15px; }
    
    .call-card { padding: 30px 15px; min-height: 350px; border-radius: 20px; }
    .call-card h2 { font-size: 30px !important; margin-bottom: 15px; }
    .call-card p { font-size: 15px !important; line-height: 22px; margin-bottom: 25px; }
    
    .faq-section { grid-template-columns: 1fr; gap: 30px; padding: 40px 15px; }
    .faq-header h2 { font-size: 32px !important; }
    .faq-header p { font-size: 16px !important; line-height: 24px; }
    
    .faq-accordion-wrapper { justify-content: center; }
    .faq-accordion { padding: 15px; }
    .faq-question { padding: 15px; font-size: 15px; }
    .faq-item.active .faq-answer { padding: 0 15px 15px 15px; font-size: 14px; }
    .visual-cards-grid, .two-img-grid-exact{
     display: flex;
        flex-direction: column;
    }
    .founder-card-header{
        flex-direction: column;
    row-gap: 12px;
    }
    .f-name{
            line-height: 43px;
    }
    .team-wrapper-exact{
        padding:2rem;
    }
    .team-header-flex{
            flex-direction: column;
    row-gap: 20px;
    }
    .visual-card-top{
        margin-bottom: 20px;
        font-size:40px;
        line-height: 50px;
    }
    .about-hero-text-exact p br{
        display: none;  
    }
    
    /* Services Page Mobile Adjustments */
    .services-list-section { padding: 40px 15px; }
    .services-list-header { margin-bottom: 30px; }
    .services-list-header h2 { font-size: 36px !important; line-height: 40px; margin-bottom: 10px; }
    .services-list-header h3 { font-size: 24px !important; line-height: 28px; margin-bottom: 15px; }
    .services-list-header p { font-size: 16px !important; line-height: 24px; margin-bottom: 20px; padding-right: 0; }
    .services-list-grid { grid-template-columns: 1fr; gap: 40px; }
    
    .svc-num { font-size: 20px; min-width: 40px; }
    .svc-name { font-size: 28px !important; padding-left: 15px; }
    .service-list-item.active .svc-name, .service-list-item:hover .svc-name { font-size: 28px !important; }
    
    .services-list-preview { display: flex !important; padding-top: 20px; }
    .services-preview-image { height: 250px; font-size: 1.2rem; border-radius: 15px; }
    .preview-img-client { bottom: 15px; left: 15px; font-size: 14px; }
    .services-preview-title { font-size: 18px; }
    .services-preview-text { font-size: 16px; line-height: 24px; }
    .service-category-pill { font-size: 14px; padding: 6px 15px; width: auto; }
    
    .approach-section { padding: 40px 15px; }
    .approach-title { font-size: 36px !important; margin-bottom: 15px; }
    .approach-subtitle { font-size: 16px; margin-bottom: 30px; }
    .approach-steps { display: flex; flex-direction: column; height: auto; gap: 15px; }
    .approach-step { padding: 20px; }
    .approach-step h3 { font-size: 24px !important; line-height: 30px; }
    .approach-step.active h3 { font-size: 32px !important; line-height: 36px; }
    .step-content { width: auto; max-height: none !important; opacity: 1 !important; pointer-events: auto !important; margin-top: 15px; display: none; }
    .approach-step.active .step-content { display: block; }
    .step-content p, .step-content li { font-size: 15px; line-height: 22px; }
    
    .large-quote { padding: 40px 15px 0; }
    .large-quote blockquote { font-size: 32px !important; margin-bottom: 20px; }
    .large-quote p { font-size: 16px !important; line-height: 24px; }
    
    .listen-section { padding: 40px 0 0; }
    .listen-card-wrap { min-height: auto; padding: 30px 15px; }
    .listen-bg-text { font-size: 60px; }
    .testimonial-card--light { padding: 20px; }
    .testimonial-author strong { font-size: 24px !important; line-height: 28px; }
    .testimonial-author span { font-size: 16px; }
    .quote-icon { font-size: 36px; }
    .testimonial-body p { font-size: 18px; line-height: 26px; }
    .testimonial-body { margin-bottom: 40px; }
    .scroll-bar { width: 150px; }
}
