/* Reset & Base Styles */
@font-face {font-family: YekanBakh;src: url("/contents/theme/fonts/YekanBakh-Black.woff") format("woff"),url("/contents/theme/fonts/YekanBakh-Black.woff2") format("woff2");font-style: normal;font-weight: 900;}@font-face {font-family: YekanBakh;src: url("/contents/theme/fonts/YekanBakh-Light.woff") format("woff"),url("/contents/theme/fonts/YekanBakh-Light.woff2") format("woff2");font-style: normal;font-weight: 300;}@font-face {font-family: "Font Awesome 5 Free";src: url("/contents/theme/fonts/fa-solid-900.eot?#iefix") format("embedded-opentype"),url("/contents/theme/fonts/fa-solid-900.woff2") format("woff2"),url("/contents/theme/fonts/fa-solid-900.woff") format("woff"),url("/contents/theme/fonts/fa-solid-900.ttf") format("truetype"),url("/contents/theme/fonts/fa-solid-900.svg#fontawesome") format("svg");font-style: normal;font-weight: 900;font-display: block;}        :root{
        --colorMain: #f29900;            --colorSecondary: #182A47;            --colorHeader: #182A47;                        --menuColor: #f29900;        }       

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'YekanBakh';
}
       
body, #wpdcom *:not(i) {
    direction: rtl;
    background-color: #f8f9fa;
    color: #333;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header & Navbar */
header {
    background-color: #2c3e50;
    color: white;
    padding: 10px 0;
}

.navbar {
    padding: 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
}

.navbar-nav .nav-link {
    color: white !important;
    margin: 0 10px;
}

.auth-buttons {
    display: flex;
    gap: 10px;
}

/* Hero Section */
.hero-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.hero-section h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.btn-primary {
    background-color: #3498db;
    color: white;
}

.btn-secondary {
    background-color: #95a5a6;
    color: white;
}

/* Features Section */
.features-section {
    padding: 60px 0;
    background-color: white;
}

.features-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.feature-box {
    text-align: center;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 10px;
    margin-bottom: 20px;
}

.feature-box i {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 15px;
}

/* Schools Section */
.schools-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.schools-section h2 {
    text-align: center;
    margin-bottom: 20px;
}

.school-card {
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

/* How It Works */
.how-it-works {
    padding: 60px 0;
    background-color: white;
}

.steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.step {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.step i {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 15px;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: white;
    padding: 40px 0 20px;
}

footer h3 {
    margin-bottom: 20px;
}

footer ul {
    list-style: none;
}

footer ul li {
    margin-bottom: 10px;
}

footer ul li a {
    color: white;
    text-decoration: none;
}

.copyright {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #444;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    .steps {
        flex-direction: column;
    }
}
