* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Tajawal', 'Noto Sans Arabic', 'IBM Plex Sans Arabic', 'Cairo', sans-serif;
}

html, body {
    width: 100%;
    overflow-x: hidden;
    font-family: 'Tajawal', 'Noto Sans Arabic', 'IBM Plex Sans Arabic', 'Cairo', sans-serif;
}

:root {
    --primary-color: #191346;
    --primary-dark: #0f0a2a;
    --primary-light: #B7886b;
    --accent-color: #B7886b;
    --text-dark: #191346;
    --text-light: #6b7280;
    --bg-light: #F9FAFB;
    --white: #FFFFFF;
    --overlay: rgba(25, 19, 70, 0.85);
}

body {
    font-family: 'Tajawal', 'Noto Sans Arabic', 'IBM Plex Sans Arabic', 'Cairo', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(25, 19, 70, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(25, 19, 70, 0.2), 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    position: fixed;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 6px 30px rgba(25, 19, 70, 0.25), 0 3px 15px rgba(0, 0, 0, 0.15);
    transform: translateY(0);
}

/* Header styling for internal pages (not index.html) */
body.internal-page .header {
    position: fixed;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 6px 30px rgba(25, 19, 70, 0.25), 0 3px 15px rgba(0, 0, 0, 0.15);
}

body.internal-page .header .nav-container {
    padding: 12px 0;
}

body.internal-page .header .logo {
    height: 70px;
    min-width: 180px;
    max-width: 220px;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.1)) brightness(1.02);
    -webkit-filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.1)) brightness(1.02);
}

body.internal-page .header .nav-menu li a {
    color: var(--text-dark);
    text-shadow: none;
}

body.internal-page .header .nav-menu li a:hover {
    color: var(--primary-color);
    background: rgba(25, 19, 70, 0.05);
}

body.internal-page .header .nav-menu li a strong {
    color: var(--accent-color);
}

body.internal-page .header .phone-link {
    color: var(--primary-color);
    background: rgba(183, 136, 107, 0.1);
    border-color: rgba(183, 136, 107, 0.4);
    text-shadow: none;
}

body.internal-page .header .phone-link:hover {
    background: rgba(183, 136, 107, 0.2);
    border-color: rgba(183, 136, 107, 0.6);
}

body.internal-page .header .mobile-menu-toggle span {
    background: var(--primary-color);
}

.nav-container {
    padding: 15px 0;
    position: relative;
    transition: padding 0.3s ease;
}

.header.scrolled .nav-container {
    padding: 12px 0;
}

.nav-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05), transparent);
    pointer-events: none;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.logo-link {
    text-decoration: none;
    display: inline-block;
    position: relative;
    z-index: 10;
}

.logo {
    height: 85px;
    width: auto;
    min-width: 200px;
    max-width: 240px;
    object-fit: contain;
    transition: transform 0.3s, opacity 0.3s;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15)) brightness(1.05);
    -webkit-filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15)) brightness(1.05);
}

.logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2)) brightness(1.1);
    -webkit-filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2)) brightness(1.1);
    opacity: 1;
}

.header.scrolled .logo {
    height: 70px;
    min-width: 180px;
    max-width: 220px;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.1)) brightness(1.02);
    -webkit-filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.1)) brightness(1.02);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
    transition: all 0.3s ease;
}

.nav-menu li a {
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5), 0 0 8px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 8px;
    position: relative;
}

.nav-menu li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 12px;
    left: 12px;
    height: 2px;
    background: var(--accent-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    border-radius: 2px;
}

.nav-menu li a:hover::before {
    transform: scaleX(1);
}

.header.scrolled .nav-menu li a {
    color: var(--text-dark);
    text-shadow: none;
}

.nav-menu li a:hover {
    color: var(--accent-color);
    background: rgba(183, 136, 107, 0.1);
}

.header.scrolled .nav-menu li a:hover {
    color: var(--primary-color);
    background: rgba(25, 19, 70, 0.05);
}

.nav-menu li a strong {
    color: var(--accent-color);
    margin-left: 8px;
    font-weight: 700;
    font-size: 14px;
    display: inline-block;
    transition: transform 0.3s ease, color 0.3s ease;
}

.nav-menu li a:hover strong {
    color: var(--accent-color);
    transform: translateX(-3px);
}

.header.scrolled .nav-menu li a strong {
    color: var(--accent-color);
}

.cta-nav a {
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 25px;
    transition: background 0.3s;
    text-shadow: none;
}

