:root {
    --color-primary: #D97706; 
    --color-secondary: #1E293B; 
    --color-bg: #FAFAF9; 
    --color-text: #334155;
    --color-text-light: #64748B;
    --color-dark: #0F172A;
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 40px;
    --space-lg: 80px;
    --space-xl: 140px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.7;
    overflow-x: hidden;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: var(--color-secondary);
    font-weight: 700;
    line-height: 1.1;
}

h1 { 
    font-size: clamp(2rem, 4vw, 4rem); 
    letter-spacing: -1px; 
    color: white;
    text-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
h2 { 
    font-size: clamp(1.8rem, 4vw, 3.5rem); 
    margin-bottom: var(--space-sm);
    position: relative;
    display: inline-block;
}
h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--color-primary);
    margin-top: 10px;
}
h3 { font-size: 1.4rem; margin-bottom: var(--space-xs); color: var(--color-primary); font-weight: 600; }
p { margin-bottom: var(--space-sm); font-weight: 400; color: var(--color-text-light); font-size: 1rem; }
strong { color: var(--color-primary); font-weight: 700; }
a { text-decoration: none; color: inherit; transition: 0.3s ease; }
ul { list-style: none; }
img { max-width: 100%; display: block; object-fit: cover; }

.container {
    width: 92%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-sm);
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--color-primary);
    color: white;
    font-family: 'Space Mono', monospace;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: all 0.3s ease;
}
.btn::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 0%; height: 100%;
    background-color: var(--color-dark);
    z-index: -1;
    transition: all 0.3s ease;
}
.btn:hover::before { width: 100%; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(0,0,0,0.15); }
.btn-outline {
    background-color: transparent;
    color: white;
    border: 1px solid rgba(255,255,255,0.5);
}
.btn-outline:hover { background-color: white; color: var(--color-secondary); border-color: white; }
.btn-outline::before { background-color: white; }

/* HEADER */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(250, 250, 249, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 15px 0;
    transition: 0.3s;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-img {
    height: 60px;
    width: auto;
}
.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--color-secondary);
    letter-spacing: -1px;
}
.logo-text span { color: var(--color-primary); }

/* Desktop Nav */
nav ul { display: flex; gap: 30px; }
nav a { 
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    font-weight: 700;
    color: var(--color-secondary);
    position: relative;
}
nav a::after {
    content: '';
    position: absolute;
    bottom: -5px; left: 0; width: 0; height: 2px;
    background: var(--color-primary);
    transition: 0.3s;
}
nav a:hover { color: var(--color-primary); }
nav a:hover::after { width: 100%; }

/* Mobile Toggle */
.mobile-toggle { display: none; font-size: 1.5rem; cursor: pointer; color: var(--color-secondary); }

/* HERO */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--color-secondary) 0%, #0f172a 100%);
    overflow: hidden;
    padding-top: 80px;
}
.hero-container {
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    z-index: 5;
    position: relative;
}
.hero::before {
    content: '';
    position: absolute;
    top: -10%; right: -10%;
    width: 600px; height: 600px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 3;
    max-width: 600px;
    animation: fadeUp 1s cubic-bezier(0.2, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateY(30px);
}
.hero-desc {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin: 20px 0 30px;
}
.hero-tag {
    display: inline-block;
    background: white;
    backdrop-filter: blur(5px);
    padding: 12px 24px;
    border-radius: 50px;
    color: #3B82F6;
    font-family: 'Space Mono', monospace;
    font-size: 1rem;
    margin-bottom: var(--space-sm);
    border: 1px solid rgba(59, 130, 246, 0.3);
}
.hero-bg {
    position: absolute;
    top: 0; right: 0;
    width: 50%;
    height: 100%;
    background-image: url('images/hero.jpeg');
    background-size: cover;
    background-position: center 20%;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
    box-shadow: -20px 0 40px rgba(0,0,0,0.4);
    z-index: 2;
    animation: slideInRight 1.2s cubic-bezier(0.2, 1, 0.3, 1) forwards;
}
.hero-tag {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    padding: 10px 20px;
    border-radius: 50px;
    color: #3B82F6;
    font-family: 'Space Mono', monospace;
    font-size: 1rem;
    margin-bottom: var(--space-sm);
    border: 1px solid rgba(59, 130, 246, 0.3);
}

/* ABOUT */
.about { padding: var(--space-xl) 0; background: var(--color-bg); }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
}
.about-img-wrapper {
    position: relative;
    animation: fadeUp 1s ease-out forwards;
    opacity: 0;
    animation-delay: 0.3s;
    transform: translateY(30px);
}
.img-main {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.img-floating {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 60%;
    border: 8px solid var(--color-bg);
    border-radius: 4px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}
.quote-box {
    background: #fff;
    border-left: 4px solid var(--color-primary);
    padding: 30px;
    margin: 30px 0;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--color-secondary);
    font-style: italic;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-radius: 0 8px 8px 0;
}

