.about-section {
    padding: 120px 0;
    background-color: #161616;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.about-img-wrapper {
    position: relative;
    z-index: 1;
}

.about-img-wrapper .main-img {
    border-radius: 20px;
    width: 100%;
    object-fit: cover;
    height: 600px;
    transition: all 0.5s ease;
}

.about-img-wrapper:hover .main-img {
    transform: scale(1.02);
}

.experience-badge {
    position: absolute;
    bottom: 40px;
    right: -30px;
    background-color: #fff;
    color: #161616;
    padding: 30px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.experience-badge .year {
    display: block;
    font-size: 50px;
    font-weight: 800;
    line-height: 1;
    color: #161616;
    margin-bottom: 5px;
}

.experience-badge .text {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #555;
}

.about-content {
    padding-left: 50px;
}

.about-content .sub-title {
    color: #fff;
    opacity: 0.6;
    font-size: 14px;
    letter-spacing: 3px;
    margin-bottom: 20px;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 500;
}

.about-content h2 {
    font-size: 55px;
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 300;
}

.about-content h2 span {
    font-weight: 700;
}

.about-content p {
    color: #bbb;
    line-height: 1.8;
    margin-bottom: 40px;
    font-size: 17px;
    font-weight: 300;
}

.feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: rgba(255,255,255,0.03);
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-5px);
}

.feature-item .icon {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.feature-item .icon i {
    color: #161616;
    font-size: 16px;
}

.feature-item h6 {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    color: #fff;
}

.btn-custom {
    display: inline-flex;
    align-items: center;
    padding: 15px 35px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 30px;
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-custom:hover {
    background: #fff;
    color: #161616;
    border-color: #fff;
}

.btn-custom i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.btn-custom:hover i {
    transform: translateX(5px);
}

@media (max-width: 991px) {
    .about-content {
        padding-left: 0;
        margin-top: 60px;
    }
    .about-content h2 {
        font-size: 40px;
    }
    .experience-badge {
        right: 0;
        bottom: 20px;
        padding: 20px 30px;
    }
    .about-img-wrapper .main-img {
        height: 400px;
    }
    .feature-list {
        grid-template-columns: 1fr;
    }
}

/* Color Harmony Updates */
.bg-box-dark {
    background-color: #1e1e1e;
    color: #fff;
}

.bg-box-accent {
    background-color: #1ba69c;
    color: #fff;
}

.stats-box.bord {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    color: #fff;
}

.stats-box.bg-box-accent {
    background-color: #1ba69c;
    color: #fff;
}

.contact-cta .bord {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #1e1e1e;
    color: #fff;
}

.contact-cta .butn-bord-sm {
    border: 1px solid #1ba69c;
    color: #1ba69c;
    padding: 12px 30px;
    border-radius: 30px;
    display: inline-block;
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact-cta .butn-bord-sm:hover {
    background-color: #1ba69c;
    color: #fff;
}

.vision-mission .item p {
    color: rgba(255, 255, 255, 0.8);
}

.vision-mission .bg-box-accent p {
    color: rgba(255, 255, 255, 0.9);
}
