/* ================= HERO SECTION ================= */

.about-hero {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    color: #fff;
    overflow: hidden;
}

/* Background Image Layer */
.about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("images/about-hero.jpg") center/cover no-repeat;
    
    /* Fade + soften effect */
    filter: brightness(60%) grayscale(10%);
    
    transform: scale(1.05);
    z-index: 1;
}

/* Smooth gradient fade overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.75),
        rgba(0, 0, 0, 0.65)
    );
    z-index: 2;
}

/* Content */
.hero-inner {
    position: relative;
    z-index: 3;
    max-width: 900px;
}

/* Headline */
.about-hero h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

/* Subtext */
.about-hero p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 35px;
}

/* Buttons */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 14px 28px;
    background: #3b82f6;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-primary:hover {
    background: #2563eb;
}

.btn-outline {
    padding: 14px 28px;
    border: 1px solid rgba(255,255,255,0.6);
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 34px;
    }

    .about-hero p {
        font-size: 16px;
    }
}
/* ================= WHAT WE DO SECTION ================= */

.about-journey {
    padding: 110px 8%;
    background: #ffffff;   /* White background */
    color: #1e293b;        /* Dark text */
}

.journey-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 70px;
    align-items: center;
}

/* Small blue label */
.section-tag {
    display: inline-block;
    color: #3b82f6;
    font-weight: 600;
    margin-bottom: 18px;
    position: relative;
    padding-left: 55px;
    font-size: 15px;
}

.section-tag::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 45px;
    height: 2px;
    background: #3b82f6;
    transform: translateY(-50%);
}

/* Heading */
.journey-left h2 {
    font-size: 46px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #0f172a;
}

/* Paragraph */
.journey-left p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 18px;
    font-size: 16px;
}

/* Right Image Grid */
.journey-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.journey-images img {
    width: 100%;
    border-radius: 14px;
    object-fit: cover;
    transition: 0.4s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.journey-images img:hover {
    transform: translateY(-6px);
}

/* Responsive */
@media (max-width: 992px) {
    .journey-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .journey-left h2 {
        font-size: 34px;
    }
}
/* ================= WHO WE ARE SECTION ================= */

.who-we-are {
    padding: 110px 8%;
    background: #ffffff;
}

.who-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 70px;
    align-items: center;
}

/* Image */
.who-image img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* Content */
.who-content h2 {
    font-size: 44px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #0f172a;
}

.who-content p {
    color: #475569;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
}

/* Responsive */
@media (max-width: 992px) {
    .who-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .who-content h2 {
        font-size: 32px;
    }
}
/* ================= MISSION & VISION SECTION ================= */

.mission-vision {
    padding: 110px 8%;
    background: #f8fafc; /* very soft light grey */
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.mission-box,
.vision-box {
    background: #ffffff;
    padding: 50px;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.mission-box:hover,
.vision-box:hover {
    transform: translateY(-6px);
}

.mv-title {
    font-size: 28px;
    margin-bottom: 25px;
    color: #0f172a;
}

.mission-box p,
.vision-box p {
    color: #475569;
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 18px;
}

/* Responsive */
@media (max-width: 992px) {
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mission-box,
    .vision-box {
        padding: 35px;
    }
}
/* ================= PARTNER SECTION ================= */

.partner-section {
    padding: 120px 8%;
    background: #ffffff;
}

.partner-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 70px;
    align-items: center;
}

/* Left Side */
.partner-content h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #0f172a;
}

.partner-content p {
    color: #475569;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
}

/* Right Card */
.partner-card {
    background: #f8fafc;
    padding: 50px;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.partner-card h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: #0f172a;
}

.partner-points {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.partner-points li {
    margin-bottom: 12px;
    color: #334155;
    font-size: 15px;
}

/* Button */
.partner-btn {
    display: inline-block;
    padding: 14px 28px;
    background: #3b82f6;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s ease;
}

.partner-btn:hover {
    background: #2563eb;
}

/* Responsive */
@media (max-width: 992px) {
    .partner-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

/* ================= EDITORIAL STANDARDS ================= */

.editorial-standards {
    padding: 120px 8%;
    background: #f8fafc; /* soft light grey for separation */
}

.editorial-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 70px auto;
}

.editorial-header h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #0f172a;
}

.editorial-header p {
    color: #475569;
    line-height: 1.8;
    font-size: 16px;
}

/* Grid Layout */
.editorial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.editorial-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.editorial-card:hover {
    transform: translateY(-6px);
}

.editorial-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #0f172a;
}

.editorial-card p {
    color: #475569;
    font-size: 15px;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 992px) {
    .editorial-grid {
        grid-template-columns: 1fr;
    }

    .editorial-header h2 {
        font-size: 32px;
    }
}
/* ================= FINAL CTA SECTION ================= */

.final-cta {
    padding: 130px 8%;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #ffffff;
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.final-cta h2 {
    font-size: 44px;
    margin-bottom: 25px;
    line-height: 1.2;
}

.final-cta p {
    font-size: 17px;
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* Buttons */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-primary {
    background: #3b82f6;
    color: #ffffff;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.cta-primary:hover {
    background: #2563eb;
}

.cta-secondary {
    border: 1px solid #ffffff;
    color: #ffffff;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.cta-secondary:hover {
    background: rgba(255,255,255,0.1);
}

/* Responsive */
@media (max-width: 992px) {
    .final-cta h2 {
        font-size: 32px;
    }

    .final-cta p {
        font-size: 15px;
    }
}

/* ================= BREADCRUMB ================= */

.breadcrumb-strip {
    background: #ffffff;
    padding: 18px 8%;
    border-bottom: 1px solid #f1f5f9;
}

.breadcrumb-inner {
    font-size: 14px;
    color: #64748b;
}

.breadcrumb-inner a {
    text-decoration: none;
    color: #3b82f6;
    font-weight: 500;
}

.breadcrumb-inner span {
    margin: 0 6px;
}

.breadcrumb-inner .current {
    color: #0f172a;
    font-weight: 500;
}