/* ========================
   Global Styles
======================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    background-color: #0d1523;
    color: #f4f6fa;
    scroll-behavior: smooth;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5 {
    font-weight: 700;
    letter-spacing: 0.5px;
}

p {
    font-size: 1rem;
    color: #c7cdd6;
}

/* ========================
   Navbar
======================== */
.navbar {
    background: rgba(13, 21, 35, 0.95);
    backdrop-filter: blur(8px);
    padding: 12px 0;
    transition: all 0.4s ease-in-out;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    color: #fff !important;
}

.navbar .name-hero12 {
    color: #f58220;
}

.navbar .name-hero2 {
    color: #f4f6fa;
}

.navbar-nav .nav-link {
    color: #f4f6fa;
    font-weight: 500;
    margin-left: 18px;
    position: relative;
    transition: color 0.3s;
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, #f58220, #ff944d);
    transition: width 0.3s;
}

.navbar-nav .nav-link:hover {
    color: #f58220;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.navbar-toggler-icon {
    background-image: none;
    width: 24px;
    height: 2px;
    background-color: white;
    position: relative;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: "";
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: white;
    left: 0;
}

.navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler-icon::after {
    top: 8px;
}

/* ------------------------------ */
/* 🔹 Hero Section */
/* ------------------------------ */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90vh;
    padding: 60px 20px;
    background: linear-gradient(135deg, #0d1523 0%, #101a2c 100%);
}

.hero-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    gap: 40px;
}

.hero-left {
    flex: 1 1 500px;
}

.hero-left h1 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #f4f6fa;
}

.hero-left p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #c7cdd6;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.hero-ctas .btn {
    padding: 12px 28px;
    border-radius: 35px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.35s ease;
}

.hero-cta {
    background: linear-gradient(90deg, #f58220, #ff944d);
    color: #fff;
    border: none;
}

.hero-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(245, 130, 32, 0.4);
}

.hero-secondary {
    background: transparent;
    border: 2px solid #f58220;
    color: #f4f6fa;
}

.hero-secondary:hover {
    background: linear-gradient(90deg, #f58220, #ff944d);
    color: #fff;
}

.hero-trust {
    display: flex;
    gap: 25px;
    font-weight: 500;
    color: #c7cdd6;
    list-style: none;
}

.hero-trust li {
    position: relative;
    padding-left: 20px;
}

.hero-trust li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #f58220;
    font-weight: bold;
}

.hero-right {
    flex: 1 1 450px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-right img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.5s ease;
}

.hero-right img:hover {
    transform: scale(1.03);
}

/* ------------------------------ */
/* 🔹 Responsive Hero */
/* ------------------------------ */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-left {
        margin-top: 30px;
    }

    .hero-trust {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
}
/* ========================
   About Section
======================== */
#about {
    background: #111a29;
    color: #f4f6fa;
    padding: 80px 20px;
    text-align: center;
}

#about h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #f58220;
    position: relative;
}

#about h2::after {
    content: "";
    display: block;
    width: 70px;
    height: 3px;
    background: #f58220;
    margin: 10px auto;
    border-radius: 2px;
}

#about p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* ========================
   Services Section
======================== */
#services {
    background: linear-gradient(160deg, #0b1320, #101a2c 70%);
    padding: 90px 20px;
    position: relative;
    overflow: hidden;
}

#services::before,
#services::after {
    content: "";
    position: absolute;
    filter: blur(80px);
    z-index: 0;
}

#services::before {
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(245, 130, 32, 0.15), transparent 70%);
}

#services::after {
    bottom: -120px;
    right: -120px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 70%);
}

#services h2 {
    font-size: 2.3rem;
    margin-bottom: 50px;
    color: #f58220;
    text-align: center;
    position: relative;
    z-index: 1;
    animation: fadeDown 1s ease forwards;
    letter-spacing: 1px;
}

/* Cards */
#services .card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px 24px;
    color: #f4f6fa;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    animation: fadeUp 1.2s ease forwards;
}

#services .card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(245, 130, 32, 0.25), transparent);
    transform: skewX(-25deg);
}

#services .card:hover::before {
    left: 125%;
    transition: all 0.9s ease;
}

#services .card:hover {
    transform: translateY(-12px) scale(1.04);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(245, 130, 32, 0.5);
}

#services .card h5 {
    font-size: 1.4rem;
    margin-bottom: 14px;
    color: #ffffff;
    font-weight: 600;
    transition: color 0.3s;
}

#services .card:hover h5 {
    color: #f58220;
}

#services .card p {
    color: #cdd3dd;
    font-size: 1rem;
    line-height: 1.6;
}

/* ========================
   Portfolio Section
======================== */
#portfolio {
    background: linear-gradient(160deg, #0b1320, #101a2c 70%);
    color: #fff;
    padding: 90px 20px;
    position: relative;
    overflow: hidden;
}

#portfolio::before,
#portfolio::after {
    content: "";
    position: absolute;
    filter: blur(80px);
    z-index: 0;
}

#portfolio::before {
    top: -120px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(245, 130, 32, 0.15), transparent 70%);
}

#portfolio::after {
    bottom: -120px;
    right: -120px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 70%);
}

