/* About Section Modern Styles */

.about-section-modern {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    overflow: hidden;
}

.about-section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(22, 72, 82, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.about-section-modern::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(22, 72, 82, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.about-section-modern .container {
    position: relative;
    z-index: 1;
}

/* Image Wrapper */
.about-image-wrapper {
    position: relative;
    padding: 20px;
}

.about-image-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.about-image-main img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.about-image-wrapper:hover .about-image-main img {
    transform: scale(1.05);
}

.about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(22, 72, 82, 0.1) 0%, rgba(22, 72, 82, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.about-image-wrapper:hover .about-image-overlay {
    opacity: 1;
}

/* Decoration Circles */
.about-image-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(22, 72, 82, 0.1);
    animation: float 6s ease-in-out infinite;
}

.decoration-circle-1 {
    width: 120px;
    height: 120px;
    top: 10%;
    right: -5%;
    animation-delay: 0s;
}

.decoration-circle-2 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: -5%;
    animation-delay: 2s;
}

.decoration-circle-3 {
    width: 60px;
    height: 60px;
    top: 50%;
    right: 10%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* About Stats */
.about-stats {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 3;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 120px;
}

.stat-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #1c1d1f 0%, #0d3540 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    flex-shrink: 0;
}

.stat-content h4 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #1c1d1f;
    line-height: 1.3;
}

/* Content Wrapper */
.about-content-wrapper {
    padding: 20px 0;
}

.section-label {
    margin-bottom: 20px;
}

.label-text {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(22, 72, 82, 0.1);
    color: #1c1d1f;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-title {
    font-size: 48px;
    font-weight: 700;
    color: #1c1d1f;
    margin-bottom: 25px;
    line-height: 1.2;
}

.title-line {
    display: block;
}

.title-line-accent {
    color: #0d3540;
    position: relative;
}

.title-line-accent::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #1c1d1f 0%, transparent 100%);
    border-radius: 2px;
}

.about-description {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 35px;
}

.about-description p {
    margin-bottom: 15px;
}

.about-description p:last-child {
    margin-bottom: 0;
}

/* Features */
.about-features {
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #1c1d1f;
}

.feature-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #1c1d1f 0%, #0d3540 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    flex-shrink: 0;
}

.feature-text h5 {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 600;
    color: #1c1d1f;
}

.feature-text p {
    margin: 0;
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

/* Action Buttons */
.about-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-about-primary,
.btn-about-secondary {
    padding: 15px 35px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-about-primary {
    background: linear-gradient(135deg, #1c1d1f 0%, #0d3540 100%);
    color: #fff;
}

.btn-about-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(22, 72, 82, 0.3);
    color: #fff;
}

.btn-about-secondary {
    background: transparent;
    color: #1c1d1f;
    border-color: #1c1d1f;
}

.btn-about-secondary:hover {
    background: #1c1d1f;
    color: #fff;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 991px) {
    .about-section-modern {
        padding: 60px 0;
    }

    .about-title {
        font-size: 36px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .about-stats {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        margin-top: 20px;
    }
}

@media (max-width: 767px) {
    .about-section-modern {
        padding: 40px 0;
    }

    .about-image-wrapper {
        padding: 10px;
        margin-bottom: 30px;
    }

    .about-title {
        font-size: 28px;
    }

    .title-line-accent::after {
        width: 60px;
        height: 3px;
    }

    .about-description {
        font-size: 15px;
    }

    .about-features {
        gap: 15px;
    }

    .feature-item {
        padding: 15px;
    }

    .about-actions {
        flex-direction: column;
    }

    .btn-about-primary,
    .btn-about-secondary {
        width: 100%;
        justify-content: center;
    }

    .decoration-circle {
        display: none;
    }
}

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

    .stat-item {
        min-width: 100%;
    }

    .about-stats {
        flex-direction: column;
    }
}

