@import url('https://fonts.cdnfonts.com/css/plus-jakarta-sans');

:root {
    --primary-purple: #6c2cf5;
    --bg-light: #f9fafb;
    --text-dark: #111827;
    --text-muted: #4b5563;
    --white: #ffffff;
    --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: 'Inter', sans-serif;*/
    font-family: 'Plus Jakarta Sans', sans-serif;
    -webkit-font-smoothing: antialiased;
    /* Chrome, Safari */
    -moz-osx-font-smoothing: grayscale;
    /* Firefox on macOS */
    text-rendering: optimizeLegibility;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    overflow-x: hidden;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* --- Scroll Animation --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- Navigation --- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 2000;
    border-bottom: 1px solid #eee;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-purple);
    text-decoration: none;
    z-index: 2101;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    margin: 0 15px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 14px;
}

.btn-waitlist {
    padding: 10px 20px;
    border: 1px solid var(--text-dark);
    border-radius: 6px;
    background: none;
    cursor: pointer;
    font-weight: 600;
}

/* Burger Menu Icon */
.burger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 2101;
}

.burger div {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
}

/* --- Hero Section --- */
.hero {
    display: flex;
    align-items: center;
    padding: 80px 8%;
    gap: 60px;
    min-height: 80vh;
}

.hero-text {
    flex: 1.2;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.hero-img img {
    width: 100%;
    max-width: 500px;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.1));
}

/* --- Value Props Section --- */
.section-header {
    text-align: center;
    padding: 80px 8% 40px;
}

.grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 0 8%;
}

.info-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    height: 400px;
}

.info-card h3 {
    color: var(--primary-purple);
    margin-bottom: 15px;
    font-size: 30px;
}

h1,
h2,
h3,
h4 {
    line-height: 1.5;
}

.different-box {
    grid-column: span 2;
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    margin-top: 30px;
    border: 1px solid #f0f0f0;
    height: 400px;
}

.different-box h3 {
    color: var(--primary-purple);
    font-size: 30px;
    font-weight: bold;
    font-weight: 900;
}

/* --- Philosophy Section --- */
.philosophy {
    text-align: center;
    padding: 100px 8%;
    background: #f3f4f6;
    margin-top: 80px;
}

.philosophy .quote-mark {
    font-size: 80px;
    color: var(--primary-purple);
    line-height: 0;
    display: block;
    margin-bottom: 30px;
}

.philosophy h2 {
    font-size: 2.2rem;
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.4;
}

/* --- Why Ladaar? Banner --- */
.purple-banner {
    background: var(--primary-purple);
    margin: 80px 8%;
    border-radius: 20px;
    padding: 60px 60px 0px 60px;
    display: flex;
    color: white;
    align-items: center;
    gap: 40px;
     background-image: url("../images/background-pat.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.banner-text {
    flex: 1.5;
}

.banner-img {
    flex: 1;
    text-align: center;
}

.banner-img img {
    width: 100%;
    max-width: 300px;
}

/* --- Services Section --- */
.services-section {
    padding: 100px 8%;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 30px;
    align-items: center;
    margin-top: 60px;
}

.service-item {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 25px;
    border-left: 4px solid var(--primary-purple);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.service-item h4 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.service-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* --- Footer --- */
footer {
    padding: 80px 8% 40px;
    border-top: 1px solid #e5e7eb;
    background: var(--white);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-bottom {
    border-top: 1px solid #eee;
    margin-top: 40px;
    padding-top: 20px;
    font-size: 13px;
    color: #9ca3af;
    display: flex;
    justify-content: space-between;
}

/* --- Mobile Responsive --- */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .center-mockup {
        order: -1;
        text-align: center;
    }

    .purple-banner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .burger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 75%;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        transition: 0.4s ease-in-out;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    }

    .nav-links.nav-active {
        right: 0;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 40px;
    }

    .grid-container {
        grid-template-columns: 1fr;
    }

    .different-box {
        grid-column: span 1;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .toggle .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .toggle .line2 {
        opacity: 0;
    }

    .toggle .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .about-hero {
        flex-direction: column;
        text-align: center;
        padding-top: 40px;
    }

    .about-text h1 {
        font-size: 2.5rem;
    }
}

/* 1. The Container */
.info-card {
    position: relative;
    padding: 3rem;
    border-radius: 15px;
    background-color: #f8f9fa;
    overflow: hidden;
    transition: color 0.4s ease, box-shadow 0.4s ease;
    z-index: 1;
    cursor: pointer;
    border: 1px solid #ddd;
}

/* 2. Background Image Layer */
.info-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), 
                      url('../images/bgs.svg');
    background-size: cover;
    background-position: center;
    
    /* Initial state: Hidden and zoomed in */
    opacity: 0;
    transform: scale(1.3); 
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: -1;
}

