/* Page backdrop + base text, exactly as before */
body.about {
    background: linear-gradient(to bottom, #000000 60%, #1a1a1a);
    color: #f0f0f0;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

/* Header styling moved from inline */
body.about header.main-header {
    padding: 1rem 2rem;
    background: linear-gradient(to right, #000000, #3a0000);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

body.about header .brand-logo {
    height: 70px;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 50, 50, 0.7);
}

body.about header .brand-lockup {
    text-align: center;
    flex-grow: 1;
}

body.about header .brand-lockup h1 {
    font-size: 2.5rem;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    margin: 0;
}

body.about header .brand-lockup p {
    margin: 0;
    font-size: 0.9rem;
    color: #ffffff;
    font-weight: 500;
    letter-spacing: 1px;
}

/* Desktop nav to match inline */
body.about header .desktop-nav {
    display: flex;
    gap: 1.5rem;
}

body.about header .desktop-nav ul {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

body.about header .desktop-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

/* Mobile nav toggle (left per original) */
body.about .mobile-nav-toggle {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 1000;
    display: none;
    font-size: 2rem;
    cursor: pointer;
    color: #fff;
}

body.about nav.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 70%;
    height: 100%;
    background: #000000;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    padding: 2rem 1rem;
    z-index: 999;
    box-shadow: 4px 0 12px rgba(255, 255, 255, 0.1);
}

body.about nav.mobile-nav .nav-links {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: 0;
    list-style: none;
}

body.about nav.mobile-nav a {
    color: #fff;
    text-decoration: none;
}

/* Hero section styles moved from inline */
.about-hero {
    padding: 4rem 2rem;
    text-align: center;
    background: linear-gradient(to right, #000000, #3a0000);
}

.about-hero h2 {
    font-size: 2.5rem;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.about-hero p {
    font-size: 1.1rem;
    color: #cccccc;
    max-width: 800px;
    margin: 1rem auto;
}

/* Who we are */
.about-who {
    padding: 3rem 2rem;
    max-width: 900px;
    margin: auto;
}

.about-who h3 {
    font-size: 2rem;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.about-who p {
    line-height: 1.7;
    color: #dddddd;
}

/* Mission & Vision cards */
.about-mission-vision {
    padding: 3rem 2rem;
    max-width: 1000px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.about-mission-vision .card {
    flex: 1 1 45%;
    background-color: #111;
    padding: 2rem;
    border-radius: 10px;
}

.about-mission-vision .card h3 {
    color: #c91c1c;
    font-family: 'Poppins', sans-serif;
}

.about-mission-vision .card p {
    color: #dddddd;
    line-height: 1.7;
}

/* Objectives */
.about-objectives {
    padding: 3rem 2rem;
    max-width: 1000px;
    margin: auto;
    background-color: #111111;
    border-radius: 12px;
}

.about-objectives h3 {
    font-size: 2rem;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.about-objectives .subtitle {
    color: #cccccc;
    text-align: center;
    max-width: 700px;
    margin: 0.5rem auto 2rem;
}

.objectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.objectives-grid .objective-card {
    background-color: #ffffff;
    color: #000000;
    padding: 1.5rem;
    border-radius: 10px;
    transition: transform 0.3s;
}

.objectives-grid .objective-card h4 {
    color: #c91c1c;
    margin-bottom: 0.5rem;
}

.objectives-grid .objective-card:hover {
    transform: scale(1.03);
}

/* What sets us apart */
.about-unique {
    padding: 3rem 2rem;
    max-width: 900px;
    margin: auto;
}

.about-unique h3 {
    font-size: 2rem;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.about-unique p {
    color: #cccccc;
    text-align: center;
    max-width: 800px;
    margin: 1rem auto;
    line-height: 1.8;
}

/* Animations preserved from inline styles */
@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive rules exactly as before */
@media (max-width: 768px) {
    .desktop-nav {
        display: none !important;
    }

    .mobile-nav-toggle {
        display: block !important;
    }

    .objective-card:nth-child(odd) {
        animation: slideRight 1s ease forwards;
    }

    .objective-card:nth-child(even) {
        animation: slideLeft 1s ease forwards;
    }
}

@media (min-width: 769px) {
    .objective-card {
        animation: slideUp 1.5s ease forwards;
    }
}