:root {
    --black: #050505;
    --white: #ffffff;
    --bg-offwhite: #f9f9f9;
    --gray: #888888;
    --border: rgba(255, 255, 255, 0.1);
    --border-dark: rgba(0, 0, 0, 0.1);
    --gold: #FFD700;
    --font-display: 'Playfair Display', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background-color: var(--white);
    color: var(--black);
}

@keyframes headerSlideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

header.nav-load,
header.nav-load.scrolled,
header.fixed {
    background-color: var(--white) !important;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
    height: 100px !important;
    display: flex !important;
    align-items: center !important;
    mix-blend-mode: normal !important;
    backdrop-filter: none !important;
    visibility: visible !important;
    opacity: 1 !important;
    animation: headerSlideDown 1.2s cubic-bezier(0.2, 1, 0.3, 1) forwards !important;
}

/* Ensure the header container allows for the larger logo - SYNCED WITH HOME PAGE */
header.nav-load > div,
header.nav-load.scrolled > div,
header.fixed > div {
    width: 100% !important;
    height: 130px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}

header.nav-load *,
header.nav-load *:before,
header.nav-load *:after {
    mix-blend-mode: normal !important;
}

/* Force ALL text and labels inside the header to be dark */
header.nav-load nav a,
header.nav-load nav a span,
header.nav-load .section-label {
    color: #000000 !important;
    opacity: 0.7 !important;
}

header.nav-load nav a:hover,
header.nav-load .section-label:hover {
    opacity: 1 !important;
    color: #000000 !important;
}

/* Sync logo size and hover with home page */
header.nav-load a:has(img.logo-img) {
    margin-right: 3rem !important;
}

header.nav-load img.logo-img,
header.nav-load.scrolled img.logo-img,
footer img.logo-img {
    height: 80px !important;
    width: auto !important;
    filter: brightness(0) !important;
    display: block !important;
    transition: transform 0.4s ease !important;
}

header.nav-load img.logo-img:hover,
footer img.logo-img:hover {
    transform: scale(1.05) !important;
}

/* Button in header - already visible but refining */
header.nav-load .btn-primary {
    background-color: #000000 !important;
    color: #ffffff !important;
    border: none !important;
}

/* Mobile menu toggle button */
header.nav-load button[aria-label="Toggle menu"] span {
    background-color: #000000 !important;
}

/* Scrolled state shadow */
header.nav-load.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
}


.logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    color: var(--white);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.6;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 5%;
    position: relative;
    background: radial-gradient(circle at center, #1a1a1a 0%, var(--black) 100%);
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6.5rem);
    line-height: 1.1;
    font-weight: 400;
    margin-bottom: 1.5rem;
    max-width: 1000px;
}

.hero h1 i {
    font-style: italic;
    color: var(--gray);
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 300;
    max-width: 600px;
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--white);
    color: var(--black);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    transition: var(--transition);
    border: 1px solid var(--white);
}

.btn:hover {
    background-color: transparent;
    color: var(--white);
}

/* Marquee */
.marquee-container {
    background-color: var(--white);
    color: var(--black);
    padding: 2rem 0;
    border-top: 1px solid var(--border-dark);
    border-bottom: 1px solid var(--border-dark);
    overflow: hidden;
    display: flex;
}

.marquee {
    display: flex;
    white-space: nowrap;
    animation: scroll 20s linear infinite;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding-right: 3rem;
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-style: italic;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Reusable Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    color: var(--gray);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
}

/* Stats Section */
.stats {
    padding: 8rem 5%;
    background-color: var(--white);
    color: var(--black);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.stat-card {
    padding: 2rem;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 4.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--black);
}

.stat-label {
    font-size: 1rem;
    color: var(--gray);
    font-weight: 500;
}

/* Recognitions */
.recognitions {
    padding: 8rem 5%;
    background-color: var(--bg-offwhite);
    color: var(--black);
    text-align: center;
    border-top: 1px solid var(--border-dark);
}

.recog-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.recog-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    transition: opacity 0.3s;
}

.recog-item:hover {
    opacity: 0.7;
}

/* Services */
.services {
    padding: 10rem 5%;
    background-color: var(--black);
    color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background-color: #0c0c0c;
    padding: 4rem 3rem;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.4);
    background-color: #111;
}

.service-icon {
    margin-bottom: 2rem;
    color: var(--white);
}

.service-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.service-desc {
    color: var(--gray);
    line-height: 1.6;
}

/* Testimonials as Requested */
.testimonials {
    padding: 10rem 5%;
    background-color: var(--white);
    color: var(--black);
}

