    :root {
        --primary-color: #2C5F6F;
        --dark: #1a1a1a;
        --light: #f8f9fa;
    }

    body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        overflow-x: hidden;
        background: #f8f9fa !important;
        margin: 0;
        padding: 0;
    }

    /* Hero Section */
    .mission-hero {
        position: relative;
        height: 300px;
        overflow: hidden;
        border-radius: 20px;
        margin-bottom: 60px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    }

    .mission-hero img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(0.5);
    }

    .mission-hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(to bottom, rgba(44, 95, 111, 0.7), rgba(26, 26, 26, 0.7));
    }

    .mission-hero h1 {
        color: white;
        font-size: 3.5rem;
        font-weight: bold;
        text-transform: uppercase;
        letter-spacing: 3px;
        text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
        margin: 0;
        text-align: center;
        padding: 0 20px;
    }

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

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

    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    .back-btn {
        animation: fadeIn 0.6s ease-out;
    }

    .mission-hero {
        animation: fadeIn 0.8s ease-out;
    }

    /* Back Button */
    .back-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: var(--primary-color);
        color: white;
        padding: 12px 30px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
        margin-bottom: 40px;
        box-shadow: 0 5px 15px rgba(44, 95, 111, 0.3);
    }

    .back-btn:hover {
        background: white;
        color: var(--primary-color);
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(44, 95, 111, 0.4);
    }

    .back-btn i {
        transition: transform 0.3s ease;
    }

    .back-btn:hover i {
        transform: translateX(-5px);
    }

    /* Mission Vision Section - NEW MODERN DESIGN */
    .mv-section {
        padding: 80px 0;
        background: transparent;
        position: relative;
    }

    .mv-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .mv-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin-bottom: 60px;
    }

    .mv-card {
        background: white;
        border-radius: 24px;
        padding: 60px 45px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
        border: 1px solid rgba(44, 95, 111, 0.1);
    }

    .mv-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-size: cover;
        background-position: center;
        opacity:0.28;
        transition: all 0.4s ease;
        z-index: 0;
    }

    .mv-card:nth-child(1)::before {
        background-image: url('/public/images/1\ \(2\).png');
    }

    .mv-card:nth-child(2)::before {
        background-image: url('/public/images/1\ \(1\).png');
    }

    .mv-card:hover::before {
        opacity: 0.12;
        transform: scale(1.05);
    }

    .mv-card::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 0;
        background: linear-gradient(180deg, var(--primary-color), #1a5c6f);
        transition: height 0.4s ease;
        z-index: 1;
    }

    .mv-card:hover::after {
        height: 100%;
    }

    .mv-card > * {
        position: relative;
        z-index: 2;
    }

    .mv-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 40px rgba(44, 95, 111, 0.15);
        border-color: var(--primary-color);
    }

    .mv-icon {
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, rgba(44, 95, 111, 0.1), rgba(44, 95, 111, 0.05));
        border-radius: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 30px;
        font-size: 2rem;
        color: var(--primary-color);
        transition: all 0.4s ease;
    }

    .mv-card:hover .mv-icon {
        background: var(--primary-color);
        color: white;
        transform: scale(1.05);
    }

    .mv-title {
        font-size: 2rem;
        font-weight: 700;
        color: var(--dark);
        margin-bottom: 20px;
        letter-spacing: 0.5px;
    }

    .mv-text {
        color: #1a1919ff;
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 0;
    }

    /* Values Section */
    .values-section {
        background: white;
        padding: 60px 40px;
        border-radius: 24px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        border: 1px solid rgba(44, 95, 111, 0.1);
    }

    .values-title {
        text-align: center;
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--dark);
        margin-bottom: 50px;
        letter-spacing: 0.5px;
    }

    .values-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }

    .value-item {
        text-align: center;
        padding: 35px 25px;
        border-radius: 18px;
        background: #f8f9fa;
        transition: all 0.3s ease;
        border: 1px solid transparent;
    }

    .value-item:hover {
        background: var(--primary-color);
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(44, 95, 111, 0.25);
        border-color: var(--primary-color);
    }

    .value-item:hover .value-icon,
    .value-item:hover .value-name {
        color: white;
    }

    .value-icon {
        font-size: 2.5rem;
        color: var(--primary-color);
        margin-bottom: 15px;
        transition: all 0.3s ease;
    }

    .value-name {
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--dark);
        transition: all 0.3s ease;
    }

    /* Responsive */
    @media (max-width: 992px) {
        .mission-hero h1 {
            font-size: 2.8rem;
            letter-spacing: 2px;
        }

        .mv-grid {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 768px) {
        .mission-hero {
            height: 250px;
            margin-bottom: 40px;
        }

        .mission-hero h1 {
            font-size: 2.2rem;
            letter-spacing: 1.5px;
        }

        .mv-section {
            padding: 50px 0;
        }

        .mv-grid {
            gap: 25px;
        }

        .mv-card {
            padding: 45px 35px;
        }

        .mv-title {
            font-size: 1.75rem;
        }

        .mv-text {
            font-size: 0.95rem;
        }

        .values-title {
            font-size: 2rem;
        }

        .values-grid {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 576px) {
        .mission-hero {
            height: 200px;
        }

        .mission-hero h1 {
            font-size: 1.8rem;
            letter-spacing: 1px;
        }

        .mv-card {
            padding: 35px 25px;
        }

        .values-section {
            padding: 45px 25px;
        }
    }