#portfolio h2 {
    margin-bottom: 50px;
    color: #f58220;
    text-align: center;
    font-size: 2.3rem;
    letter-spacing: 1px;
    font-weight: 700;
    position: relative;
    z-index: 1;
    animation: fadeDown 1s ease forwards;
}

#portfolio .btn {
    background: transparent;
    border: 1px solid #f58220;
    color: #f4f6fa;
    transition: all 0.4s ease;
    padding: 10px 25px;
    border-radius: 30px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

#portfolio .btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #f58220, #ff944d);
    transition: left 0.4s ease;
    z-index: -1;
}

#portfolio .btn:hover::before {
    left: 0;
}

#portfolio .btn:hover {
    color: #fff;
    border: 1px solid transparent;
    transform: scale(1.08);
}

#portfolio .portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    transition: transform 0.4s, box-shadow 0.4s;
    z-index: 1;
}

#portfolio .portfolio-item img {
    border-radius: 18px;
    transition: transform 0.5s ease, filter 0.5s ease;
}

#portfolio .portfolio-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.55);
}

#portfolio .portfolio-item:hover img {
    transform: scale(1.08);
    filter: brightness(1.15);
}

#portfolio .portfolio-item::after {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(245, 130, 32, 0.9);
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    opacity: 0;
    transition: all 0.5s ease;
}

#portfolio .portfolio-item:hover::after {
    bottom: 20px;
    opacity: 1;
}

/* ========================
   Footer
======================== */
footer {
    background-color: #0d1523;
    color: #ffffff;
    padding: 40px 20px;
    text-align: center;
}

footer p {
    margin-bottom: 20px;
    font-size: 16px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #1c2233;
    color: #ffffff;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    background-color: #f58220;
    color: #fff;
    transform: translateY(-5px);
}

.social-icons i {
    font-size: 20px;
}

footer .container {
    max-width: 1000px;
    margin: 0 auto;
}

/* ========================
   Animations
======================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomSlideFade {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(30px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}


/* ========================
   Testimonials Section
======================== */
#testimonials {
    background: linear-gradient(145deg, #0b1320, #101a2c);
    padding: 90px 20px;
    position: relative;
    overflow: hidden;
}

#testimonials::before,
#testimonials::after {
    content: "";
    position: absolute;
    filter: blur(100px);
    z-index: 0;
}

#testimonials::before {
    top: -80px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(245, 130, 32, 0.15), transparent 70%);
}

#testimonials::after {
    bottom: -120px;
    right: -120px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.07), transparent 70%);
}

#testimonials h2 {
    font-size: 2.3rem;
    color: #f58220;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
    letter-spacing: 1px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 30px 20px;
    text-align: center;
    color: #f4f6fa;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.03);
    border-color: rgba(245, 130, 32, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.45);
}

.testimonial-card .quote {
    font-style: italic;
    color: #cdd3dd;
    margin-bottom: 20px;
    line-height: 1.7;
}

.client-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}



.client-name {
    font-weight: 600;
    color: #fff;
    margin: 5px 0 2px;
}

.client-role {
    color: #c7cdd6;
    font-size: 0.9rem;
}

.testimonial-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: 50px;
    padding: 12px 28px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(18, 140, 126, 0.3);
    transition: all 0.3s ease;
}

.testimonial-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(18, 140, 126, 0.4);
    color: #fff;
}

.testimonial-btn i {
    font-size: 1.2rem;
}

.testimonial-btn-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    /* يمكنك تعديل الهامش حسب الحاجة */
}

/* ========================
   Preloader
======================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0d1523;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

#preloader span {
    width: 50px;
    height: 50px;
    border: 5px solid #f58220;
    border-top: 5px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ========================
   Cursor
======================== */
#cursor {
    width: 20px;
    height: 20px;
    border: 2px solid #f58220;
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: none;
    transition: transform 0.15s ease, background 0.3s ease;
    z-index: 9999;
}

button:hover~#cursor,
a:hover~#cursor {
    transform: translate(-50%, -50%) scale(2);
    background: rgba(245, 130, 32, 0.2);
}

/* زر الهامبرجر */
.navbar-toggler {
    border: none;
}









/* Modal */
.order-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 21, 35, 0.95);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.order-content {
    background: #111a29;
    padding: 40px 30px;
    border-radius: 20px;
    width: 90%;
    max-width: 450px;
    color: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    position: relative;
    animation: zoomSlideFade 0.4s ease;
}

.order-content h3 {
    color: #f58220;
    margin-bottom: 25px;
    text-align: center;
}

.order-content label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.9rem;
    color: #c7cdd6;
}

.order-content input,
.order-content textarea {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #333;
    background: #0d1523;
    color: #fff;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.confirm-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(90deg, #f58220, #ff944d);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.confirm-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(245, 130, 32, 0.4);
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.8rem;
    cursor: pointer;
    color: #f58220;
    transition: color 0.3s;
}

.close-btn:hover {
    color: #ff944d;
}

/* Success Message */
.order-success {
    display: none;
    position: fixed;
    z-index: 3000;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(18, 26, 40, 0.95);
    color: #f4f6fa;
    padding: 20px 30px;
    border-radius: 12px;
    border: 1px solid #f58220;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    text-align: center;
    font-size: 0.95rem;
    animation: fadeInUp 0.5s ease;
}