/* About Page Styles */
.about-hero {
    /* background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://source.unsplash.com/random/1600x600?about'); */

    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://t3.ftcdn.net/jpg/09/61/83/04/240_F_961830434_QQKltHZ2kUmN4pXVH9olm5jWHZZ9l69y.jpg');
  

    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 0;
    margin-bottom: 60px;
    
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    /* font-family: var(--font-heading); */
    font-family: "DM Sans", sans-serif;
}

.about-hero p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* About Intro Section */
.about-intro {
    display: flex;
    gap: 50px;
    margin-bottom: 80px;
    align-items: center;
}

.intro-content {
    flex: 1;
}

.intro-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    /* font-family: var(--font-heading); */
    font-family: 'Poppins', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    color: var(--dark-color);
}

.intro-content p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: #555;
    text-align: justify;
}

.intro-image {
    flex: 1;
}

.intro-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    /* color: #3590a2; */
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: var(--gray-color);
}

/* Mission Section */
.mission-section {
    display: flex;
    gap: 50px;
    margin-bottom: 80px;
    align-items: center;
}

.mission-content {
    flex: 1;
}

.mission-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    /* font-family: var(--font-heading); */
    font-family: 'Poppins', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    color: var(--dark-color);
}

.mission-content p {
    margin-bottom: 30px;
    line-height: 1.7;
    color: #555;
}

.mission-image {
    flex: 1;
}

.mission-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.values-list {
    list-style: none;
    margin-left: -22px;
}

.values-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.values-list li i {
    font-size: 24px;
    color: var(--primary-color);
    /* color: #3590a2; */
    margin-top: 5px;
}

.values-list li h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.values-list li p {
    margin-bottom: 0;
    font-size: 15px;
}

/* Team Section */
.team-section {
    margin-bottom: 80px;
}

.team-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 15px;
    font-family: var(--font-heading);
    color: var(--dark-color);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--gray-color);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.team-member {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.member-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.hello_social {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 15px;
    background-color: rgba(0, 0, 0, 0.7);
    transition: var(--transition);
}

.team-member:hover .hello_social {
    bottom: 0;
}

.hello_social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: white;
    color: var(--primary-color);
}

.member-info {
    padding: 20px;
    text-align: center;
}

.member-info h3 {
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.member-info .position {
    font-size: 14px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 500;
}

.member-info .bio {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.cta-box {
    background-color: var(--primary-color);
    color: white;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.cta-box p {
    margin-bottom: 25px;
    font-size: 16px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: white;
    color: var(--primary-color);
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Testimonials Section */
.testimonials-section {
    margin-bottom: 80px;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 15px;
    font-family: var(--font-heading);
    color: var(--dark-color);
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial {
    display: none;
    text-align: center;
    padding: 40px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial.active {
    display: block;
}

.quote {
    margin-bottom: 30px;
    position: relative;
}

.quote i:first-child {
    position: absolute;
    top: -20px;
    left: 0;
    font-size: 60px;
    color: rgba(52, 152, 219, 0.1);
    z-index: 0;
}

.quote i:last-child {
    position: absolute;
    bottom: -40px;
    right: 0;
    font-size: 60px;
    color: rgba(52, 152, 219, 0.1);
    z-index: 0;
}

.quote p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    position: relative;
    z-index: 1;
    font-style: italic;
}

.author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.author img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.author h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.author p {
    font-size: 14px;
    color: var(--gray-color);
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.slider-prev, .slider-next {
    background: none;
    border: none;
    font-size: 20px;
    color: var(--primary-color);
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.slider-prev:hover, .slider-next:hover {
    background-color: var(--light-gray);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* Newsletter CTA */
.newsletter-cta {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 0;
}

.newsletter-cta .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cta-content h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.cta-content p {
    opacity: 0.9;
}

.cta-form {
    display: flex;
    gap: 10px;
    flex: 1;
    max-width: 500px;
}

.cta-form input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
}

.cta-form button {
    padding: 0 30px;
    background-color: var(--dark-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.cta-form button:hover {
    background-color: #1a252f;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-intro, .mission-section {
        flex-direction: column;
    }
    
    .intro-image, .mission-image {
        order: -1;
    }
    
    .newsletter-cta .container {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-form {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 36px;
    }
    
    .about-hero p {
        font-size: 18px;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 576px) {
    .about-hero {
        /* padding: 80px 0; */
        height: 190px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .about-hero h1 {
        font-size: 30px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .testimonial {
        padding: 30px 20px;
    }
    
    .cta-form {
        flex-direction: column;
    }
    
    .cta-form button {
        padding: 15px;
    }
}