/* ===== ABOUT HERO WITH BACKGROUND IMAGE ===== */

.about-hero {
    position: relative;
    padding: clamp(110px, 12vw, 140px) 20px clamp(70px, 9vw, 100px);
    text-align: center;
    background-size: cover;
    background-position: center 30%;
    overflow: hidden;
    background-color: transparent !important;
}

/* Light overlay */
.about-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(98, 97, 97, 0.3);  
    z-index: 1;
}

/* Content sits above overlay */
.about-hero .hero-inner {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

/* Badge – dark text on light background */
.about-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 13px;
    color: #333;
    margin-bottom: 20px;
}

/* Heading – dark grey */
.about-hero h1 {
    font-size: clamp(2rem, 5vw, 2.875rem);
    margin-bottom: 15px;
    font-weight: 700;
    color: #111010;  
}

/* Subtitle */
.about-hero p {
    font-size: 18px;
    line-height: 1.7;
    color: #000000;  
}

/* Primary button remains red */
.about-hero .primary-btn {
    background: #8d2123;
    color: #fff;
    border: none;
    padding: 12px 22px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}
.about-hero .primary-btn:hover {
    background: #6f1a1c;
    transform: translateY(-2px);
}

/* Secondary link */
.about-hero .hero-link {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    background: rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(4px);
    color: #333;
    transition: 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.1);
}
.about-hero .hero-link:hover {
    background: rgba(0, 0, 0, 0.12);
}

.about-hero .hero-actions {
    margin-top: 25px;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .about-hero {
        padding: 120px 20px 80px;
    }
    .about-hero h1 {
        font-size: 32px;
    }
}

/* subtle glow effect */
.about-hero::before {
    content: "";
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: rgba(141, 33, 35, 0.08);
    border-radius: 50%;
    filter: blur(80px);
    display: none;
}

.hero-inner {
    position: relative;
    max-width: 800px;
    margin: auto;
}

/* badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid #eee;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 13px;
    color: #8d2123;
    margin-bottom: 20px;
}

/* heading */
.about-hero h1 {
    font-size: clamp(2rem, 5vw, 2.875rem);
    margin-bottom: 15px;
    font-weight: 700;
}

/* subtitle */
.about-hero p {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
}

/* actions */
.hero-actions {
    margin-top: 25px;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* secondary link */
.hero-link {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    background: #eee;
    color: #333;
    transition: 0.3s;
}

.hero-link:hover {
    background: #ddd;
}

/* responsive */
@media(max-width:768px) {

    .about-hero {
        padding: 120px 20px 80px;
    }

    .about-hero h1 {
        font-size: 32px;
    }

}

/* CONTAINER */
.container {
    width: min(100% - 32px, 1100px);
    max-width: 1100px;
    margin: auto;
}

.narrow {
    max-width: 950px;
}

/* SECTION */
.about-section {
    padding: clamp(56px, 8vw, 90px) 20px;
    text-align: center;
}

.about-section.light {
    background: #f7f7f7;
}

/* GRID */
.about-grid-section {
    padding: clamp(56px, 8vw, 90px) 20px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

/* CARD */
.about-card {
    padding: 30px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    text-align: left;
}

.about-card:hover {
    transform: translateY(-6px);
}

.about-card i {
    font-size: 30px;
    color: #8d2123;
    margin-bottom: 16px;
}

/* HEADING */
.center-heading {
    text-align: center;
    margin-bottom: 40px;
}

/* CTA */
/* ===== PREMIUM CTA SECTION ===== */

.about-cta {
    position: relative;
    padding: clamp(64px, 9vw, 100px) 20px;
    text-align: center;
    color: #fff;

    background: linear-gradient(135deg, #8d2123, #6f1a1c);
    overflow: hidden;
}

/* glow effect */
.about-cta::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    filter: blur(80px);
    display: none;
}

/* inner container */
.about-cta .container {
    position: relative;
    z-index: 2;
}

/* heading */
.about-cta h2 {
    font-size: clamp(1.75rem, 4vw, 2rem);
    margin-bottom: 15px;
}

/* optional subtitle */
.about-cta p {
    color: #f1f1f1;
    margin-bottom: 25px;
    font-size: 16px;
}

/* CTA button override */
.about-cta .primary-btn {
    background: #fff;
    color: #8d2123;
    font-weight: 600;
    padding: 12px 26px;
    border-radius: 8px;
    transition: 0.3s;
}

/* hover */
.about-cta .primary-btn:hover {
    background: #f3f3f3;
    transform: translateY(-2px);
}

/* ===== PREMIUM ABOUT SECTION ===== */

.about-section.enhanced {
    padding: 110px 20px;
}

/* Lead text */
.about-lead {
    font-size: 18px;
    color: #444;
    margin-bottom: 35px;
    line-height: 1.8;
}

/* COMBINED BLOCK */
.about-combined {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: space-between;

    background: #ffffff;
    padding: 30px 35px;
    border-radius: 8px;

    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
    border: 1px solid rgba(141, 33, 35, 0.08);
}

.about-combined:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* LEFT TEXT */
.about-info {
    flex: 1;
    text-align: left;
}

.about-info p {
    color: #555;
    line-height: 1.7;
}

/* RIGHT STATS */
.about-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    flex: 1.5;
}

/* STAT BOX */
.stat-box {
    text-align: center;
    min-width: 90px;
    transition: 0.3s;
    padding: 14px 12px;
    border-radius: 8px;
    background: rgba(141, 33, 35, 0.06);
}

.stat-box h3 {
    font-size: 30px;
    color: #8d2123;
    margin-bottom: 5px;
}

.stat-box p {
    font-size: 13px;
    color: #666;
}

/* Hover micro interaction */
.stat-box:hover {
    transform: scale(1.08);
}

/* RESPONSIVE */
@media(max-width:768px) {

    .about-combined {
        flex-direction: column;
        text-align: center;
        padding: 24px 18px;
    }

    .about-info {
        text-align: center;
    }

}

/* ===== TEST STRUCTURE SECTION ===== */

.about-structure-section {
    padding: clamp(56px, 8vw, 100px) 20px;
    background: #f7f7f7;
    text-align: center;
}

.structure-subtitle {
    max-width: 700px;
    margin: 10px auto 50px;
    color: #555;
    font-size: 16px;
}

/* GRID */
.structure-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

/* CARD */
.structure-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 8px;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
    text-align: left;
}

