* {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html {
    direction: rtl;
}

body {
    margin: 0;
    font-family: Tahoma, Arial, sans-serif;
    background: #f6f8fc;
    color: #1f2937;
    line-height: 1.8;
    overflow-x: hidden;
    padding-top: 0;
}
.khadamaticon {
	width:100px;
	height:100px;
	justify-content:center;
	display:flex;
	align-items:center;
	margin:0 auto;
	}
a {
    text-decoration: none;
    color: inherit;
}

button,
input,
textarea {
    font: inherit;
}

input,
textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    margin-top: 8px;
    outline: none;
    background: #fff;
}

textarea {
    min-height: 110px;
    resize: vertical;
}

.hidden {
    display: none !important;
}

.site-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-logo-img {
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
    object-fit: contain;
    display: block;
}

.hero {
    min-height: 80vh;
    padding: 24px 64px;
    background: linear-gradient(135deg, #0f172a, #1e3a8a);
    color: #fff;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 14px 20px;
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.72);
    backdrop-filter: blur(14px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.main-navbar {
    #background: #1d4ed8;
    margin-bottom: 48px;
}

.floating-navbar {
    position: fixed;
    top: 16px;
    right: 16px;
    left: 16px;
    z-index: 9999;
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
    background: rgba(15, 23, 42, 0.78);
}

.floating-navbar.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.logo {
    font-size: 24px;
    font-weight: 700;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 18px;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    align-items: center;
}

.nav-links a,
.admin-open-btn {
    position: relative;
    opacity: 0.95;
    transition: all 0.3s ease;
}

.admin-open-btn {
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
    padding: 6px 0;
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: #f59e0b;
    transition: width 0.3s ease;
}

.nav-links a:hover,
.admin-open-btn:hover {
    color: #fbbf24;
}

.nav-links a:hover::after {
    width: 100%;
}

.hero-content {
    max-width: 920px;
    margin-top: 96px;
    animation: fadeUp 0.9s ease both;
}

.hero-title-row {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-icon-wrap {
    flex: 0 0 auto;
    width: 220px;
    filter: drop-shadow(0 0 22px rgba(56, 189, 248, 0.35));
    animation: floatIcon 5s ease-in-out infinite;
}

.hero-icon {
    width: 100%;
    height: auto;
    display: block;
}

.orbit {
    transform-origin: center;
}

.orbit-1 {
    animation: spin 14s linear infinite;
}

.orbit-2 {
    animation: spinReverse 18s linear infinite;
}

.core {
    transform-origin: center;
    animation: pulse 2.8s ease-in-out infinite;
}

.spark {
    animation: sparkle 3.2s ease-in-out infinite;
}

.hero-heading-group {
    flex: 1 1 320px;
}

.hero-content h1 {
    font-size: 64px;
    margin-bottom: 16px;
    line-height: 1.3;
}

.hero-content p {
    font-size: 18px;
    opacity: 0.92;
    margin-bottom: 28px;
    max-width: 700px;
}

.hero-content .btn {
    display: block;
    width: fit-content;
    margin-top: 4px;
    margin-inline-start: 240px;
    margin-inline-end: auto;
}

.btn {
    display: inline-block;
    background: #f59e0b;
    color: #111827;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 700;
    border: 0;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    box-shadow: 0 10px 24px rgba(245, 158, 11, 0.25);
}

.btn:hover {
    transform: translateY(-3px) scale(1.03);
    background: #fbbf24;
    box-shadow: 0 14px 30px rgba(245, 158, 11, 0.35);
}

.secondary-btn {
    background: #e5e7eb;
    color: #111827;
    box-shadow: none;
}

.section {
    padding: 90px 64px;
}

.section h2 {
    text-align: center;
    margin-bottom: 36px;
    font-size: 32px;
}

.stats,
.cards,
.contact-box {
    display: grid;
    gap: 20px;
}

.stats {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    margin-top: -60px;
    padding: 0 64px;
}

.stat-box,
.card,
.highlight,
.contact-box {
    background: #fff;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(148, 163, 184, 0.15);
}

.stat-box:hover,
.card:hover,
.highlight:hover,
.contact-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.cards {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.about {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    align-items: start;
}

.contact-box {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

footer {
    text-align: center;
    padding: 24px;
    background: #0f172a;
    color: #fff;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

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

@keyframes floatIcon {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(-2deg);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes spinReverse {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.04);
        opacity: 0.92;
    }
}

@keyframes sparkle {
    0%,
    100% {
        opacity: 0.6;
        transform: translateY(0);
    }

    50% {
        opacity: 1;
        transform: translateY(-4px);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.admin-body {
    background: linear-gradient(135deg, #0f172a, #111827);
    min-height: 100vh;
}

.admin-login-wrap {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
}

.wp-card {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

.wp-card h1,
.wp-card h3,
.wp-card h2 {
    margin-top: 0;
}

.wp-brand,
.sidebar-brand {
    font-size: 1.2rem;
    font-weight: 800;
    color: #1d4ed8;
    margin-bottom: 14px;
}

.wp-btn {
    width: 100%;
    margin-top: 18px;
}

.admin-note {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 0;
}

.admin-shell {
    display: grid;
    grid-template-columns: 280px 1fr;
    min-height: 100vh;
}

.admin-sidebar {
    background: linear-gradient(180deg, #0f172a, #1e293b);
    color: #fff;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-nav a {
    padding: 12px 14px;
    border-radius: 12px;
    color: #cbd5e1;
    transition: 0.3s ease;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
    background: rgba(59, 130, 246, 0.18);
    color: #fff;
}

.full {
    width: 100%;
}

.admin-main {
    padding: 24px;
    background: #f3f6fb;
}

.admin-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.admin-topbar h2,
.admin-topbar p {
    margin: 0;
}

.admin-grid {
    display: grid;
    gap: 20px;
}

.editor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}

.editor-grid label {
    display: block;
    font-size: 0.95rem;
}

.admin-editor textarea {
    min-height: 96px;
}

.editor-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.close-btn {
    display: none;
}

@media (max-width: 1024px) {
    .hero {
        min-height: 70vh;
        padding: 24px 32px;
    }

    .hero-content {
        max-width: 840px;
        margin-top: 72px;
    }

    .hero-content h1 {
        font-size: 44px;
    }

    .hero-content p {
        font-size: 16px;
        max-width: 100%;
    }

    .hero-icon-wrap {
        width: 180px;
    }

    .section {
        padding: 72px 32px;
    }

    .section h2 {
        font-size: 28px;
    }

    .stats {
        padding: 0 32px;
        margin-top: -24px;
    }

    .about {
        grid-template-columns: 1fr;
    }

    .admin-shell {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .hero-content .btn {
        margin-inline-start: 200px;
        margin-inline-end: auto;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 24px 16px 40px;
    }

    .main-navbar {
        margin-bottom: 32px;
    }

    .floating-navbar {
        top: 10px;
        right: 10px;
        left: 10px;
        padding: 12px 14px;
    }

    .navbar {
        justify-content: center;
        text-align: center;
    }

    .site-brand {
        justify-content: center;
    }

    .nav-links {
        justify-content: center;
        gap: 12px;
    }

    .hero-content {
        margin-top: 52px;
    }

    .hero-title-row {
        justify-content: center;
        text-align: center;
    }

    .hero-icon-wrap {
        width: min(180px, 55vw);
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .hero-content .btn {
        text-align: center;
        justify-content: center;
    }

    .section {
        padding: 56px 16px;
    }

    .section h2 {
        font-size: 24px;
    }

    .stats {
        margin-top: -20px;
        padding: 0 16px;
    }

    .cards {
        grid-template-columns: 1fr;
    }

    .contact-box {
        grid-template-columns: 1fr;
    }

    .admin-main,
    .admin-sidebar {
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content .btn {
        text-align: center;
        justify-content: center;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .editor-actions {
        flex-direction: column;
    }

    .stat-box,
    .card,
    .highlight,
    .contact-box,
    .wp-card {
        padding: 18px;
    }

    .site-logo-img {
        width: 46px;
        height: 46px;
        flex-basis: 46px;
    }
}

khadamaticon {
}

.styles {
}