.cta-nav a:hover {
    background: var(--primary-dark);
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    font-size: 16px;
    background: rgba(183, 136, 107, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 12px 22px;
    border-radius: 30px;
    transition: all 0.3s ease;
    border: 2px solid rgba(183, 136, 107, 0.3);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    box-shadow: 0 2px 8px rgba(183, 136, 107, 0.15);
    font-family: 'Tajawal', 'Noto Sans Arabic', 'IBM Plex Sans Arabic', sans-serif;
}

.header.scrolled .phone-link {
    color: var(--primary-color);
    background: rgba(183, 136, 107, 0.1);
    border-color: rgba(183, 136, 107, 0.4);
    text-shadow: none;
}

.phone-link:hover {
    background: rgba(183, 136, 107, 0.3);
    border-color: rgba(183, 136, 107, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(183, 136, 107, 0.25);
}

.header.scrolled .phone-link:hover {
    background: rgba(183, 136, 107, 0.2);
    border-color: rgba(183, 136, 107, 0.6);
}

.phone-icon {
    width: 22px;
    height: 22px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.phone-link:hover .phone-icon {
    transform: scale(1.1) rotate(-10deg);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s;
    border-radius: 2px;
}

.header.scrolled .mobile-menu-toggle span {
    background: var(--text-dark);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    touch-action: pan-y;
    user-select: none;
    -webkit-user-select: none;
    cursor: grab;
}

.hero-slider:active {
    cursor: grabbing;
}

.slides-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.5s ease-in-out, transform 1.5s ease-in-out, visibility 0s 1.5s;
    transform: translateX(100%);
    will-change: transform, opacity;
    pointer-events: none;
}

.slide.active {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(0) !important;
    transition: opacity 1.5s ease-in-out, transform 1.5s ease-in-out, visibility 0s;
    pointer-events: auto;
    z-index: 2;
    animation: slideIn 1.5s ease-in-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide:first-child.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.slide.prev {
    transform: translateX(-100%);
}

.slide-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    z-index: 1 !important;
    box-shadow: none;
    margin: 0;
    padding: 0;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transition: transform 1.5s ease-in-out;
    background: transparent;
    min-width: 100%;
    min-height: 100%;
    filter: brightness(0.95);
}

.slide.active .slide-image {
    transform: scale(1);
    opacity: 1;
    filter: brightness(1);
    animation: imageZoom 1.5s ease-in-out;
}

@keyframes imageZoom {
    from {
        transform: scale(1.08);
        filter: brightness(0.9);
    }
    to {
        transform: scale(1);
        filter: brightness(1);
    }
}

.slide:not(.active) .slide-image {
    transform: scale(1.05);
    filter: brightness(0.85);
}

.slide-content {
    position: absolute;
    top: 50%;
    right: 8%;
    left: auto;
    transform: translateY(-50%);
    text-align: right;
    color: var(--white);
    z-index: 3;
    max-width: 550px;
    padding: 45px 40px;
    animation: fadeInRight 1.5s ease-in-out;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.15));
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
}

.slide-content::before {
    content: '';
    position: absolute;
    top: -2px;
    right: -2px;
    bottom: -2px;
    left: -2px;
    background: linear-gradient(135deg, rgba(25, 19, 70, 0.3), rgba(183, 136, 107, 0.2));
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
}

.slide-content:hover::before {
    opacity: 1;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateY(-50%) translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
}

.slide.active .slide-content {
    animation: fadeInRight 1.5s ease-in-out 0.4s both;
}

.slide-content h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 18px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
    line-height: 1.4;
    font-family: 'Tajawal', 'Noto Sans Arabic', 'IBM Plex Sans Arabic', sans-serif;
    letter-spacing: -0.5px;
}

.slide-content p {
    font-size: 16px;
    margin-bottom: 28px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
    line-height: 1.8;
    font-weight: 400;
    font-family: 'Tajawal', 'Noto Sans Arabic', 'IBM Plex Sans Arabic', sans-serif;
}

.cta-button {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    border: none;
    padding: 14px 36px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 35px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Tajawal', 'Noto Sans Arabic', 'IBM Plex Sans Arabic', sans-serif;
    box-shadow: 0 4px 15px rgba(25, 19, 70, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(25, 19, 70, 0.5);
}

.cta-button:active {
    transform: translateY(-1px) scale(0.98);
}

/* Slider buttons and dots removed - using swipe instead */

/* About Section */
.about-section {
    padding: 100px 0;
    background: var(--white);
    margin-top: 80px;
    position: relative;
    width: 100%;
    box-shadow: 0 -2px 8px rgba(183, 136, 107, 0.03), 0 2px 8px rgba(183, 136, 107, 0.02);
}

.about-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.about-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.about-text {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.about-image {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
    background: linear-gradient(135deg, rgba(25, 19, 70, 0.08) 0%, rgba(183, 136, 107, 0.12) 100%);
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(183, 136, 107, 0.35), 0 10px 30px rgba(25, 19, 70, 0.2), inset 0 0 30px rgba(183, 136, 107, 0.1);
    overflow: hidden;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(25, 19, 70, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-image::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(183, 136, 107, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-image img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    border-radius: 15px;
}

.section-label {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 13px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    font-family: 'Tajawal', 'Noto Sans Arabic', 'IBM Plex Sans Arabic', sans-serif;
    display: inline-block;
    position: relative;
    padding-right: 12px;
}

.section-label::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
}

.about-text h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 24px;
    line-height: 1.4;
    font-family: 'Tajawal', 'Noto Sans Arabic', 'IBM Plex Sans Arabic', sans-serif;
    letter-spacing: -0.2px;
    text-shadow: 0 2px 8px rgba(183, 136, 107, 0.2);
}

.about-text h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    margin-top: 20px;
    margin-bottom: 28px;
    border-radius: 2px;
}

.about-text p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 18px;
    line-height: 1.9;
    font-family: 'Tajawal', 'Noto Sans Arabic', 'IBM Plex Sans Arabic', sans-serif;
    font-weight: 400;
    text-align: right;
}

.about-text p:last-of-type {
    margin-bottom: 32px;
}

.about-text p strong {
    color: var(--primary-color);
    margin-left: 8px;
    font-weight: 600;
    font-size: 16px;
}

.values-goals {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding-top: 40px;
    border-top: 2px solid rgba(25, 19, 70, 0.1);
}

.vision-section,
.goals-section {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(183, 136, 107, 0.2);
    transition: all 0.4s ease;
}

.vision-section:hover,
.goals-section:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(183, 136, 107, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(183, 136, 107, 0.15);
}

.vision-section h3,
.goals-section h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-family: 'Tajawal', 'Noto Sans Arabic', 'IBM Plex Sans Arabic', sans-serif;
    position: relative;
    padding-right: 35px;
    text-align: right;
}

