/* About Section Enhanced Styles */

.about-section-modern {
    position: relative;
    overflow: hidden;
    background-color: #fff;
    z-index: 1;
}

/* Background decorations */
.about-shape-1 {
    position: absolute;
    top: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
}

.about-shape-2 {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
}

/* Image Composition */
.about-img-composition {
    position: relative;
    padding-right: 40px;
    padding-bottom: 40px;
    margin-right: 20px;
}

@media (max-width: 991px) {
    .about-img-composition {
        padding-right: 0;
        padding-bottom: 0;
        margin-right: 0;
        margin-bottom: 50px;
    }
}

.about-main-img {
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    width: 100%;
    height: auto;
    object-fit: cover;
    z-index: 1;
    position: relative;
    transition: transform 0.5s ease;
}

.about-img-composition:hover .about-main-img {
    transform: translateY(-5px);
}

/* Floating Experience Card */
.about-floating-card {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    z-index: 2;
    min-width: 220px;
    animation: float-card-about 5s ease-in-out infinite;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

@media (max-width: 768px) {
    .about-floating-card {
        padding: 15px;
        min-width: 180px;
        right: -10px;
    }
}

@keyframes float-card-about {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.about-floating-card .icon-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.about-floating-card .icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
}

.about-floating-card .years {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
    display: block;
}

.about-floating-card .label {
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 600;
    display: block;
    margin-top: 5px;
}

/* Content Styling */
.about-content-wrapper {
    padding-left: 20px;
}

@media (max-width: 991px) {
    .about-content-wrapper {
        padding-left: 0;
    }
}

.about-subtitle-badge {
    display: inline-flex;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.08);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-subtitle-badge i {
    margin-right: 8px;
    font-size: 1rem;
}

.about-title-modern {
    font-size: 2.75rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 25px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

@media (max-width: 575px) {
    .about-title-modern {
        font-size: 2rem;
    }
}

.about-desc-modern {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 35px;
}

/* Feature List */
.about-feature-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    background: #fff;
    padding: 24px;
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f1f5f9;
    position: relative;
    overflow: hidden;
}

.about-feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #3b82f6;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-feature-item:hover {
    background: #ffffff;
    border-color: rgba(59, 130, 246, 0.2);
    box-shadow: 0 15px 30px rgba(0,0,0,0.06);
    transform: translateX(5px);
}

.about-feature-item:hover::before {
    opacity: 1;
}

.about-feature-icon {
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    background: #f0f9ff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0284c7;
    font-size: 1.35rem;
    margin-right: 24px;
    transition: all 0.3s ease;
}

.about-feature-item:hover .about-feature-icon {
    background: #0284c7;
    color: #ffffff;
    transform: rotateY(180deg);
}

.about-feature-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.about-feature-content p {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Button */
.about-btn-modern {
    margin-top: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: #0f172a;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 1px solid #0f172a;
}

.about-btn-modern:hover {
    background: transparent;
    color: #0f172a;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.15);
}

.about-btn-modern i {
    margin-left: 8px;
    transition: margin 0.3s;
}

.about-btn-modern:hover i {
    margin-left: 12px;
}
