:root {
    /* The Retro-India Palette */
    --color-bg: #F2F0E9; /* Vintage Paper */
    --color-text: #1a1a1a; /* Off Black */
    --color-navisha: #2E8B57; /* Retro Sea Green */
    --color-namasvi: #FF6B35; /* Retro Safety Orange */
    --color-border: #000000;
    --font-head: 'Syne', sans-serif;
    --font-code: 'Space Mono', monospace;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-code);
    overflow-x: hidden;
}

/* --- LOADER --- */
#loader {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--color-text);
    color: var(--color-namasvi);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
}
.blink { animation: blink 1s infinite; }
@keyframes blink { 50% { opacity: 0; } }

/* --- NAVIGATION --- */
.brutalist-nav {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 3px solid var(--color-border);
    background: var(--color-bg);
    z-index: 100;
}

.logo {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -1px;
}

.menu-items a {
    text-decoration: none;
    color: var(--color-text);
    margin-left: 20px;
    font-weight: 700;
    text-transform: uppercase;
    border: 2px solid transparent;
    padding: 5px 10px;
    transition: 0.3s;
}

.menu-items a:hover {
    background: var(--color-text);
    color: var(--color-bg);
    border: 2px solid var(--color-text);
    box-shadow: 4px 4px 0px var(--color-namasvi);
}

/* --- SPLIT LAYOUT --- */
.split-container {
    display: flex;
    height: 100vh;
    width: 100%;
    position: relative;
    padding-top: 70px; /* Space for nav */
}

.split {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    transition: all 0.5s ease;
    border-right: 3px solid var(--color-border);
}

.split:last-child { border-right: none; }

/* HOVER EFFECTS - ONE EXPANDS, ONE SHRINKS */
.split-container:hover .split { opacity: 0.8; }
.split-container .split:hover {
    flex: 1.5;
    opacity: 1;
    background-color: #fff;
}

/* --- TYPOGRAPHY & ELEMENTS --- */
.badge {
    background: var(--color-text);
    color: #fff;
    padding: 5px 10px;
    display: inline-block;
    font-size: 0.8rem;
    margin-bottom: 20px;
    border: 2px solid var(--color-border);
}

h1 {
    font-family: var(--font-head);
    font-size: 5rem;
    line-height: 0.9;
    text-transform: uppercase;
    margin-bottom: 20px;
    -webkit-text-stroke: 2px var(--color-border);
    color: transparent;
    position: relative;
}

.left-side h1 { -webkit-text-stroke: 2px var(--color-navisha); }
.right-side h1 { -webkit-text-stroke: 2px var(--color-namasvi); }

.mission-text {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 400px;
}

.retro-box {
    border: 2px solid var(--color-border);
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 6px 6px 0px var(--color-border);
    background: #fff;
}

.retro-box ul { list-style: none; }
.retro-box li { margin-bottom: 10px; font-weight: 700; }

.cta-btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    color: var(--color-text);
    font-weight: 700;
    border: 3px solid var(--color-border);
    text-transform: uppercase;
    transition: 0.2s;
}

.retro-green:hover {
    background: var(--color-navisha);
    color: #fff;
    box-shadow: 6px 6px 0px var(--color-border);
}

.retro-orange:hover {
    background: var(--color-namasvi);
    color: #fff;
    box-shadow: -6px 6px 0px var(--color-border);
}

.align-right {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

/* --- CENTER PIECE --- */
.center-piece {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    pointer-events: none;
}

.circle-badge {
    width: 150px; height: 150px;
    background: var(--color-bg);
    border: 3px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 10px rgba(0,0,0,0.1);
}

/* --- MARQUEE --- */
.marquee-container {
    background: var(--color-text);
    color: var(--color-bg);
    padding: 20px 0;
    overflow: hidden;
    border-top: 3px solid var(--color-border);
}
.marquee span {
    display: inline-block;
    white-space: nowrap;
    animation: scroll 10s linear infinite;
    font-family: var(--font-head);
    font-size: 2rem;
    text-transform: uppercase;
}

/* =========================================
   NEW LOGO INTEGRATION STYLES
   Add these to the bottom of style.css
========================================= */

.brand-container {
    display: flex;
    align-items: center;
    gap: 15px; /* Space between image and text */
}

.brand-logo-img {
    /* Setting height ensures it fits nicely in the navbar */
    height: 55px;
    width: auto;
    /* Optional: Adds a slight retro border to the image */
    border: 2px solid var(--color-border);
    padding: 2px;
    background: #fff;
}

.brand-text-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Matches the previous .logo style */
.brand-main-title {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -1px;
    line-height: 1;
    text-transform: uppercase;
    color: var(--color-text);
}

/* Tagline style in retro mono font */
.brand-tagline {
    font-family: var(--font-code);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 4px;
    letter-spacing: 0.5px;
    color: var(--color-text);
}

/* Mobile adjustment for header */
@media (max-width: 480px) {
    .brutalist-nav {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    .brand-logo-img { height: 40px; }
    .brand-main-title { font-size: 1.2rem; }
    .menu-items { margin-left: 0; }
}

@keyframes scroll { from { transform: translateX(100%); } to { transform: translateX(-100%); } }

/* --- MOBILE --- */
@media (max-width: 768px) {
    .split-container { flex-direction: column; height: auto; }
    .split { border-right: none; border-bottom: 3px solid var(--color-border); padding: 2rem; }
    h1 { font-size: 3rem; }
    .center-piece { display: none; }
    .align-right { align-items: flex-start; text-align: left; }
}