
        /* Background Animation */
        .background-animation {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(255, 150, 30, 0.3), rgba(36, 177, 181, 0.3));
            animation: move 10s ease-in-out infinite;
            z-index: -1;
        }

        /*@keyframes move {
            0% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
            100% {
                background-position: 0% 50%;
            }*/
        }

        /* Updated Mission and Vision Card Styles */
        .mission-vision-section .card {
       /*       background: linear-gradient(-45deg, #01303d, #025b6e, #01303d, #025b6e);
  background-size: 200% 200%;
  animation: backgroundAnimation 12s ease infinite;
  overflow:visible;*/
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            width: 100%;
            max-width: 500px;
            padding: 15px !important;
            border-radius: 35px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
            position: relative;
            overflow: visible !important;
            color: #ffffff;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.5s forwards;
            animation-delay: 0.3s;
        }

       /* @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }*/

        .mission-vision-section .card:nth-child(1) {
            background-color: #31835d; /* Green tone from logo */
        }

        .mission-vision-section .card:nth-child(2) {
            background-color: #1c5675; /* Blue tone from logo */
        }

        /* Gradient Overlay on Hover */
       /* .mission-vision-section .card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, #f6921e, #24b1b5); 
            opacity: 0.3;
            transition: 0.3s ease;
            transform: rotate(30deg);
            z-index: 1;
        }

        .mission-vision-section .card:hover::before {
            opacity: 0.5;
        }*/

        /* Container setup */
    

        /* Core Values Section */
        .core-values {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-bottom: 60px;
        }

        .core-values-title {
            font-size: 32px;
            color: #f6921e;
            font-weight: bold;
            margin-bottom: 20px;
            text-align: center;
        }

        .core-values-row {
            display: flex;
            gap: 20px;
            margin-top: 20px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .core-value-item {
            background-color: rgba(255, 255, 255, 0.1);
            color: #ffffff;
            border-radius: 15px;
            width: 150px;
            padding: 20px;
            text-align: center;
            transition: transform 0.3s ease, background-color 0.3s ease;
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.5s forwards;
        }

        .card p {
            color:#fff;
            text-align: left;
            line-height: 24px;
            margin-bottom: 10px !important;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .core-value-item:nth-child(1) {
            background-color: #4CAF50; /* Green */
            animation-delay: 0.2s;
        }

        .core-value-item:nth-child(2) {
            background-color: #2196F3; /* Blue */
            animation-delay: 0.4s;
        }

        .core-value-item:nth-child(3) {
            background-color: #FFC107; /* Amber */
            animation-delay: 0.6s;
        }

        .core-value-item:nth-child(4) {
            background-color: #FF5722; /* Deep Orange */
            animation-delay: 0.8s;
        }

        .core-value-item:hover {
            transform: translateY(-10px);
            background-color: rgba(255, 255, 255, 0.15);
        }

        .core-value-item img {
            width: 40px;
            height: 40px;
            margin-bottom: 10px;
        }

        .core-value-item span {
            font-size: 16px;
            font-weight: bold;
            display: block;
        }

        /* Mission and Vision Section */
        .mission-vision-section {
            display: flex;
            gap: 20px;
            margin-top: 30px;
            width: 100%;
            justify-content: center;
        }

        /* Gradient Background for Cards */
        .card {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            color: #ffffff;
            width: 100%;
            max-width: 500px;
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
            position: relative;
            overflow: visible;
            animation: fadeInUp 0.5s forwards;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .mission-vision-section {
                flex-direction: column;
                align-items: center;
            }

            .core-values-row {
                flex-direction: column;
                gap: 15px;
            }

            .core-value-item {
                width: 100%;
                max-width: 300px;
            }
        }