/* =====================================================
   ABOUT PAGE - SIMPLIFIED DESIGN WITH HOVER EFFECTS
   ===================================================== */

/* === GLOBAL RESET === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* === BACKGROUND WITH IMAGE === */
.floating-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(135deg,
            rgba(168, 115, 186, 0.1) 0%,
            rgba(255, 255, 255, 0.95) 100%),
        url('../images/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: -1;
}

.floating-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 80%, rgba(168, 115, 186, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(196, 145, 212, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

/* === HERO SECTION === */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 3rem 2rem;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    gap: 4rem;
}

.hero-logo-side {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo {
    width: 400px;
    height: auto;
    max-width: 100%;
    filter: drop-shadow(0 15px 30px rgba(168, 115, 186, 0.2));
    transition: all 0.3s ease;
}

.hero-logo:hover {
    transform: scale(1.05) rotate(2deg);
    filter: drop-shadow(0 20px 40px rgba(168, 115, 186, 0.3));
}

.hero-text-side {
    flex: 1;
    text-align: right;
    padding-right: 2rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-color, #a873ba);
    margin-bottom: 1.5rem;
    font-family: 'Cairo', sans-serif;
    line-height: 1.2;
    transition: all 0.3s ease;
}

.hero-title:hover {
    transform: translateX(-10px);
    text-shadow: 2px 2px 10px rgba(168, 115, 186, 0.3);
}

.hero-subtitle {
    font-size: 1.8rem;
    color: #666;
    font-weight: 400;
    line-height: 1.4;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator span {
    font-size: 2rem;
    color: #a873ba;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
}

.scroll-indicator:hover span {
    color: #9d64b2;
    transform: scale(1.3);
    animation-play-state: paused;
}

/* === CONTAINER === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* === SECTIONS === */
section {
    padding: 4rem 0;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color, #a873ba);
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.section-title:hover {
    transform: translateY(-5px);
    text-shadow: 0 5px 15px rgba(168, 115, 186, 0.2);
}

.section-title.center {
    display: block;
    text-align: center;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #a873ba, #b584c7);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.section-title:hover::after {
    width: 100px;
}

.section-title.center::after {
    left: 50%;
    transform: translateX(-50%);
}

/* === INTRODUCTION SECTION === */
.intro-section {
    background: rgba(255, 255, 255, 0.9);
    padding: 4rem 0;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    border-radius: 15px;
    background: rgba(168, 115, 186, 0.05);
    transition: all 0.3s ease;
    border: 2px solid rgba(168, 115, 186, 0.1);
    position: relative;
    overflow: hidden;
}

.intro-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(168, 115, 186, 0.1),
        transparent);
    transition: left 0.6s ease;
    z-index: 0;
}

.intro-text:hover::before {
    left: 100%;
}

.intro-text:hover {
    background: rgba(168, 115, 186, 0.08);
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(168, 115, 186, 0.2);
    border-color: rgba(168, 115, 186, 0.3);
    color: #444;
}

/* === VISION & MISSION SECTION === */
.vision-mission-section {
    background: rgba(248, 250, 252, 0.5);
    padding: 4rem 0;
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.vm-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(168, 115, 186, 0.1);
    transition: all 0.4s ease;
    border: 2px solid rgba(168, 115, 186, 0.1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.vm-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(168, 115, 186, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
    z-index: 0;
}

.vm-card:hover::after {
    width: 300px;
    height: 300px;
}

.vm-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 20px 60px rgba(168, 115, 186, 0.25);
    border-color: rgba(168, 115, 186, 0.3);
}

.vm-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.vm-card:hover .vm-icon {
    transform: scale(1.4) rotate(10deg);
    filter: drop-shadow(0 5px 15px rgba(168, 115, 186, 0.4));
}

.vm-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #a873ba;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.vm-card:hover .vm-title {
    color: #9d64b2;
    text-shadow: 0 2px 10px rgba(168, 115, 186, 0.3);
}

.vm-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.vm-card:hover .vm-text {
    color: #555;
}

/* === FEATURES SECTION === */
.features-section {
    background: white;
    padding: 4rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(168, 115, 186, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(168, 115, 186, 0.1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(168, 115, 186, 0.1),
        transparent);
    transition: left 0.8s ease;
    z-index: 0;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 25px 50px rgba(168, 115, 186, 0.25);
    border-color: rgba(168, 115, 186, 0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.feature-card:hover .feature-icon {
    transform: scale(1.3) rotateY(360deg);
    text-shadow: 0 0 20px rgba(168, 115, 186, 0.5);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #a873ba;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.feature-card:hover .feature-title {
    color: #9d64b2;
    transform: translateY(-5px);
}

.feature-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.feature-card:hover .feature-description {
    color: #555;
    transform: translateY(-3px);
}

/* === DEVELOPMENT SECTION === */
.development-section {
    background: rgba(248, 250, 252, 0.5);
    text-align: center;
    padding: 4rem 0;
}

.development-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(168, 115, 186, 0.1);
    border: 2px solid rgba(168, 115, 186, 0.1);
    transition: all 0.3s ease;
}

.development-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(168, 115, 186, 0.2);
    border-color: rgba(168, 115, 186, 0.3);
}

.development-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-top: 1rem;
}

/* === KEYWORDS SECTION === */
.keywords-section {
    background: white;
    text-align: center;
    padding: 4rem 0;
}

.keywords-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.keyword-tag {
    background: linear-gradient(135deg, #a873ba, #b584c7);
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 3px 15px rgba(168, 115, 186, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.keyword-tag:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(168, 115, 186, 0.4);
    background: linear-gradient(135deg, #9d64b2, #a873ba);
}

/* === CTA SECTION === */
.cta-section {
    background: linear-gradient(135deg,
        rgba(168, 115, 186, 0.1) 0%,
        rgba(255, 255, 255, 0.95) 100%);
    text-align: center;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}


.cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(168, 115, 186, 0.2);
    border: 2px solid rgba(168, 115, 186, 0.1);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.cta-content:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(168, 115, 186, 0.3);
    border-color: rgba(168, 115, 186, 0.3);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color, #a873ba);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.cta-content:hover .cta-title {
    transform: scale(1.05);
    text-shadow: 0 5px 15px rgba(168, 115, 186, 0.2);
}

.cta-text {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 180px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent);
    transition: left 0.6s ease;
}

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

.cta-btn.primary {
    background: linear-gradient(135deg, #a873ba, #b584c7);
    color: white;
    box-shadow: 0 8px 25px rgba(168, 115, 186, 0.4);
}

.cta-btn.primary:hover {
    transform: translateY(-5px) scale(1.05) rotateX(10deg);
    box-shadow: 0 15px 40px rgba(168, 115, 186, 0.5);
    background: linear-gradient(135deg, #9d64b2, #a873ba);
    text-decoration: none;
    color: white;
}

.cta-btn.secondary {
    background: transparent;
    color: #a873ba;
    border: 2px solid #a873ba;
    box-shadow: 0 5px 20px rgba(168, 115, 186, 0.2);
}

.cta-btn.secondary:hover {
    background: linear-gradient(135deg, #a873ba, #b584c7);
    color: white;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(168, 115, 186, 0.4);
    text-decoration: none;
    border-color: transparent;
}

/* === ANIMATIONS === */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-15px); }
    60% { transform: translateY(-8px); }
}

@keyframes subtle-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-60px, -60px); }
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 2rem 1rem;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .hero-text-side {
        text-align: center;
        padding-right: 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-logo {
        width: 250px;
    }

    .section-title {
        font-size: 2rem;
    }

    .vm-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .container {
        padding: 0 1rem;
    }

    section {
        padding: 3rem 0;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 300px;
    }

    .feature-card:hover {
        transform: translateY(-10px) scale(1.02);
    }

    .vm-card:hover {
        transform: translateY(-8px) scale(1.02);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-logo {
        width: 200px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .vm-card, .feature-card {
        padding: 2rem 1.5rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .keyword-tag {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}
