/* Header */
.about-banner {
    background: linear-gradient(rgba(43, 69, 102, 0.8), rgba(43, 69, 102, 0.8)), 
                url('/Images/aboutus-banner.jpg') center/cover no-repeat;
    color: #ffffff;
    text-align: center;
    padding: 100px 0;
    position: relative;
    margin-top: 80px;
}

.about-title {
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.about-subtitle {
    font-size: 18px;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .about-title {
        font-size: 36px;
    }
    .about-subtitle {
        font-size: 16px;
    }
}
/* General About Section Styling */
.about-section {
    padding: 80px 0;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #2b5b96;
    margin-bottom: 30px;
}

.about-content p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
}

/* Intro Section */
.about-intro {
    background: #f9f9f9;
}

.about-intro .about-img img {
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.about-intro .about-content {
    padding-left: 30px;
}

@media (max-width: 768px) {
    .about-intro .about-content {
        padding-left: 0;
        text-align: center;
    }
    
    .about-intro .about-img {
        text-align: center;
        margin-bottom: 30px;
    }
}

/* About Cards Section */
.about-cards {
    padding: 80px 0;
}

.about-cards .card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    padding: 40px;
    text-align: center;
    transition: transform 0.3s ease;
    height: 100%; /* Ensure cards have equal height */
}

.about-cards .card:hover {
    transform: translateY(-5px);
}

.mission-card {
    background: linear-gradient(135deg, #e8f5e9, #dcedc8);
    color: #333;
}

.vision-card {
    background: linear-gradient(135deg, #f0f8ff, #e1f5fe);
    color: #333;
}

.mission-icon, .vision-icon {
    font-size: 50px;
    color: #388e3c;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.card-title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.card-text {
    font-size: 18px;
    line-height: 1.6;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .about-cards .col-md-6 {
        margin-bottom: 30px; /* Add space between cards on smaller screens */
    }
}


.about-mission::before, .about-vision::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('your-pattern-image.png');
    background-repeat: repeat;
    opacity: 0.1;
    z-index: 0;
}

.mission-content, .vision-content {
    position: relative;
    z-index: 1;
}


/* Values Section */
.about-values {
    background: linear-gradient(135deg, #e8f5e9, #dcedc8); /* Light green gradient */
    padding: 100px 0;
    text-align: center;
}

.values-content {
    max-width: 1200px;
    margin: 0 auto;
}

.values-title {
    font-size: 40px;
    font-weight: 700;
    color: #388e3c;
    margin-bottom: 50px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.value-item {
    background: #fff;
    padding: 40px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-item i {
    font-size: 50px;
    color: #388e3c;
    margin-bottom: 20px;
}

.value-item h3 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.value-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .values-title {
        font-size: 32px;
    }
}