@import url("https://fonts.googleapis.com/css2?family=Vazirmatn:wght@400;500;600;700;800;900&display=swap");
@import url("step4.53800251476e.css");
@import url("step5.8072b683ce5a.css");
@import url("step6.fd5d77cd107c.css");
@import url("step7.64aab7497278.css");
@import url("step8.d988082db956.css");
@import url("step9.f2d788d11c03.css");
@import url("step10.9a6860156108.css");
@import url("step12.beb4ac0b129f.css");
@import url("step13.344bf33b3af6.css");
@import url("step14.0470ce6213e9.css");
@import url("step15.c7dc0aaeb784.css");
@import url("step16.20f25f2a03bc.css");
@import url("step17.7628947b8d79.css");
@import url("step18.11c332e556d1.css");
@import url("step19.91713f7f3939.css");
@import url("step20.ba9c6af24387.css");
@import url("step21.11961faa0935.css");
@import url("step27.1aa553c450de.css");

:root {
    --primary: #ff7a00;
    --primary-dark: #e56600;
    --secondary: #0b3d91;
    --secondary-dark: #072c69;
    --background: #f5f7fb;
    --surface: #ffffff;
    --text: #172033;
    --muted: #697386;
    --border: #e6eaf0;
    --shadow: 0 20px 60px rgba(20, 35, 70, 0.12);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    background: var(--background);
    color: var(--text);
    font-family: "Vazirmatn", Tahoma, sans-serif;
    line-height: 1.8;
}
a { color: inherit; text-decoration: none; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.main-header {
    position: sticky; top: 0; z-index: 1000;
    background: rgba(255,255,255,.92);
    border-bottom: 1px solid rgba(230,234,240,.8);
    backdrop-filter: blur(16px);
}
.navbar {
    min-height: 78px; display: flex; align-items: center;
    justify-content: space-between; gap: 30px;
}
.brand {
    display: flex; align-items: center; gap: 10px;
    color: var(--secondary); font-size: 19px;
    font-weight: 900; white-space: nowrap;
}
.brand-icon {
    width: 46px; height: 46px; display: grid; place-items: center;
    background: linear-gradient(135deg,var(--primary),#ffad4c);
    border-radius: 15px; font-size: 25px;
    box-shadow: 0 10px 24px rgba(255,122,0,.25);
}
.nav-links { display: flex; align-items: center; gap: 28px; color: #49536a; font-size: 14px; font-weight: 600; }
.nav-links a { transition: .25s; }
.nav-links a:hover { color: var(--primary); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.login-button,.register-button { padding: 10px 19px; border-radius: 12px; font-size: 14px; font-weight: 700; }
.login-button { border: 1px solid var(--border); }
.register-button { background: var(--secondary); color: white; }

.hero-section {
    overflow: hidden; position: relative; min-height: 650px;
    display: flex; align-items: center;
    background:
      radial-gradient(circle at 15% 10%,rgba(255,122,0,.18),transparent 30%),
      radial-gradient(circle at 80% 80%,rgba(11,61,145,.18),transparent 34%),
      linear-gradient(135deg,#f8fbff,#eef4ff);
}
.hero-content {
    position: relative; z-index: 2; display: grid;
    grid-template-columns: 1.35fr .65fr; align-items: center;
    gap: 70px; padding: 70px 0;
}
.hero-badge {
    display: inline-flex; padding: 8px 15px; margin-bottom: 22px;
    background: rgba(255,122,0,.12); color: var(--primary-dark);
    border: 1px solid rgba(255,122,0,.2); border-radius: 999px;
    font-size: 13px; font-weight: 800;
}
.hero-text h1 { max-width: 720px; margin-bottom: 22px; font-size: clamp(39px,5vw,68px); line-height: 1.3; font-weight: 900; letter-spacing: -2px; }
.hero-text h1 span { display: block; color: var(--primary); }
.hero-text > p { max-width: 660px; color: var(--muted); font-size: 18px; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.primary-button,.secondary-button { padding: 14px 24px; border-radius: 14px; font-weight: 800; transition: .25s; }
.primary-button { background: linear-gradient(135deg,var(--primary),#ff9a32); color: white; box-shadow: 0 14px 30px rgba(255,122,0,.25); }
.secondary-button { background: white; color: var(--secondary); border: 1px solid var(--border); }
.hero-statistics { display: flex; flex-wrap: wrap; gap: 38px; margin-top: 44px; }
.hero-statistics div { display: flex; flex-direction: column; }
.hero-statistics strong { color: var(--secondary); font-size: 27px; font-weight: 900; }
.hero-statistics span { color: var(--muted); font-size: 13px; }

.hero-card {
    padding: 42px 34px; overflow: hidden;
    background: rgba(255,255,255,.78);
    border: 1px solid rgba(255,255,255,.9);
    border-radius: 32px; box-shadow: var(--shadow);
    text-align: center; backdrop-filter: blur(20px);
}
.volleyball-circle {
    width: 120px; height: 120px; display: grid; place-items: center;
    margin: 0 auto 25px; background: linear-gradient(135deg,var(--secondary),#1871d8);
    border-radius: 36px; font-size: 65px;
    box-shadow: 0 20px 42px rgba(11,61,145,.28);
    transform: rotate(-7deg);
}
.hero-card h2 { margin-bottom: 12px; color: var(--secondary); font-size: 27px; }
.hero-card p { margin-bottom: 25px; color: var(--muted); }
.card-button { display: block; padding: 13px 20px; background: var(--secondary); color: white; border-radius: 13px; font-weight: 800; transition: .25s; }

.services-section { padding: 100px 0; background: white; }
.section-heading { max-width: 720px; margin: 0 auto 55px; text-align: center; }
.section-heading span { color: var(--primary); font-weight: 900; }
.section-heading h2 { margin: 8px 0 14px; font-size: clamp(29px,4vw,43px); line-height: 1.4; }
.section-heading p { color: var(--muted); }
.services-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.service-card { padding: 30px 25px; background: var(--surface); border: 1px solid var(--border); border-radius: 23px; transition: .3s; }
.service-card:hover { border-color: rgba(255,122,0,.35); box-shadow: var(--shadow); transform: translateY(-8px); }
.service-icon { width: 62px; height: 62px; display: grid; place-items: center; margin-bottom: 22px; background: rgba(255,122,0,.1); border-radius: 18px; font-size: 29px; }
.service-card h3 { margin-bottom: 10px; color: var(--secondary); font-size: 19px; }
.service-card p { color: var(--muted); font-size: 14px; }

.cta-section { padding: 40px 0 100px; background: white; }
.cta-box {
    display: flex; align-items: center; justify-content: space-between; gap: 35px;
    padding: 48px; background: linear-gradient(135deg,var(--secondary-dark),var(--secondary));
    color: white; border-radius: 30px;
    box-shadow: 0 24px 55px rgba(11,61,145,.25);
}
.cta-box span { color: #ffbd75; font-weight: 800; }
.cta-box h2 { margin: 6px 0; font-size: 31px; }
.cta-box p { color: rgba(255,255,255,.74); }
.cta-button { flex-shrink: 0; padding: 14px 25px; background: var(--primary); color: white; border-radius: 14px; font-weight: 900; transition: .25s; }

.main-footer { background: #071a39; color: white; }
.footer-content { display: grid; grid-template-columns: repeat(2,1fr); gap: 80px; padding: 65px 0 55px; }
.footer-content h3 { margin-bottom: 13px; }
.footer-content p { color: rgba(255,255,255,.65); font-size: 14px; }
.footer-bottom { padding: 18px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.55); text-align: center; font-size: 13px; }

.primary-button:hover,.secondary-button:hover,.card-button:hover,.cta-button:hover { transform: translateY(-3px); }

@media (max-width: 1000px) {
    .nav-links { display: none; }
    .hero-content { grid-template-columns: 1fr; }
    .hero-card { max-width: 560px; }
    .services-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 650px) {
    .container { width: min(100% - 28px,1180px); }
    .navbar { min-height: 70px; }
    .brand span:last-child,.login-button { display: none; }
    .hero-section { min-height: auto; }
    .hero-content { gap: 42px; padding: 55px 0 60px; }
    .hero-text h1 { font-size: 39px; letter-spacing: -1px; }
    .hero-text > p { font-size: 16px; }
    .hero-buttons { flex-direction: column; }
    .primary-button,.secondary-button { text-align: center; }
    .hero-statistics { justify-content: space-between; gap: 12px; }
    .services-section { padding: 75px 0; }
    .services-grid { grid-template-columns: 1fr; }
    .cta-section { padding-bottom: 75px; }
    .cta-box { align-items: stretch; flex-direction: column; padding: 32px 24px; }
    .cta-button { text-align: center; }
    .footer-content { grid-template-columns: 1fr; gap: 35px; }
}


