/* إعدادات عامة */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

body {
    overflow-x: hidden;
}

.progress {
    width: 0;
    /* ابدأ من صفر */
    transition: width 2s cubic-bezier(0.17, 0.67, 0.83, 0.67);
}

/* ===== MAIN WRAPPER (Hero & Header) ===== */
.main-wrapper {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: url('./img/Hero-Section2.png') no-repeat center center/cover;
    padding: 0 8%;
}

.main-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

header {
    position: relative;
    z-index: 1000;

}

.hero-section {
    position: relative;
    z-index: 1;
}


/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    gap: 40px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    margin-left: 25px;
    font-family: 'Poppins', sans-serif;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #fbb034;
}

.nav-links a {
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #fbb034;
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.contact-btn {
    background: #fbb034;
    color: #333;
    padding: 12px 28px;
    width: 150px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    border-radius: 7px;
}

.learn-more-btn {
    border-radius: 7px;
}


/* Hero Content */
.hero-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 80px;
}

.hero-left h1 {
    color: white;
    font-size: 5.5rem;
    line-height: 0.9;
    font-weight: 900;
    font-family: 'Oswald', sans-serif;

}

.hero-left .highlight {
    color: #fbb034;
}

.learn-more-btn {
    margin-top: 40px;
    background: #fbb034;
    color: #000;
    padding: 18px 35px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
}

.glass-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 40px;
    max-width: 400px;
    color: white;
}

.info-tag {
    color: #fbb034;
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
}

.glass-box h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-family: 'Oswald', sans-serif;
}

.glass-box .line {
    width: 60px;
    height: 3px;
    background: #fbb034;
    margin-bottom: 20px;
}

.glass-box p {
    line-height: 1.6;
    font-size: 1.1rem;
    opacity: 0.9;
    font-family: 'Poppins', sans-serif;
}

.main-img {
    transition: transform 0.8s ease;
}

.about-image-container:hover .main-img {
    transform: scale(1.05);
    /* زووم هادي جداً عند الوقوف بالماوس */
}



/* ===== ABOUT SECTION (Professional Edition) ===== */
/* About Modern Section */
.about-modern {
    padding: 100px 8%;
    background: #ffffff;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* ستايل الصور والـ Shadow التقيل اللي عجبك */
.image-stack {
    position: relative;
    padding-right: 40px;
}

.image-stack .main-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    /* الظل البرتقالي المميز */
    box-shadow: 30px 30px 0px #fbb034;
}

.experience-badge {
    position: absolute;
    top: -20px;
    right: 0;
    background: #0f172a;
    /* اللون الداكن بتاعك */
    color: white;
    padding: 25px 35px;
    border-radius: 4px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.experience-badge .number {
    display: block;
    font-size: 2.5rem;
    font-family: 'Oswald';
    color: #fbb034;
    font-weight: 700;
}

.experience-badge .text {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ستايل النصوص */
.text-side .sub-title {
    color: #fbb034;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.text-side h2 {
    font-family: 'Oswald';
    font-size: 3.5rem;
    color: #0f172a;
    line-height: 1.1;
    margin: 20px 0;
}

.text-side .accent {
    color: #fbb034;
}

.lead-text {
    font-size: 1.1rem;
    color: #334155;
    margin-bottom: 40px;
    border-left: 4px solid #fbb034;
    padding-left: 20px;
}

/* الفيتشرز (01 و 02) */
.feature-grid {
    display: grid;
    gap: 25px;
    margin-bottom: 40px;
}

.feature-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.icon-box {
    font-family: 'Oswald';
    font-size: 1.5rem;
    color: #fbb034;
    font-weight: 700;
    opacity: 0.5;
}

.info h5 {
    font-size: 1.25rem;
    color: #0f172a;
    margin-bottom: 5px;
}

.info p {
color: #334155;
    font-size: 0.95rem;
}

.about-btn-modern {
    margin-top: 40px;
    padding: 18px 40px;
    background: #fbb034;
    /* اللون البرتقالي بتاعك */
    color: #0f172a;
    /* اللون الكحلي الغامق للخط */
    border: none;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    position: relative;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    gap: 15px;
    border-radius: 4px;
}

.about-btn-modern:hover {
    background: #0f172a;
    color: #fbb034;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(251, 176, 52, 0.3);
}

/* تأثير السهم عند الـ Hover */
.about-btn-modern:hover gap {
    gap: 25px;
}



/* Helper Styles */
.container-fluid {
    padding: 100px 8%;
}

.main-heading {
    font-family: 'Oswald';
    font-size: 3.5rem;
    color: #0f172a;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.main-heading .accent {
    color: #fbb034;
}

/* 1. Services Modern Glass */
.services-modern {
    background: #f8fafc;
}

.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30px, 1fr));
    gap: 30px;
}

