/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    color: #333;
}

/* Navbar Styles */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: 600;
    color: #0d6efd;
}

/* Back Button */
.back-button {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    margin-bottom: 2rem;
}

.back-button i {
    margin-right: 8px;
}

/* Hero Section */
.about-hero {
    background: linear-gradient(rgba(13, 110, 253, 0.1), rgba(13, 110, 253, 0.1));
    padding: 4rem 0;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.about-hero h1 {
    font-weight: 700;
    color: #0d6efd;
}

/* Feature Cards */
.feature-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 2.5rem;
    color: #0d6efd;
    margin-bottom: 1rem;
}

/* Value Cards */
.value-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: 100%;
}

.value-card h4 {
    color: #0d6efd;
    margin-bottom: 1rem;
}

/* Team Cards */
.team-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.team-image img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 5px solid #fff;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

/* Contact Section */
.contact-info {
    margin: 2rem 0;
}

.contact-info p {
    margin-bottom: 1rem;
}

.contact-info i {
    color: #0d6efd;
    margin-right: 10px;
    width: 20px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0d6efd;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    color: #fff;
}

/* Form Styles */
.contact-form .form-control {
    padding: 0.8rem;
    border-radius: 8px;
}

.contact-form textarea {
    resize: none;
}

.btn-primary {
    padding: 0.8rem 2rem;
    border-radius: 8px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .about-hero {
        padding: 2rem 0;
    }

    .team-image img {
        width: 120px;
        height: 120px;
    }

    .feature-card, .value-card, .team-card {
        margin-bottom: 1rem;
    }
} 