.test-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.test-card {
    background-color: #fff;
    border: 1px solid var(--border-dark);
    padding: 3rem;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.test-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.stars {
    color: var(--gold);
    margin-bottom: 1.5rem;
    display: flex;
    gap: 2px;
}

.test-quote {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.test-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.test-profile img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

.test-author {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.05rem;
}

.test-role {
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: 0.2rem;
}

.quote-mark {
    position: absolute;
    bottom: -20px;
    right: 15px;
    font-family: var(--font-body);
    font-size: 10rem;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.03);
    line-height: 1;
    z-index: 1;
    pointer-events: none;
}

/* Footer */
footer {
    padding: 6rem 5% 2rem;
    background-color: var(--black);
    border-top: 1px solid var(--border);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.footer-col h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.footer-col a {
    display: block;
    color: var(--white);
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--gray);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    color: var(--gray);
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .recog-grid {
        gap: 3rem;
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Fade Up Animation */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Home Index Hero Layout */
.hero-index {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    padding: 8rem 5% 4rem;
    position: relative;
    background: var(--black);
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    text-align: left;
}

.hero-index h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 5vw, 5rem);
    line-height: 1.1;
    font-weight: 400;
    margin-bottom: 1.5rem;
    text-align: left;
}

.hero-index h1 i {
    font-style: italic;
    color: var(--gray);
}

.hero-index p {
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    font-weight: 300;
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 3rem;
    text-align: left;
    max-width: 500px;
}

.hero-images {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 1rem;
    height: 550px;
}

.hero-img-main {
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.hero-img-stack {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
}

.hero-img-small {
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.hero-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.6);
    transition: transform 0.8s ease, filter 0.8s ease;
}

.hero-images img:hover {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.05);
}

.img-caption {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 1px;
    pointer-events: none;
    z-index: 2;
    text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.8);
}

@media (max-width: 900px) {
    .hero-index {
        grid-template-columns: 1fr;
        text-align: center;
        margin-top: 4rem;
        gap: 2rem;
    }

    .hero-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-index h1,
    .hero-index p {
        text-align: center;
    }
.footer-logo {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.footer-col h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.footer-col a {
    display: block;
    color: var(--white);
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--gray);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    color: var(--gray);
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .recog-grid {
        gap: 3rem;
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Fade Up Animation */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Home Index Hero Layout */
.hero-index {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    padding: 8rem 5% 4rem;
    position: relative;
    background: var(--black);
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    text-align: left;
}

.hero-index h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 5vw, 5rem);
    line-height: 1.1;
    font-weight: 400;
    margin-bottom: 1.5rem;
    text-align: left;
}

.hero-index h1 i {
    font-style: italic;
    color: var(--gray);
}

.hero-index p {
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    font-weight: 300;
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 3rem;
    text-align: left;
    max-width: 500px;
}

.hero-images {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 1rem;
    height: 550px;
}

.hero-img-main {
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.hero-img-stack {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
}

.hero-img-small {
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.hero-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.6);
    transition: transform 0.8s ease, filter 0.8s ease;
}

.hero-images img:hover {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.05);
}

.img-caption {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 1px;
    pointer-events: none;
    z-index: 2;
    text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.8);
}

@media (max-width: 900px) {
    .hero-index {
        grid-template-columns: 1fr;
        text-align: center;
        margin-top: 4rem;
        gap: 2rem;
    }

    .hero-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-index h1,
    .hero-index p {
        text-align: center;
    }

    .hero-images {
        height: 400px;
    }
}

/* DISABLE ALL FADES AND ANIMATIONS ON SCROLL */
.reveal-fade,
.fade-up,
.fade-in,
.opacity-0,
.translate-y-6,
.translate-y-4,
.text-reveal-content {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
    transition: none !important;
    clip-path: none !important;
}

.text-reveal-wrapper {
    clip-path: none !important;
}

/* Ensure delayed hero elements are visible immediately */
[style*='transition-delay'] {
    transition-delay: 0s !important;
    opacity: 1 !important;
}

/* GLOBAL VISIBILITY FIXES */
.stat-number,
.text-accent,
.text-accent\/30,
.text-accent\/40,
.text-accent\/50,
.text-accent\/60,
.text-accent\/70 {
    color: #ffffff !important;
}

/* FORCE HEADER CONTENT VISIBILITY */
header.nav-load *,
header.nav-load.scrolled *,
header.fixed *,
.logo-img {
    mix-blend-mode: normal !important;
    opacity: 1 !important;
    visibility: visible !important;
    max-height: 80px; /* Prevent stretching outside header/footer */
}

header.nav-load.scrolled nav a,
header.nav-load nav a {
    color: #000000 !important;
}

@keyframes pulse-whatsapp {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { transform: scale(1.03); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}