/* ============================= */
/* GLOBAL STYLES */
/* ============================= */

html {
    font-size: 14px;
    scroll-behavior: smooth;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    font-family: 'Cairo', 'Tajawal', sans-serif;
    margin: 0;
    padding-top: 80px;
    background-color: #f8f9fa;
}

/* ============================= */
/* NAVBAR */
/* ============================= */

.brand-logo {
    font-size: 1.4rem;
    color: #0d6efd !important;
}

.navbar .nav-link {
    font-weight: 500;
    margin-right: 10px;
    transition: 0.3s;
}

    .navbar .nav-link:hover {
        color: #0d6efd !important;
    }

/* ============================= */
/* HERO SECTION */
/* ============================= */

.hero-section {
    height: 90vh;
    background: linear-gradient(135deg, #0d6efd, #6610f2);
    color: white;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.2rem;
    max-width: 600px;
    margin: auto;
    opacity: 0.9;
}

/* ============================= */
/* SERVICES */
/* ============================= */

.section-title {
    font-weight: 700;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

    .service-card i {
        font-size: 40px;
        color: #0d6efd;
        margin-bottom: 15px;
    }

    .service-card:hover {
        transform: translateY(-10px);
    }

/* ============================= */
/* CTA SECTION */
/* ============================= */

.cta-section {
    background: linear-gradient(135deg, #6610f2, #0d6efd);
    color: white;
    padding: 60px 20px;
}

/* ============================= */
/* FOOTER */
/* ============================= */

.footer-modern {
    background: #111;
    color: white;
    padding: 30px 0;
}

    .footer-modern .social-icons i {
        font-size: 20px;
        margin: 0 10px;
        cursor: pointer;
        transition: 0.3s;
    }

        .footer-modern .social-icons i:hover {
            color: #0d6efd;
        }

/* ============================= */
/* BUTTON FOCUS */
/* ============================= */

.btn:focus,
.form-control:focus {
    box-shadow: none !important;
}
