     * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
             font-family: 'Cairo', 'Poppins', sans-serif;
            background-color: #ffffff;
            scroll-behavior: smooth;
        }

        /* Color Variables */
        :root {
            --primary: #935b98;
            --primary-dark: #7a4a7f;
            --secondary: #ba1568;
            --secondary-light: #d43a84;
            --gold: #fcac01;
            --gray-text: #6d7476;
            --gray-light: #f5f6f8;
            --white: #ffffff;
            --shadow-sm: 0 10px 30px -10px rgba(0, 0, 0, 0.08);
        }



                /* ============================================ */
        /* HEADER STYLES - Sticky, Light, Soft, Clear */
        /* ============================================ */

        .navbar {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
            padding: 0.9rem 0;
            transition: all 0.3s ease;
        }

        .nav-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1.8rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 2rem;
        }

        /* Logo */
        .nav-logo a {
            font-size: 1.7rem;
            font-weight: 800;
            text-decoration: none;
            background: linear-gradient(135deg, #935b98 0%, #ba1568 100%);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            letter-spacing: -0.5px;
        }

        /* Desktop Navigation Menu */
        .nav-menu {
            flex: 1;
            display: flex;
            justify-content: center;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2.2rem;
        }

        .nav-links li a {
            text-decoration: none;
            font-size: 1rem;
            font-weight: 500;
            color: #3a3f4b;
            transition: all 0.25s ease;
            padding: 0.5rem 0;
            position: relative;
        }

        .nav-links li a:hover {
            color: #ba1568;
        }

        .nav-links li a.active {
            color: #935b98;
            font-weight: 600;
        }

        .nav-links li a.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 100%;
            height: 2.5px;
            background: linear-gradient(90deg, #935b98, #ba1568);
            border-radius: 3px;
        }

        /* CTA Button */
        .btn-consult {
            background: linear-gradient(135deg, #935b98 0%, #ba1568 100%);
            color: white;
            text-decoration: none;
            padding: 0.6rem 1.4rem;
            border-radius: 40px;
            font-size: 0.9rem;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(147, 91, 152, 0.2);
            white-space: nowrap;
        }

        .btn-consult:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(147, 91, 152, 0.3);
            background: linear-gradient(135deg, #7a4a7f 0%, #9e1158 100%);
        }

        /* Mobile Toggle Button (Hamburger) */
        .nav-toggle {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 28px;
            height: 20px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0;
        }

        .nav-toggle span {
            width: 100%;
            height: 2.5px;
            background-color: #935b98;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        /* ============================================ */
        /* RESPONSIVE (Mobile & Tablet) */
        /* ============================================ */
        @media (max-width: 850px) {
            .nav-toggle {
                display: flex;
            }
            
            .nav-menu {
                position: fixed;
                top: 68px;
                right: -100%;
                width: 80%;
                max-width: 320px;
                height: calc(100vh - 68px);
                background: rgba(255, 255, 255, 0.98);
                backdrop-filter: blur(16px);
                box-shadow: -5px 0 25px rgba(0, 0, 0, 0.05);
                transition: right 0.3s ease;
                padding: 2rem 1.5rem;
                justify-content: flex-start;
            }
            
            .nav-menu.active {
                right: 0;
            }
            
            .nav-links {
                flex-direction: column;
                gap: 1.5rem;
                width: 100%;
            }
            
            .nav-links li a {
                display: block;
                font-size: 1.2rem;
                padding: 0.5rem 0;
            }
            
            .nav-links li a.active::after {
                width: 40px;
            }
            
            .nav-cta {
                margin-right: auto;
            }
            
            .btn-consult {
                padding: 0.5rem 1.2rem;
                font-size: 0.85rem;
            }
        }

        /* Small Mobile */
        @media (max-width: 550px) {
            .nav-container {
                padding: 0 1.2rem;
            }
            
            .nav-logo a {
                font-size: 1.3rem;
            }
            
            .btn-consult {
                padding: 0.45rem 1rem;
                font-size: 0.8rem;
            }
            
            .nav-menu {
                top: 62px;
                height: calc(100vh - 62px);
            }
        }

        /* Optional: Scroll effect - add shadow on scroll */
        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            padding: 0.6rem 0;
        }


        /* Hero Container */
        .hero {
            min-height: 100vh;
            background: linear-gradient(135deg, rgba(147, 91, 152, 0.03) 0%, rgba(186, 21, 104, 0.02) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem 1.5rem;
        }

        .hero-content {
            max-width: 1280px;
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 3rem;
        }

        /* Left Text Area */
        .hero-text {
            flex: 1.2;
            min-width: 280px;
        }

        .badge {
            display: inline-block;
            background: rgba(186, 21, 104, 0.1);
            padding: 0.5rem 1.2rem;
            border-radius: 40px;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--secondary);
            letter-spacing: 0.3px;
            margin-bottom: 1.5rem;
            border: 1px solid rgba(186, 21, 104, 0.2);
        }

        .hero-title {
            font-size: 50px;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1.2rem;
            color: #1a1e2b;
        }

        .hero-title span {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 80%);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            display: inline-block;
        }

        .hero-description {
            font-size: 1.1rem;
            line-height: 1.6;
            color: var(--gray-text);
            margin-bottom: 2rem;
            max-width: 550px;
        }

        /* List of Services */
        .services-list {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .service-item {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            background: var(--gray-light);
            padding: 0.5rem 1.2rem;
            border-radius: 60px;
            font-size: 0.9rem;
            font-weight: 500;
            color: #2c2f36;
        }

        .service-item::before {
            content: "✓";
            color: var(--gold);
            font-weight: bold;
            font-size: 1.2rem;
        }

        /* CTA Buttons */
        .cta-group {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 0.5rem;
        }

        .btn-primary {
            background: var(--primary);
            color: white;
            padding: 0.9rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            border: none;
            cursor: pointer;
            font-size: 1rem;
            box-shadow: 0 4px 12px rgba(147, 91, 152, 0.25);
        }

        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 12px 20px rgba(147, 91, 152, 0.3);
        }

        .btn-outline {
            background: transparent;
            color: var(--secondary);
            padding: 0.9rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            border: 2px solid var(--secondary);
        }

        .btn-outline:hover {
            background: var(--secondary);
            color: white;
            transform: translateY(-3px);
        }

        /* Right Visual Area */
        .hero-visual {
            flex: 0.9;
            min-width: 260px;
            position: relative;
        }

        .card-stack {
            background: var(--white);
            border-radius: 32px;
            padding: 2rem;
            box-shadow: var(--shadow-sm);
            border: 1px solid rgba(0, 0, 0, 0.03);
            background: linear-gradient(145deg, #ffffff 0%, #fefbff 100%);
        }

        .stat {
            margin-bottom: 1.8rem;
        }

        .stat-number {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
        }

        .stat-label {
            color: var(--gray-text);
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 0.5px;
        }

        .divider {
            height: 2px;
            background: linear-gradient(90deg, var(--gold), transparent);
            margin: 1rem 0;
        }

        .trust-badge {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            margin-top: 1rem;
            padding-top: 1rem;
        }

        .trust-icon {
            background: rgba(252, 172, 1, 0.15);
            padding: 0.5rem;
            border-radius: 60px;
            font-size: 1.5rem;
        }

        .trust-text {
            font-size: 0.8rem;
            color: var(--gray-text);
            font-weight: 500;
        }

        /* Responsive */
        @media (max-width: 900px) {
            .hero-content {
                flex-direction: column;
                text-align: center;
            }
            
            .hero-description {
                margin-left: auto;
                margin-right: auto;
            }
            
            .services-list {
                justify-content: center;
            }
            
            .cta-group {
                justify-content: center;
            }
        }



        /* ============================================ */
        /* ABOUT US SECTION - AR/EN Toggle Ready */
        /* ============================================ */

        .about {
            padding: 5rem 1.5rem;
            background: linear-gradient(135deg, #fefbff 0%, #f9f5fc 100%);
        }

        .about-container {
            max-width: 1280px;
            margin: 0 auto;
        }

        /* Section Header with Toggle */
        .about-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 3rem;
        }

        .section-badge {
            background: rgba(147, 91, 152, 0.1);
            padding: 0.4rem 1.2rem;
            border-radius: 40px;
            font-size: 0.85rem;
            font-weight: 600;
            color: #935b98;
            display: inline-block;
        }

        /* Language Toggle Button */
        .lang-toggle-wrapper {
            display: flex;
            justify-content: flex-end;
        }

        .lang-toggle-btn {
            background: #f0f0f0;
            border: none;
            border-radius: 50px;
            padding: 0.3rem;
            display: flex;
            gap: 0.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .lang-toggle-btn span {
            padding: 0.4rem 1rem;
            border-radius: 40px;
            font-size: 0.85rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .lang-toggle-btn span.lang-ar {
            color: #6d7476;
        }

        .lang-toggle-btn span.lang-en {
            color: #6d7476;
        }

        .lang-toggle-btn span.active {
            background: linear-gradient(135deg, #935b98, #ba1568);
            color: white;
            box-shadow: 0 2px 8px rgba(147, 91, 152, 0.2);
        }

        /* About Title */
        .about-title {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            font-weight: 700;
            color: #1a1e2b;
            margin-bottom: 1.2rem;
            line-height: 1.3;
        }

        .about-title span {
            background: linear-gradient(135deg, #935b98, #ba1568);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
        }

        .about-desc {
            font-size: 1.05rem;
            line-height: 1.7;
            color: #6d7476;
            margin-bottom: 2.5rem;
            max-width: 800px;
        }

        /* About Grid Cards */
        .about-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.8rem;
            margin-bottom: 3rem;
        }

        .about-card {
            background: white;
            padding: 1.8rem;
            border-radius: 24px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
            transition: all 0.3s ease;
            border: 1px solid rgba(147, 91, 152, 0.08);
        }

        .about-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 16px 32px rgba(147, 91, 152, 0.1);
            border-color: rgba(147, 91, 152, 0.2);
        }

        .about-icon {
            font-size: 2.2rem;
            margin-bottom: 1rem;
        }

        .about-card h3 {
            font-size: 1.2rem;
            font-weight: 700;
            color: #1a1e2b;
            margin-bottom: 0.7rem;
        }

        .about-card p {
            font-size: 0.9rem;
            line-height: 1.6;
            color: #6d7476;
        }

        /* Stats Row */
        .about-stats {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
            background: white;
            padding: 2rem 2rem;
            border-radius: 32px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            border: 1px solid rgba(147, 91, 152, 0.1);
        }

        .stat-item {
            text-align: center;
            flex: 1;
            min-width: 100px;
        }

        .stat-item .stat-number {
            display: block;
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #935b98, #ba1568);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            margin-bottom: 0.3rem;
        }

        .stat-item .stat-label {
            font-size: 0.85rem;
            color: #6d7476;
            font-weight: 500;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .about {
                padding: 3rem 1.2rem;
            }
            
            .about-header {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .about-stats {
                flex-direction: column;
                align-items: center;
                gap: 1.5rem;
            }
            
            .stat-item {
                width: 100%;
            }
        }

        /* ============================================ */
        /* SERVICES SECTION - Header on Top Right */
        /* ============================================ */

        .services {
            padding: 5rem 1.5rem;
            background:linear-gradient(135deg, #fefbff 0%, #f9f5fc 100%);
        }

        .services-container {
            max-width: 1280px;
            margin: 0 auto;
        }

        /* Header on Top Right - matching About Us */
        .services-header {
            display: flex;
            justify-content: flex-start;
            margin-bottom: 3rem;
        }

        .services-header .section-badge {
            background: rgba(147, 91, 152, 0.1);
            padding: 0.4rem 1.2rem;
            border-radius: 40px;
            font-size: 0.85rem;
            font-weight: 600;
            color: #935b98;
            display: inline-block;
        }

        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        /* Service Card */
        .service-card {
            background: #ffffff;
            border-radius: 24px;
            padding: 2rem 1.5rem;
            transition: all 0.3s ease;
            border: 1px solid rgba(147, 91, 152, 0.1);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
        }

        .service-card:hover {
            transform: translateY(-6px);
            border-color: rgba(147, 91, 152, 0.2);
            box-shadow: 0 20px 30px -12px rgba(147, 91, 152, 0.15);
        }

        .service-icon {
            font-size: 2.8rem;
            /* margin-bottom: 1.2rem; */
        }

        .service-card h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: #1a1e2b;
            margin-bottom: 0.8rem;
        }

        .service-card p {
            font-size: 0.9rem;
            line-height: 1.6;
            color: #6d7476;
            margin-bottom: 1.2rem;
        }

        .service-features {
            list-style: none;
            padding: 0;
            margin-bottom: 1.5rem;
        }

        .service-features li {
            font-size: 0.85rem;
            color: #5a5f6e;
            padding: 0.4rem 0;
            padding-right: 1.2rem;
            position: relative;
        }

        .service-features li::before {
            content: "✓";
            position: absolute;
            right: 0;
            color: #fcac01;
            font-weight: bold;
            font-size: 0.9rem;
        }

        .service-link {
            display: inline-block;
            color: #ba1568;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .service-link:hover {
            color: #935b98;
            transform: translateX(-4px);
            display: inline-block;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .services {
                padding: 3rem 1.2rem;
            }
            
            .services-header {
                margin-bottom: 2rem;
            }
            
            .services-grid {
                gap: 1.5rem;
            }
            
            .service-card {
                padding: 1.5rem;
            }
        }

    /* ============================================ */
    /* TENDERS & OPPORTUNITIES TABLE */
    /* ============================================ */

    .tenders {
        padding: 5rem 1.5rem;
        background: linear-gradient(135deg, #fefbff 0%, #f9f5fc 100%);
    }

    .tenders-container {
        max-width: 1280px;
        margin: 0 auto;
    }

    /* Header on Top Right */
    .tenders-header {
        display: flex;
        justify-content: flex-start;
        margin-bottom: 2rem;
    }

    .tenders-header .section-badge {
        background: rgba(147, 91, 152, 0.1);
        padding: 0.4rem 1.2rem;
        border-radius: 40px;
        font-size: 0.85rem;
        font-weight: 600;
        color: #935b98;
        display: inline-block;
    }

    /* Tenders Content */
    .tenders-content {
        margin-top: 0.5rem;
    }

    .tenders-title {
        font-size: clamp(1.8rem, 4vw, 2.3rem);
        font-weight: 700;
        color: #1a1e2b;
        margin-bottom: 1rem;
    }

    .tenders-title span {
        background: linear-gradient(135deg, #935b98, #ba1568);
        background-clip: text;
        -webkit-background-clip: text;
        color: transparent;
    }

    .tenders-subtitle {
        font-size: 1rem;
        color: #6d7476;
        margin-bottom: 2rem;
        line-height: 1.6;
    }

    /* Table Wrapper - Responsive */
    .table-wrapper {
        overflow-x: auto;
        margin: 1.5rem 0 2rem;
        border-radius: 20px;
        background: white;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    }

    .tenders-table {
        width: 100%;
        border-collapse: collapse;
        font-size: 0.9rem;
        min-width: 700px;
    }

    .tenders-table thead tr {
        background: linear-gradient(135deg, #935b98, #ba1568);
        color: white;
    }

    .tenders-table th {
        padding: 1rem 1.2rem;
        text-align: right;
        font-weight: 600;
        font-size: 0.9rem;
    }

    .tenders-table td {
        padding: 1rem 1.2rem;
        border-bottom: 1px solid #f0eef2;
        color: #2c2f36;
        vertical-align: middle;
    }

    .tenders-table tbody tr:hover {
        background-color: rgba(147, 91, 152, 0.03);
    }

    /* Status Badges */
    .status {
        display: inline-block;
        padding: 0.25rem 0.8rem;
        border-radius: 50px;
        font-size: 0.75rem;
        font-weight: 600;
    }

    .status.active {
        background: rgba(147, 91, 152, 0.15);
        color: #935b98;
    }

    .status.pending {
        background: rgba(252, 172, 1, 0.15);
        color: #c48c00;
    }

    /* Tender Link Button */
    .tender-link {
        display: inline-block;
        background: transparent;
        color: #ba1568;
        text-decoration: none;
        font-weight: 600;
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
        border-radius: 30px;
        transition: all 0.3s ease;
        white-space: nowrap;
    }

    .tender-link:hover {
        background: #ba1568;
        color: white;
        transform: translateX(-3px);
    }

    .tender-link.disabled {
        color: #b0a8b5;
        cursor: not-allowed;
    }

    .tender-link.disabled:hover {
        background: transparent;
        color: #b0a8b5;
        transform: none;
    }

    /* Note Box */
    .tenders-note {
        display: flex;
        align-items: center;
        gap: 1rem;
        background: rgba(147, 91, 152, 0.05);
        padding: 1rem 1.5rem;
        border-radius: 16px;
        border-right: 3px solid #fcac01;
        margin-top: 1.5rem;
    }

    .note-icon {
        font-size: 1.5rem;
    }

    .tenders-note p {
        font-size: 0.9rem;
        color: #5a5f6e;
        line-height: 1.5;
        margin: 0;
    }

    .tenders-note a {
        color: #ba1568;
        text-decoration: none;
        font-weight: 600;
    }

    .tenders-note a:hover {
        color: #935b98;
        text-decoration: underline;
    }

    /* Responsive - Mobile Table */
    @media (max-width: 768px) {
        .tenders {
            padding: 3rem 1.2rem;
        }
        
        .tenders-table {
            min-width: 550px;
        }
        
        .tenders-table th,
        .tenders-table td {
            padding: 0.75rem 1rem;
            font-size: 0.8rem;
        }
        
        .tenders-note {
            flex-direction: column;
            text-align: center;
            gap: 0.5rem;
        }
    }

    /* ============================================ */
    /* CONTACT SECTION - Smart Form */
    /* ============================================ */

    .contact {
        padding: 5rem 1.5rem;
        background: #ffffff;
    }

    .contact-container {
        max-width: 1280px;
        margin: 0 auto;
    }

    /* Header on Top Right */
    .contact-header {
        display: flex;
        justify-content: flex-start;
        margin-bottom: 2rem;
    }

    .contact-header .section-badge {
        background: rgba(147, 91, 152, 0.1);
        padding: 0.4rem 1.2rem;
        border-radius: 40px;
        font-size: 0.85rem;
        font-weight: 600;
        color: #935b98;
        display: inline-block;
    }

    /* Contact Wrapper (2 Columns) */
    .contact-wrapper {
        display: flex;
        flex-wrap: wrap;
        gap: 3rem;
        margin-top: 0.5rem;
    }

    /* Left Side - Contact Info */
    .contact-info {
        flex: 1;
        min-width: 280px;
    }

    .contact-title {
        font-size: clamp(1.8rem, 4vw, 2.3rem);
        font-weight: 700;
        color: #1a1e2b;
        margin-bottom: 1rem;
    }

    .contact-title span {
        background: linear-gradient(135deg, #935b98, #ba1568);
        background-clip: text;
        -webkit-background-clip: text;
        color: transparent;
    }

    .contact-desc {
        font-size: 1rem;
        line-height: 1.6;
        color: #6d7476;
        margin-bottom: 2rem;
    }

    /* Info List */
    .info-list {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .info-item {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .info-icon {
        width: 48px;
        height: 48px;
        background: rgba(147, 91, 152, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
    }

    .info-text h4 {
        font-size: 1rem;
        font-weight: 700;
        color: #1a1e2b;
        margin-bottom: 0.2rem;
    }

    .info-text p {
        font-size: 0.9rem;
        color: #6d7476;
    }

    /* Social Links */
    .social-links {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .social-icon {
        background: #f5f5f7;
        padding: 0.6rem 1.2rem;
        border-radius: 40px;
        text-decoration: none;
        font-size: 0.85rem;
        font-weight: 500;
        color: #935b98;
        transition: all 0.3s ease;
    }

    .social-icon:hover {
        background: linear-gradient(135deg, #935b98, #ba1568);
        color: white;
        transform: translateY(-2px);
    }

    /* Right Side - Form */
    .contact-form-wrapper {
        flex: 1.2;
        min-width: 300px;
        background: #fefbff;
        padding: 2rem;
        border-radius: 28px;
        box-shadow: 0 8px 28px rgba(0, 0, 0, 0.04);
        border: 1px solid rgba(147, 91, 152, 0.08);
    }

    .contact-form {
        display: flex;
        flex-direction: column;
        gap: 1.2rem;
    }

    .form-row {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .form-row .form-group {
        flex: 1;
        min-width: 150px;
    }

    .form-group {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .form-group label {
        font-size: 0.85rem;
        font-weight: 600;
        color: #2c2f36;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.8rem 1rem;
        border: 1px solid #e0dce5;
        border-radius: 12px;
        font-size: 0.9rem;
        font-family: inherit;
        transition: all 0.3s ease;
        background: white;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: #935b98;
        box-shadow: 0 0 0 3px rgba(147, 91, 152, 0.1);
    }

    .form-group textarea {
        resize: vertical;
    }

    .submit-btn {
        background: linear-gradient(135deg, #935b98, #ba1568);
        color: white;
        padding: 0.9rem 1.5rem;
        border: none;
        border-radius: 50px;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        margin-top: 0.5rem;
    }

    .submit-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(147, 91, 152, 0.3);
    }

    /* Responsive */
    @media (max-width: 900px) {
        .contact {
            padding: 3rem 1.2rem;
        }
        
        .contact-wrapper {
            flex-direction: column;
        }
        
        .contact-form-wrapper {
            padding: 1.5rem;
        }
    }

    /* ============================================ */
/* FOOTER SECTION */
/* ============================================ */

.footer {
    background: linear-gradient(135deg, #0f0c12 0%, #1a1520 100%);
    color: #b8b4c2;
    padding: 3rem 1.5rem 1.5rem;
    margin-top: 2rem;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
}

/* Footer Top - 4 Columns */
.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Footer Columns */
.footer-col h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    position: relative;
    display: inline-block;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -6px;
    right: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #935b98, #ba1568);
    border-radius: 2px;
}

/* Logo */
.footer-logo a {
    font-size: 1.6rem;
    font-weight: 800;
    text-decoration: none;
    background: linear-gradient(135deg, #935b98, #ba1568);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.footer-desc {
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 1rem 0;
    color: #b8b4c2;
}

.footer-contact p {
    font-size: 0.85rem;
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #b8b4c2;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.7rem;
}

.footer-links a {
    color: #b8b4c2;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #fcac01;
    transform: translateX(-3px);
}

/* Working Hours */
.working-hours p {
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
}

.working-hours .time {
    color: #fcac01;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

/* Social in Footer */
.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.footer-social .social-link {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.4rem 1rem;
    border-radius: 30px;
    color: #b8b4c2;
    text-decoration: none;
    font-size: 0.75rem;
    transition: all 0.3s ease;
}

.footer-social .social-link:hover {
    background: linear-gradient(135deg, #935b98, #ba1568);
    color: white;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    font-size: 0.8rem;
}

.footer-bottom p {
    color: #8a8696;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: #8a8696;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #fcac01;
}

/* Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 2rem 1.2rem 1rem;
    }
    
    .footer-top {
        gap: 1.8rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
}


    /* ============================================ */
/* WHATSAPP FLOATING BUTTON */
/* ============================================ */

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    left: 25px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    cursor: pointer;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    background-color: #20b859;
}

.whatsapp-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Tooltip - shows on hover */
.whatsapp-tooltip {
    position: absolute;
    background: #1a1e2b;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    white-space: nowrap;
    left: 70px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    font-weight: 500;
    pointer-events: none;
}

.whatsapp-tooltip::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent #1a1e2b transparent transparent;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Pulse animation (attention-grabbing) */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-float {
    animation: pulse 2s infinite;
}

/* Hover stops animation */
.whatsapp-float:hover {
    animation: none;
}

/* Responsive - Smaller on mobile */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        left: 20px;
    }
    
    .whatsapp-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}

/* Position adjustment for RTL (left side is fine, but if you want right side) */
/* If you prefer the button on the RIGHT side instead, use this: */
/*
.whatsapp-float {
    right: 25px;
    left: auto;
}
.whatsapp-tooltip {
    right: 70px;
    left: auto;
}
.whatsapp-tooltip::before {
    right: -6px;
    left: auto;
    border-color: transparent transparent transparent #1a1e2b;
}
*/










 /* ============================================ */
/* CLIENTS SLIDER SECTION - عملاؤنا (Carousel) */
/* ============================================ */

.clients-slider {
    padding: 5rem 1.5rem;
    background: #ffffff;
}

.clients-container {
    max-width: 1280px;
    margin: 0 auto;
}

.clients-header {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 2rem;
}

.clients-header .section-badge {
    background: rgba(147, 91, 152, 0.1);
    padding: 0.4rem 1.2rem;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #935b98;
    display: inline-block;
}

.clients-content {
    margin-top: 0.5rem;
}

.clients-title {
    font-size: clamp(1.8rem, 4vw, 2.3rem);
    font-weight: 700;
    color: #1a1e2b;
    margin-bottom: 1rem;
}

.clients-title span {
    background: linear-gradient(135deg, #935b98, #ba1568);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.clients-subtitle {
    font-size: 1rem;
    color: #6d7476;
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 600px;
}

/* Slider Container */
.slider-container {
    position: relative;
    overflow: hidden;
    margin: 0 -0.5rem;
    padding: 0.5rem 0;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 1.5rem;
}

/* Client Slide */
.client-slide {
    flex: 0 0 calc(20% - 1.2rem); /* 5 slides per row on desktop */
    min-width: 0;
    background: #fefbff;
    border-radius: 20px;
    padding: 1.5rem 0.8rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(147, 91, 152, 0.08);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.client-slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(147, 91, 152, 0.08);
    border-color: rgba(147, 91, 152, 0.2);
}

.client-icon-placeholder {
    width: 60px;
    height: 60px;
    margin: 0 auto 0.8rem;
    background: linear-gradient(135deg, rgba(147, 91, 152, 0.1), rgba(186, 21, 104, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.client-slide:hover .client-icon-placeholder {
    background: linear-gradient(135deg, #935b98, #ba1568);
    transform: scale(1.05);
}

.client-slide p {
    font-size: 0.85rem;
    font-weight: 500;
    color: #2c2f36;
    margin: 0;
    line-height: 1.4;
}

/* Navigation Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 1px solid rgba(147, 91, 152, 0.2);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    color: #935b98;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.slider-btn:hover {
    background: linear-gradient(135deg, #935b98, #ba1568);
    color: white;
    border-color: transparent;
}

.prev-btn {
    left: -10px;
}

.next-btn {
    right: -10px;
}

/* Dots Indicators */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d0cbd8;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: linear-gradient(135deg, #935b98, #ba1568);
    width: 24px;
    border-radius: 10px;
}

/* Responsive */
@media (max-width: 1024px) {
    .client-slide {
        flex: 0 0 calc(33.333% - 1rem); /* 3 slides */
    }
}

@media (max-width: 768px) {
    .clients-slider {
        padding: 3rem 1.2rem;
    }
    
    .client-slide {
        flex: 0 0 calc(50% - 0.75rem); /* 2 slides */
    }
    
    .slider-btn {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
    
    .prev-btn {
        left: -5px;
    }
    
    .next-btn {
        right: -5px;
    }
}

@media (max-width: 480px) {
    .client-slide {
        flex: 0 0 calc(100% - 0rem); /* 1 slide */
    }
    
    .client-icon-placeholder {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

/* Custom Style for Owl Carousel Navigation */
.clients-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    pointer-events: none; /* Allows clicking through the container to the buttons */
}
.clients-carousel .owl-nav button {
    position: absolute;
    pointer-events: auto; /* Ensures the buttons themselves are clickable */
    background: rgba(255, 255, 255, 0.9) !important; /* Semi-transparent background */
    border-radius: 50% !important;
    width: 40px;
    height: 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.clients-carousel .owl-prev {
    left: -20px; /* Position the "previous" button */
}
.clients-carousel .owl-next {
    right: -20px; /* Position the "next" button */
}
.clients-carousel .owl-nav svg {
    vertical-align: middle; /* Aligns the SVG icon */
}

/* Force navigation buttons and dots to always show */
.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
    display: block !important;
}

/* Optional: also ensure they are visible if you want them always */
.owl-carousel .owl-nav,
.owl-carousel .owl-dots {
    display: block !important;
}

.info-icon i {
    font-size: 1.3rem;
    color: #935b98;
}