﻿/* Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, #004282 0%, #0052a3 100%);
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/Images/Home_Images/About2.jpeg');
    opacity: 0.3;
}
.container-fluid {
    max-width: 95%;
}
.container{
    max-width: 95%;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

/* About Section */
.about-section {
    padding: 80px 0;
}

.section-title {
    color: #004282;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

    .section-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        right: 50%;
        transform: translateX(50%);
        width: 60px;
        height: 3px;
        background: linear-gradient(to left, #87c508, #a0d645);
        border-radius: 2px;
    }

.about-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.about-logo {
    max-width: 300px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

    .about-logo:hover {
        transform: scale(1.05);
    }

/* Stats Section */
.stats-section {
    padding: 60px 0;
    margin: 80px 0;
}

    .stats-section h3 {
        color: #004282;
        font-size: 3rem;
        font-weight: bold;
        margin-bottom: 10px;
    }

    .stats-section p {
        color: #333;
        font-size: 1.1rem;
        font-weight: 500;
    }

/* Values Section */
.values-section {
    padding: 80px 0;
    background-color: #fff;
}

.value-card {
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
}

    .value-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0, 66, 130, 0.15);
    }

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #87c508, #a0d645);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
}

.value-card h3 {
    color: #004282;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.value-card p {
    color: #333;
    font-size: 1rem;
    line-height: 1.7;
}

/* Contact/Testimonials Section */
.contact-section {
    padding: 100px 0;
    margin-top: 80px;
}

    .contact-section .section-title {
        color: #004282;
        font-size: 2.8rem;
    }

        .contact-section .section-title::after {
            right: 50%;
            transform: translateX(50%);
        }

.contact-form-card {
    background: #fff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 50px rgba(0, 66, 130, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

    .contact-form-card h2 {
        color: #004282;
        font-size: 2rem;
        margin-bottom: 30px;
        position: relative;
        padding-bottom: 15px;
    }

        .contact-form-card h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 50%;
            transform: translateX(50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(to left, #87c508, #a0d645);
            border-radius: 2px;
        }

.form-control {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 15px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #fafafa;
}

    .form-control:focus {
        border-color: #87c508;
        box-shadow: 0 0 0 0.2rem rgba(135, 197, 8, 0.15);
        background-color: #fff;
    }

    .form-control::placeholder {
        color: #999;
    }

.btn-primary-custom {
    background: linear-gradient(135deg, #87c508 0%, #a0d645 100%);
    border: none;
    color: #fff;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(135, 197, 8, 0.3);
}

    .btn-primary-custom:hover:not(:disabled) {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(135, 197, 8, 0.4);
        background: linear-gradient(135deg, #76ad07 0%, #8fc637 100%);
    }

    .btn-primary-custom:active {
        transform: translateY(0);
    }

    .btn-primary-custom:disabled,
    .btn-primary-custom.btn-disabled {
        background: #ccc;
        color: #666;
        cursor: not-allowed;
        box-shadow: none;
        opacity: 0.6;
    }

.text-danger {
    display: block;
    margin-top: 8px;
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .contact-section .section-title {
        font-size: 2.2rem;
    }

    .contact-form-card {
        padding: 30px 20px;
    }

    .stats-section h3 {
        font-size: 2.2rem;
    }

    .about-logo {
        max-width: 250px;
        margin-top: 30px;
    }

    .value-card {
        margin-bottom: 20px;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-form-card {
    animation: fadeInUp 0.6s ease-out;
}