.vision-section h3::before,
.goals-section h3::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
    height: 25px;
    background: var(--primary-light);
    border-radius: 5px;
    opacity: 0.3;
}

.vision-section p,
.goals-section p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.9;
    font-family: 'Tajawal', 'Noto Sans Arabic', 'IBM Plex Sans Arabic', sans-serif;
    text-align: right;
    margin: 0;
}

/* Services Section */
.services-section {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(25, 19, 70, 0.75) 0%, rgba(25, 19, 70, 0.85) 100%);
    position: relative;
    overflow: visible;
    box-shadow: 0 -15px 50px rgba(183, 136, 107, 0.2), 0 15px 50px rgba(183, 136, 107, 0.15);
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(183, 136, 107, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
    pointer-events: none;
}

.services-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(183, 136, 107, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-30%, 30%);
    pointer-events: none;
}

.services-section .container {
    max-width: 100%;
    margin: 0;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.section-title {
    text-align: center;
    font-size: 48px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 20px;
    padding: 0 60px;
    font-family: 'Tajawal', 'Noto Sans Arabic', 'IBM Plex Sans Arabic', sans-serif;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.5px;
}

.services-subtitle {
    text-align: center;
    font-size: 24px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 15px;
    padding: 0 60px;
    font-family: 'Tajawal', 'Noto Sans Arabic', 'IBM Plex Sans Arabic', sans-serif;
}

.services-note {
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 60px;
    padding: 0 60px;
    font-family: 'Tajawal', 'Noto Sans Arabic', 'IBM Plex Sans Arabic', sans-serif;
}

.services-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 80px 0 60px;
}

.services-track {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: 30px;
    position: relative;
    width: fit-content;
    margin: 0 auto;
    will-change: transform;
    padding: 0 60px;
    min-width: 100%;
    touch-action: pan-y pinch-zoom;
}

@media (max-width: 768px) {
    .services-slider {
        overflow: visible;
        padding: 40px 0 30px;
        position: relative;
    }
    
    .services-track {
        transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        touch-action: pan-x;
        -webkit-overflow-scrolling: touch;
        overflow: visible;
    }
    
    .service-card {
        scroll-snap-align: center;
    }
    
    .services-section {
        overflow: visible;
    }
}

.service-card {
    flex-shrink: 0;
    width: 300px;
    height: 500px;
    opacity: 0.7;
    transform: scale(0.9);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin-top: 40px;
    z-index: 1;
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card.next {
    margin-top: 25px;
    transform: scale(0.92);
    opacity: 0.8;
    z-index: 2;
}

.service-card.active {
    opacity: 1;
    transform: scale(1);
    margin-top: 0;
    z-index: 10;
    width: 300px;
    height: 500px;
}

@media (max-width: 1200px) {
    .service-card {
        width: 280px;
        height: 480px;
    }
    
    .service-card.active {
        width: 280px;
        height: 480px;
    }
    
    .services-slider {
        padding: 60px 40px 40px;
    }
}

@media (max-width: 768px) {
    .services-section {
        overflow: visible !important;
    }
    
    .services-slider {
        padding: 40px 10px 30px;
        overflow: visible !important;
        width: 100%;
    }
    
    .services-track {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        padding: 0 !important;
        overflow: visible !important;
        width: 100% !important;
        transform: none !important;
        margin: 0 !important;
        position: static !important;
        align-items: stretch !important;
        justify-content: normal !important;
        min-width: auto !important;
        will-change: auto !important;
        touch-action: auto !important;
    }
    
    .service-card {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        min-height: 380px;
        margin: 0 !important;
        flex-shrink: 0;
        opacity: 1 !important;
        transform: none !important;
        position: relative !important;
        display: flex !important;
        flex-direction: column !important;
    }
    
    .service-card.active,
    .service-card.prev,
    .service-card.next {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        min-height: 380px;
        margin: 0 !important;
        opacity: 1 !important;
        transform: none !important;
        margin-top: 0 !important;
        z-index: auto !important;
    }
    
    .service-image {
        height: 160px;
        width: 100%;
        object-fit: cover;
        flex-shrink: 0;
    }
    
    .service-card-content {
        min-height: auto;
        padding: 12px;
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    
    .service-card-content h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .service-card-content p {
        font-size: 12px;
        line-height: 1.5;
        flex: 1;
    }
    
    .services-nav {
        display: none !important;
    }
}

.service-card {
    background: var(--white);
    padding: 0;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 15px 50px rgba(183, 136, 107, 0.25), 0 8px 25px rgba(25, 19, 70, 0.2), 0 4px 15px rgba(0, 0, 0, 0.12);
    border: none;
}

.service-card::after {
    display: none;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card::after {
    display: none;
}

.service-card:hover {
    transform: translateY(-10px) scale(0.87);
    box-shadow: 0 25px 70px rgba(183, 136, 107, 0.4), 0 15px 50px rgba(25, 19, 70, 0.3), 0 8px 30px rgba(0, 0, 0, 0.2);
    z-index: 5;
    border-radius: 25px;
}

.service-card.prev:hover {
    transform: translateY(-10px) scale(0.92);
}

.service-card.next:hover {
    transform: translateY(-10px) scale(0.92);
}

.service-card.active:hover {
    transform: translateY(-15px) scale(1.05);
    z-index: 15;
}

.service-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
    margin: 0;
    padding: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: block;
    background: transparent;
    flex-shrink: 0;
}

.service-image::before,
.service-image::after {
    display: none;
}

.service-card:hover .service-image {
    border-radius: 25px 25px 0 0;
    transform: scale(1.05);
}

.service-card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex-grow: 1;
    position: relative;
    z-index: 2;
    min-height: 220px;
    max-height: 220px;
    overflow: hidden;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 12px;
    margin-top: 0;
    font-family: 'Tajawal', 'Noto Sans Arabic', 'IBM Plex Sans Arabic', sans-serif;
    line-height: 1.4;
    position: relative;
    transition: all 0.4s ease;
    text-align: right;
}

.service-card h3::after {
    content: '';
    position: absolute;
    bottom: -12px;
    right: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.4s ease, width 0.4s ease;
}

.service-card:hover h3 {
    color: var(--primary-color);
}

.service-card:hover h3::after {
    opacity: 1;
    width: 70px;
}

.service-card p {
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.7;
    font-family: 'Tajawal', 'Noto Sans Arabic', 'IBM Plex Sans Arabic', sans-serif;
    position: relative;
    flex-grow: 1;
    transition: color 0.4s ease;
    text-align: right;
    margin: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
}

.service-card:hover p {
    color: var(--text-dark);
}


/* Services Slider Navigation */
.services-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    padding: 0 60px;
}