.service-glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 50px 40px;
    border: 1px solid rgba(15, 23, 42, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-glass-card:hover {
    background: #0f172a;
    transform: translateY(-10px);
}

.service-glass-card:hover h3,
.service-glass-card:hover p {
    color: white;
}

.card-number {
    font-family: 'Oswald';
    font-size: 4rem;
    color: #fbb034;
    opacity: 0.1;
    position: absolute;
    top: 10px;
    right: 20px;
}

.service-glass-card h3 {
    font-family: 'Oswald';
    font-size: 1.5rem;
    margin-bottom: 15px;
    position: relative;
}

/* 2. Stats Modern Bar */
.stats-modern {
    background: #0f172a;
    margin: 0 0%;
    padding: 60px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-radius: 4px;
    transform: translateY(-50%);
    z-index: 10;
    position: relative;
}

.stat-box {
    text-align: center;
    color: white;
}

.stat-box h4 {
    font-family: 'Oswald';
    font-size: 3rem;
    color: #fbb034;
    min-width: 120px;
    display: inline-block;
}

.stat-box p {
    font-family: 'Poppins';
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    opacity: 0.7;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
}

/* 3. Gallery Clean Layout */
.gallery-layout {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 20px;
    height: 500px;
}

.gallery-img-box {
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.gallery-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    filter: grayscale(100%);
    transition: all 0.6s ease;
}

.gallery-img-box:hover img {
    transform: scale(1.1);
    filter: grayscale(0%);
}



.gallery-btn-wrapper {
    text-align: center;
    margin-top: 50px;
}

.view-gallery-btn {
    background: #fbb034;
    color: #0f172a;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: bold;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    border-radius: 4px;
}

.view-gallery-btn:hover {
    background: #0f172a;
    color: #fbb034;
    transform: translateY(-5px);
}

/* Hero صغير */
.gallery-hero {
    height: 40vh;
    background: #0f172a;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery-hero h1 {
    color: white;
    font-family: 'Oswald';
    font-size: 3rem;
}

.gallery-hero .accent {
    color: #fbb034;
}

/* زرار Load More */
.load-more-btn {
    background: #fbb034;
    color: #0f172a;
    padding: 15px 35px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.load-more-btn:hover {
    background: #0f172a;
    color: #fbb034;
}

/* تحسين كروت الجاليري */
.gallery-img-box {
    position: relative;
    cursor: pointer;
}



.gallery-img-box:hover::after {
    opacity: 1;
}

.gallery-img-box::after {
    pointer-events: none;
}

.gallery-img-box a {
    display: block;
    width: 100%;
    height: 100%;
}

/* ===== Animation دخول الجاليري ===== */
.gallery-img-box {
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-img-box.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.gallery-img-box:hover::after {
    opacity: 1;
}



.custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid #fbb034;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
    z-index: 99999;
}
















.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;

    position: fixed;
    /* 👈 أهم سطر */
    top: 30px;
    right: 20px;

    z-index: 100000;
    /* 👈 أعلى من overlay */
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    transition: 0.3s;
}

/* Animation X */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
    z-index: 990;
}

.overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* ===== CLIENTS SECTION ===== */
.clients-section {
    padding: 100px 8%;
    background: #f8fafc;
    text-align: center;
}

.clients-section .sub-title {
    color: #fbb034;
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 0.8rem;
}

