
        :root {
            --primary-blue: #0569B0;
            --secondary-blue: #2C7BAD;
            --light-blue: #EAF2F7;
            --orange: #F5B034;
            --dark-orange: #E56844;
            --white: #FFFFFF;
            --off-white: #FCF0EC;
            --light-bg: #F2FAFF;
            --dark-text: #502418;
            --section-padding: 80px 5%;
            --border-radius: 17px;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Cairo', sans-serif;
        }
        @font-face {
            font-family: Cairo;
            src: url(fonts/alfont_com_Cairo-Regular.ttf);
        }
       body {
    background-color: #fff;
    color: #502418;
    overflow-x: hidden;
    padding-top: 120px; /* Adjust according to your header height */
}

        
        .container {
            max-width: 100%;
            margin: 0 auto;
            position: relative;
        }
       
        
        /* الهيدر */
        .page-header {
            text-align: center;
            padding: 60px 20px 40px;
        }
        
        .page-header h1 {
            color: #CE5E3D;
            font-size: 64px;
            font-weight: 700;
            margin-bottom: 40px;
        }
        
        .page-header p {
            color: #1D608B;
            font-size: 32px;
            font-weight: 700;
            max-width: 900px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        /* خريطة الفروع */
        .branches-map {
            position: relative;
            height: 800px;
            margin: 40px auto;
            max-width: 1200px;
            background: url('assets/images/Yemen.png') no-repeat center;
            background-size: contain;
        }
        
        .branch-marker {
            position: absolute;
            width: 47px;
            height: 47px;
            background: #D62553;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            font-size: 20px;
            cursor: pointer;
            animation: bounce 3s infinite ease-in-out;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        @keyframes bounce {
            0%, 100% { transform: scale(1);
            opacity: 0.1; 
            }
            50% { transform: scale(1.5);
                opacity: 1; 
            }
        }
        
        .branch-marker:hover {
            transform: scale(1.2);
            box-shadow: 0 0 15px rgba(214, 37, 83, 0.7);
        }
        
        .branch-info {
            position: absolute;
            background: #D6FFFB;
            padding: 10px 15px;
            border-radius: 11px;
            color: #1D608B;
            font-size: 16px;
            font-weight: 700;
            text-align: center;
            min-width: 150px;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s, visibility 0.3s;
            z-index: 10;
        }
        
        .branch-marker:hover .branch-info {
            opacity: 1;
            visibility: visible;
        }
        
        /* تحديد مواقع الفروع (يتم ضبطها حسب التصميم) */
        .branch-1 { top: 30%; left: 30%; }
        .branch-2 { top: 50%; left: 25%; }
        .branch-3 { top: 70%; left: 45%; }
        .branch-4 { top: 60%; left: 3%; }
        .branch-5 { top: 74%; left: 18%; }
        .branch-6 { top: 50%; left: 13%; }
        .branch-7 { top: 70%; left: 60%; }
        .branch-8 { top: 50%; left: 60%; }
        .branch-9 { top: 90%; left: 18%; }
        
        /* قسم التغطية */
        .coverage {
            text-align: center;
            padding: 80px 20px;
            background: #f8f8f8;
        }
        
        .coverage h2 {
            color: #238A9B;
            font-size: 40px;
            font-weight: 700;
            margin-bottom: 40px;
        }
        
        .coverage p {
            color: #502418;
            font-size: 32px;
            font-weight: 400;
            max-width: 1000px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        /* قسم الاشتراك */
        .subscribe {
            background: #2C7BAD;
            color: white;
            text-align: center;
        }
        
        .subscribe h2 {
            font-size: 64px;
            margin-bottom: 40px;
            color: #F5B034;
        }
        .contact-info {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.1rem;
        }
        .subscribe {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .subscribe-title {
            font-size: 1.8rem;
            margin-bottom: 10px;
        }
        
        .subscribe-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .submit-btn {
            background: var(--primary-blue);
            color: #DFEBF3;
            border: none;
            font-family: Cairo;
            padding: 15px 30px;
            border-radius: 8px;
            font-size: 20px;
            cursor: pointer;
            width: 30%;
            transition: background 0.3s;
        }
        
        .submit-btn:hover {
            background: #0f2e44;
        }
                .form-input {
            background-color: var(--off-white);
            border-radius: 8px;
            padding: 15px 20px;
            border: none;
            text-align: right;
            font-size: 1rem;
            color: #333;
                        font-family: Cairo;

        }
        
        .form-input::placeholder {
            color: #999;
        }
        .contact-form {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-top: 40px;
            width: 100%;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group.full {
            grid-column: 1 / span 2;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            border-radius: 8px;
            border: none;
            font-size: 16px;
        }
        
        .form-group textarea {
            height: 130px;
        }
        
        .submit-btn {
            background: #1A4A68;
            color: #DFEBF3;
            border: none;
            padding: 15px 30px;
            border-radius: 8px;
            font-size: 20px;
            cursor: pointer;
            transition: background 0.3s;
        }
        
        .submit-btn:hover {
            background: #0f2e44;
        }
        
        .social-icons {
            display: flex;
            justify-content: center;
            gap: 29px;
            margin-top: 40px;
        }
        
        .social-icon {
            width: 30px;
            height: 30px;
            background: #DD8B52;
            border-radius: 6px;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
        }
        .footer {
            width: 100%;
            background-color: var(--secondary-blue);
            padding: var(--section-padding);
            color: var(--white);
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 50px;
        }
        
        .footer-info {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .footer-logo {
            width: 200px;
            height: 100px;
            background: image(url(/img/الشعار.png));
            border-radius: var(--border-radius);
            display: flex;
            justify-content: center;
            align-items: center;
            color: var(--white);
            font-weight: 700;
            font-size: 1.5rem;
        }
        .contact-info {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.1rem;
        }
        /* WhatsApp icon */
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 400px;
            left: 40px;
            background-color: #25d3663b;
            color: #FFF;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: 1s;
        }
        .whatsapp-float:hover{
            background-color: #25d366;
            transition: 1s;
        }
        
        /* Responsive design */
        @media (max-width: 1024px) {
            .branches-map {
                height: 600px;
            }
            
            .page-header h1 {
                font-size: 48px;
            }
            
            .page-header p {
                font-size: 28px;
            }
            
            .coverage h2 {
                font-size: 36px;
            }
            
            .coverage p {
                font-size: 28px;
            }
            
            .subscribe h2 {
                font-size: 48px;
            }
        }
        
        @media (max-width: 768px) {
        
            
            .page-header h1 {
                font-size: 36px;
            }
            
            .page-header p {
                font-size: 22px;
            }
            
            .branches-map {
                height: 400px;
            }
            
            .branch-marker {
                width: 35px;
                height: 35px;
                font-size: 16px;
            }
            
            .branch-info {
                font-size: 14px;
                min-width: 120px;
            }
            
            .coverage h2 {
                font-size: 28px;
            }
            
            .coverage p {
                font-size: 20px;
            }
            
            .subscribe h2 {
                font-size: 36px;
            }
            
            .contact-form {
                grid-template-columns: 1fr;
            }
            
            .form-group.full {
                grid-column: 1;
            }
        }
  