@import url("css2.css");

/* Root variables */
:root {
    --primary: #7367f0;
    --primary-dark: #5f50c6;
    --secondary: #82868b;
    --bg-light: #f8f8f8;
    --gradient: linear-gradient(90deg, #7367f0 0%, #9f8cff 100%);
}

body {
    font-family: 'Tajawal', Tahoma, Arial, sans-serif;
    background: var(--bg-light);
    color: #222;
}

/* Navbar styles */
.navbar {
    background: #fff !important;
    box-shadow: 0 2px 12px rgba(115,103,240,0.07);
    transition: background 0.3s, box-shadow 0.3s;
}
.navbar.scrolled {
    background: #fff;
    box-shadow: 0 2px 12px rgba(115,103,240,0.07);
}
.navbar-brand {
    font-weight: bold;
    color: var(--primary);
    font-size: 1.6rem;
    letter-spacing: 1px;
}
.navbar-brand img {
    height: 38px;
    margin-left: 10px;
}
.nav-link {
    color: #5f5f6e !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.2s;
}
.nav-link.active, .nav-link:hover {
    color: var(--primary) !important;
}
.navbar-cta {
    background: var(--gradient);
    color: #fff !important;
    border-radius: 24px;
    padding: 0.5rem 1.5rem;
    font-weight: bold;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(115,103,240,0.08);
    text-decoration: none;
    margin-right: 1rem;
}
.navbar-cta:hover {
    background: linear-gradient(90deg, #9f8cff 0%, #7367f0 100%);
}

/* Hero section styles */
.hero-section {
    background: linear-gradient(135deg, #fff6ec 0%, #f9f6ff 100%) !important;
    color: #222;
    padding: 120px 0 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero-section .hero-bg {
    display: block;
    position: absolute;
    left: 0; right: 0; top: 0; bottom: 0;
    z-index: 0;
    pointer-events: none;
}
.hero-section .hero-bg svg {
    position: absolute;
    opacity: 0.13;
}
.hero-section .hero-bg .circle1 {
    left: -120px; top: -120px;
}
.hero-section .hero-bg .circle2 {
    right: -60px; bottom: -60px;
}
.hero-content {
    position: relative;
    z-index: 1;
}
.hero-section h1, .hero-title {
    font-size: 2.7rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #23272e;
}
.hero-section p, .hero-desc {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #6f6b7d;
}
.hero-section .btn {
    font-size: 1.1rem;
    padding: 0.7rem 2.5rem;
    border-radius: 30px;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(115,103,240,0.12);
}

/* Stats bar styles */
.stats-bar {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(115,103,240,0.07);
    padding: 1.5rem 1rem;
    margin-top: -40px;
    position: relative;
    z-index: 2;
}
.stat-item {
    text-align: center;
}
.stat-item .stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary);
}
.stat-item .stat-label {
    color: var(--secondary);
    font-size: 1rem;
}

/* Section title */
.section-title {
    font-weight: bold;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 2rem;
    text-align: center;
}

/* Card styles */
.feature-card, .app-card, .review-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(115,103,240,0.07);
    padding: 2rem 1.2rem;
    margin-bottom: 2rem;
    transition: box-shadow 0.2s, transform 0.2s;
}
.feature-card:hover, .app-card:hover, .review-card:hover {
    box-shadow: 0 6px 32px rgba(115,103,240,0.13);
    transform: translateY(-4px) scale(1.02);
}
.icon-circle {
    background: var(--bg-light);
    color: var(--primary);
    border-radius: 50%;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 16px auto;
    box-shadow: 0 2px 8px rgba(115,103,240,0.08);
}
.app-card img {
    max-width: 60px;
    margin-bottom: 1rem;
}
.review-card .review-user {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}
.review-card .review-user img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}
.review-card .review-stars {
    color: #ffc107;
    margin-bottom: 0.5rem;
}

/* FAQ section styles */
.faq-section .accordion-button {
    font-weight: bold;
}

/* Footer styles */
.footer {
    background: #fff;
    border-top: 1px solid #eee;
    padding: 2rem 0 1rem 0;
}
.footer .footer-logo-title {
    height: 38px;
    margin-left: 10px;
}
.footer .footer-links a {
    color: #82868b;
    margin-left: 1.5rem;
    text-decoration: none;
}
.footer .footer-links a:hover {
    color: var(--primary);
}
.footer .footer-social a {
    color: var(--primary);
    margin-left: 0.7rem;
    font-size: 1.2rem;
}

/* Responsive styles */
@media (max-width: 991px) {
    .hero-section { padding: 80px 0 40px 0; }
    .section-title { font-size: 1.5rem; }
}
@media (max-width: 767px) {
    .navbar .container { flex-direction: column; gap: 0.7rem; }
    .hero-section { padding: 50px 0 20px 0; }
    .stats-bar { flex-direction: column !important; gap: 1.5rem !important; }
}

/* Hero title and description shadow */
.hero-title {
    color: #23272e !important;
    font-size: 2.7rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.hero-desc {
    color: #6f6b7d !important;
    font-size: 1.2rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.03);
} 