        /* ============================================
           MISSION, VISION & CORE VALUES SECTION STYLES
           ============================================ */

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f9f9f9;
            margin-top: 80px;
        }

        /* Main Section Container */
        .mvv-section {
            padding: 50px 20px;
            max-width: 1200px;
            margin: 0 auto;
            background: linear-gradient(135deg, #ffffff 0%, #f5f7fa 100%);
            margin-bottom: 0;
        }

        /* Section Header */
        .mvv-header {
            text-align: center;
            margin-bottom: 50px;
            animation: slideDown 0.6s ease-out;
        }

        .mvv-header h1 {
            font-size: 2.5rem;
            color: #01012b;
            margin-bottom: 15px;
            font-weight: 700;
            letter-spacing: -0.5px;
        }

        .mvv-header p {
            font-size: 1.1rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Decorative line under heading */
        .mvv-divider {
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, #001f3f, #0074d9);
            margin: 20px auto 0;
            border-radius: 2px;
        }

        /* Container for three sections */
        .mvv-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;

        }

        /* Individual Card Styling */
        .mvv-card {
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            overflow: hidden;
            border-top: 5px solid transparent;
        }

        /* Mission Card */
        .mvv-card.mission {
            border-top-color: #0074d9;
        }

        /* Vision Card */
        .mvv-card.vision {
            border-top-color: #2ecc71;
        }

        /* Values Card */
        .mvv-card.values {
            border-top-color: #f39c12;
        }

        /* Hover Effect - Lift and Shadow */
        .mvv-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        /* Background accent on hover */
        .mvv-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, rgba(0, 116, 217, 0.05), transparent);
            transition: left 0.6s ease;
            z-index: 0;
        }

        .mvv-card:hover::before {
            left: 100%;
        }

        /* Card Icon Styling */
        .mvv-icon {
            font-size: 3rem;
            margin-bottom: 15px;
            display: inline-block;
            width: 70px;
            height: 70px;
            line-height: 70px;
            text-align: center;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(0, 116, 217, 0.1), rgba(0, 31, 63, 0.1));
            transition: all 0.4s ease;
            position: relative;
            z-index: 1;
        }

        .mvv-card.mission .mvv-icon {
            background: linear-gradient(135deg, rgba(0, 116, 217, 0.15), rgba(0, 116, 217, 0.05));
            color: #0074d9;
        }

        .mvv-card.vision .mvv-icon {
            background: linear-gradient(135deg, rgba(46, 204, 113, 0.15), rgba(46, 204, 113, 0.05));
            color: #2ecc71;
        }

        .mvv-card.values .mvv-icon {
            background: linear-gradient(135deg, rgba(243, 156, 18, 0.15), rgba(243, 156, 18, 0.05));
            color: #f39c12;
        }

        /* Icon hover animation */
        .mvv-card:hover .mvv-icon {
            transform: scale(1.15) rotate(5deg);
        }

        /* Card Title */
        .mvv-card h2 {
            font-size: 1.8rem;
            color: #01012b;
            margin-bottom: 20px;
            font-weight: 700;
            position: relative;
            z-index: 1;
        }

        /* Card Content */
        .mvv-card p {
            color: #666;
            font-size: 1rem;
            line-height: 1.8;
            position: relative;
            z-index: 1;
        }

        /* Core Values List */
        .mvv-values-list {
            position: relative;
            z-index: 1;
        }

        .mvv-value-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
            opacity: 0;
            animation: fadeInUp 0.6s ease-out forwards;
        }

        /* Stagger animation for list items */
        .mvv-value-item:nth-child(1) { animation-delay: 0.1s; }
        .mvv-value-item:nth-child(2) { animation-delay: 0.2s; }
        .mvv-value-item:nth-child(3) { animation-delay: 0.3s; }
        .mvv-value-item:nth-child(4) { animation-delay: 0.4s; }
        .mvv-value-item:nth-child(5) { animation-delay: 0.5s; }

        /* Checkmark/Bullet for values */
        .mvv-value-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: linear-gradient(135deg, #f39c12, #f1c40f);
            color: white;
            font-size: 0.9rem;
            font-weight: bold;
            flex-shrink: 0;
            margin-right: 15px;
            transition: all 0.3s ease;
        }

        .mvv-value-item:hover .mvv-value-icon {
            transform: scale(1.2) rotate(360deg);
            background: linear-gradient(135deg, #e67e22, #f39c12);
        }

        .mvv-value-text {
            flex: 1;
        }

        .mvv-value-text strong {
            display: block;
            color: #01012b;
            margin-bottom: 5px;
            font-weight: 600;
        }

        .mvv-value-text p {
            font-size: 0.9rem;
            color: #888;
            margin: 0;
        }

        /* ============================================
           ANIMATIONS
           ============================================ */

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pulse {
            0%, 100% {
                opacity: 1;
            }
            50% {
                opacity: 0.7;
            }
        }

        /* ============================================
           RESPONSIVE DESIGN
           ============================================ */

        /* Tablet (768px and below) */
        @media (max-width: 768px) {
            .mvv-section {
                padding: 35px 15px;
                margin-bottom: 0;
            }

            .mvv-header h1 {
                font-size: 2rem;
            }

            .mvv-header p {
                font-size: 1rem;
            }

            .mvv-container {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .mvv-card {
                padding: 30px;
            }

            .mvv-card h2 {
                font-size: 1.5rem;
            }

            .section {
                padding: 30px 15px;
                margin-top: 0;
            }

            .section-title {
                font-size: 1.8rem;
                margin-bottom: 1.5rem;
            }

            .services-grid {
                gap: 1.5rem;
            }
        }

        /* Services Grid */

        .section{
            padding: 40px 20px;
            max-width: 1200px;
            margin: 0 auto;
            margin-top: 0;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .service-card {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        .service-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, rgba(0, 116, 217, 0.1), rgba(0, 31, 63, 0.1));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            color: white;
            font-size: 1.5rem;
        }

        /* Section Title */
        .section-title {
            text-align: center;
            font-size: 2.2rem;
            color: #01012b;
            margin-bottom: 2rem;
            font-weight: 700;
            letter-spacing: -0.5px;
        }

        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }

        /* Mobile (480px and below) */
        @media (max-width: 480px) {
            body {
                margin-top: 60px;
            }

            .mvv-section {
                padding: 25px 10px;
                margin-bottom: 0;
            }

            .mvv-header h1 {
                font-size: 1.6rem;
                margin-bottom: 12px;
            }

            .mvv-header p {
                font-size: 0.95rem;
            }

            .mvv-divider {
                width: 50px;
            }

            .mvv-card {
                padding: 25px;
            }

            .mvv-card h2 {
                font-size: 1.3rem;
                margin-bottom: 15px;
            }

            .mvv-card p {
                font-size: 0.95rem;
            }

            .mvv-icon {
                font-size: 2.5rem;
                width: 60px;
                height: 60px;
                line-height: 60px;
            }

            .mvv-value-item {
                margin-bottom: 15px;
            }

            .mvv-value-icon {
                width: 20px;
                height: 20px;
                font-size: 0.8rem;
                margin-right: 12px;
            }

            .mvv-value-text strong {
                font-size: 0.95rem;
            }

            .mvv-value-text p {
                font-size: 0.85rem;
            }

            .section {
                padding: 20px 10px;
                margin-top: 0;
            }

            .section-title {
                font-size: 1.4rem;
                margin-bottom: 1.2rem;
            }

            .services-grid {
                gap: 1rem;
            }

            .service-card {
                padding: 1.5rem;
            }
        }

        /* Extra Small Devices (below 360px) */
        @media (max-width: 360px) {
            .mvv-header h1 {
                font-size: 1.4rem;
            }

            .mvv-card h2 {
                font-size: 1.2rem;
            }
        }

        /* Large Desktop (1200px and above) */
        @media (min-width: 1200px) {
            .mvv-section {
                padding: 60px 40px;
                margin-bottom: 0;
            }

            .mvv-header h1 {
                font-size: 3rem;
            }

            .section {
                padding: 50px 40px;
                margin-top: 0;
            }

            .section-title {
                font-size: 2.5rem;
                margin-bottom: 2.5rem;
            }
        }