.clients-heading {
    font-family: 'Oswald';
    font-size: 3rem;
    margin: 20px 0 50px;
    color: #0f172a;
}

.clients-heading span {
    color: #fbb034;
}

.clients-logos {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 40px;
    align-items: center;
}



.clients-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.clients-heading::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: #fbb034;
    margin: 15px auto 0;
}

.clients-logos img {
    height: 120px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: 0.3s;
}



@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.clients-desc {
    color: #334155;
    max-width: 600px;
    margin: 0 auto 40px;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 120px 8%;
    background: #0f172a;
    /* نفس لون الـ stats */
    text-align: center;
    color: white;
}

.testimonials .main-heading {
    color: white;
    margin-bottom: 60px;
}

.testimonial-card {
    max-width: 800px;
    margin: auto;
    padding: 50px 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    position: relative;
    transition: 0.4s;
}

/* Hover effect */
.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: #fbb034;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* quote icon */
.testimonial-card::before {
    content: "“";
    font-size: 5rem;
    color: #fbb034;
    position: absolute;
    top: -20px;
    left: 20px;
    opacity: 0.3;
    font-family: serif;
}

.testimonial-card p {
    font-size: 1.2rem;
    line-height: 1.8;
   color: #ffffff;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-card h4 {
    font-family: 'Oswald';
    color: #fbb034;
    letter-spacing: 1px;
    font-size: 1rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.testimonial-card {
    max-width: 100%;
    /* بدل 800px */
    text-align: left;
}

.testimonials-slider {
    position: relative;
    max-width: 700px;
    margin: auto;
}

.testimonial-card {
    display: none;
    text-align: center;
}

.testimonial-card.active {
    display: block;
}

.contact-floating {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
}

/* الزرار الأساسي */
.main-contact-btn {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #1ebe5d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
}

.main-contact-btn:hover {
    transform: scale(1.1);
}

/* الخيارات */
.contact-options {
    position: absolute;
    bottom: 70px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: 0.3s;
}

.contact-floating.active .contact-options {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* الأزرار الصغيرة */
.contact-options a {
    width: 50px;
    height: 50px;
    background: #0f172a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.3rem;
    transition: 0.3s;
}

.contact-options a:hover {
    background: #fbb034;
    transform: scale(1.1);
}

/* Floating Contact */
.contact-floating {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
}

/* main button */
.main-contact-btn {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #1ebe5d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
}

.main-contact-btn:hover {
    transform: scale(1.1);
}

/* options hidden */
.contact-options {
    position: absolute;
    bottom: 70px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;

    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: 0.3s;
}

/* show */
.contact-floating.active .contact-options {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* buttons */
.contact-options a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #0f172a;
    color: white;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: 0.3s;
}

/* icons */
.contact-options svg {
    width: 22px;
    height: 22px;
}

/* hover colors */
.contact-options a.wa:hover {
    background: #25D366;
}

.contact-options a.phone:hover {
    background: #fbb034;
}

.contact-options a.mail:hover {
    background: #3b82f6;
}

.contact-options a:hover {
    transform: scale(1.1);
}

.main-contact-btn {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25D366, #1ebe5d);
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

.main-contact-btn svg {
    fill: white;
}

hr {
    border: none;
    /* نشيل الشكل الافتراضي */
    height: 1px;
    /* سمك الخط */
    background: #fbb034;
    /* اللون الأصفر بتاعك */

}


.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
}

.modal-content {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    width: 400px;
}

/* الخلفية */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

/* البوكس */
.modal-content {
    width: 90%;
    max-width: 500px;
    padding: 30px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    color: #fff;
    animation: slideUp 0.4s ease;
}

/* عنوان */
.modal-content h2 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

/* صف الاتنين input */
.modal-content .row {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

/* inputs */
.modal-content input,
.modal-content textarea {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: none;
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* textarea */
.modal-content textarea {
    height: 120px;
    resize: none;
    margin-bottom: 15px;
}

/* placeholder */
.modal-content input::placeholder,
.modal-content textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

/* زرار */
.modal-content button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 10px;
    background: #f9b233;
    /* غيره للون موقعك */
    color: #000;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.modal-content button:hover {
    transform: scale(1.05);
}

/* زرار القفل */
#closeModal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 22px;
    cursor: pointer;
}

/* success */
#successMsg {
    text-align: center;
    font-size: 1.2rem;
    color: #4caf50;
}

/* animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}





/* ================= GLOBAL ================= */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

/* ================= NAVBAR ================= */









.contact-btn {
    background: #fbb034;
    color: #0f172a;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
}

/* ================= BACK BAR ================= */
.top-back-bar {
    margin-top: 0px;
    width: 100%;
    background: #0f172a;
    padding: 15px 8%;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.top-back-bar a {
    color: #fbb034;
    text-decoration: none;
    font-size: 0.95rem;
    display: inline-block;
    transition: 0.3s;
}

.top-back-bar a:hover {
    color: #fff;
    transform: translateX(-6px);
}

/* ================= HERO ================= */
.project-hero {
    height: 65vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,23,42,0.95), rgba(0,0,0,0.2));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 80px 8%;
    color: white;
}

