/* who we are section */
.whoweare-section {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.whoweare-title {
    margin-bottom: 1rem;
    font-weight: 600;
    color: #ff7a00;
}

.whoweare-content {
    padding: 1.5rem 1.5rem;
}

.whoweare-paragraph {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    text-align: justify;
}

.whoweare-image {
    max-width: 90%;
    height: auto;
}

@media (max-width: 768px) {
    .whoweare-paragraph {
        font-size: 1rem; 
    }
}

/* Mission & Vision Section */
.mission-vision-section {
    background: linear-gradient(180deg, #f8fbff 0%, #eef3f8 100%);
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.mv-card {
    background: #fff;
    padding: 1.5rem 1.5rem;
    box-shadow: 0 35px 45px -25px rgba(0, 0, 0, 0.35);
    transition: transform 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-4px);
}

.mv-title {
    text-align: center;
    color: #ff7a00;
    font-weight: 600;
}

.mv-text {
    font-size: 1.25rem;
    text-align: justify;
}

@media (max-width: 768px) {
    .mv-text {
        font-size: 1rem;
    }
}

/* Our Team Section */
.our-team-section {
    background-color: #fff;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.our-team-image {
    max-width: 90%;
    height: auto;
}

.our-team-content {
    padding: 1.5rem 1.5rem;
}

.our-team-title {
    color: #ff7a00;
    font-weight: 600;
}

.our-team-text {
    font-size: 1.25rem;
    text-align: justify;
}

@media (max-width: 768px) {
    .our-team-text {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .our-team-title {
        text-align: center;
    }
}

/* Industries Section */
.industries-section {
    background-color: #fff;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.industries-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.industries-subtitle {
    font-size: 1.25rem;
}

.industries-box {
    background-color: #f6c9a4;
    border-radius: 12px;
    padding: 1.5rem;
}

.industry-card {
    background-color: #fff;
    padding: 1.5rem 1.5rem;
    border-radius: 14px;
    height: 100%;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-6px);
}

.industry-icon {
    max-width: 90px;
    margin-bottom: 1rem;
}

.industry-card h6 {
    font-weight: 600;
    font-size: 1rem;
}

.industries-footer-text {
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .industries-subtitle {
        font-size: 1rem;
    }
    
    .industries-footer-text {
        font-size: 1rem;
    }
}
