* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}


/* ================= VARIABLES ================= */
:root {
    --primary-color: #ff7a00;
    --text-dark: #1a1a1a;
    --transition: all 0.3s ease;
}

/* ================= NAVBAR ================= */
/* ================= NAVBAR ================= */

.main-navbar {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 18px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-left,
.nav-center,
.nav-right {
    display: flex;
    align-items: center;
}

/* Logo */
.nav-logo {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 2px;
    text-decoration: none;
    color: #111;
}
.nav-logo img {
    height: 89px;     /* adjust size here */
    width: auto;
    object-fit: contain;
}

/* Center Links */
.nav-center {
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    color: #444;
    transition: 0.3s ease;
}

.nav-link:hover {
    color: #000;
}

/* Contact Button */
.contact-btn {
    padding: 10px 22px;
    background: #111;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    border-radius: 30px;
    transition: 0.3s ease;
    margin-right: 15px;
}

.contact-btn:hover {
    background: #333;
}

/* Hamburger */
.hamburger {
    width: 28px;
    height: 20px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.hamburger span {
    height: 3px;
    width: 100%;
    background: #111;
    border-radius: 3px;
}

/* ================= SIDEBAR ================= */

.sidebar {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100%;
    background: #fff;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    transition: 0.4s ease;
    z-index: 2000;
    padding: 30px 20px;
}

.sidebar.active {
    right: 0;
}

.sidebar-header {
    display: flex;
    justify-content: flex-end;
}

.close-btn {
    font-size: 28px;
    cursor: pointer;
}

.sidebar-links {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-links a {
    text-decoration: none;
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

.sidebar-contact {
    padding: 10px 18px;
    background: #111;
    color: #fff !important;
    border-radius: 25px;
    text-align: center;
}

/* Overlay */
.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 1500;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .nav-center {
        display: none;
    }

    .contact-btn {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

@media (max-width: 576px) {
    .nav-container {
        padding: 15px 20px;
    }
}

/* .main-navbar {
    width: 100vw;
    height: 80px;
    background: #ffffff;
    border-bottom: 1px solid #eee;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
}

.nav-container {
    width: 90vw;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.nav-logo a {
    font-size: 22px;
    font-weight: 800;
    text-decoration: none;
    color: var(--text-dark);
    letter-spacing: 1px;
}


.nav-links {
    list-style: none;
    display: flex;
    gap: 2vw;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links li a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links li a:hover {
    color: var(--primary-color);
}


.nav-action {
    display: flex;
    align-items: center;
    gap: 1vw;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 0.5vw;
    background: var(--text-dark);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.contact-btn:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}


.nav-toggle {
    display: none;
} */



@media (max-width: 1024px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        transform: none;
        flex-direction: column;
        background: #fff;
        width: 100vw;
        height: calc(100vh - 80px);
        padding: 40px;
        transition: 0.4s ease;
        text-align: center;
    }

    .nav-links.show {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }
}
.banner {
    position: relative;
    width: 100vw;
    height: 93vh;
    overflow: hidden;
    color: #fff;
}

.banner-bg img {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    filter: brightness(0.7);
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 95vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 5vh 5vw;
}

/* Typography */
.main-content h1 {
    font-family: 'Serif', serif;
    font-size: 8vw;
    line-height: 1.1;
    margin-bottom: 2vh;
}

.main-content h1 span i {
    font-style: italic;
    font-weight: 300;
}

.main-content p {
    max-width: 30vw;
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 4vh;
}

.btn-explore {
    display: inline-block;
    padding: 1.5vh 3vw;
    background: #fff;
    color: #000;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
}

/* Thumbnail Scroller */
.thumbnail-wrapper {
    align-self: flex-end;
    width: 25vw;
}

.thumbnail-scroll-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    /* The Fade Effect */
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.thumbnail-track {
    display: flex;
    gap: 1vw;
    width: max-content;
    animation: scroll 15s linear infinite;
}

.thumbnail-track img {
    width: 8vw;
    height: 12vh;
    object-fit: cover;
    border-radius: 10px;
}

/* Animation for Auto-Scroll */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
/* --- Global Typography for Service Section --- */
.text-serif-heading {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    color: rgb(35, 18, 38); /* The Plum/Black color from your inspector */
    font-size: 5.5vw;
    line-height: 1.1;
    letter-spacing: -0.03em;
    text-align: center;
}

.text-serif-heading i {
    font-style: italic;
    font-weight: 400;
}

.text-sans-subtext {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 300;
    color: rgba(35, 18, 38, 0.7);
    margin-top: 2.5vh;
    line-height: 1.6;
}
/* --- Global Typography for Service Section --- */
.text-serif-heading {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    color: rgb(35, 18, 38); /* The Plum/Black color from your inspector */
    font-size: 5.5vw;
    line-height: 1.1;
    letter-spacing: -0.03em;
    text-align: center;
}

.text-serif-heading i {
    font-style: italic;
    font-weight: 400;
}

.text-sans-subtext {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 300;
    color: rgba(35, 18, 38, 0.7);
    margin-top: 2.5vh;
    line-height: 1.6;
}

/* --- Section Container --- */
.services-section {
    background-color: #f3f2ee; /* The cream/off-white background */
    padding: 15vh 0;
    width: 100vw;
    display: flex;
    justify-content: center;
}

.services-container {
    width: 90vw;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* --- Badge --- */
.badge {
    background: #6b2d7a; /* Purple badge */
    color: #ffffff;
    padding: 1.7vh 1.4vw;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 3vh;
}

.services-header {
    text-align: center;
    margin-bottom: 10vh;
}

/* --- Service Cards --- */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 3vh; /* Space between cards */
    width: 100%;
    align-items: center;
}

.service-card {
    background: #ffffff;
    width: 78vw;
    height: 18vh;
    border-radius: 100px; /* Pillow/Oval shape from recording */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5vw;
    box-shadow: 0 10px 40px rgba(0,0,0,0.02);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-card:hover {
    transform: scale(1.02);
}

/* Image Thumbnails inside cards */
.card-img img {
    width: 10vw;
    height: 13vh;
    object-fit: cover;
    border-radius: 80px; /* Matches the pill shape of the card */
}

/* Card Text */
.card-info {
    text-align: center;
    flex: 1;
}

.text-serif-card {
    font-family: 'Playfair Display', serif;
    font-size: 1.9vw;
    color: rgb(35, 18, 38);
    margin-bottom: 0.5vh;
}

.text-sans-card {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #666;
    font-weight: 300;
}
/* ================= MOBILE RESPONSIVE FOR SERVICES ================= */

@media (max-width: 768px) {

    .services-section {
        padding: 10vh 0;
        width: 100%;
    }

    .services-container {
        width: 92vw;
    }

    .services-header {
        margin-bottom: 6vh;
    }

    .service-card {
        width: 100%;
        height: auto;              /* Let height grow */
        flex-direction: column;    /* Stack vertically */
        border-radius: 30px;       /* More like your screenshot */
        padding: 3vh 4vw;
        gap: 3vh;
    }

    /* Images become full width blocks */
    .card-img img {
        width: 100%;
        height: 22vh;              /* Nice mobile height */
        border-radius: 20px;
    }

    /* Center text nicely */
    .card-info {
        text-align: center;
        padding: 0 2vw;
    }

    .text-serif-card {
        font-size: 6vw;            /* Responsive heading */
        margin-bottom: 1vh;
    }

    .text-sans-card {
        font-size: 4vw;
        line-height: 1.6;
    }
}
@media (max-width: 1024px) and (min-width: 769px) {
    .service-card {
        width: 90vw;
        height: auto;
        padding: 2vh 3vw;
    }

    .card-img img {
        width: 16vw;
        height: 12vh;
    }

    .text-serif-card {
        font-size: 2.8vw;
    }
}
/* ================= PROJECTS SECTION ================= */

.projects-section {
    background: #f3f2ee;
    padding: 15vh 0;
    display: flex;
    justify-content: center;
}

.projects-container {
    width: 85vw;
    max-width: 1400px;
}

/* ---------- Header ---------- */

.projects-header {
    text-align: center;
    margin-bottom: 10vh;
}

.projects-header .text-serif-heading {
    font-size: 4.5vw;
    margin-bottom: 3vh;
}

.projects-header .text-sans-subtext {
    max-width: 700px;
    margin: 0 auto;
    margin-bottom: 5vh;
}

/* Button */
.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 18px 40px;
    background: #4b1d57;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    transition: 0.3s ease;
}

.btn-view-all:hover {
    transform: translateY(-4px);
}

/* ---------- Grid ---------- */

.project-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3vw;
}

/* ---------- Card ---------- */

.project-card {
    cursor: none;
}

.project-img-wrapper {
    position: relative;
    width: 100%;
    height: 55vh;
    overflow: hidden;
    border-radius: 30px;
}

.project-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.project-card:hover img {
    transform: scale(1.05);
}

/* ---------- Tags ---------- */

.project-tags {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
}

.tag {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-family: 'Inter', sans-serif;
}

.tag.purple {
    background: #4b1d57;
    color: #fff;
}

.tag.light {
    background: #fff;
    color: #000;
}

/* ---------- Meta ---------- */

.project-meta {
    margin-top: 2vh;
}

.project-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: rgb(35, 18, 38);
    margin-bottom: 0.5vh;
}

.project-location {
    font-family: 'Inter', sans-serif;
    color: #666;
    font-size: 0.95rem;
}
/* ================= RESPONSIVE ================= */

@media (max-width: 1200px) {
    .projects-header .text-serif-heading {
        font-size: 48px;
    }

    .project-img-wrapper {
        height: 45vh;
    }
}

@media (max-width: 992px) {
    .project-grid {
        gap: 5vw;
    }

    .project-img-wrapper {
        height: 40vh;
    }
}

@media (max-width: 768px) {

    .projects-container {
        width: 92vw;
    }

    .projects-header .text-serif-heading {
        font-size: 32px;
    }

    .projects-header .text-sans-subtext {
        font-size: 14px;
        padding: 0 10px;
    }

    .project-grid {
        grid-template-columns: 1fr;
        gap: 6vh;
    }

    .project-img-wrapper {
        height: 32vh;
        border-radius: 22px;
    }

    .project-card {
        cursor: pointer;
    }
}

@media (max-width: 480px) {

    .projects-section {
        padding: 10vh 0;
    }

    .project-img-wrapper {
        height: 28vh;
    }

    .btn-view-all {
        padding: 14px 30px;
        font-size: 14px;
    }
}
/* Fix badge alignment in mobile/tablet */

@media (max-width:1024px){

.transformation-text{
    text-align:center;
}/* ================= FAQ BADGE MOBILE FIX ================= */

@media (max-width:1024px){

.journal-header{
    flex-direction:column;
    align-items:center;
    text-align:center;
}

.journal-header .badge{
    display:inline-block;
    margin:0 auto 16px auto;
}

}
.transformation-text .badge{
    display:inline-block;
    margin:0 auto 16px auto;
}

.features-list{
    text-align:left; /* keep list readable */
    margin-left:auto;
    margin-right:auto;
    max-width:300px;
}

}
.transformation-section {
    padding: 15vh 5vw;
    background: #fdfdfb;
}

.transformation-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5vw;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

/* Slider Container */
.comparison-slider {
    position: relative;
    width: 100%;
    height: 65vh; /* Adjust based on your image aspect ratio */
    border-radius: 24px;
    overflow: hidden;
    background-color: #333;
    user-select: none;
}

/* Shared Layer Style */
.img-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

/* The Top Image (Before) - This one gets resized */
.img-before {
    z-index: 2;
    width: 50%; /* Initial reveal percentage */
    border-right: 2px solid white;
}

/* Labels */
.label {
    position: absolute;
    bottom: 20px;
    padding: 6px 14px;
    background: rgba(35, 18, 38, 0.7);
    color: white;
    border-radius: 30px;
    font-size: 0.75rem;
    font-family: 'Inter', sans-serif;
}
.before-label { left: 20px; }
.after-label { right: 20px; }

/* Drag Handle */
.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
    width: 4px;
    background: white;
    z-index: 3;
    transform: translateX(-50%);
    pointer-events: none;
}

.features-list{
    margin-top: 20px;
    padding-left: 25px;   /* left side space */
    list-style: none;
}

.features-list li{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 1rem;
}
.handle-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #351226;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

@media (max-width: 1024px) {
    .transformation-container { grid-template-columns: 1fr; }
    .comparison-slider { height: 45vh; }
    .features-list{
    padding-left: 0px;
}

.features-list li{
    margin-bottom: 16px;   /* more gap in mobile */
}

}/* --- HOW WE WORK SECTION --- */
.how-we-work {
    background-color: var(--token-cc130300-b735-4fd8-87db-c302190b55de, #edece4);
    padding: 15vh 5vw;
    width: 100vw;
}

.work-container {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    gap: 8vw;
}

/* LEFT SIDE: STICKY */
.work-left {
    position: sticky;
    top: 15vh;
    height: fit-content;
    width: 35%;
}

.work-left h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2vw;
    line-height: 1.2;
    margin-bottom: 5vh;
    color: #1a1a1a;
}

.step-navigation {
    display: flex;
    gap: 12px;
    margin-bottom: 5vh;
    flex-wrap: wrap;
}

.step-btn {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    border: 1px solid #ddd;
    background: transparent;
    cursor: pointer;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.step-btn.active, .step-btn:hover {
    background: #1a1a1a;
    color: white;
    border-color: #1a1a1a;
    transform: translateY(-3px);
}

.custom-services-box {
    background: #f9f7f0;
    padding: 30px;
    border-radius: 24px;
    border: 1px solid #e9e5d8;
}

.btn-talk {
    display: inline-block;
    margin-top: 15px;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
}

/* RIGHT SIDE: SCROLLING CARDS */
.work-right {
    width: 55%;
    display: flex;
    flex-direction: column;
    gap: 12vh; /* Space between steps */
}

.step-card {
    width: 100%;
    opacity: 0.4;
    transition: all 0.6s ease;
}

.step-card.in-view {
    opacity: 1;
}

.step-visual-wrapper {
    position: relative;
    width: 100%;
    height: 60vh;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.step-visual-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* THE GLASS BOX OVERLAY */
.step-content-overlay {
    position: absolute;
    bottom: 25px;
    left: 25px;
    right: 25px;
    padding: 35px;
    background: rgba(255, 255, 255, 0.12); /* Light transparent */
    backdrop-filter: blur(18px); /* The Blur Effect */
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 22px;
    color: #fff;
}

.step-num {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.step-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 12px;
    line-height: 1.2;
}

.step-description {
    font-size: 1.05rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .work-container { flex-direction: column; }
    .work-left { position: relative; width: 100%; top: 0; margin-bottom: 6vh; }
    .work-left h2 { font-size: 8vw; }
    .work-right { width: 100%; }
    .step-visual-wrapper { height: 50vh; }
}

@media (max-width: 768px) {
    .step-content-overlay { padding: 20px; bottom: 15px; left: 15px; right: 15px; }
    .step-title { font-size: 1.5rem; }
}
.journal-section {
    padding: 10vh 5vw;
   background-color: var(--token-cc130300-b735-4fd8-87db-c302190b55de, #edece4);
}

.journal-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Header Styles */
.journal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 6vh;
}

.journal-header h2 {
    font-size: 3.5rem;
    margin: 15px 0;
    color: #1a1a1a;
}

.view-all-btn {
    padding: 12px 25px;
    background: #351226;
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

/* Grid Layout */
.journal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Featured Card spans 3 columns to match video */
.featured-card {
    grid-column: span 3;
    display: flex;
    gap: 40px;
    align-items: center;
    background: white;
    padding: 20px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.featured-card .card-img-box {
    width: 50%;
    height: 45vh;
}

.featured-card .card-content {
    width: 45%;
}

/* General Card Styles */
.journal-card {
    background: rgb(218, 214, 214);
    border-radius: 25px;
    overflow: hidden;
    padding: 15px;
    transition: box-shadow 0.3s ease;
}

.card-img-box {
    width: 100%;
    height: 30vh;
    border-radius: 20px;
    overflow: hidden; /* Clips the zoomed image */
    margin-bottom: 20px;
}

.card-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* --- THE ZOOM EFFECT --- */
.journal-card:hover .card-img-box img {
    transform: scale(1.1);
}

/* Typography */
.card-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
}

.category-tag {
    background: #351226;
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.publish-date {
    color: #888;
    font-size: 0.85rem;
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    line-height: 1.3;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.read-more {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 700;
    font-size: 0.9rem;
}

/* Responsive Grid */
@media (max-width: 1024px) {
    .journal-grid { grid-template-columns: repeat(2, 1fr); }
    .featured-card { flex-direction: column; grid-column: span 2; }
    .featured-card .card-img-box, .featured-card .card-content { width: 100%; }
}

@media (max-width: 768px) {
    .journal-grid { grid-template-columns: 1fr; }
    .featured-card { grid-column: span 1; }
    .journal-header { flex-direction: column; align-items: flex-start; gap: 20px; }
}

/* ================= JOURNAL SECTION ================= */

.journal-section{
    padding:10vh 5vw;
    background:#edece4;
}

.journal-container{
    max-width:1400px;
    margin:auto;
}


/* HEADER */

.journal-header{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    margin-bottom:70px;
}

.header-left{
    max-width:600px;
}

.section-subtitle{
    margin-top:10px;
    color:#555;
}

.view-all-btn{
    padding:14px 28px;
    background:#4b1d57;
    color:#fff;
    border-radius:40px;
    text-decoration:none;
    font-weight:500;
}


/* GRID */

.journal-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}


/* CARD */

.journal-card{
    background:#fff;
    border-radius:30px;
    padding:18px;
    transition:.3s;
}

.journal-card:hover{
    transform:translateY(-6px);
}


/* IMAGE */

.card-img-box{
    width:100%;
    height:260px;
    overflow:hidden;
    border-radius:24px;
    margin-bottom:18px;
}

.card-img-box img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

.journal-card:hover img{
    transform:scale(1.08);
}


/* META */

.card-meta{
    display:flex;
    gap:12px;
    margin-bottom:10px;
}

.category-tag{
    background:#351226;
    color:#fff;
    padding:4px 10px;
    border-radius:6px;
    font-size:12px;
}

.publish-date{
    background:#eee;
    padding:4px 10px;
    border-radius:6px;
    font-size:12px;
}


/* TEXT */

.card-title{
    font-family:'Playfair Display',serif;
    font-size:22px;
    margin-bottom:10px;
}

.card-excerpt{
    color:#555;
    margin-bottom:12px;
}

.read-more{
    font-weight:600;
    text-decoration:none;
    color:#1a1a1a;
}


/* ================= FEATURED FIRST CARD ================= */

.journal-card:first-child{
    grid-column:1 / -1;
    display:grid;
    grid-template-columns:1.1fr 1fr;
    gap:40px;
    align-items:center;
    padding:25px;
}

.journal-card:first-child .card-img-box{
    height:420px;
    margin-bottom:0;
}

.journal-card:first-child .card-title{
    font-size:32px;
}


/* ================= JOURNAL SECTION ================= */

.journal-section{
    padding:10vh 5vw;
    background:#edece4;
}

.journal-container{
    max-width:1400px;
    margin:auto;
}


/* HEADER */

.journal-header{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    margin-bottom:70px;
}

.header-left{
    max-width:600px;
}

.section-subtitle{
    margin-top:10px;
    color:#555;
}

.view-all-btn{
    padding:14px 28px;
    background:#4b1d57;
    color:#fff;
    border-radius:40px;
    text-decoration:none;
    font-weight:500;
}


/* GRID */

.journal-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}


/* CARD */

.journal-card{
    background:#fff;
    border-radius:30px;
    padding:18px;
    transition:.3s;
}

.journal-card:hover{
    transform:translateY(-6px);
}


/* IMAGE */

.card-img-box{
    width:100%;
    height:260px;
    overflow:hidden;
    border-radius:24px;
    margin-bottom:18px;
}

.card-img-box img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

.journal-card:hover img{
    transform:scale(1.08);
}


/* META */

.card-meta{
    display:flex;
    gap:12px;
    margin-bottom:10px;
}

.category-tag{
    background:#351226;
    color:#fff;
    padding:4px 10px;
    border-radius:6px;
    font-size:12px;
}

.publish-date{
    background:#eee;
    padding:4px 10px;
    border-radius:6px;
    font-size:12px;
}


/* TEXT */

.card-title{
    font-family:'Playfair Display',serif;
    font-size:22px;
    margin-bottom:10px;
}

.card-excerpt{
    color:#555;
    margin-bottom:12px;
}

.read-more{
    font-weight:600;
    text-decoration:none;
    color:#1a1a1a;
}


/* ================= FEATURED FIRST CARD ================= */

.journal-card:first-child{
    grid-column:1 / -1;
    display:grid;
    grid-template-columns:1.1fr 1fr;
    gap:40px;
    align-items:center;
    padding:25px;
}

.journal-card:first-child .card-img-box{
    height:420px;
    margin-bottom:0;
}

.journal-card:first-child .card-title{
    font-size:32px;
}


/* ================= FORCE SINGLE COLUMN FOR MOBILE & TABLET ================= */

@media (max-width:1024px){

.journal-grid{
    display:grid;
    grid-template-columns:1fr !important;
}

.journal-card{
    width:100%;
}

.journal-card:first-child{
    grid-column:auto;
    display:block;
}

.journal-card:first-child .card-img-box{
    height:320px;
}

}

@media (max-width:768px){

.journal-grid{
    grid-template-columns:1fr !important;
}

.card-img-box{
    height:240px;
}

}




/* Card Container */
.review-stack {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}
.reviews-header {
    text-align: center;   /* centers text + inline elements */
    margin-bottom: 8vh;
}

/* Make sure the badge centers */
.reviews-header .badge {
    display: inline-block;   /* so margin auto works */
    margin: 0 auto 16px;     /* center horizontally + space below */
}
/* Individual Card */
.review-card {
    display: flex;
    background: #ffffff;
    border-radius: 40px;
    overflow: hidden;
    padding: 16px;
    gap: 0;
    align-items: stretch;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.review-card.reverse {
    flex-direction: row-reverse;
}

/* Image Side */
.review-image-side {
    position: relative;
    width: 48%;
    border-radius: 28px;
    overflow: hidden;
}

.review-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.review-card:hover .review-image-side img {
    transform: scale(1.08);
}

/* Navigation Arrow */
.nav-arrow {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 2;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

/* Content Side */
.review-content-side {
    width: 52%;
    padding: 60px 60px;
    background: #fbfaf6; /* soft off-white like screenshot */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Top row */
.review-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}

.category-pill {
    background: #3a1530;
    color: #fff;
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Big quote icon */
.quote-icon {
    font-size: 4rem;
    font-family: serif;
    color: #2b0f23;
    line-height: 1;
}

/* Testimonial text */
.testimonial-text {
    font-size: 1.35rem;
    line-height: 1.7;
    color: #2a2a2a;
    margin-bottom: 40px;
    max-width: 90%;
}

/* Client Details */
.client-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.client-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
}

.client-name {
    display: block;
    font-weight: 700;
    font-size: 1.1rem;
    color: #2b0f23;
}

.client-company {
    font-size: 0.9rem;
    color: #777;
}

/* Mobile */
@media (max-width: 991px) {
    .review-card, .review-card.reverse {
        flex-direction: column;
    }

    .review-image-side,
    .review-content-side {
        width: 100%;
    }

    .review-content-side {
        padding: 30px 25px;
    }

    .review-image-side {
        height: 40vh;
    }
}
/* ================= GLOBAL SECTION SPACING FIX ================= */

section{
    padding-top: 5vh !important;
    padding-bottom: 5vh !important;
}

/* Reduce header bottom spacing */
.services-header,
.projects-header,
.journal-header,
.reviews-header{
    margin-bottom: 5vh !important;
}
/* ================= BLOG PAGE WRAPPER ================= */

.blog-page-wrapper{
background:#351226;
overflow-x:hidden;
}


/* ================= BANNER ================= */

.blog-banner{
height:90vh;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
color:#ffffff;
position:sticky;
top:0;
z-index:1;
background:#2a162e;
}

.banner-inner{
max-width:900px;
padding:0 5vw;
}

.badge-pill{
background:#5a2e46;
padding:6px 18px;
border-radius:20px;
font-size:0.75rem;
text-transform:uppercase;
letter-spacing:2px;
}

.banner-title{
font-size:clamp(3rem,8vw,6rem);
font-family:'Playfair Display',serif;
line-height:1;
margin:30px 0;
}

.banner-title i{
font-weight:400;
}

.banner-subtitle{
font-size:1.25rem;
line-height:1.6;
opacity:.85;
}


/* ================= WAVE ================= */

.wave-divider{
position:relative;
width:100%;
line-height:0;
margin-top:-140px;
z-index:5;
pointer-events:none;
}

.wave-divider svg{
display:block;
width:100%;
height:180px;
}


/* ================= REVEAL CONTAINER ================= */

.blog-reveal-container{
position:relative;
z-index:2;
background:#edece4;
margin-top:-2px;
box-shadow:0 -30px 60px rgba(0,0,0,0.25);
padding:10vh 5vw;
}


/* ================= BLOG GRID ================= */

.journal-grid{
max-width:1300px;
margin:auto;

display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}


/* ================= BLOG CARD ================= */

.journal-card{
background:#ffffff;
border-radius:30px;
padding:18px;
overflow:hidden;
transition:.3s;
height:100%;
}

.journal-card:hover{
transform:translateY(-10px);
box-shadow:0 15px 40px rgba(0,0,0,0.05);
}


/* ================= FEATURED FIRST CARD ================= */

.journal-card:first-child{
grid-column:1 / -1;

display:grid;
grid-template-columns:1.2fr 1fr;
gap:40px;
align-items:center;
padding:25px;
}


/* ================= IMAGE ================= */

.card-img-box{
width:100%;
height:260px;
border-radius:24px;
overflow:hidden;
margin-bottom:18px;
}

.card-img-box img{
width:100%;
height:100%;
object-fit:cover;
transition:.6s;
}

.journal-card:hover img{
transform:scale(1.08);
}


/* featured image */

.journal-card:first-child .card-img-box{
height:420px;
margin-bottom:0;
}


/* ================= CONTENT ================= */

.card-content{
padding:10px;
}

.card-meta{
display:flex;
gap:12px;
margin-bottom:10px;
}

.category-tag{
background:#351226;
color:#fff;
padding:5px 12px;
border-radius:6px;
font-size:12px;
}

.publish-date{
background:#eee;
padding:5px 12px;
border-radius:6px;
font-size:12px;
}

.card-title{
font-family:'Playfair Display',serif;
font-size:1.8rem;
margin-bottom:10px;
}

.card-excerpt{
color:#555;
line-height:1.7;
font-size:0.95rem;
margin-bottom:10px;
}

.read-more-btn{
display:inline-block;
font-weight:600;
text-decoration:none;
color:#1a1a1a;
}


/* ================= CTA SECTION ================= */

.journal-footer-cta{
background:#351226;
color:white;
border-radius:40px;
padding:80px 40px;
text-align:center;
margin-top:10vh;
}

.journal-footer-cta h2{
font-size:3rem;
font-family:'Playfair Display',serif;
}

.lets-talk-btn{
display:inline-block;
background:white;
color:black;
padding:15px 40px;
border-radius:50px;
text-decoration:none;
font-weight:700;
margin-top:30px;
transition:transform .3s;
}

.lets-talk-btn:hover{
transform:scale(1.05);
}


/* ================= TABLET ================= */

@media(max-width:1024px){

.journal-grid{
grid-template-columns:1fr;
}

.journal-card:first-child{
grid-template-columns:1fr;
}

.journal-card:first-child .card-img-box{
height:320px;
}

}


/* ================= MOBILE ================= */

@media(max-width:768px){

.card-img-box{
height:240px;
}

.card-title{
font-size:1.5rem;
}

}

/* contact page */
/* Page Background */
.contact-page-wrapper {
    background-color: #351226; 
    overflow-x: hidden;
}

/* --- BANNER DESIGN --- */
.contact-banner {
    height: 85vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1;
}

.banner-title {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-family: 'Playfair Display', serif;
    line-height: 1.1;
    margin: 25px 0;
}

/* --- REVEAL LAYER --- */
.contact-reveal-container {
    position: relative;
    z-index: 2;
    background-color: #edece4;
    border-radius: 80px 80px 0 0;
    margin-top: -10vh;
    padding: 10vh 5vw;
    box-shadow: 0 -30px 60px rgba(0,0,0,0.2);
}

/* --- CONTACT FORM 3D STYLE --- */
.contact-form-section {
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info-pills {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.info-pill {
    background: #ffffff;
    padding: 15px 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    font-weight: 500;
}

.royal-contact-form {
    background: #ffffff;
    padding: 60px;
    border-radius: 40px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.08); /* 3D depth shadow */
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.form-row .full-width {
    grid-column: span 2;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 18px 25px;
    border: 1px solid #e0e0e0;
    background: #fcfcfc;
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: #351226;
    background: #fff;
}

.submit-btn {
    width: 100%;
    background: #b18597; /* Muted royal purple */
    color: white;
    padding: 20px;
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, background 0.3s;
}

.submit-btn:hover {
    background: #351226;
    transform: translateY(-3px);
}

/* --- FAQ BRIEF --- */
.faq-brief {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 12vh;
    align-items: start;
}

.faq-header-left h2 {
    font-size: 2.8rem;
    font-family: 'Playfair Display', serif;
    margin: 20px 0;
}

.faq-item {
    padding: 25px 0;
    border-bottom: 1px solid #dcdbd3;
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
    .form-row { grid-template-columns: 1fr; }
    .form-row .full-width { grid-column: span 1; }
    .faq-brief { grid-template-columns: 1fr; }
    .royal-contact-form { padding: 30px; }
}

/* service page */
/* Page Background */
/* ================= SERVICES PAGE ================= */

.services-page-wrapper{
background:#351226;
overflow-x:hidden;
}

/* ================= BANNER ================= */

/* ================= SERVICES BANNER SAME AS BLOG ================= */

.services-banner{
height:90vh;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
color:#ffffff;
position:sticky;
top:0;
z-index:1;
background:#2a162e;
}

.banner-inner{
max-width:900px;
padding:0 5vw;
}

.badge-pill{
background:#5a2e46;
padding:6px 18px;
border-radius:20px;
font-size:0.75rem;
text-transform:uppercase;
letter-spacing:2px;
}

.banner-title{
font-size:clamp(3rem,8vw,6rem);
font-family:'Playfair Display',serif;
line-height:1;
margin:30px 0;
}

.banner-title i{
font-weight:400;
}

.banner-subtitle{
font-size:1.25rem;
line-height:1.6;
opacity:0.85;
}
/* ================= WAVE SAME AS BLOG ================= */

.wave-divider{
position:relative;
width:100%;
line-height:0;
margin-top:-140px;
z-index:5;
pointer-events:none;
}

.wave-divider svg{
display:block;
width:100%;
height:180px;
}

/* ================= REVEAL ================= */

.services-reveal-container{
position:relative;
z-index:2;
background:#edece4;
margin-top:-2px;
padding:10vh 5vw;
box-shadow:0 -30px 60px rgba(0,0,0,0.25);
}

/* ================= GRID ================= */

.services-content-section{
max-width:1300px;
margin:auto;

display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

/* ================= WRAPPER ================= */

.service-stack-wrapper{
display:block;
}

/* ================= CARD ================= */

.service-card-item{
background:#fff;
border-radius:30px;
padding:18px;
overflow:hidden;
height:100%;
}

/* ================= FEATURED CARD ================= */

.service-stack-wrapper:first-child{
grid-column:1 / -1;
}

.service-stack-wrapper:first-child .service-card-item{
display:grid;
grid-template-columns:1.2fr 1fr;
gap:40px;
align-items:center;
padding:25px;
}

/* ================= IMAGE ================= */

.service-slider{
width:100%;
height:260px;
border-radius:24px;
overflow:hidden;
}

.service-slider img{
width:100%;
height:100%;
object-fit:cover;
transition:0.6s;
}

.service-card-item:hover img{
transform:scale(1.08);
}

/* featured image */

.service-stack-wrapper:first-child .service-slider{
height:420px;
}

/* ================= CONTENT ================= */

.service-text-content{
padding:10px;
}

.service-category{
background:#351226;
color:#fff;
padding:5px 12px;
border-radius:6px;
font-size:12px;
display:inline-block;
margin-bottom:10px;
}

.quote-icon{
display:none;
}

.service-heading-medium{
font-family:'Playfair Display',serif;
font-size:1.8rem;
margin-bottom:10px;
}

.service-description{
color:#555;
line-height:1.7;
font-size:0.95rem;
}

/* ================= TABLET ================= */

@media (max-width:1024px){

.services-content-section{
grid-template-columns:1fr;
}

.service-stack-wrapper:first-child .service-card-item{
grid-template-columns:1fr;
}

.service-stack-wrapper:first-child .service-slider{
height:320px;
}

}

/* ================= MOBILE ================= */

@media (max-width:768px){

.service-slider{
height:240px;
}

.service-heading-medium{
font-size:1.5rem;
}

}

/* ================= RESET ================= */
html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}
/* ================= FOOTER ================= */
/* ================= FOOTER ================= */

.main-footer{
    width:100%;
    background:#231226;
    color:#ffffff;
    padding:60px 5vw 30px;
}

/* MAIN GRID */

.footer-container{
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:1.3fr 1fr 1fr;
    gap:80px;
    align-items:start;
}

/* ================= BRAND ================= */

.footer-brand-section{
    max-width:420px;
}

.footer-logo img{
    width:100px;
    border-radius:15%;
}

.footer-description{
    margin-top:15px;
    font-size:1.3rem;
    line-height:1.6;
    opacity:0.75;
}

/* ================= LINKS GRID ================= */

.footer-links-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    width:100%;
}

.navigation-col{
    justify-self:center;   /* navigation middle */
    text-align:left;
    margin-right:-300px;
}

.social-col{
    justify-self:end;      
    text-align:right;
    margin-right:-400px; /* extra push to right-most */
}

/* COLUMN HEADING */

.link-column h4{
    text-transform:uppercase;
    font-size:0.75rem;
    letter-spacing:2px;
    margin-bottom:18px;
    color:#b18597;
}

/* LINKS */

.link-column a{
    display:block;
    color:white;
    text-decoration:none;
    margin-bottom:8px;
    opacity:0.7;
    font-size:1.5rem;
    transition:0.3s;
}

.link-column a:hover{
    opacity:1;
}

/* ================= NAVIGATION ================= */
/* 
.navigation-col{
    text-align:left;
    justify-self:center;  
} */

/* ================= SOCIAL ================= */



.social-col a{
    display:flex;
    justify-content:flex-start; /* icon ke upar se start */
    align-items:center;
    gap:10px;
}

.social-col i{
    font-size:16px;
}

/* ================= BIG TITLE ================= */

.footer-bottom-name{
    grid-column:1 / -1;
    border-top:1px solid rgba(255,255,255,0.1);
    padding-top:30px;
    margin-top:50px;
    text-align:center;
}

.interactive-title{
    font-size:clamp(20px,5vw,50px);
    font-family:'Playfair Display', serif;
    letter-spacing:-2px;
    margin:0;
    color:#b18597;
}

/* ================= CURSOR IMAGE ================= */

.cursor-image-container{
    position:fixed;
    top:0;
    left:0;
    width:120px;
    height:120px;
    pointer-events:none;
    z-index:9999;
    opacity:0;
    transform:scale(0.5);
    transition:opacity 0.4s, transform 0.4s cubic-bezier(0.16,1,0.3,1);
    overflow:hidden;
    border-radius:20px;
}

.cursor-image-container.visible{
    opacity:1;
    transform:scale(1);
}

.hover-img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:none;
}

.hover-img.active{
    display:block;
}

/* ================= COPYRIGHT ================= */

.footer-copyright{
    margin-top:25px;
    padding-top:15px;
    border-top:1px solid rgba(255,255,255,0.1);
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:0.9rem;
    opacity:0.8;
}

.footer-copyright a{
    color:#eee9eb;
    text-decoration:none;
}

.footer-copyright a:hover{
    text-decoration:underline;
}

/* ================= MOBILE ================= */
@media (max-width:992px){

.footer-container{
    grid-template-columns:1fr;
    gap:40px;
    text-align:center;
}

/* navigation + social side by side */

.footer-links-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    width:100%;
    padding:0 20px;
}

/* navigation left-most */

.navigation-col{
    justify-self:start;
    text-align:left;
      margin-right:0;
}

/* social right-most */

.social-col{
    justify-self:end;
    text-align:right;
    margin-right:0;  
}

/* social icons alignment */

/* .social-col a{
    justify-content:flex-end;
} */

.footer-brand-section{
    max-width:100%;
}

}

/* COPYRIGHT MOBILE */

@media (max-width:768px){

.footer-copyright{
    flex-direction:column;
    text-align:center;
    gap:8px;
}

}

/* ABOUT PAGE - EXACT ORIGINAL STORY CARDS, REDUCED GAPS, RESPONSIVE */
.about-page-wrapper {
    background-color: #351226;
    overflow-x: hidden;
}

/* Banner (UNCHANGED) */
.about-banner {
    height: 85vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1;
    background-color: var(--token-d2388da0-7548-4908-ada0-761487380986, #2a162e);
}

/* Wave Divider - REDUCED */
.wave-divider {
    height: 40px;
    line-height: 0;
    margin: 0;
}

.wave-divider svg {
    width: 100%;
    height: 40px;
}

/* Tabs (EXACT ORIGINAL) */
.about-tabs {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    gap: 12px;
    padding: 12px 5vw;
    background: #edece4;
    margin: 0; /* REMOVE GAP */
}

.tab-btn {
    background: #2b2722;
    color: #fff;
    border: none;
    padding: 10px 22px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
}

.tab-btn.active {
    background: #ff8a3d;
    color: #000;
}

/* Content wrapper */
.about-content {
    background: #1f1c17;
    color: #fff;
}

/* ================= STORY SECTION - EXACT ORIGINAL CARDS ================= */
.about-story-section {
    padding: 1.5rem 5vw 2rem 5vw; /* reduced top padding */
    margin: 0; /* important */
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: rgb(237, 236, 228);
}

/* Text (UNIFORM SIZE) */
.story-text {
    max-width: 900px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #713636;
    margin-bottom: 1rem;
}

/* Controls (EXACT) */
.story-slider-controls {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin: 20px 0;
}

.story-slider-controls button {
    background: #2b2722;
    color: #fff;
    border: none;
    padding: 10px 14px;
    border-radius: 6px;
    cursor: pointer;
}
/* OFFSET SCROLL FOR STICKY TABS */
#story,
.mission-section,
.vision-section,
.values-section {
    scroll-margin-top: 80px; /* height of sticky tabs */
}

/* EXACT ORIGINAL STORY CARDS */
.story-cards-wrapper {
    overflow: hidden;
}

.story-cards {
    display: flex;
    gap: 20px;
}

.story-card {
    min-width: 300px; /* EXACT ORIGINAL */
    background: #2b2722;
    padding: 30px; /* EXACT ORIGINAL */
    border-radius: 16px;
    color: #fff;
}

.story-card.highlight {
    background: #ffffff;
    color: #000;
}

.story-card h3 {
    font-size: 1.8rem; /* ORIGINAL SIZE */
    margin-bottom: 0.5rem;
}

.story-card span {
    font-size: 1rem;
    display: block;
    margin-bottom: 1rem;
}

.story-card p {
    font-size: 1.1rem; /* UNIFORM */
}

/* ================= SPLIT SECTIONS ================= */
.split-section {
    background-color: var(--token-cc130300-b735-4fd8-87db-c302190b55de, #edece4);
    color: #ffffff;
    padding: 1.5rem 5vw; /* REDUCED */
}

.split-container {
    display: flex;
    gap: 4vw;
    min-height: 80vh;
    max-width: 1400px;
    margin: 0 auto;
}

.split-left {
    position: sticky;
    top: 100px;
    width: 40%;
    height: fit-content;
    align-self: flex-start;
}

.split-left span.badge-pill {
    background: #6b2d7a;
    color: #fff;
    padding: 8px 20px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-block;
}

.split-left h2 {
    font-size: clamp(2.5rem, 5vw, 3rem);
    font-family: 'Playfair Display', serif;
    color: #713636;
    margin-bottom: 1rem;
}

.split-left p,
.text-sans-subtext {
    font-size: 1.1rem; /* UNIFORM */
    line-height: 1.7;
    color: #713636;
    opacity: 0.8;
}

/* RESPONSIVE IMAGES */
.split-right {
    width: 60%;
}

.split-image-wrapper {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 24px;
    overflow: hidden;
}

.split-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ================= VALUES SECTION ================= */
.values-section {
    background-color: var(--token-cc130300-b735-4fd8-87db-c302190b55de, #edece4);
    padding: 1.5rem 5vw; /* REDUCED */
}

.values-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.values-pill {
    background: #6b2d7a;
    color: #fff;
    padding: 8px 22px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-block;
}

.values-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 3rem);
    color: #713636;
    margin-bottom: 2rem;
}

.values-heading span {
    font-style: italic;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.value-card {
    background: #2a2a2a;
    border-radius: 20px;
    overflow: hidden;
}

.value-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 18px;
    background: #1f1f1f;
    color: #fff;
}

.value-card-header h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.value-icon {
    font-size: 1.2rem;
}

.value-card img {
    width: 100%;
    height: clamp(200px, 25vw, 220px);
    object-fit: cover;
}

.value-card p {
    padding: 18px;
    font-size: 1.1rem; /* UNIFORM */
    color: #ddd;
}

/* ================= RESPONSIVE - STORY CARDS FIXED ================= */
@media (max-width: 992px) {
    .split-container {
        flex-direction: column;
        gap: 2rem;
        min-height: auto;
    }
    
    .split-left {
        position: relative;
        width: 100%;
        text-align: center;
    }
    
    .story-cards {
        gap: 15px;
    }
    
    .story-card {
        min-width: 280px;
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .about-story-section,
    .split-section,
    .values-section {
        padding: 1rem 5vw;
    }
    
    .about-tabs {
        padding: 12px 5vw;
        gap: 8px;
        justify-content: center;
    }
    
    .tab-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .story-cards {
        gap: 12px;
    }
    
    .story-card {
        min-width: 260px;
        padding: 20px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .story-card {
        min-width: 250px;
        padding: 18px;
    }
    
    .story-cards {
        gap: 10px;
    }
}

/* ===== FIX MISSION / VISION MOBILE OVERLAP ===== */

/* ===== MISSION / VISION MOBILE FINAL FIX ===== */

@media (max-width:768px){

    .split-container{
        flex-direction:column;
        align-items:center;
        text-align:center;
        gap:30px;
    }

    .split-left{
        width:100%;
        position:relative;
        margin-bottom:25px;
    }

    /* paragraph ke niche proper space */
    .split-left p{
        margin-bottom:25px;
        padding:0 10px;
    }

    .split-right{
        width:100%;
        margin-top:10px;
    }

    .split-image-wrapper{
        width:100%;
        height:auto;
        margin-top:10px;
    }

    .split-image-wrapper img{
        width:100%;
        height:auto;
        display:block;
        border-radius:22px;
    }

}
/* ===== TABLET FIX ONLY ===== */

@media (min-width:769px) and (max-width:1024px){

    .split-container{
        flex-direction:column;
        align-items:center;
        text-align:center;
        gap:30px;
    }

    /* remove sticky only for tablet */
    .split-left{
        position:relative;
        width:100%;
        margin-bottom:25px;
    }

    .split-left p{
        margin-bottom:50px;
        padding:0 20px;
    }

    .split-right{
        width:100%;
        display:flex;
        justify-content:center;
    }

    .split-image-wrapper{
        width:100%;
        max-width:650px;
        height:auto;
    }

    .split-image-wrapper img{
        width:100%;
        height:auto;
        display:block;
        border-radius:22px;
    }

}
/* ================= NAVBAR ================= */

.main-navbar {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-left,
.nav-center,
.nav-right {
    display: flex;
    align-items: center;
}

/* Logo */
.nav-logo {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 2px;
    text-decoration: none;
    color: #111;
}

/* Center Links */
.nav-center {
    gap: 40px;
}

/* .nav-link {
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    color: #444;
    transition: 0.3s ease;
} */

.nav-link:hover {
    color: #000;
}

/* Contact Button */
.contact-btn {
    padding: 10px 22px;
    background: #111;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    border-radius: 30px;
    transition: 0.3s ease;
}

.contact-btn:hover {
    background: #333;
}

/* Responsive */
@media (max-width: 992px) {
    .nav-center {
        display: none;
    }
}/* ================= HISTORY PAGE ================= */

.history-banner{
height:85vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:#e7e3e3;
background:#2a162e;

/* CHANGE THIS */
position:relative;

z-index:1;
}

.banner-inner{
max-width:900px;
padding:0 5vw;
}

.banner-title{
font-family:'Playfair Display',serif;
font-size:clamp(3rem,8vw,6rem);
line-height:1.1;
margin:20px 0;
}

.banner-subtitle{
font-size:1.2rem;
line-height:1.7;
opacity:.85;
}

.badge-pill{
background:#6b2d7a;
color:#fff;
padding:6px 18px;
border-radius:20px;
font-size:.75rem;
letter-spacing:2px;
text-transform:uppercase;
}

/* ================= WAVE DIVIDER ================= */

.wave-divider{
height:60px;
line-height:0;
margin-top:-1px;   /* important */
}

.wave-divider svg{
width:100%;
height:60px;
display:block;
background:#2a162e; /* same banner color */
}

/* ================= TIMELINE ================= */

.timeline-section{
padding:12vh 0;
background:#edece4;
}

.timeline-container{
width:85vw;
margin:auto;
display:flex;
flex-direction:column;
gap:12vh;
}

.timeline-item{
display:flex;
align-items:center;
gap:6vw;
}

.timeline-item.alt{
flex-direction:row-reverse;
}

.timeline-visual{
width:50%;
}

.timeline-content{
width:40%;
}

.year-label{
font-weight:700;
color:#6b2d7a;
margin-bottom:10px;
display:block;
}

.pill-shape{
border-radius:150px;
overflow:hidden;
}

.milestone-img-wrapper img{
width:100%;
height:60vh;
object-fit:cover;
transition:transform .8s ease;
}

.timeline-item:hover img{
transform:scale(1.05);
}

/* ================= FOUNDER ================= */

.founder-section{
padding:15vh 5vw;
background:#fff;
}

.founder-container{
display:flex;
align-items:center;
gap:8vw;
max-width:1300px;
margin:auto;
}

.founder-text{
width:50%;
}

.founder-img{
width:50%;
}

.founder-img img{
width:100%;
border-radius:150px;
object-fit:cover;
}

.signature{
margin-top:30px;
}

.signature .name{
font-size:1.8rem;
font-family:'Playfair Display',serif;
}

/* ================= ANIMATION ================= */

.reveal{
opacity:0;
transform:translateY(50px);
transition:all 1s ease;
}

.reveal.active{
opacity:1;
transform:translateY(0);
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){

.timeline-item{
flex-direction:column;
text-align:center;
}

.timeline-item.alt{
flex-direction:column;
}

.timeline-visual,
.timeline-content{
width:100%;
}

.milestone-img-wrapper img{
height:45vh;
}

.founder-container{
flex-direction:column;
text-align:center;
}

.founder-text,
.founder-img{
width:100%;
}

.founder-img{
max-width:400px;
margin:auto;
}

}

@media(max-width:480px){

.banner-title{
font-size:2.5rem;
}

.banner-subtitle{
font-size:1rem;
}

.milestone-img-wrapper img{
height:35vh;
}

}
/* ========================= */
/* WHATSAPP FLOAT BUTTON */
/* ========================= */

.whatsapp-container{
    position: fixed;
    bottom: 30px;
    right: 0;
    margin-right: 10px;
    z-index: 9999;
}

/* Tooltip */

.whatsapp-tooltip{
    background:#111;
    color:#fff;
    padding:8px 12px;
    border-radius:6px;
    font-size:13px;
    margin-bottom:10px;
    opacity:0;
    transform:translateY(10px);
    transition:0.3s;
    white-space:nowrap;
}

/* Button */

.whatsapp-float{
    width:60px;
    height:60px;
    background:#25D366;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 10px 25px rgba(0,0,0,0.25);
    position:relative;
}

/* Pulse animation */

.whatsapp-float::before{
    content:'';
    position:absolute;
    width:100%;
    height:100%;
    border-radius:50%;
    background:#25D366;
    animation:whatsapp-pulse 2s infinite;
    z-index:-1;
}

/* Hover */

.whatsapp-container:hover .whatsapp-tooltip{
    opacity:1;
    transform:translateY(0);
}

.whatsapp-float:hover{
    transform:scale(1.1);
}

/* Animation */

@keyframes whatsapp-pulse{

    0%{
        transform:scale(1);
        opacity:.7;
    }

    70%{
        transform:scale(1.6);
        opacity:0;
    }

    100%{
        opacity:0;
    }
}

/* Mobile */

@media(max-width:768px){

    .whatsapp-container{
        bottom:20px;
        right:10px;
    }

    .whatsapp-float{
        width:55px;
        height:55px;
    }

}

.social-name{
    margin-right: 62px;
}