/* FOUNDERS */
.founders-section { 
    padding: var(--space-lg) 0; 
    background: linear-gradient(135deg, #F8FAFC 0%, #E2E8F0 100%);
}
.section-header { text-align: center; margin-bottom: 40px; }
.section-label {
    color: var(--color-primary);
    font-family: 'Space Mono', monospace;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.85rem;
    display: block;
}
.section-header h2 { color: var(--color-secondary); margin-top: 10px; }

.founders-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}
.founder-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
}
.founder-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--color-primary);
}
.founder-card:hover { 
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}
.founder-img-wrapper {
    height: 280px;
    overflow: hidden;
    position: relative;
}
.founder-img-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, white, transparent);
}
.founder-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #f1f5f9;
    transition: transform 0.5s ease;
}
.founder-card:hover .founder-img {
    transform: scale(1.05);
}
.founder-details { 
    padding: 30px; 
    text-align: center;
    position: relative;
}
}
.founder-details { padding: 20px; text-align: center; }
.founder-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--color-secondary);
    margin-bottom: 5px;
    font-weight: 700;
}
.founder-role {
    font-family: 'Space Mono', monospace;
    color: var(--color-primary);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: inline-block;
    padding: 5px 15px;
    background: rgba(217, 119, 6, 0.1);
    border-radius: 20px;
}
.founder-bio {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 10px;
}
.founder-contact {
    font-size: 0.85rem;
    color: var(--color-primary);
    font-weight: 600;
}
    line-height: 1.5;
    margin-bottom: 0;
}

/* VISION / MISSION */
.vm-section { background-color: #F1F5F9; padding: var(--space-xl) 0; }
.vm-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.vm-card {
    background: white;
    padding: 40px;
    transition: 0.3s;
    border-bottom: 3px solid transparent;
}
.vm-card:hover {
    transform: translateY(-10px);
    border-bottom: 3px solid var(--color-primary);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.vm-number {
    font-family: 'Space Mono', monospace;
    font-size: 3rem;
    color: #E2E8F0;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
}

/* KEY IDEAS SECTION (ENSURE THIS IS IN CSS) */
.key-ideas {
    padding: var(--space-lg) 0;
    background-color: var(--color-secondary); /* Dark Blue Background */
    color: white;
    text-align: center;
}
.ideas-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}
.idea-item {
    background: rgba(255,255,255,0.1);
    padding: 20px 40px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.2);
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    transition: 0.3s;
    cursor: default;
}
.idea-item:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateY(-3px);
}
.light-title { color: white !important; }

