/* About Page Specific Styles */

.about-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url(../New_folder/IMG-20250616-WA0108.jpg);
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 60px;
    padding: 0 20px;
}

.about-hero .hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
    line-height: 1.2;
}

.about-hero .hero-content p {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Mission Section */
.mission-section {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.mission-grid {
    display: block;
}

.mission-vision-group {
    display: flex;
    gap: 100px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.text-content {
    flex: 1;
}

.text-content h2 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 45px;
}

.text-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 50px;
}

.mission-image {
    width: 40%;
    position: relative;
    align-self: stretch;
}

.mission-image img {
    width: 100%;
    height: 90%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.core-values {
    width: 100%;
}

.core-values h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.value-item {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-item i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.value-item h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.value-item p {
    font-size: 1rem;
    color: #666;
}

/* History Section */
.history-section {
    padding: 80px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.divider {
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
    margin: 0 auto 20px;
}

.section-header p {
    color: #666;
    font-size: 1.2rem;
}

.history-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.history-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.history-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-member {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 3px solid var(--primary-color);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.team-member .position {
    color: var(--secondary-color);
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 1rem;
}

.team-member .bio {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}

/* Call to Action */
.about-cta {
    padding: 80px 0;
    background: var(--primary-color);
    color: white;
    text-align: center;
}

.about-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-cta p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    background: var(--secondary-color);
    color: var(--dark-color);
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline:hover {
    background: white;
    color: var(--primary-color);
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .mission-vision-group {
        gap: 50px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .history-content {
        gap: 40px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    /* Hero Section */
    .about-hero {
        height: 50vh;
        margin-top: 70px;
        padding: 0 20px;
    }
    
    .about-hero .hero-content h1 {
        font-size: 2rem;
        letter-spacing: 1px;
        margin-bottom: 0.8rem;
    }
    
    .about-hero .hero-content p {
        font-size: 1.1rem;
    }

    /* Mission Section */
    .mission-section {
        padding: 60px 0;
    }

    .mission-vision-group {
        flex-direction: column;
        gap: 30px;
    }

    .mission-image {
        width: 100%;
        order: -1;
    }

    .mission-image img {
        height: auto;
        max-height: 400px;
    }

    .text-content h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .text-content p {
        font-size: 1rem;
        margin-bottom: 30px;
        line-height: 1.7;
    }

    /* Core Values */
    .core-values h3 {
        font-size: 1.3rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .value-item {
        padding: 20px;
    }

    .value-item i {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .value-item h4 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .value-item p {
        font-size: 0.95rem;
    }

    /* History Section */
    .history-section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .history-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .history-image {
        order: -1;
    }

    .history-text p {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    /* Team Section */
    .team-section {
        padding: 60px 0;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .team-member {
        padding: 25px;
    }

    .member-image {
        width: 120px;
        height: 120px;
    }

    .team-member h3 {
        font-size: 1.2rem;
    }

    .team-member .position {
        font-size: 0.95rem;
    }

    .team-member .bio {
        font-size: 0.9rem;
    }

    /* CTA Section */
    .about-cta {
        padding: 60px 0;
    }

    .about-cta h2 {
        font-size: 1.8rem;
        padding: 0 15px;
    }

    .about-cta p {
        font-size: 1rem;
        padding: 0 15px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        padding: 0 15px;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    /* Hero Section */
    .about-hero {
        height: 45vh;
    }
    
    .about-hero .hero-content h1 {
        font-size: 1.5rem;
        margin-bottom: 0.6rem;
    }
    
    .about-hero .hero-content p {
        font-size: 1rem;
    }

    /* Mission Section */
    .mission-section {
        padding: 40px 0;
    }

    .text-content h2 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .text-content p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .mission-image img {
        max-height: 300px;
    }

    /* Core Values */
    .core-values h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .values-grid {
        gap: 12px;
    }

    .value-item {
        padding: 15px;
    }

    .value-item i {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }

    .value-item h4 {
        font-size: 1rem;
        margin-bottom: 6px;
    }

    .value-item p {
        font-size: 0.9rem;
    }

    /* History Section */
    .history-section {
        padding: 40px 0;
    }

    .section-header {
        margin-bottom: 30px;
    }

    .section-header h2 {
        font-size: 1.6rem;
        margin-bottom: 12px;
    }

    .divider {
        width: 60px;
        height: 2px;
        margin-bottom: 15px;
    }

    .section-header p {
        font-size: 0.95rem;
    }

    .history-content {
        gap: 25px;
    }

    .history-text p {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }

    /* Team Section */
    .team-section {
        padding: 40px 0;
    }

    .team-grid {
        gap: 20px;
    }

    .team-member {
        padding: 20px;
    }

    .member-image {
        width: 100px;
        height: 100px;
        border-width: 2px;
    }

    .team-member h3 {
        font-size: 1.1rem;
        margin-bottom: 4px;
    }

    .team-member .position {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }

    .team-member .bio {
        font-size: 0.85rem;
    }

    /* CTA Section */
    .about-cta {
        padding: 40px 0;
    }

    .about-cta h2 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .about-cta p {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
}