* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

body {
    background-color: rgb(230, 224, 224) !important;
    color: white !important;
    
}

@keyframes popup {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

h1 {
    font-size: 60px;
    font-weight: bold;
    background: linear-gradient(to right, #ff9a3c, #ff7300, #ff4500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    display: inline-block;
    animation: popup 1s ease-in-out forwards !important;
    opacity: 0;
}
.mission-vision-wrapper {
    display: flex;
    justify-content: center; /* Center them horizontally */
    align-items: flex-start; /* Top align both boxes */
    gap: 40px; /* Space between Mission and Vision */
    flex-wrap: wrap; /* For mobile responsiveness */
    margin-top: 20px;
}

.mission-vision-wrapper .mission,
.mission-vision-wrapper .vision {
    flex: 1;
    min-width: 250px;
    max-width: 400px;
}

.mission-vision-wrapper h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #222;
}

.mission-vision-wrapper p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}


/* Fade-in Animation */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