.services-dots {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
}

.service-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(25, 19, 70, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: inline-block;
}

.service-dot:hover {
    background: rgba(25, 19, 70, 0.7);
    transform: scale(1.2);
}

.service-dot.active {
    background: var(--primary-color);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(25, 19, 70, 0.4);
    opacity: 1;
}

@media (max-width: 768px) {
    .services-nav {
        padding: 0 20px;
        margin-top: 40px;
    }
}

/* Partners Section */
/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(25, 19, 70, 0.05) 0%, rgba(183, 136, 107, 0.08) 100%);
    position: relative;
    overflow: hidden;
    box-shadow: 0 -10px 40px rgba(183, 136, 107, 0.15), 0 10px 40px rgba(183, 136, 107, 0.1);
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(25, 19, 70, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
    pointer-events: none;
}

.testimonials-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(183, 136, 107, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-30%, 30%);
    pointer-events: none;
}

.testimonials-title {
    text-align: center;
    font-size: 42px;
    font-weight: 900;
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-family: 'Tajawal', 'Noto Sans Arabic', 'IBM Plex Sans Arabic', sans-serif;
    text-shadow: 0 3px 10px rgba(183, 136, 107, 0.3);
}

.testimonials-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 60px;
    font-family: 'Tajawal', 'Noto Sans Arabic', 'IBM Plex Sans Arabic', sans-serif;
}

.testimonials-slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonials-track {
    display: flex;
    overflow: hidden;
    position: relative;
}

.testimonial-card {
    min-width: 100%;
    background: var(--white);
    padding: 50px 45px;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(183, 136, 107, 0.25), 0 8px 25px rgba(25, 19, 70, 0.15), 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
    position: relative;
}

.testimonial-content {
    text-align: center;
    margin-bottom: 40px;
}

.quote-icon {
    font-size: 80px;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 25px;
    font-family: 'Tajawal', 'Noto Sans Arabic', 'IBM Plex Sans Arabic', sans-serif;
    opacity: 0.3;
}

.testimonial-text {
    font-size: 18px;
    color: var(--text-dark);
    line-height: 1.9;
    margin-bottom: 25px;
    font-family: 'Tajawal', 'Noto Sans Arabic', 'IBM Plex Sans Arabic', sans-serif;
    font-weight: 400;
}

.stars {
    font-size: 24px;
    color: #FFD700;
    letter-spacing: 3px;
    margin-bottom: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding-top: 30px;
    border-top: 1px solid rgba(25, 19, 70, 0.1);
}

.author-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(25, 19, 70, 0.2);
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    text-align: right;
}

.author-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 5px;
    font-family: 'Tajawal', 'Noto Sans Arabic', 'IBM Plex Sans Arabic', sans-serif;
}

.author-role {
    font-size: 15px;
    color: var(--text-light);
    font-family: 'Tajawal', 'Noto Sans Arabic', 'IBM Plex Sans Arabic', sans-serif;
}

.testimonials-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}

.testimonials-dots {
    display: flex;
    gap: 10px;
    align-items: center;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(25, 19, 70, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 6px;
}

/* Responsive Design for Testimonials */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 80px 0;
    }
    
    .testimonials-title {
        font-size: 32px;
    }
    
    .testimonials-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .testimonial-card {
        padding: 40px 30px;
    }
    
    .quote-icon {
        font-size: 60px;
        margin-bottom: 20px;
    }
    
    .testimonial-text {
        font-size: 16px;
    }
    
    .stars {
        font-size: 20px;
    }
    
    .author-avatar {
        width: 60px;
        height: 60px;
    }
    
    .author-name {
        font-size: 18px;
    }
    
    .author-role {
        font-size: 14px;
    }
    
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-title {
        font-size: 28px;
    }
    
    .testimonials-subtitle {
        font-size: 15px;
        margin-bottom: 35px;
    }
    
    .testimonial-card {
        padding: 30px 25px;
    }
    
    .quote-icon {
        font-size: 50px;
        margin-bottom: 15px;
    }
    
    .testimonial-text {
        font-size: 15px;
        line-height: 1.8;
    }
    
    .stars {
        font-size: 18px;
    }
    
    .testimonial-author {
        flex-direction: column;
        gap: 15px;
    }
    
    .author-info {
        text-align: center;
    }
    
}

/* Features Section */
.features-section {
    padding: 50px 0;
    background: linear-gradient(135deg, rgba(25, 19, 70, 0.95) 0%, rgba(15, 10, 42, 0.98) 100%), url('back/bg.jpg') center/cover no-repeat;
    background-blend-mode: overlay;
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(25, 19, 70, 0.85) 0%, rgba(183, 136, 107, 0.15) 100%);
    z-index: 0;
}

