/* About Section Styles */
.about-section {
    padding: 60px 0;
    background: #f5f8fa;
    min-height: 550px;
    display: flex;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    padding: 0;
    display: flex;
    align-items: stretch;
    height: 100%;
    width: 100%;
    max-height: 100%;
    overflow: hidden;
}

.about-image-main {
    position: relative;
    z-index: 2;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    width: 100%;
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 100%;
}

.about-image-main img {
    transition: transform 0.5s ease;
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
    max-height: 100%;
}

.about-image-main:hover img {
    transform: scale(1.05);
}

.about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.experience-badge {
    position: absolute;
    bottom: 40px;
    right: -20px;
    background: #f7a73e;
    color: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(247, 167, 62, 0.3);
}

.experience-badge .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.experience-badge .text {
    font-size: 0.9rem;
    opacity: 0.9;
}

.features-grid {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    margin-top: 20px;
    flex-grow: 1;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    height: 100%;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: #f7a73e;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.feature-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-content h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #333;
}

.feature-content p {
    flex-grow: 1;
}

.about-cta .btn {
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.about-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(247, 167, 62, 0.3);
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .about-section {
        padding: 60px 0;
        min-height: auto;
    }
    
    .about-image-wrapper {
        margin-bottom: 40px;
    }
    
    .experience-badge {
        right: 0;
        bottom: 0;
    }
}

@media (max-width: 767.98px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        padding: 15px;
    }
    
    .experience-badge {
        padding: 15px;
    }
    
    .experience-badge .number {
        font-size: 2rem;
    }
} 