/* =========================================
   CLEAN & COLORED HOME REDESIGN CSS
========================================= */

/* --- 0. Utility & Typography overrides --- */
body {
    background-color: #fcfcfc;
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
    color: #333;
}
h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    color: #111;
}

.py-5 {
    padding-top: 60px;
    padding-bottom: 60px;
}
.mt-4 { margin-top: 30px; }

.section-heading h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 10px;
}
.section-heading h2 span {
    color: #f75023;
}
.section-heading p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

/* --- Buttons --- */
.hero-actions { display: flex; gap: 15px; flex-wrap: wrap; }
.btn-primary {
    background-color: #f75023;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: background 0.3s;
}
.btn-primary:hover { background-color: #e0401b; color: white; }
.btn-outline {
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}
.btn-outline:hover { background: #fff; color: #111; }

.btn-dark-outline {
    border: 2px solid #111;
    color: #111;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}
.btn-dark-outline:hover { background: #111; color: #fff; }


/* --- 1. HERO SECTION (Solid) --- */
.hero-solid {
    position: relative;
    padding: 120px 0 80px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: var(--color-dark-bg);
}
.hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('../../images/gender awaords all photosa/EM_07632.JPG');
    background-size: cover;
    background-position: center;
    opacity: 0.35; /* Dark overlay effect */
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}
.hero-badge {
    display: inline-block;
    padding: 6px 15px;
    background: rgba(255, 127, 0, 0.2);
    border: 1px solid var(--color-primary);
    color: #fff;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}
.hero-content h1 {
    font-size: 4rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
}
.hero-content h1 span {
    color: var(--color-primary);
}
.hero-content p {
    font-size: 1.2rem;
    color: #ddd;
    line-height: 1.6;
    margin-bottom: 35px;
}

/* --- 2. MARQUEE --- */
.marquee-section {
    background: var(--color-primary);
    padding: 15px 0;
    overflow: hidden;
    color: white;
}
.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: marquee 25s linear infinite;
}
.marquee-item {
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 10px;
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


/* --- 3. BENTO CATEGORIES (The Colored Grid) --- */
.bento-categories {
    background-color: #f8f9fa;
}
.bento-grid {
    display: grid;
    /* Desktop: 4 columns */
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.bento-card {
    display: flex;
    flex-direction: column;
    padding: 30px 20px;
    border-radius: 20px;
    text-decoration: none;
    color: #111;
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    align-items: center;
}
.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}
.bento-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}
.bento-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
}
.bento-card p {
    font-size: 0.95rem;
    opacity: 0.8;
    margin: 0;
}
/* Pastel Background Colors for Bento */
.bg-blue { background-color: #e0f2fe; color: #0284c7; }
.bg-blue h3, .bg-blue p { color: #0369a1; }
.bg-blue .bento-icon { color: #0284c7; }

.bg-red { background-color: #fee2e2; color: #dc2626; }
.bg-red h3, .bg-red p { color: #b91c1c; }
.bg-red .bento-icon { color: #dc2626; }

.bg-green { background-color: #dcfce7; color: #16a34a; }
.bg-green h3, .bg-green p { color: #15803d; }
.bg-green .bento-icon { color: #16a34a; }

.bg-orange { background-color: #ffedd5; color: #ea580c; }
.bg-orange h3, .bg-orange p { color: #c2410c; }
.bg-orange .bento-icon { color: #ea580c; }


/* --- 4. SPLIT BOOK LAYOUT --- */
.split-book-section {
    background-color: #fff;
}
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.book-shadow {
    width: 100%;
    max-width: 450px;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    display: block;
    margin: 0 auto;
}
.split-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
}
.split-content h2 span {
    color: #f75023;
}
.split-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}
.book-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}
.book-features li {
    font-size: 1.05rem;
    margin-bottom: 10px;
    color: #333;
}
.book-features i {
    color: #16a34a;
    margin-right: 10px;
}


/* --- 5. PROCESS CARDS (Numbered) --- */
.process-cards-section {
    background-color: #f8f9fa;
}
.process-grid {
    display: grid;
    /* Desktop: 4 columns */
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.process-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #eee;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}
.p-number {
    width: 50px;
    height: 50px;
    background: #f75023;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 20px;
}
.process-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.process-card p {
    font-size: 0.95rem;
    color: #666;
}


/* =========================================
   UNIQUE MOBILE RESPONSIVE LAYOUT
========================================= */
@media (max-width: 991px) {
    /* Adjust Desktop to 2 Columns for Tablets if needed, but let's go straight to mobile view for simplicity based on request */
    .bento-grid, .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .split-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .split-content h2 {
        font-size: 2.2rem;
    }
    .hero-content h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 767px) {
    .section-heading h2 {
        font-size: 2rem;
    }
    
    .hero-solid {
        padding: 100px 0 60px;
        min-height: auto;
    }
    .hero-content h1 {
        font-size: 2.3rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    
    /* THE 2x2 MOBILE GRID (Core Request) */
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px; /* Tighter gap on mobile */
    }
    .bento-card {
        padding: 20px 10px;
        border-radius: 15px;
    }
    .bento-icon {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    .bento-card h3 {
        font-size: 1.1rem;
    }
    .bento-card p {
        font-size: 0.8rem;
    }

    /* Process grid can either be 2x2 or 1-col on mobile. Let's make it 1-col for readability of paragraphs */
    .process-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .process-card {
        padding: 20px;
        display: flex;
        text-align: left;
        align-items: center;
        gap: 15px;
    }
    .p-number {
        margin: 0;
        min-width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}