.features-section .container {
    position: relative;
    z-index: 1;
}

.features-header {
    text-align: center;
    margin-bottom: 40px;
}

.features-header h2 {
    font-size: 48px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 15px;
    font-family: 'Tajawal', 'Noto Sans Arabic', 'IBM Plex Sans Arabic', sans-serif;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.features-header p {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.95);
    font-family: 'Tajawal', 'Noto Sans Arabic', 'IBM Plex Sans Arabic', sans-serif;
    font-weight: 500;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    justify-items: center;
}

.feature-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(183, 136, 107, 0.3);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 320px;
    box-shadow: 0 8px 25px rgba(183, 136, 107, 0.2), 0 4px 15px rgba(25, 19, 70, 0.15);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    border-radius: 20px 20px 0 0;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(183, 136, 107, 0.5);
    box-shadow: 0 20px 50px rgba(183, 136, 107, 0.4), 0 10px 30px rgba(25, 19, 70, 0.25), 0 5px 20px rgba(0, 0, 0, 0.2);
}

.feature-icon-wrapper {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(183, 136, 107, 0.2), rgba(183, 136, 107, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    border: 3px solid rgba(183, 136, 107, 0.3);
}

.feature-card:hover .feature-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(183, 136, 107, 0.3), rgba(183, 136, 107, 0.2));
    border-color: rgba(183, 136, 107, 0.5);
    box-shadow: 0 8px 25px rgba(183, 136, 107, 0.3);
}

.feature-icon {
    width: 50px;
    height: 50px;
    filter: brightness(0) invert(1);
    transition: transform 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-card h4 {
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    margin: 0;
    font-family: 'Tajawal', 'Noto Sans Arabic', 'IBM Plex Sans Arabic', sans-serif;
    line-height: 1.4;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.feature-card p {
    display: none;
}

/* Features Section Responsive */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
        max-width: 1000px;
    }
    
    .feature-card {
        max-width: 100%;
    }
    
    .features-header h2 {
        font-size: 40px;
    }
    
    .features-header p {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 50px 0;
    }
    
    .features-header {
        margin-bottom: 35px;
    }
    
    .features-header h2 {
        font-size: 32px;
    }
    
    .features-header p {
        font-size: 18px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 100%;
    }
    
    .feature-card {
        padding: 35px 25px;
        max-width: 100%;
    }
    
    .feature-icon-wrapper {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
    }
    
    .feature-card h4 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .features-section {
        padding: 60px 0;
    }
    
    .features-header h2 {
        font-size: 28px;
    }
    
    .features-header p {
        font-size: 16px;
    }
    
    .feature-card {
        padding: 35px 25px;
    }
    
    .feature-icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .feature-card h4 {
        font-size: 18px;
    }
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: var(--white);
    box-shadow: 0 -10px 40px rgba(183, 136, 107, 0.12), 0 10px 40px rgba(183, 136, 107, 0.08);
}

.map-title {
    text-align: center;
    font-size: 36px;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 40px;
    text-shadow: 0 2px 8px rgba(183, 136, 107, 0.25);
}

.map-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(25, 19, 70, 0.15), 0 5px 20px rgba(0, 0, 0, 0.1);
    height: 600px;
    order: 2;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 35px;
    order: 1;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 25px;
    background: linear-gradient(135deg, rgba(25, 19, 70, 0.05) 0%, rgba(183, 136, 107, 0.08) 100%);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(183, 136, 107, 0.2);
    box-shadow: 0 4px 15px rgba(183, 136, 107, 0.15), 0 2px 8px rgba(25, 19, 70, 0.1);
}

.contact-item:hover {
    transform: translateX(-5px);
    box-shadow: 0 10px 30px rgba(183, 136, 107, 0.25), 0 5px 15px rgba(25, 19, 70, 0.15);
    background: linear-gradient(135deg, rgba(25, 19, 70, 0.08) 0%, rgba(183, 136, 107, 0.12) 100%);
    border-color: rgba(183, 136, 107, 0.4);
}

.contact-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 12px;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-details {
    flex: 1;
    text-align: right;
}

.contact-details h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
    font-family: 'Tajawal', 'Noto Sans Arabic', 'IBM Plex Sans Arabic', sans-serif;
}

.contact-details p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.8;
    margin: 0;
    font-family: 'Tajawal', 'Noto Sans Arabic', 'IBM Plex Sans Arabic', sans-serif;
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.contact-details a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.map-title {
    text-align: center;
    font-size: 42px;
    font-weight: 900;
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-family: 'Tajawal', 'Noto Sans Arabic', 'IBM Plex Sans Arabic', sans-serif;
}

.map-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 50px;
    font-family: 'Tajawal', 'Noto Sans Arabic', 'IBM Plex Sans Arabic', sans-serif;
}

.contact-icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
}

.contact-item div {
    display: flex;
    flex-direction: column;
}

.contact-item strong {
    color: var(--primary-color);
    font-size: 14px;
    margin-bottom: 5px;
}

