body {
    background: linear-gradient(135deg, #f8faf9 0%, #a7bfe7f6 100%) !important;
    /* background: linear-gradient(135deg, #0A1E5E 0%, #1a3d7a 50%, #4E2FC4 100%) !important; */
}
:root {
    /* Mawsimi Brand Colors */
    --mawsimi-purple: #6B46E5;
    --mawsimi-purple-light: #8B6AEF;
    --mawsimi-purple-dark: #4E2FC4;
    --mawsimi-blue: #5BC4D8;
    --mawsimi-blue-light: #7FD4E3;
    --mawsimi-blue-dark: #3AA8BC;
    --mawsimi-navy: #0A1E5E;
    --mawsimi-white: #ffffff;
    --beige: #F5F1E8;
}

.hero-section {
    position: relative;
    min-height: 90vh;
    overflow: hidden;
    background: linear-gradient(135deg, var(--mawsimi-navy) 0%, #1a3d7a 50%, var(--mawsimi-purple-dark) 100%);
}

/* SVG Background Pattern */
.hero-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(91, 196, 216, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(107, 70, 229, 0.1) 0%, transparent 50%);
}

.beige-panel {
    position: absolute;
    top: 0;
    left: 15%;
    width: 40%;
    height: 100%;
    background: linear-gradient(180deg, rgba(245, 241, 232, 0.95) 0%, rgba(237, 233, 224, 0.9) 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 20% 100%);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

.purple-diagonal {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 55%;
    background: linear-gradient(160deg, var(--mawsimi-purple) 0%, var(--mawsimi-purple-light) 100%);
    clip-path: polygon(0 45%, 100% 25%, 100% 100%, 0 100%);
    opacity: 0.85;
}

.blue-accent {
    position: absolute;
    top: 10%;
    right: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--mawsimi-blue) 0%, transparent 70%);
    opacity: 0.3;
    border-radius: 50%;
    filter: blur(40px);
}

/* Content Card */
.content-card {
    position: relative;
    z-index: 10;
    background: rgba(245, 241, 232, 0.97);
    backdrop-filter: blur(15px);
    border-radius: 24px;
    box-shadow: 
        0 20px 60px rgba(10, 30, 94, 0.3),
        0 0 0 1px rgba(107, 70, 229, 0.1);
    padding: 3.5rem 2.5rem;
    max-width: 900px;
    margin: 0 auto;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    gap: 1rem;
}

.logo-text {
    font-family: 'Amiri', serif;
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--mawsimi-purple), var(--mawsimi-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.1em;
    text-shadow: 0 2px 10px rgba(107, 70, 229, 0.1);
}

.arabic-heading {
    font-family: 'Amiri', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--mawsimi-navy);
    line-height: 1.8;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.arabic-brand {
    font-size: 3rem;
    display: inline-block;
    background: linear-gradient(135deg, var(--mawsimi-purple), var(--mawsimi-purple-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.description-text {
    font-family: 'Cairo', sans-serif;
    font-size: 1.05rem;
    line-height: 2.2;
    color: #2d3748;
    text-align: justify;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.sub-description {
    font-family: 'Cairo', sans-serif;
    font-size: 1.25rem;
    color: var(--mawsimi-navy);
    font-weight: 600;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.login-btn {
    background: linear-gradient(135deg, var(--mawsimi-purple), var(--mawsimi-blue));
    color: white;
    border: none;
    padding: 16px 60px;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 10px 25px rgba(107, 70, 229, 0.3),
        0 5px 10px rgba(91, 196, 216, 0.2);
    position: relative;
    overflow: hidden;
}

.login-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;
}

.login-btn:hover::before {
    left: 100%;
}

.login-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 15px 35px rgba(107, 70, 229, 0.4),
        0 8px 15px rgba(91, 196, 216, 0.3);
    color: white;
}

.login-btn:active {
    transform: translateY(-1px) scale(0.98);
}

.scroll-arrow {
    width: 45px;
    height: 45px;
    animation: bounce 2s infinite;
    filter: drop-shadow(0 3px 6px rgba(107, 70, 229, 0.3));
    transition: transform 0.3s ease;
}

.scroll-arrow:hover {
    transform: scale(1.1);
}

@keyframes bounce {
    0%, 100% { 
        transform: translateY(0); 
    }
    50% { 
        transform: translateY(-12px); 
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .beige-panel {
        left: 10%;
        width: 50%;
    }

    .content-card {
        padding: 3rem 2rem;
        max-width: 90%;
    }

    .logo-text {
        font-size: 3rem;
    }

    .arabic-heading {
        font-size: 2.2rem;
    }

    .arabic-brand {
        font-size: 2.6rem;
    }

    .sub-description {
        font-size: 1.15rem;
    }

    .description-text {
        font-size: 1rem;
        padding: 0 0.5rem;
    }

    .login-btn {
        padding: 14px 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 100vh;
    }

    .beige-panel {
        left: 5%;
        width: 60%;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 25% 100%);
    }

    .purple-diagonal {
        height: 50%;
        clip-path: polygon(0 50%, 100% 30%, 100% 100%, 0 100%);
    }

    .content-card {
        padding: 2.5rem 1.8rem;
        border-radius: 20px;
    }

    .logo-text {
        font-size: 2.5rem;
    }

    .arabic-heading {
        font-size: 1.9rem;
    }

    .arabic-brand {
        font-size: 2.2rem;
    }

    .sub-description {
        font-size: 1.1rem;
    }

    .description-text {
        font-size: 0.95rem;
        line-height: 2;
    }

    .login-btn {
        padding: 13px 45px;
        font-size: 1.15rem;
    }

    .scroll-arrow {
        width: 40px;
        height: 40px;
    }

    .blue-accent {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        min-height: 100vh;
    }

    .beige-panel {
        width: 70%;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 30% 100%);
    }

    .purple-diagonal {
        height: 45%;
    }

    .content-card {
        padding: 2rem 1.5rem;
        border-radius: 18px;
        max-width: 95%;
    }

    .logo-container {
        flex-direction: column;
        gap: 0.5rem;
    }

    .logo-text {
        font-size: 2rem;
    }

    .arabic-heading {
        font-size: 1.6rem;
    }

    .arabic-brand {
        font-size: 1.9rem;
    }

    .sub-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .description-text {
        font-size: 0.9rem;
        line-height: 1.9;
        padding: 0;
        text-align: right;
    }

    .login-btn {
        padding: 12px 40px;
        font-size: 1.1rem;
        width: 100%;
        max-width: 280px;
    }

    .scroll-arrow {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 400px) {
    .content-card {
        padding: 1.5rem 1.2rem;
    }

    .logo-text {
        font-size: 1.8rem;
    }

    .arabic-heading {
        font-size: 1.4rem;
    }

    .arabic-brand {
        font-size: 1.7rem;
    }

    .sub-description {
        font-size: 0.95rem;
    }

    .description-text {
        font-size: 0.85rem;
    }

    .login-btn {
        padding: 11px 35px;
        font-size: 1rem;
    }
}