/* About Page Styles */
.soi-about-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    overflow: hidden;
}

.soi-about-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.soi-about-hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
    z-index: 2;
}

.soi-about-hero-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    z-index: 3;
    max-width: 800px;
}

.soi-about-hero-title {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.soi-about-hero-subtitle {
    font-size: 2rem;
    margin-bottom: 3rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.soi-about-breadcrumbs {
    display: flex;
    align-items: center;
    font-size: 1.6rem;
}

.soi-about-breadcrumbs a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.soi-about-breadcrumbs a:hover {
    color: #ff0000;
}

.soi-about-breadcrumbs span {
    margin: 0 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.soi-about-breadcrumbs .active {
    color: #ff0000;
    font-weight: 600;
}

/* About Intro Section */
.soi-about-intro {
    padding: 8rem 0;
    background-color: #fff;
}

.soi-about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.soi-section-header {
    margin-bottom: 3rem;
}

.soi-section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.soi-section-subtitle {
    display: block;
    font-size: 1.6rem;
    color: #ff0000;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.soi-section-title {
    font-size: 3.5rem;
    color: #000;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.soi-section-description {
    font-size: 1.8rem;
    color: #777;
}

.soi-about-intro-text {
    font-size: 1.6rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #444;
}

.soi-about-image-frame {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.soi-about-image-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.soi-about-experience-badge {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    background-color: #ff0000;
    color: #fff;
    padding: 1.5rem 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.2);
    z-index: 2;
}

.soi-about-experience-years {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.soi-about-experience-text {
    display: block;
    font-size: 1.4rem;
}

.soi-about-signature {
    display: flex;
    align-items: center;
    margin-top: 3rem;
}

.soi-about-signature img {
    height: 6rem;
    margin-right: 2rem;
}

.soi-about-signature-info h4 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #000;
}

.soi-about-signature-info p {
    font-size: 1.4rem;
    color: #777;
}

/* Mission & Values Section */
.soi-about-mission {
    padding: 8rem 0;
    background-color: #f9f9f9;
}

.soi-about-mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.soi-about-mission-card {
    background-color: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.soi-about-mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.soi-about-mission-icon {
    width: 8rem;
    height: 8rem;
    background-color: rgba(255, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 2rem;
    transition: all 0.3s ease;
}

.soi-about-mission-card:hover .soi-about-mission-icon {
    background-color: rgba(255, 0, 0, 0.2);
    transform: scale(1.1);
}

.soi-about-mission-icon i {
    font-size: 3.5rem;
    color: #ff0000;
}

.soi-about-mission-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #000;
}

.soi-about-mission-text {
    font-size: 1.5rem;
    color: #777;
    line-height: 1.6;
}

/* Team Section */
.soi-about-team {
    padding: 8rem 0;
    background-color: #fff;
}

.soi-about-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 5rem;
}

.soi-about-team-member {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.soi-about-team-image {
    position: relative;
    overflow: hidden;
}

.soi-about-team-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.soi-about-team-member:hover .soi-about-team-image img {
    transform: scale(1.1);
}

.soi-about-team-social {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    background-color: rgba(255, 0, 0, 0.8);
    padding: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.soi-about-team-member:hover .soi-about-team-social {
    bottom: 0;
}

.soi-about-team-social a {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.soi-about-team-social a:hover {
    background-color: #fff;
    color: #ff0000;
}

.soi-about-team-info {
    padding: 2.5rem;
    text-align: center;
}

.soi-about-team-name {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #000;
}

.soi-about-team-position {
    font-size: 1.4rem;
    color: #ff0000;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.soi-about-team-bio {
    font-size: 1.4rem;
    color: #777;
    line-height: 1.6;
}

.soi-about-team-cta {
    text-align: center;
    margin-top: 5rem;
}

.soi-about-team-cta p {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #444;
}

/* Buttons */
.soi-btn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1.5rem;
}

.soi-btn-primary {
    background-color: #ff0000;
    color: #fff;
    border: 2px solid #ff0000;
}

.soi-btn-primary:hover {
    background-color: transparent;
    color: #ff0000;
}

.soi-btn-outline {
    background-color: transparent;
    color: #ff0000;
    border: 2px solid #ff0000;
}

.soi-btn-outline:hover {
    background-color: #ff0000;
    color: #fff;
}

/* Achievements Section */
.soi-about-achievements {
    padding: 6rem 0;
    background-color: #ff0000;
    color: #fff;
}

.soi-about-achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.soi-about-achievement {
    padding: 2rem;
}

.soi-about-achievement-number {
    display: block;
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1;
}

.soi-about-achievement-text {
    font-size: 1.6rem;
    font-weight: 500;
}

/* Sustainability Section */
.soi-about-sustainability {
    padding: 8rem 0;
    background-color: #f9f9f9;
}

.soi-about-sustainability-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.soi-about-sustainability-image-frame {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.soi-about-sustainability-image-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.soi-about-sustainability-text {
    font-size: 1.6rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: #444;
}

.soi-about-sustainability-list {
    margin-bottom: 3rem;
}

.soi-about-sustainability-list li {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
}

.soi-about-sustainability-list i {
    color: #ff0000;
    font-size: 2rem;
    margin-right: 1.5rem;
    margin-top: 0.3rem;
}

.soi-about-sustainability-list span {
    font-size: 1.5rem;
    color: #444;
    flex: 1;
}

/* Testimonials Section */
.soi-about-testimonials {
    padding: 8rem 0;
    background-color: #000;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.soi-about-testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/about/testimonial-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 1;
}

.soi-about-testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    z-index: 2;
}

.soi-about-testimonial {
    display: none;
    text-align: center;
    padding: 0 2rem;
}

.soi-about-testimonial.active {
    display: block;
}

.soi-about-testimonial-content {
    padding: 4rem;
}

.soi-about-testimonial-rating {
    color: #f5a623;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.soi-about-testimonial-quote {
    font-size: 2.2rem;
    font-style: italic;
    margin-bottom: 3rem;
    line-height: 1.6;
    position: relative;
    color: #fff;
}

.soi-about-testimonial-quote::before,
.soi-about-testimonial-quote::after {
    content: '"';
    font-size: 3rem;
    color: #ff0000;
    opacity: 0.5;
}

.soi-about-testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
}

.soi-about-testimonial-author img {
    width: 7rem;
    height: 7rem;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1.5rem;
    border: 3px solid #ff0000;
}

.soi-about-testimonial-author h4 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.soi-about-testimonial-author p {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.7);
}

.soi-about-testimonials-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
    gap: 2rem;
    z-index: 2;
    position: relative;
}

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

.soi-about-testimonial-prev:hover,
.soi-about-testimonial-next:hover {
    background-color: #ff0000;
    border-color: #ff0000;
}

.soi-about-testimonials-dots {
    display: flex;
    gap: 1rem;
}

.soi-about-testimonials-dot {
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.soi-about-testimonials-dot.active {
    background-color: #ff0000;
    transform: scale(1.3);
}

/* Partners Section */
.soi-about-partners {
    padding: 8rem 0;
    background-color: #fff;
}

.soi-about-partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 4rem;
    align-items: center;
    justify-items: center;
}

.soi-about-partner {
    max-width: 180px;
    opacity: 0.7;
    transition: all 0.3s ease;
    filter: grayscale(100%);
}

.soi-about-partner:hover {
    opacity: 1;
    filter: grayscale(0);
}

.soi-about-partner img {
    width: 100%;
    height: auto;
    display: block;
}

/* CTA Section */
.soi-about-cta {
    padding: 8rem 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/about/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
}

.soi-about-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.soi-about-cta-title {
    font-size: 4rem;
    margin-bottom: 2rem;
}

.soi-about-cta-text {
    font-size: 2rem;
    margin-bottom: 3rem;
}

.soi-about-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .soi-about-hero-title {
        font-size: 4rem;
    }
    
    .soi-about-intro-grid,
    .soi-about-sustainability-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .soi-about-intro-image {
        order: -1;
    }
    
    .soi-section-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .soi-about-hero {
        height: 40vh;
        min-height: 300px;
    }
    
    .soi-about-hero-title {
        font-size: 3.5rem;
    }
    
    .soi-about-hero-subtitle {
        font-size: 1.8rem;
    }
    
    .soi-about-cta-title {
        font-size: 3.5rem;
    }
    
    .soi-about-cta-text {
        font-size: 1.8rem;
    }
    
    .soi-about-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .soi-about-testimonial-quote {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .soi-about-hero-title {
        font-size: 3rem;
    }
    
    .soi-about-hero-subtitle {
        font-size: 1.6rem;
    }
    
    .soi-section-title {
        font-size: 2.5rem;
    }
    
    .soi-about-achievements-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .soi-about-team-grid {
        grid-template-columns: 1fr;
    }
    
    .soi-about-testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .soi-about-testimonial-author img {
        margin-right: 0;
        margin-bottom: 1.5rem;
    }
}

/* Animation for counter */
@keyframes soi-counter {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.soi-about-achievement-number {
    animation: soi-counter 0.5s ease forwards;
}