.contact-item span {
    color: var(--text-light);
    font-size: 16px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #191346 0%, #0f0a2a 100%);
    color: var(--white);
    padding: 80px 0 35px;
    box-shadow: 0 -15px 50px rgba(183, 136, 107, 0.2), 0 -5px 20px rgba(25, 19, 70, 0.15);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(183, 136, 107, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
    pointer-events: none;
}

.footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(183, 136, 107, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-30%, 30%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
    align-items: start;
}

.footer-logo-section {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    align-items: flex-start;
    padding: 0;
    margin: 0;
    margin-top: -100px;
    align-self: start;
}

.footer-logo-section::before {
    content: '';
    height: 0;
    width: 0;
    display: block;
}

.footer-logo-link {
    display: block;
    text-decoration: none;
    align-self: flex-start;
    position: relative;
    z-index: 100;
    margin: 0;
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
    line-height: 0;
}

.footer-logo {
    height: 250px;
    width: auto;
    min-width: 480px;
    max-width: 550px;
    object-fit: contain;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.2)) brightness(1.08);
    -webkit-filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.2)) brightness(1.08);
    margin-bottom: 0;
    position: relative;
    z-index: 100;
}

.footer-description {
    font-size: 15px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    margin-top: -70px;
    padding: 0;
    padding-top: 0;
    padding-bottom: 20px;
    padding-right: 20px;
    padding-left: 20px;
    font-family: 'Tajawal', 'Noto Sans Arabic', 'IBM Plex Sans Arabic', sans-serif;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border-right: 3px solid rgba(183, 136, 107, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.footer-description:hover {
    background: rgba(255, 255, 255, 0.04);
    border-right-color: rgba(183, 136, 107, 0.5);
}

.footer-pages {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.footer-section h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
    margin-top: 0;
    color: var(--white);
    position: relative;
    padding-bottom: 12px;
    font-family: 'Tajawal', 'Noto Sans Arabic', 'IBM Plex Sans Arabic', sans-serif;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-light));
    border-radius: 2px;
}

.footer-section p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.footer-section a {
    display: block;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    padding: 8px 0;
    padding-right: 15px;
    border-radius: 6px;
    font-family: 'Tajawal', 'Noto Sans Arabic', 'IBM Plex Sans Arabic', sans-serif;
    position: relative;
}

.footer-section a::before {
    content: '●';
    position: absolute;
    right: 0;
    color: rgba(183, 136, 107, 0.5);
    font-size: 12px;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--white);
    padding-right: 20px;
    background: rgba(255, 255, 255, 0.05);
}

