.about-us-section {
    padding: 100px 0;
    background-color: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 20px;
}

.divider {
    height: 4px;
    width: 80px;
    background: var(--secondary-color);
    margin: 0 auto;
    position: relative;
}

.divider:after {
    content: '';
    position: absolute;
    height: 10px;
    width: 10px;
    background: var(--secondary-color);
    border-radius: 50%;
    top: -3px;
    left: 35px;
}

.about-content {
    position: relative;
    padding-right: 30px;
}

.about-badge {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.about-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--light-text);
    margin-bottom: 40px;
}

.about-features {
    margin-bottom: 50px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.feature-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.feature-content p {
    color: var(--light-text);
    line-height: 1.6;
    margin: 0;
}

.about-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.stat-label {
    color: var(--light-text);
    font-weight: 500;
    margin: 0;
}

.about-image {
    position: relative;
    padding-left: 30px;
}

.image-main {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.image-main img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.about-image:hover .image-main img {
    transform: scale(1.05);
}

.image-experience {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--secondary-color);
    color: white;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    box-shadow: 0 5px 20px rgba(119, 163, 107, 0.3);
}

.exp-content {
    text-align: center;
}

.exp-years {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 1;
}

.exp-text {
    font-size: 0.9rem;
    margin: 0;
    font-weight: 500;
}

.image-overlay {
    position: absolute;
    top: -30px;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid var(--secondary-color);
    border-radius: 15px;
    z-index: 1;
}

.team-section {
    margin-top: 100px;
}

.team-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.founder-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    padding: 30px;
}

.founder-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 30px;
    flex-shrink: 0;
    border: 5px solid var(--light-bg);
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.founder-role {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.founder-desc {
    color: var(--light-text);
    line-height: 1.7;
    margin-bottom: 20px;
}

.founder-contact p {
    margin-bottom: 8px;
    color: var(--light-text);
}

.founder-contact i {
    color: var(--secondary-color);
    margin-right: 10px;
    width: 20px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-content {
        padding-right: 0;
        margin-bottom: 50px;
    }
    
    .about-image {
        padding-left: 0;
    }
    
    .founder-card {
        flex-direction: column;
        text-align: center;
    }
    
    .founder-image {
        margin-right: 0;
        margin-bottom: 25px;
    }
}

@media (max-width: 768px) {
    .about-us-section {
        padding: 70px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-title {
        font-size: 1.8rem;
    }
    
    .about-stats {
        flex-wrap: wrap;
        justify-content: space-around;
    }
    
    .stat-item {
        flex: 0 0 50%;
        margin-bottom: 30px;
    }
    
    .image-experience {
        width: 120px;
        height: 120px;
        right: -15px;
    }
    
    .exp-years {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .stat-item {
        flex: 0 0 100%;
    }
    
    .image-experience {
        position: relative;
        bottom: 0;
        right: 0;
        margin: -20px auto 0;
    }
    
    .image-overlay {
        display: none;
    }
}




/* for page */
/* About Page Specific Styles */
/* .about-hero-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.about-hero-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(12, 54, 73, 0.1), rgba(12, 54, 73, 0.4));
}

.our-story-section {
    padding: 80px 0;
}

.story-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.story-content {
    padding-left: 40px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

.divider {
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    margin: 20px 0;
}

.mission-vision-section {
    padding: 80px 0;
}

.mission-card, .vision-card {
    transition: transform 0.3s;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-10px);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.icon-wrapper i {
    font-size: 2rem;
    color: white;
}

.values-section {
    padding: 80px 0;
}

.value-item {
    padding: 30px 20px;
    border-radius: 10px;
    transition: all 0.3s;
}

.value-item:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon i {
    font-size: 1.8rem;
    color: white;
}

.team-section {
    padding: 80px 0;
}

.founder-card {
    display: flex;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.founder-image {
    flex: 0 0 300px;
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-content {
    padding: 30px;
}

.founder-role {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member {
    padding: 20px;
    transition: all 0.3s;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 5px solid var(--light-bg);
}

.why-choose-section {
    padding: 80px 0;
}

.feature-card {
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 1.8rem;
    color: white;
}

/* Responsive Styles */
/* @media (max-width: 992px) {
    .story-content {
        padding-left: 0;
        margin-top: 30px;
    }
    
    .founder-card {
        flex-direction: column;
    }
    
    .founder-image {
        flex: 0 0 300px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .value-item, .feature-card {
        padding: 20px 15px;
    }
}  */