.hero-overlay h1 {
    font-size: 3rem;
    font-family: 'Oswald';
}

.hero-overlay h3 {
    color: #fbb034;
}

.hero-overlay p {
    opacity: 0.8;
}

/* ================= DETAILS ================= */
.project-details {
    background: #ffffff;
    color: #0f172a;
    padding: 100px 0;
}

.project-details .container-fluid {
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.project-details h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.project-details p {
    line-height: 1.8;
    color: #475569;
}

/* ================= GALLERY ================= */
.project-gallery {
    background: #0f172a;
    padding: 100px 0;
    color: white;
}

.project-gallery h2 {
    text-align: center;
    font-size: 2.2rem;
}

.project-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 25px;
}

.project-grid a {
    display: block;
    overflow: hidden;
    border-radius: 12px;
}

.project-grid img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: 0.5s;
}

.project-grid a:hover img {
    transform: scale(1.08);
}

/* ================= PROJECT OVERLAY ================= */

.project-card {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

/* الصورة */
.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

/* الـ Overlay */
.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,23,42,0.95), rgba(15,23,42,0.2));
    
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;

    color: white;

    opacity: 0;
    transform: translateY(30px);
    transition: 0.4s ease;
}

/* النصوص */
.project-overlay h3 {
    font-family: 'Oswald';
    color: #fbb034;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.project-overlay h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.project-overlay p {
    font-size: 0.85rem;
    opacity: 0.8;
}

.project-overlay span {
    font-size: 0.75rem;
    opacity: 0.6;
}

/* hover effect */
.project-card:hover .project-overlay {
    opacity: 1;
    transform: translateY(0);
}

/* zoom image */
.project-card:hover img {
    transform: scale(1.1);
}


/* CTA BOX */
.cta-box {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

/* SOCIAL ICONS */
.social-icons {
    display: flex;
    gap: 12px;
}

/* ICON STYLE */
.social-icons a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(6px);
    color: white;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 1.1rem;

    transition: 0.3s;
}

/* HOVER EFFECT */
.social-icons a:hover {
    transform: translateY(-5px) scale(1.1);
}

/* COLORS */
.social-icons a.wa:hover {
    background: #25D366;
}

.social-icons a.fb:hover {
    background: #1877f2;
}

.social-icons a.ig:hover {
    background: #e1306c;
}

.social-icons {
    opacity: 0;
    transform: translateY(15px);
    animation: fadeUp 0.6s ease forwards;
    animation-delay: 0.4s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.seo-content {
  padding: 80px 8%;
  background: #ffffff;
  color: #0f172a;
  text-align: center; /* 👈 ده المهم */
}

.seo-content h2 {
  font-family: 'Oswald';
  font-size: 2.5rem;
  margin-bottom: 25px;
}

.seo-content p {
  line-height: 1.9;
  margin-bottom: 20px;
  color: #475569;
}

.seo-content .container {
  max-width: 800px;
  margin: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
