 
.about-container {
    /* Padding to clear the fixed header and provide space */
    padding: 166px 20% 80px; 
    min-height: 100vh;
    color: white; /* Default text color */
    margin-top: 20px;
}



/* Reusing the styling for the main heading (similar to .robotics-container h2) */
.about-container .main-heading {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
    color: #fff;
}

.about-container .main-heading::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 3px;
    background-color: #ff6b00; /* Orange underline accent */
    animation: expand 1.5s ease-in-out;
}

/* Style for the main welcome paragraph box */
.welcome-box {
    background-color: #111; /* Dark grey background for contrast */
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
    border-left: 5px solid #ff6b00; /* Orange accent strip */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.welcome-box h3 {
    font-size: 2rem;
    color: #ff6b00; /* Orange heading */
    margin-bottom: 20px;
    background-color: transparent; /* Inherit background from parent */
}

.welcome-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ccc;
    text-align: justify;
    background-color: #111;
}

/* Styling for the Mission/Vision cards */
.mission-vision {
    display: flex;
    gap: 30px;
    flex-wrap: wrap; /* Allows wrapping on smaller screens */
    justify-content: center;
}

.vision-card, .focus-card {
    flex: 1 1 45%; /* Flex-grow, flex-shrink, basis */
    min-width: 300px;
    background-color: #111;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vision-card:hover, .focus-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.2);
}

.vision-card i, .focus-card i {
    font-size: 3rem;
    color: white;
    margin-bottom: 15px;
    background-color: #111;
}

.vision-card h4, .focus-card h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: white;
    background-color: #111;
}

.vision-card p, .focus-card p {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.6;
    background-color: #111;
}

/* About Section Responsiveness */
@media (max-width: 768px) {
    .about-container {
        padding: 80px 5% 50px;
    }

    .about-container .main-heading {
        font-size: 2.5rem;
    }

    .welcome-box h3 {
        font-size: 1.5rem;
    }

    .welcome-box p {
        font-size: 1rem;
    }

    .mission-vision {
        flex-direction: column; /* Stack cards vertically */
    }

    .vision-card, .focus-card {
        min-width: 100%;
    }
}