/* Modern About Us Section */
.about-section-modern {
    position: relative;
    background: #ffffff;
}

/* Add dotted pattern background */
.about-section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(0,0,0,0.04) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
    z-index: 0;
}

/* Add subtle radial overlay for depth */
.about-section-modern::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.02) 100%);
    pointer-events: none;
    z-index: 0;
}

.about-section-modern > * {
    position: relative;
    z-index: 1;
}

/* Image Container */
.about-image-container {
    position: relative;
    z-index: 1;
}

.about-main-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.about-main-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}

/* Image Badge */
.image-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: rgba(36, 36, 36, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 25px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.image-badge i {
    font-size: 28px;
    color: white;
}

.image-badge span {
    color: white;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
}

/* Decorative Shapes */
.about-shape-1 {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #fff 0%, #f5f5f5 100%);
    border-radius: 50%;
    opacity: 0.5;
    z-index: -1;
}

.about-shape-2 {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #242424 0%, #000 100%);
    border-radius: 50%;
    opacity: 0.1;
    z-index: -1;
}

/* Content */
.about-content {
    padding-left: 30px;
}

.about-label {
    display: inline-block;
    padding: 6px 18px;
    background: #242424;
    color: white;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.about-heading {
    font-size: 38px;
    font-weight: 800;
    color: #242424;
    margin-bottom: 10px;
    line-height: 1.2;
}

.about-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 25px;
    font-weight: 500;
}

.about-text {
    margin-bottom: 30px;
}

.about-text p {
    color: #555;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-text strong {
    color: #242424;
    font-weight: 700;
}

/* Highlights */
.about-highlights {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.highlight-item {
    flex: 1;
    min-width: 140px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.highlight-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #242424 0%, #000 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon i {
    font-size: 20px;
    color: white;
}

.highlight-text h4 {
    font-size: 15px;
    font-weight: 700;
    color: #242424;
    margin-bottom: 3px;
    line-height: 1.3;
}

.highlight-text p {
    font-size: 13px;
    color: #777;
    margin: 0;
    line-height: 1.4;
}

/* Specializations */
.about-specializations {
    padding-top: 25px;
    border-top: 2px solid #eee;
}

.about-specializations h4 {
    font-size: 16px;
    font-weight: 700;
    color: #242424;
    margin-bottom: 15px;
}

.specialization-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.spec-tag {
    display: inline-block;
    padding: 8px 16px;
    background: white;
    border: 2px solid #242424;
    color: #242424;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.spec-tag:hover {
    background: #242424;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.about-image-container {
    animation: fadeInLeft 0.8s ease-out;
}

.about-content {
    animation: fadeInUp 0.8s ease-out;
}

/* Responsive */
@media (max-width: 1199px) {
    .about-content {
        padding-left: 0;
        margin-top: 30px;
    }

    .about-heading {
        font-size: 32px;
    }

    .about-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .about-heading {
        font-size: 28px;
    }

    .about-subtitle {
        font-size: 15px;
    }

    .about-text p {
        font-size: 14px;
    }

    .about-highlights {
        flex-direction: column;
        gap: 15px;
    }

    .highlight-item {
        min-width: 100%;
    }

    .image-badge {
        bottom: 20px;
        left: 20px;
        right: 20px;
        padding: 15px 20px;
    }

    .image-badge i {
        font-size: 24px;
    }

    .image-badge span {
        font-size: 14px;
    }

    .about-shape-1,
    .about-shape-2 {
        display: none;
    }

    .specialization-tags {
        gap: 8px;
    }

    .spec-tag {
        font-size: 12px;
        padding: 6px 12px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .about-heading {
        font-size: 30px;
    }
}