.structure-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

.structure-card i {
    font-size: 30px;
    color: #8d2123;
    margin-bottom: 15px;
}

.structure-card h3 {
    margin-bottom: 10px;
}

.structure-card p {
    font-size: 14px;
    color: #555;
}

/* ===== TIMELINE SECTION ===== */

.timeline-section {
    padding: clamp(56px, 8vw, 100px) 20px;
    background: #ffffff;
    text-align: center;
}

.timeline-subtitle {
    max-width: 700px;
    margin: 10px auto 50px;
    color: #555;
}

/* TIMELINE */
.timeline {
    position: relative;
    max-width: 800px;
    margin: auto;
}

/* vertical line */
.timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: #e5e5e5;
}

/* item */
.timeline-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
    position: relative;
}

/* alternate layout */
.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

/* icon */
.timeline-icon {
    width: 50px;
    height: 50px;
    background: #8d2123;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;

    position: relative;
    z-index: 2;
}

/* content */
.timeline-content {
    width: 40%;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    text-align: left;
    border: 1px solid rgba(141, 33, 35, 0.08);
}

.timeline-content h3 {
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 14px;
    color: #555;
}

/* RESPONSIVE */
@media(max-width:768px) {

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
        margin-left: 20px;
    }

    .timeline-item:nth-child(even) {
        flex-direction: column;
    }

    .timeline-icon {
        margin-bottom: 10px;
    }

    .timeline-content {
        width: 100%;
    }

}

/* PRIMARY BUTTON */
.primary-btn {
    background: #8d2123;
    color: #fff;
    border: none;
    padding: 12px 22px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.primary-btn:hover {
    background: #6f1a1c;
}

/* ===== AUDIENCE SECTION ===== */

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.audience-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 8px;
    text-align: left;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    border: 1px solid rgba(141, 33, 35, 0.08);
}

.audience-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.audience-card i {
    font-size: 28px;
    color: #8d2123;
    margin-bottom: 15px;
}

.audience-card h3 {
    margin-bottom: 10px;
}

.audience-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.audience-link {
    display: inline-block;
    margin-top: 15px;
    font-size: 14px;
    color: #8d2123;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.audience-link:hover {
    text-decoration: underline;
}

@media(max-width:600px) {
    .timeline::before {
        left: 25px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        margin-left: 0;
        padding-left: 56px;
        flex-direction: column;
        align-items: flex-start;
    }

    .timeline-icon {
        position: absolute;
        left: 0;
        top: 0;
    }

    .timeline-content {
        width: 100%;
    }
}

@media(max-width:600px) {
    .container {
        width: min(100% - 24px, 1100px);
    }

    .hero-actions,
    .about-cta .primary-btn,
    .hero-link,
    .primary-btn {
        width: 100%;
    }

    .hero-link,
    .primary-btn {
        display: inline-flex;
        justify-content: center;
    }

    .about-stats {
        gap: 16px;
    }

    .stat-box {
        flex: 1 1 120px;
    }
}
