body {
    font-family: "Tajawal", sans-serif;
    margin: 0;
    background: #f6f6f6;
}

/* =========== NAVBAR تصميم ============ */

/* =========== NAVBAR ============ */

.navbar {
    background: linear-gradient(90deg, #f7c66a, #e8a93e);
    padding: 15px 0 40px; /* علشان نسيب مساحة للموجة */
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    position: sticky;
    top: 0;
    z-index: 999;
    position: relative;
}

.container {
    width: 95%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    direction: rtl;
}

.logo {
    font-size: 28px;
    color: #fff;
    font-weight: bold;
}

.nav-menu {
    display: flex;
    gap: 25px;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s;
}

.nav-menu a:hover {
    color: #333;
    transform: translateY(-2px);
}

/* ========= WAVE EFFECT ========= */

.navbar::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 45px;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'><path d='M0 0 C 300 150 900 -50 1200 50 L 1200 120 L 0 120 Z' fill='%23ffffff'/></svg>") no-repeat;
    background-size: 100% 100%;
}



/* Hero */
.hero {
    display: flex;
    justify-content: space-between;
    padding: 40px;
    background: #fff;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap; /* علشان الموبايل */
}

.hero-text {
    width: 50%;
}

.hero-text h1 {
    font-size: 40px;
    margin-bottom: 10px;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 20px;
}

.hero-img img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

.btn-call, .btn-whatsapp {
    background: #007bff;
    padding: 12px 20px;
    border-radius: 6px;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    display: inline-block;
    margin-top: 20px;
}

.btn-whatsapp {
    background: #25D366;
}

/* Content */
.content {
    background: #fff;
    margin: 30px;
    padding: 30px;
    border-radius: 10px;
}

.content h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.content h3 {
    margin-top: 20px;
    font-size: 24px;
}

.service-list {
    margin-top: 10px;
}

.service-list li {
    font-size: 18px;
    margin-bottom: 8px;
}

/* Footer */
.footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 15px;
    margin-top: 30px;
}


.seo-titles {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
}

.seo-box {
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f6ef;
    border-radius: 8px;
    border-right: 4px solid #d8a045;
}

.seo-box h2 {
    margin-bottom: 10px;
    font-size: 24px;
    color: #333;
}

.seo-box p {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
}





.seo-box {
    background: #f8f6ef;
    padding: 20px;
    margin-bottom: 25px;
    border-radius: 8px;
    border-right: 4px solid #d8a045;
}

.text.full {
    display: none;
    margin-top: 10px;
    color: #555;
}

.toggle-btn {
    margin-top: 15px;
    background: #d8a045;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
}

.toggle-btn:hover {
    background: #b68328;
}


/* ازرار اتصال عائمه  */
/* ===== الأزرار العائمة ===== */
.floating-buttons {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.float-btn {
    width: 55px;
    height: 55px;
    background: #444;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 26px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.28);
    transition: 0.3s;
}

/* زر الاتصال */
.call-btn {
    background: #ff9100;
}

/* زر الواتساب */
.whatsapp-btn {
    background: #25D366;
}

.float-btn:hover {
    transform: scale(1.15);
}
/* ===== الأزرار العائمة ===== */



/* سيكشن الصور  */


.gallery-section {
    background: #ffffff;
    padding: 35px;
    border-radius: 20px;
    margin: 40px 0;
}

.gallery-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    text-align: right;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 12px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.07);
}

/* موبايل وتابلت */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}


.visit-works {
    text-align: center;
    font-size: 22px;
    margin-top: 20px;
    font-weight: bold;
    color: #333;
}


.keywords-section {
    background: #ffffff;
    padding: 25px;
    border-radius: 18px;
    margin: 40px 0;
}

.keywords-section h2 {
    font-size: 26px;
    margin-bottom: 15px;
    text-align: right;
}

.keywords-box {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.keywords-box a {
    background: #f3f1ea;
    color: #333;
    padding: 8px 14px;
    font-size: 15px;
    border-radius: 8px;
    text-decoration: none;
    border-right: 3px solid #d3b06a;
    transition: 0.3s;
}

.keywords-box a:hover {
    background: #d3b06a;
    color: #fff;
    transform: translateY(-2px);
}

/* موبايل */
@media (max-width: 768px) {
    .keywords-section {
        padding: 18px;
    }
    .keywords-box a {
        font-size: 14px;
        padding: 7px 12px;
    }
}




