/* About Page Styles */
.about-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: url('https://iili.io/3oemyzb.jpg') center/cover no-repeat;
    margin-top: 80px;
    padding: 80px 0;
}

.company-section {
    padding: 100px 20px;
    background: #fff;
    color: #333;
}

.company-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.company-text {
    flex: 1;
    min-width: 300px;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.company-text.visible {
    opacity: 1;
    transform: translateX(0);
}

.company-text h2 {
    font-size: 2.2rem;
    color: #0d1b12;
    margin-bottom: 25px;
}

.company-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.company-images {
    flex: 1;
    min-width: 300px;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.company-images.visible {
    opacity: 1;
    transform: translateX(0);
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
}

.grid-image {
    height: 200px;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.grid-image:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Team Section */
.team-section {
    padding: 100px 20px;
    background: #f5f5f5;
    color: #333;
}

.team-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    text-align: center;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.team-member.visible {
    opacity: 1;
    transform: translateY(0);
}

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

.member-image {
    height: 220px;
    background-size: cover;
    background-position: center top;
    transition: transform 0.5s ease;
}

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

.team-member h3 {
    font-size: 1.3rem;
    margin: 20px 0 5px 0;
    color: #0d1b12;
}

.member-role {
    color: #ffe044;
    font-weight: 600;
    margin-bottom: 15px;
}

.member-bio {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
    padding: 0 20px 20px;
}

/* About Section */
.about-section {
    padding: 100px 20px;
    background: #fff;
    color: #333;
}

.about-section .section-title,
.about-section .section-subtitle {
    color: #333;
}

.features-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    text-align: center;
    padding: 30px 20px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 224, 68, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 28px;
    color: #ffe044;
}

.feature-title {
    font-size: 1.3rem;
    margin: 0 0 15px 0;
    color: #0d1b12;
}

.feature-description {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 20px;
    background: #0d1b12;
    color: #fff;
    position: relative;
}

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

.testimonial {
    padding: 0 20px;
}

.testimonial-content {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 30px;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
    color: #bfc8c2;
}

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

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ffe044;
}

.testimonial-author h4 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
}

.testimonial-author p {
    margin: 0;
    color: #bfc8c2;
    font-size: 0.9rem;
}

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

.testimonial-prev,
.testimonial-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: #ffe044;
    color: #0d1b12;
}

.testimonial-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #ffe044;
    transform: scale(1.3);
}

/* Responsive Styles */
@media (max-width: 900px) {
    .company-content,
    .team-container {
        gap: 30px;
    }
    
    .company-text h2 {
        font-size: 1.8rem;
    }
    
    .team-member {
        min-width: 220px;
    }
}

@media (max-width: 600px) {
    .company-content {
        flex-direction: column;
    }
    
    .image-grid {
        grid-template-columns: 1fr;
    }
    
    .team-member {
        min-width: 100%;
    }
    
    .testimonial-content {
        padding: 20px;
    }
}
