/* About Section Styles */
.about-section {
    position: relative;
    padding: 100px 0;
    background: #ffffff;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.05) 100%);
    z-index: 0;
}

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

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

.about-image-inner {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-image-inner:hover {
    transform: translateY(-10px);
}

.about-main-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    transition: transform 0.5s ease;
}

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

/* Decorative Elements */
.about-decoration {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.1) 0%, rgba(0, 123, 255, 0.05) 100%);
    z-index: -1;
}

.about-decoration-1 {
    width: 200px;
    height: 200px;
    top: -50px;
    right: -50px;
    animation: float 6s ease-in-out infinite;
}

.about-decoration-2 {
    width: 150px;
    height: 150px;
    bottom: -30px;
    left: -30px;
    animation: float 8s ease-in-out infinite reverse;
}

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

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

[dir="rtl"] .about-content-wrapper {
    padding: 20px 40px 20px 0;
}

.about-label {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #ffde59 0%, #000000 100%);
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 25px;
    color: #1a1a1a;
    position: relative;
    padding-bottom: 15px;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #ffde59 0%, #000000 100%);
    border-radius: 2px;
}

[dir="rtl"] .about-title::after {
    left: auto;
    right: 0;
}

.about-short-desc {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #666666;
    margin-bottom: 20px;
    font-weight: 500;
}

.about-text {
    font-size: 1rem;
    line-height: 1.9;
    color: #555555;
    margin-bottom: 40px;
}

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

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

/* Features Grid */
.about-features {
    margin-top: 40px;
}

.about-feature-item {
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
}

.about-feature-item:hover {
    background: #ffffff;
    border-color: #007bff;
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.1);
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2);
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.feature-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.feature-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #666666;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1199px) {
    .about-content-wrapper {
        padding: 20px 0 20px 30px;
    }
    
    [dir="rtl"] .about-content-wrapper {
        padding: 20px 30px 20px 0;
    }
}

@media (max-width: 991px) {
    .about-section {
        padding: 80px 0;
    }
    
    .about-content-wrapper {
        padding: 40px 0 0 0;
        margin-top: 40px;
    }
    
    [dir="rtl"] .about-content-wrapper {
        padding: 40px 0 0 0;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .about-decoration-1,
    .about-decoration-2 {
        display: none;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-image-wrapper {
        padding: 10px;
    }
    
    .about-title {
        font-size: 1.75rem;
    }
    
    .about-short-desc {
        font-size: 1rem;
    }
    
    .about-text {
        font-size: 0.95rem;
    }
    
    .about-feature-item {
        padding: 20px;
        margin-bottom: 15px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        padding: 10px;
    }
    
    .feature-title {
        font-size: 1rem;
    }
    
    .feature-desc {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 50px 0;
    }
    
    .about-title {
        font-size: 1.5rem;
    }
    
    .about-label {
        font-size: 0.75rem;
        padding: 6px 15px;
    }
    
    .about-features .row {
        margin: 0;
    }
    
    .about-features .col-md-6 {
        padding: 0 10px;
    }
}

/* RTL Specific Adjustments */
[dir="rtl"] .about-title {
    text-align: right;
}

[dir="ltr"] .about-title {
    text-align: left;
}

[dir="rtl"] .about-short-desc,
[dir="rtl"] .about-text {
    text-align: right;
}

[dir="ltr"] .about-short-desc,
[dir="ltr"] .about-text {
    text-align: left;
}

@media (max-width: 991px) {
    [dir="rtl"] .about-title,
    [dir="ltr"] .about-title,
    [dir="rtl"] .about-short-desc,
    [dir="ltr"] .about-short-desc,
    [dir="rtl"] .about-text,
    [dir="ltr"] .about-text {
        text-align: center;
    }
}

/* Animation Support - Works with WOW.js */
.wow {
    visibility: hidden;
}