/* OBJECTIVES */
.objectives { padding: var(--space-xl) 0; }
.obj-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}
.obj-card {
    padding: 30px;
    background: white;
    border: 1px solid #E2E8F0;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}
.obj-card:hover {
    background: var(--color-secondary);
    color: white;
    border-color: var(--color-secondary);
}
.obj-card:hover h4, .obj-card:hover p, .obj-card:hover .obj-count { color: white; }
.obj-count {
    font-family: 'Space Mono', monospace;
    font-size: 0.8rem;
    color: var(--color-primary);
    margin-bottom: 10px;
    display: block;
    opacity: 0.8;
}

/* FOCUS AREAS */
.focus-section {
    background: linear-gradient(135deg, var(--color-secondary) 0%, #0f172a 100%);
    padding: var(--space-lg) 0;
    color: white;
}
.focus-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}
.focus-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
}
.focus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.focus-card-img {
    width: 100%;
    height: auto;
    position: relative;
}
.focus-card-img img {
    width: 100%;
    height: auto;
    display: block;
}
.focus-info {
    padding: 25px;
    background: var(--color-secondary);
    flex: 1;
}
.focus-info h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 8px;
}
.focus-info p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}
.focus-info h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 10px;
}
.focus-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--color-primary);
}
.focus-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* GALLERY */
.gallery-section { padding: var(--space-xl) 0; background-color: white; }
.gallery-header { text-align: center; margin-bottom: 60px; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}
.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(30, 41, 59, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-caption {
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-style: italic;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}
.gallery-item:hover .gallery-caption { transform: translateY(0); }

/* CTA */
.cta-section {
    background-color: var(--color-primary);
    padding: 60px 0;
    text-align: center;
    color: white;
}
.cta-title {
    color: white;
    margin-bottom: 20px;
}
.cta-text {
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.95rem;
}
.btn-light {
    background-color: white;
    color: var(--color-primary);
}

/* FOOTER */
footer {
    background-color: var(--color-dark);
    color: #94A3B8;
    padding: var(--space-lg) 0 40px;
    font-size: 0.9rem;
    border-top: 6px solid var(--color-primary);
}
.footer-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 60px;
}
.footer-brand h2 { color: white; font-family: 'Playfair Display', serif; font-size: 2rem; margin-bottom: 20px; }
.footer-col h4 { color: var(--color-primary); text-transform: uppercase; letter-spacing: 1.5px; font-size: 0.8rem; margin-bottom: 20px; }
.footer-col address { line-height: 1.8; font-style: normal; color: #CBD5E1; }
.footer-col strong { color: white; display: block; margin-bottom: 5px; font-family: 'Playfair Display', serif; font-size: 1.1rem;}
.copyright { text-align: center; border-top: 1px solid #334155; padding-top: 30px; font-size: 0.8rem; }

/* ANIMATIONS */
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); clip-path: polygon(35% 0, 100% 0, 100% 100%, 0% 100%); }
    to { opacity: 1; transform: translateX(0); clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%); }
}

/* RESPONSIVE & MOBILE MENU */
@media (max-width: 900px) {
    :root { --space-xl: 80px; --space-lg: 50px; --space-md: 30px; }
    
    /* Hero Mobile */
    .hero {
        flex-direction: column;
        justify-content: center;
        padding-top: 100px;
        padding-bottom: 60px;
        text-align: center;
    }
    .hero-content {
        width: 100%;
        padding: 0 20px;
        z-index: 10;
    }
    .hero-desc { max-width: 100%; margin-left: auto; margin-right: auto; }
    .hero-bg {
        position: absolute;
        top: 0; left: 0;
        width: 100%;
        height: 100%;
        background-image: url('images/hero.jpeg');
        background-size: cover;
        background-position: center top;
        opacity: 0.2;
        clip-path: none;
        z-index: 1;
    }
    .hero::after {
        content: '';
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 100%;
        background: linear-gradient(to bottom, rgba(15, 23, 42, 0.7), rgba(30, 41, 59, 0.9));
        z-index: 2;
    }
    .about-grid, .founders-grid { grid-template-columns: 1fr; gap: 30px; }
    .about-img-wrapper { order: -1; width: 100%; height: 300px; margin-bottom: 0; }
    .img-main { height: 100%; width: 100%; object-fit: cover; object-position: center; }
    .img-floating { display: none; }
    .vm-grid { grid-template-columns: 1fr; }
    .footer-layout { grid-template-columns: 1fr 1fr; gap: 30px; text-align: left; }
    .focus-cards { grid-template-columns: 1fr; }
    .founder-img-wrapper { height: 300px; }
    .founder-details { padding: 25px; }
    .focus-card-img { width: 100%; }
    .focus-card-img img { height: auto; }
    .focus-info { padding: 20px; }
    .focus-info { padding: 20px; }
    
    /* Mobile Menu Styles */
    .mobile-toggle { display: block; }
    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.4s ease-out;
    }
    nav.active { max-height: 400px; }
    nav ul {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        text-align: center;
    }
    nav a { font-size: 1rem; display: block; padding: 10px 0; }
}

@media (max-width: 600px) {
    :root { --space-xl: 50px; --space-lg: 40px; }
    .container { width: 95%; }
    .nav-container { flex-direction: row; justify-content: space-between; }
    .btn { width: 100%; text-align: center; margin-top: 10px; }
    .footer-layout { grid-template-columns: 1fr; text-align: center; gap: 30px; }
    .footer-col address { font-size: 0.9rem; }
    h1 { font-size: 2.2rem; } 
    h2 { font-size: 1.8rem; }
}