

.about-main {
    max-width: 1280px;
    margin: 0 auto;
    padding: 8rem 2rem 5rem;
    direction: rtl;
    font-family: inherit;
}

#about {
    scroll-margin-top: 100px;
}

.about-hero {
    text-align: center;
    margin-bottom: 4rem;
}

.about-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #9b51e0, #c084fc);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
}

.about-hero p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.story-section {
    margin-bottom: 5rem;
}

.story-container {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.story-image {
    flex: 1;
    min-width: 280px;
    
    border-radius: 0 !important;
    overflow: visible !important;
    box-shadow: none !important;
    background: transparent !important;
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
    
    border-radius: 0 !important;
    box-shadow: none !important;
    transition: none !important;
}

.story-image:hover img {
    transform: none !important;
}

.story-content {
    flex: 1;
    min-width: 280px;
}

.story-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.story-content h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #9b51e0, #c084fc);
    border-radius: 3px;
}

.story-content p {
    font-size: 1rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.values-section {
    margin-bottom: 5rem;
    background: linear-gradient(135deg, #faf5ff, #f3e8ff);
    padding: 3rem 2rem;
    border-radius: 2rem;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #9b51e0, #c084fc);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 0.5rem;
}

.section-title p {
    color: #64748b;
    font-size: 1rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.value-card {
    background: white;
    padding: 1.8rem;
    border-radius: 1.25rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #eef2ff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: #9b51e0;
    box-shadow: 0 16px 28px -8px rgba(155, 81, 224, 0.15);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #faf5ff, #f3e8ff);
    border-radius: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
}

.value-icon img {
    width: 38px;
    height: 38px;
    display: block;
}

.value-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.value-card p {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.6;
}

.stats-section {
    margin-bottom: 5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    background: white;
    border-radius: 1.25rem;
    border: 1px solid #eef2ff;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-3px);
    border-color: #9b51e0;
    box-shadow: 0 10px 25px -8px rgba(155, 81, 224, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #9b51e0, #c084fc);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

.team-section {
    margin-bottom: 5rem;
}

.team-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.team-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: white;
    border-radius: 1.25rem;
    overflow: hidden;
    border: 1px solid #eef2ff;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.team-card:hover {
    transform: translateY(-5px);
    border-color: #9b51e0;
    box-shadow: 0 16px 28px -8px rgba(155, 81, 224, 0.15);
}

.team-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    flex-shrink: 0;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-info {
    padding: 1.5rem 1.5rem 1.8rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.team-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.3rem;
    text-align: center;
}

.team-role {
    font-size: 0.85rem;
    color: #9b51e0;
    font-weight: 500;
    margin-bottom: 0.8rem;
    text-align: center;
}

.team-divider {
    border: none;
    border-top: 2px dashed #e2e8f0;
    margin: 0.8rem 0;
}

.team-desc {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 1.2rem;
    flex: 1;
}

.resume-btn {
    display: block;
    text-align: center;
    padding: 12px 0;
    min-height: 48px;
    height: 48px;
    line-height: 24px;
    background: #9b51e0;
    color: white;
    border: none;
    border-radius: 10px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: inherit;
    width: 100%;
    flex-shrink: 0;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
}

.resume-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.resume-btn:hover::before {
    left: 100%;
}

.resume-btn:hover {
    background: #7c3aed;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px -6px rgba(155, 81, 224, 0.4);
}

@media (max-width: 992px) {
    .team-grid {
        gap: 1.5rem;
    }

    .team-card {
        min-width: 250px;
        max-width: 320px;
    }

    .team-image {
        height: 260px;
    }
}

@media (max-width: 768px) {
    .team-grid {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        padding: 0 0.5rem;
    }

    .team-card {
        min-width: unset;
        max-width: 100%;
        width: 100%;
        max-width: 380px;
        border-radius: 1rem;
    }

    .team-image {
        height: auto;
        aspect-ratio: 1/1;
        width: 100%;
    }

    .team-image img {
        object-fit: cover;
        object-position: center center;
    }

    .team-info {
        padding: 1.2rem 1.2rem 1.5rem;
    }

    .team-info h3 {
        font-size: 1.1rem;
    }

    .team-role {
        font-size: 0.8rem;
    }

    .team-desc {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }

    .resume-btn {
        height: 44px;
        min-height: 44px;
        line-height: 20px;
        font-size: 0.85rem;
        padding: 10px 0;
        border-radius: 8px;
    }
}

@media (max-width: 480px) {
    .team-card {
        max-width: 100%;
        border-radius: 0.8rem;
    }

    .team-image {
        aspect-ratio: 1/1;
    }

    .team-info {
        padding: 1rem 1rem 1.2rem;
    }

    .team-info h3 {
        font-size: 1rem;
    }

    .team-role {
        font-size: 0.75rem;
    }

    .team-desc {
        font-size: 0.75rem;
        line-height: 1.6;
    }

    .team-divider {
        margin: 0.5rem 0;
    }

    .resume-btn {
        height: 40px;
        min-height: 40px;
        line-height: 18px;
        font-size: 0.8rem;
        padding: 8px 0;
        border-radius: 8px;
    }
}

.tech-section {
    margin-bottom: 4rem;
    background: #f8fafc;
    padding: 3rem 2rem;
    border-radius: 2rem;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
}

.tech-item {
    background: white;
    padding: 1.5rem 1rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #eef2ff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.tech-item:hover {
    transform: translateY(-5px);
    border-color: #9b51e0;
    box-shadow: 0 12px 24px -8px rgba(155, 81, 224, 0.15);
}

.tech-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
}

.tech-icon img {
    width: 45px;
    height: 45px;
    display: block;
    object-fit: contain;
}

.tech-item span {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e293b;
    margin-top: 0.25rem;
}

.cta-section {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    border-radius: 1.5rem;
    padding: 3rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.cta-section .bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(155, 81, 224, 0.15);
    pointer-events: none;
    animation: float 6s ease-in-out infinite;
}

.cta-section .bubble-1 {
    width: 100px;
    height: 100px;
    top: -30px;
    right: 5%;
    animation-delay: 0s;
}

.cta-section .bubble-2 {
    width: 150px;
    height: 150px;
    bottom: -50px;
    left: 0;
    animation-delay: 1s;
    animation-duration: 8s;
}

.cta-section .bubble-3 {
    width: 60px;
    height: 60px;
    top: 50%;
    right: 15%;
    animation-delay: 2s;
    animation-duration: 5s;
}

.cta-section .bubble-4 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 10%;
    animation-delay: 0.5s;
    animation-duration: 7s;
}

.cta-section .bubble-5 {
    width: 40px;
    height: 40px;
    top: 20%;
    left: 20%;
    animation-delay: 1.5s;
    animation-duration: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.4;
    }

    50% {
        transform: translateY(-20px) scale(1.1);
        opacity: 0.7;
    }
}

.cta-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.cta-section p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.cta-btn {
    display: inline-block;
    background: white;
    color: #9b51e0;
    padding: 0.8rem 2rem;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    border: none;
    cursor: pointer;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .cta-section {
        padding: 2rem;
    }

    .cta-section h2 {
        font-size: 1.4rem;
    }

    .cta-section p {
        font-size: 0.9rem;
    }

    .cta-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }

    .cta-section .bubble-1,
    .cta-section .bubble-2,
    .cta-section .bubble-3,
    .cta-section .bubble-4,
    .cta-section .bubble-5 {
        display: none;
    }
}

@media (max-width: 992px) {
    .about-main {
        padding: 7rem 1.5rem 4rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-main {
        padding: 6rem 1.25rem 4rem;
    }

    #about {
        scroll-margin-top: 80px;
    }

    .about-hero h1 {
        font-size: 1.8rem;
    }

    .about-hero p {
        font-size: 0.95rem;
    }

    .story-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .story-content h2 {
        font-size: 1.5rem;
    }

    .section-title h2 {
        font-size: 1.6rem;
    }

    .values-section {
        padding: 2rem 1rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .tech-section {
        padding: 2rem 1rem;
    }

    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .tech-icon {
        width: 50px;
        height: 50px;
    }

    .tech-icon img {
        width: 35px;
        height: 35px;
    }

    .cta-section {
        padding: 2rem;
    }

    .cta-section h2 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .about-main {
        padding: 5.5rem 1rem 3rem;
    }

    .about-hero h1 {
        font-size: 1.5rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .team-grid {
        flex-direction: column;
        align-items: center;
    }

    .team-card {
        max-width: 100%;
    }

    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tech-item {
        padding: 1rem;
    }

    .tech-icon {
        width: 45px;
        height: 45px;
    }

    .tech-icon img {
        width: 30px;
        height: 30px;
    }
}