.home-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 1rem;
    direction: rtl;
    text-align: right;
    box-sizing: border-box;
}

/* Hero Section */
.hero-section {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.hero-content {
    space-y: 1.5rem;
}

.logo-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
    animation: fadeInZoomIn 0.5s ease-out;
}

.hero-logo {
    height: 128px;
    width: 128px;
    object-fit: contain;
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #0a2342;
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 1.875rem;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #00bcd4;
    font-weight: 600;
    margin: 0;
}

/* Card Styles */
.card-container {
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 6px 16px rgba(10, 35, 66, 0.12);
    transition: all 0.3s ease;
}

.card-container:hover {
    box-shadow: 0 12px 32px rgba(10, 35, 66, 0.15);
    transform: translateY(-4px);
}

/* Welcome Card */
.welcome-card {
    border-top: 4px solid #00bcd4;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #ffffff 0%, #faf6f0 100%);
}

.card-content {
    padding: 2rem;
}

.welcome-text {
    font-size: 1.125rem;
    color: #0a2342;
    line-height: 1.8;
    margin: 0 0 1.5rem 0;
}

.welcome-closing {
    font-size: 1.25rem;
    font-weight: 700;
    color: #00bcd4;
    text-align: center;
    margin-top: 1.5rem;
}

/* CTA Grid */
.cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.cta-card {
    padding: 1.5rem;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-top: 4px solid;
}

.card-register {
    border-top-color: #00bcd4;
}

.card-login {
    border-top-color: #1565c0;
}

.card-apply {
    border-top-color: #daa520;
}

.card-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.register-icon {
    background-color: #00bcd4;
}

.login-icon {
    background-color: #1565c0;
}

.apply-icon {
    background-color: #daa520;
}

.cta-card:hover .card-icon-wrapper {
    transform: scale(1.15);
}

.card-icon {
    font-size: 1.75rem;
    color: white;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0a2342;
    margin: 0;
    text-align: center;
}

.card-description {
    font-size: 0.95rem;
    color: #0a2342;
    text-align: center;
    margin: 0;
    line-height: 1.5;
}

.cta-button {
    width: 100%;
    padding: 0.875rem 1.5rem;
    border: none;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
}

.button-teal {
    background-color: #00bcd4;
}

.button-teal:hover {
    background-color: #0097a7;
    box-shadow: 0 6px 16px rgba(0, 188, 212, 0.3);
}

.button-blue {
    background-color: #1565c0;
}

.button-blue:hover {
    background-color: #0d47a1;
    box-shadow: 0 6px 16px rgba(21, 101, 192, 0.3);
}

.button-gold {
    background-color: #daa520;
}

.button-gold:hover {
    background-color: #c9950a;
    box-shadow: 0 6px 16px rgba(218, 165, 32, 0.3);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #e0e0e0;
}

.feature-card {
    padding: 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, transparent 0%, rgba(0, 188, 212, 0.05) 100%);
    border: 1px solid rgba(0, 188, 212, 0.2);
}

.feature-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0a2342;
    margin: 0 0 0.5rem 0;
}

.feature-description {
    font-size: 0.95rem;
    color: #0a2342;
    margin: 0;
    line-height: 1.6;
}

/* Animations */
@keyframes fadeInZoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .home-container {
        padding: 1rem;
    }

    .welcome-card {
        margin-bottom: 2rem;
    }

    .card-content {
        padding: 1.25rem;
    }

    .welcome-text {
        font-size: 1rem;
    }

    .cta-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}