/* 3. Text Elements - Initial State */
.info-card h3, 
.info-card p {
    position: relative;
    z-index: 2;
    transform: translateY(25px);
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* 4. The Stagger Effect */
/* The paragraph starts its animation 0.1 seconds after the heading */
.info-card p {
    transition-delay: 0.1s;
}

/* 5. Hover State */
.info-card:hover {
    color: #ffffff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.info-card:hover::before {
    opacity: 1;
    transform: scale(1);
}

.info-card:hover h3, 
.info-card:hover p {
    transform: translateY(0);
}

/* 1. The Container */
.different-box {
    position: relative;
    padding: 3rem;
    border-radius: 15px;
    background-color: #f8f9fa;
    overflow: hidden;
    transition: color 0.4s ease, box-shadow 0.4s ease;
    z-index: 1;
    cursor: pointer;
    border: 1px solid #ddd;
}

/* 2. Background Image Layer */
.different-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Use a different image for this card */
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), 
                      url('../images/bgs2.svg');
    background-size: cover;
    background-position: center;
    
    /* Initial state: Hidden and zoomed in */
    opacity: 0;
    transform: scale(1.3); 
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: -1;
}

/* 3. Text Elements - Initial State (Shifted down) */
.different-box h3, 
.different-box p {
    position: relative;
    z-index: 2;
    transform: translateY(25px);
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* 4. The Stagger Effect for the Paragraph */
.different-box p {
    transition-delay: 0.1s;
}

/* 5. Hover State - Triggering the Zoom and Slide */
.different-box:hover {
    color: #ffffff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.different-box:hover::before {
    opacity: 1;
    transform: scale(1); /* Zoom back to original */
}

.different-box:hover h3, 
.different-box:hover p {
    transform: translateY(0); /* Text slides up */
}

/* --- Who We Are Section --- */
.about-hero {
    display: flex;
    align-items: center;
    padding: 80px 8%;
    gap: 60px;
    min-height: 60vh;
}

.about-text {
    flex: 1.2;
}

.about-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 800;
}

.about-text p {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-img {
    flex: 1;
    text-align: center;
}

.about-img img {
    width: 100%;
    max-width: 400px;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.1));
    border-radius: 20px;
}

/* --- Core Values Section --- */
.values-section {
    padding: 100px 8%;
    background: #ffffff;
    text-align: center;
}

.values-section h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: 800;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.value-card {
    padding: 40px;
    border-radius: 16px;
    text-align: left;
    transition: var(--transition);
    color: white;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.value-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Individual Card Colors based on PDF */
.card-purple {
    background-color: var(--primary-purple);
}

.card-dark {
    background-color: #0f172a;
}

.card-light-purple {
    background-color: #a855f7;
}

.values-container {
    padding: 80px 8%;
    background-color: var(--bg-light);
}

.values-container h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-weight: 800;
}

/* Precision Grid Layout */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-areas:
        "transparency transparency trust"
        "innovation accountability trust"
        "empowerment empowerment empowerment";
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.value-card {
    padding: 35px;
    border-radius: 12px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 220px;
    transition: transform 0.3s ease;
     /* Adding the requested background pattern */
    background-image: url("../images/background-pat.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.value-card h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.9;
}

/* Assigning Areas */
.transparency {
    grid-area: transparency;
    background-color: var(--primary-purple);
    /* Adding the requested background pattern */
    background-image: url("../images/background-pat.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.trust {
    grid-area: trust;
    background-color: #0f172a;
    min-height: 100%;
    /* Spans both rows */
}

.innovation {
    grid-area: innovation;
    background-color: var(--primary-purple);
}

.accountability {
    grid-area: accountability;
    background-color: #a855f7;
     /* Adding the requested background pattern */
    background-image: url("../images/background-pat.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.empowerment {
    grid-area: empowerment;
    background-color: var(--primary-purple);
    min-height: 160px;
    /* Thinner row for the bottom */
}

/* Mobile Responsive */
@media (max-width: 850px) {
    .bento-grid {
        grid-template-areas:
            "transparency"
            "trust"
            "innovation"
            "accountability"
            "empowerment";
        grid-template-columns: 1fr;
    }
}
.social-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-icons a {
    color: #9ca3af; /* Gray color to match your footer text */
    transition: color 0.3s ease, transform 0.3s ease;
    display: flex;
}

.social-icons svg {
    width: 20px;
    height: 20px;
}

.social-icons a:hover {
    color: var(--primary-purple); /* Brand purple on hover */
    transform: translateY(-3px);
}