/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #fefefb 0%, #f8f9fa 100%);
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Logo Section */
.logo-section {
    text-align: center;
    margin-bottom: 0px;
    padding: 20px 0;
}

.logo {
    img {
        width: 160px;
    }

    display: inline-block;
}

.logo-text {
    font-size: 3.5rem;
    font-weight: 700;
    color: #43abde;
    letter-spacing: -2px;
    text-transform: lowercase;
}

.logo-subtitle {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: #376db0;
    letter-spacing: 3px;
    margin-top: -8px;
    text-align: center;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #43abde 0%, #376db0 100%);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    margin-bottom: 40px;
    box-shadow: 0 20px 40px rgba(67, 171, 222, 0.3);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #FFFF84;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 20px;
    font-weight: 300;
}

.hero-tagline {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 40px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Arabic Text Styles */
.arabic-text {
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 30px;
}

.arabic-main {
    font-size: 1.8rem;
    color: #FFFF84;
    margin-bottom: 10px;
    font-weight: 600;
    direction: rtl;
    text-align: center;
}

.arabic-sub {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 15px;
    direction: rtl;
    text-align: center;
}

.arabic-tagline {
    font-size: 1.5rem;
    color: white;
    font-weight: 600;
    direction: rtl;
    text-align: center;
}

/* Features Section */
.features-section {
    margin-bottom: 40px;
}

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

.feature-card {
    background: linear-gradient(135deg, #4085c2 0%, #376db0 100%);
    border-radius: 15px;
    padding: 30px 25px;
    color: white;
    box-shadow: 0 10px 25px rgba(64, 133, 194, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    /* transform: translateY(-5px); */
    box-shadow: 0 15px 35px rgba(64, 133, 194, 0.4);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.alpha-symbol {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    font-style: italic;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #FFFF84;
}

.feature-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.feature-description strong {
    color: #FFFF84;
    font-weight: 600;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #43abde 0%, #376db0 100%);
    border-radius: 15px;
    padding: 30px 40px;
    color: white;
    margin-top: 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-left p {
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.footer-left strong {
    color: #FFFF84;
}

.footer-right {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.footer-right p {
    font-size: 0.85rem;
    opacity: 0.8;
}

.footer-logo {
    img {
        width: 100px;
    }
}

.footer-logo .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }

    .logo-text {
        font-size: 2.5rem;
    }

    .hero-section {
        padding: 40px 25px;
    }

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

    .hero-tagline {
        font-size: 1.5rem;
    }

    .arabic-main {
        font-size: 1.4rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-right {
        align-items: center;
        text-align: center;
    }
}

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

    .hero-tagline {
        font-size: 1.3rem;
    }

    .feature-card {
        padding: 25px 20px;
    }

    .footer {
        padding: 25px 20px;
    }
}

/* Animation Effects */
/* @keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
} */

/* .hero-section {
    animation: fadeInUp 0.8s ease-out;
}

.feature-card {
    animation: fadeInUp 0.8s ease-out;
} */

/* .feature-card:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.3s;
}

.feature-card:nth-child(4) {
    animation-delay: 0.4s;
} */

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus states for accessibility */
.feature-card:focus {
    outline: 2px solid #FFFF84;
    outline-offset: 2px;
}