.footer-section a:hover::before {
    color: var(--accent-color);
    transform: scale(1.2);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.social-link {
    width: 48px;
    height: 48px;
    background: rgba(183, 136, 107, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(183, 136, 107, 0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(183, 136, 107, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.social-link:hover::before {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    background: rgba(183, 136, 107, 0.25);
    border-color: rgba(183, 136, 107, 0.5);
    box-shadow: 0 8px 20px rgba(183, 136, 107, 0.3);
}

.social-link img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
    transition: transform 0.4s ease;
    position: relative;
    z-index: 1;
}

.social-link:hover img {
    transform: scale(1.15) rotate(5deg);
    filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(183, 136, 107, 0.5));
}

.working-hours {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 15px;
    font-family: 'Tajawal', 'Noto Sans Arabic', 'IBM Plex Sans Arabic', sans-serif;
}

.footer-bottom {
    text-align: center;
    padding-top: 35px;
    border-top: 1px solid rgba(183, 136, 107, 0.2);
    position: relative;
    z-index: 1;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    font-family: 'Tajawal', 'Noto Sans Arabic', 'IBM Plex Sans Arabic', sans-serif;
    letter-spacing: 0.5px;
}

/* Cookie Consent removed */

/* Responsive Design */
@media (max-width: 1024px) {
    .services-section {
        padding: 90px 0;
    }
    
    .services-section .container {
        padding: 0 40px;
    }
    
    .section-title {
        font-size: 38px;
        margin-bottom: 60px;
        padding: 0 40px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .services-section .container {
        padding: 0 30px;
    }
    
    .service-card {
        padding: 0;
        min-height: 600px;
        margin-bottom: 0;
        border: none;
        border-radius: 18px;
    }
    
    .service-card:hover {
        border-radius: 22px;
    }
    
    .service-image {
        height: 280px;
        margin-bottom: 0;
        border-radius: 18px 18px 0 0;
    }
    
    .service-card:hover .service-image {
        border-radius: 22px 22px 0 0;
    }
    
    .service-card-content {
        padding: 35px 30px;
    }
    
    .service-card h3 {
        font-size: 24px;
    }
    
    .service-card p {
        font-size: 16px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-section {
        padding: 80px 0;
        margin-top: 60px;
    }
    
    .about-section .container {
        padding: 0 30px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-image {
        order: -1;
        padding: 30px;
    }
    
    .about-text h2 {
        font-size: 28px;
    }
    
    .values-goals {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .map-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .map-wrapper {
        order: -1;
        height: 400px;
    }
    
    .contact-info {
        order: 2;
    }
    
    .contact-item {
        padding: 20px;
    }
    
    .map-title {
        font-size: 32px;
    }
    
    .map-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .nav-content {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 100vh;
        min-height: 100vh;
    }
    
    .slide-content {
        right: 5%;
        left: 5%;
        max-width: 90%;
        padding: 30px 25px;
        text-align: right;
    }
    
    .slide-content h1 {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .slide-content p {
        font-size: 14px;
        margin-bottom: 22px;
    }
    
    .cta-button {
        padding: 12px 28px;
        font-size: 14px;
    }
    
    .nav-content {
        flex-wrap: wrap;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        gap: 0;
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        width: 100%;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
        padding: 15px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu li a {
        color: var(--text-dark);
        text-shadow: none;
        width: 100%;
        display: block;
    }
    
    .header.scrolled .nav-menu li a {
        color: var(--text-dark);
    }
    
    .phone-link {
        display: none;
    }
    
    .phone-link.mobile-visible {
        display: flex;
        width: 100%;
        justify-content: center;
        margin-top: 10px;
        color: var(--text-dark);
        background: var(--bg-light);
        text-shadow: none;
    }
    
    .slide-content h1 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .slide-content p {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 16px;
    }
    
    .services-section {
        padding: 70px 0;
        overflow: visible;
    }
    
    .services-section .container {
        padding: 0 30px;
        overflow: visible;
    }
    
    .section-title {
        font-size: 32px;
        margin-bottom: 50px;
        padding: 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-card {
        padding: 0;
        min-height: auto;
        margin-bottom: 0;
        border: none;
        border-radius: 16px;
    }
    
    .service-card:hover {
        border-radius: 20px;
    }
    
    .service-image {
        height: 250px;
        margin-bottom: 0;
        border-radius: 16px 16px 0 0;
    }
    
    .service-card:hover .service-image {
        border-radius: 20px 20px 0 0;
    }
    
    .service-card-content {
        padding: 30px 25px;
    }
    
    .service-card h3 {
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .service-card p {
        font-size: 15px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }
    
    .footer-logo-section {
        text-align: center;
        margin-top: -60px !important;
        align-items: center;
    }
    
    .footer-logo-link {
        align-self: center;
        margin: 0 auto;
    }
    
    .footer-logo {
        height: 180px !important;
        min-width: 320px !important;
        max-width: 400px !important;
        margin: 0 auto;
    }
    
    .footer-section a {
        padding-right: 0 !important;
        padding-left: 0 !important;
        text-align: right !important;
        display: inline-flex;
        align-items: center;
        justify-content: flex-end !important;
        gap: 8px;
        direction: ltr;
        margin-right: 0 !important;
        margin-left: auto !important;
    }
    
    .footer-section a::before {
        display: none !important;
    }
    
    .footer-section a::after {
        content: '●';
        color: rgba(183, 136, 107, 0.5);
        font-size: 10px;
        margin-right: 8px;
        flex-shrink: 0;
    }
    
    .footer-description {
        font-size: 13px;
        line-height: 1.7;
        text-align: center !important;
        margin: 0 !important;
        margin-right: 50px !important;
        padding: 15px;
        color: rgba(255, 255, 255, 0.95) !important;
        font-weight: 400;
        max-height: none !important;
        overflow: visible !important;
        display: block !important;
        white-space: normal !important;
        text-overflow: clip !important;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 20px !important;
    }
    
    .footer-pages {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: right !important;
    }
    
    .footer-section {
        text-align: right !important;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }
    
    .footer-section h4 {
        align-self: flex-start;
        text-align: right;
    }
    
    .footer-section a {
        align-self: flex-end;
    }
    
    .services-slider {
        padding: 50px 10px 30px;
    }
    
    .services-track {
        padding: 0 20px;
        gap: 15px;
    }
    
    .service-card {
        width: 280px;
        height: 450px;
    }
    
    .service-card.active {
        width: 280px;
        height: 450px;
    }
    
    .service-image {
        height: 200px;
    }
    
    .service-card-content {
        height: 250px;
        padding: 20px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .about-text h2 {
        font-size: 24px;
    }
    
    .nav-container {
        padding: 15px 0;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 50px 0 25px;
    }
    
    .footer-content {
        gap: 30px;
        padding: 0 15px;
    }
    
    .footer-logo-section {
        margin-top: -60px !important;
        align-items: center;
    }
    
    .footer-logo-link {
        margin: 0 auto;
    }
    
    .footer-logo {
        height: 200px !important;
        min-width: 360px !important;
        max-width: 420px !important;
        margin: 0 auto;
    }
    
    .footer-description {
        font-size: 12px;
        line-height: 1.7;
        margin: 0 !important;
        margin-right: 50px !important;
        padding: 12px;
        text-align: center !important;
        color: rgba(255, 255, 255, 0.95) !important;
        font-weight: 400;
        max-height: none !important;
        overflow: visible !important;
        display: block !important;
        white-space: normal !important;
        text-overflow: clip !important;
        -webkit-line-clamp: none !important;
        line-clamp: none !important;
    }
    
    .social-links {
        gap: 10px;
        margin-top: 15px;
        justify-content: center;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
    
    .social-link img {
        width: 20px;
        height: 20px;
    }
    
    .footer-pages {
        gap: 25px;
        text-align: right;
    }
    
    .footer-section {
        text-align: right;
    }
    
    .footer-section h4 {
        font-size: 18px;
        text-align: right;
    }
    
    .footer-section a {
        font-size: 14px;
        padding-right: 0 !important;
        padding-left: 0 !important;
        margin-bottom: 10px;
        text-align: right !important;
        display: inline-flex;
        align-items: center;
        justify-content: flex-end !important;
        gap: 6px;
        direction: ltr;
        margin-right: 0 !important;
        margin-left: auto !important;
    }
    
    .footer-section a::before {
        display: none !important;
    }
    
    .footer-section a::after {
        content: '●';
        color: rgba(183, 136, 107, 0.5);
        font-size: 9px;
        margin-right: 6px;
        flex-shrink: 0;
    }
    
    .footer-pages {
        text-align: right !important;
    }
    
    .footer-section {
        text-align: right !important;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }
    
    .footer-section h4 {
        text-align: right !important;
        align-self: flex-start;
    }
    
    .footer-section a {
        align-self: flex-end;
    }
    
    .working-hours {
        font-size: 13px;
    }
    
    .services-section {
        padding: 60px 0;
        overflow: visible !important;
    }
    
    .services-section .container {
        padding: 0 15px;
        overflow: visible;
    }
    
    .section-title {
        font-size: 26px;
        margin-bottom: 40px;
        padding: 0 15px;
    }
    
    .services-slider {
        padding: 30px 5px 20px;
        overflow: visible !important;
    }
    
    .services-track {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
        padding: 0 !important;
        overflow: visible !important;
        width: 100% !important;
        transform: none !important;
        position: static !important;
    }
    
    .service-card {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        min-height: 360px;
        padding: 0;
        margin: 0 !important;
        border: none;
        border-radius: 12px;
        transform: none !important;
        opacity: 1 !important;
    }
    
    .service-card.active {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        min-height: 360px;
        transform: none !important;
        opacity: 1 !important;
    }
    
    .service-image {
        height: 140px;
    }
    
    .service-card-content {
        padding: 10px;
    }
    
    .service-card-content h3 {
        font-size: 15px;
    }
    
    .service-card-content p {
        font-size: 11px;
    }
    
    .service-card:hover {
        border-radius: 18px;
    }
    
    .service-image {
        height: 180px;
        margin-bottom: 0;
        border-radius: 15px 15px 0 0;
    }
    
    .service-card:hover .service-image {
        border-radius: 18px 18px 0 0;
    }
    
    .service-card-content {
        height: 240px;
        padding: 20px 15px;
    }
    
    .service-card h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .service-card p {
        font-size: 13px;
        line-height: 1.6;
    }
    
    .services-nav {
        padding: 0 15px;
        margin-top: 30px;
    }
    
    .slide-content h1 {
        font-size: 24px;
    }
    
    .slide-content p {
        font-size: 14px;
    }
    
    .logo {
        height: 70px;
        min-width: 160px;
        max-width: 200px;
    }
    
    .nav-content {
        padding: 0 15px;
    }
    
    .about-section {
        margin-top: 0;
    }
    
    .about-image {
        min-height: 40vh;
        padding: 40px 30px;
    }
    
    .about-text {
        padding: 50px 30px;
    }
    
    .about-text h2 {
        font-size: 24px;
    }
    
    .about-text p {
        font-size: 14px;
    }
    
    .section-label {
        font-size: 12px;
    }
    
    .values-goals {
        gap: 25px;
        padding-top: 30px;
    }
    
    .vision-section,
    .goals-section {
        padding: 20px;
    }
    
    .vision-section h3,
    .goals-section h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .vision-section p,
    .goals-section p {
        font-size: 14px;
        line-height: 1.8;
    }
}

/* Floating Action Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    z-index: 999;
    width: 100%;
    pointer-events: none;
}

.floating-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    position: fixed;
    pointer-events: all;
}

.floating-button:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.floating-button.whatsapp {
    background: #25D366;
    right: 30px;
    bottom: 30px;
    animation: pulse-whatsapp 2s infinite;
}

.floating-button.phone {
    background: var(--primary-color);
    left: 30px;
    bottom: 30px;
    animation: pulse-phone 2s infinite;
}

.floating-button i {
    font-size: 28px;
    color: var(--white);
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

@keyframes pulse-phone {
    0% {
        box-shadow: 0 4px 20px rgba(25, 19, 70, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(25, 19, 70, 0.4), 0 0 0 10px rgba(25, 19, 70, 0.1);
    }
    100% {
        box-shadow: 0 4px 20px rgba(25, 19, 70, 0.4);
    }
}

@media (max-width: 768px) {
    .floating-button {
        width: 55px;
        height: 55px;
    }
    
    .floating-button i {
        font-size: 24px;
    }
    
    .floating-button.whatsapp {
        right: 20px;
        bottom: 20px;
    }
    
    .floating-button.phone {
        left: 20px;
        bottom: 20px;
    }
}

/* Services Page Grid Layout */
.services-page {
    background: var(--bg-light) !important;
    padding: 80px 0 !important;
}

.services-page .section-title {
    color: var(--primary-color) !important;
    font-size: 42px;
    margin-bottom: 15px;
}

.services-page .services-subtitle {
    color: var(--text-dark) !important;
    font-size: 20px;
    margin-bottom: 10px;
}

.services-page .services-note {
    color: var(--text-light) !important;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-card-grid:nth-child(5),
.service-card-grid:nth-child(6) {
    grid-column: span 1;
}

.service-card-center {
    justify-self: center;
}

/* Center last two cards in 4-column layout */
.services-grid .service-card-grid:nth-child(5) {
    grid-column: 2 / 3;
}

.services-grid .service-card-grid:nth-child(6) {
    grid-column: 3 / 4;
}

.service-card-grid {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(25, 19, 70, 0.1), 0 4px 15px rgba(183, 136, 107, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card-grid:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(25, 19, 70, 0.15), 0 8px 20px rgba(183, 136, 107, 0.15);
}

.service-card-grid .service-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.service-card-grid .service-card-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card-grid .service-card-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-family: 'Tajawal', sans-serif;
}

.service-card-grid .service-card-content p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    flex: 1;
    font-family: 'Tajawal', sans-serif;
}

@media (max-width: 1400px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    /* Reset centering for 3-column layout */
    .services-grid .service-card-grid:nth-child(5),
    .services-grid .service-card-grid:nth-child(6) {
        grid-column: span 1;
        justify-self: stretch;
    }
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .services-page .section-title {
        font-size: 36px;
    }
    
    .services-page .services-subtitle {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .services-page {
        padding: 60px 0 !important;
    }
    
    .services-page .section-title {
        font-size: 28px;
    }
    
    .services-page .services-subtitle {
        font-size: 16px;
    }
    
    .service-card-grid .service-image {
        height: 200px;
    }
    
    .service-card-grid .service-card-content {
        padding: 20px;
    }
    
    .service-card-grid .service-card-content h3 {
        font-size: 20px;
    }
    
    .service-card-grid .service-card-content p {
        font-size: 14px;
    }
}

