.container,.cover-section,h2{text-align:center}.contact-form button,.phone-box,.prime-phone-box{background-color:var(--primary-color);transition:background-color .3s,transform .3s}.cover-content h3,.info-box a:hover{color:var(--active-color)}.cover-section{background-image:url('your-cover-image.jpg');background-size:cover;background-position:center;height:70vh;display:flex;align-items:center;justify-content:center;position:relative;color:#fff}.cover-section::before{content:'';position:absolute;top:0;left:0;width:100%;height:100%;background-color:var(--primary-color);opacity:.7;z-index:1}.cover-content{z-index:2;padding:20px}.cover-content h3{font-size:48px;margin-bottom:10px}.cover-content h5{font-size:24px;color:var(--background-color)}h2{font-size:2rem;margin-bottom:20px;color:var(--primary-color)}.container{width:80%;margin:0 auto;padding:40px 0}.row{display:flex;flex-wrap:wrap;justify-content:center;gap:40px}.left-col,.right-col{flex:1;min-width:300px}.phone-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:20px;margin-bottom:20px}.phone-box,.prime-phone-box{color:var(--background-color);text-align:center;padding:20px;border-radius:8px;font-size:1.2rem;text-decoration:none;box-shadow:0 5px 15px rgba(0,0,0,.1);font-weight:700}.phone-box:hover,.prime-phone-box:hover{background-color:var(--hover-color);transform:scale(1.05)}.prime-number{margin-top:30px}.prime-phone-box{background-color:var(--active-color);color:var(--secondary-color)}.prime-phone-box:hover{background-color:var(--hover-color)}.contact-form{background-color:var(--background-color);padding:30px;border-radius:10px;box-shadow:0 5px 20px rgba(0,0,0,.1);text-align:right;animation:.7s ease-in-out fadeIn}.map-container,.map-content{box-shadow:0 5px 15px rgba(0,0,0,.1)}.contact-form label{font-size:1.1rem;margin-bottom:10px;display:block;color:var(--secondary-color)}.contact-form input,.contact-form textarea{width:100%;padding:15px;margin-bottom:20px;border:1px solid #ddd;border-radius:5px;font-size:1rem}.contact-form button{color:var(--background-color);border:none;padding:15px;border-radius:5px;font-size:1.2rem;cursor:pointer;width:100%}.contact-form button:hover{background-color:var(--active-color);transform:scale(1.05)}@keyframes fadeIn{from{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}.map-container{width:100%;height:500px;border-radius:10px;border:2px solid var(--secondary-color);margin-bottom:40px}.map-content{display:flex;flex-direction:column;gap:20px;background-color:var(--light-gray);padding:20px;border-radius:10px;text-align:right}.info-box{padding:20px;background-color:#fff;border:1px solid #ddd;border-radius:8px;box-shadow:0 3px 10px rgba(0,0,0,.1)}.info-box h3{font-size:1.5rem;color:var(--primary-color);margin-bottom:10px}.info-box p{font-size:1.2rem;color:var(--secondary-color)}.info-box a{color:var(--primary-color);text-decoration:none;font-weight:700}@media (max-width:768px){.cover-content h3{font-size:32px}.cover-content h5{font-size:18px}.row{flex-direction:column}.contact-form{margin-top:20px}.container{width:90%}.map-container{height:300px}.info-box{padding:15px}.cover-section{height:40vh!important}}
:root {
    --primary-color: #0F8975;
    --secondary-color: #060609;
    --background-color: #F1FFFF;
    --hover-color: #0F8975;
    --active-color: #19cca5;
    --light-gray: #f0f0f0;
    --gradient-primary: linear-gradient(135deg, #0F8975, #19cca5);
    --shadow-light: 0 4px 15px rgba(0, 0, 0, 0.1);
    --shadow-heavy: 0 8px 30px rgba(0, 0, 0, 0.2);
    --white: #fff;
    --text-dark: #333;
    --text-muted: #666;
}

/* General Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', sans-serif;
    direction: rtl;
    background-color: var(--background-color);
    color: var(--text-dark);
    line-height: 1.6;
}

h2, h3 {
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

/* Layout Containers */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.cover-section {
    background-image: url('your-cover-image.jpg');
    background-size: cover;
    background-position: center;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--white);
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    animation: fadeInBackground 1s ease-out;
    overflow: hidden;
}

.cover-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    opacity: 0.8;
    z-index: 1;
}

.cover-content {
    z-index: 2;
    text-align: center;
    animation: fadeIn 1s ease-out;
}

.cover-content h3 {
    font-size: 54px;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--active-color);
    animation: slideInRight 0.8s ease-out;
}

.cover-content h5 {
    font-size: 24px;
    color: var(--background-color);
    font-weight: 400;
}

@keyframes fadeInBackground {
    0% {
        opacity: 0;
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInRight {
    0% {
        transform: translateX(100px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Buttons */
button, .btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.primary-btn {
    background-color: var(--primary-color);
    color: var(--white);
}

.primary-btn:hover {
    background-color: var(--active-color);
    transform: translateY(-5px);
}

.secondary-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.secondary-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px);
}

/* Phone Section */
.phone-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 60px 0;
    animation: fadeIn 0.5s ease-in-out;
}

.phone-box, .prime-phone-box {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 20px;
    border-radius: 12px;
    font-size: 1.2rem;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    box-shadow: var(--shadow-light);
    transition: background-color 0.3s ease, transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.phone-box:hover, .prime-phone-box:hover {
    background-color: var(--hover-color);
    transform: scale(1.05);
    box-shadow: var(--shadow-heavy);
}

.prime-phone-box {
    background: var(--gradient-primary);
    color: var(--secondary-color);
}

.prime-phone-box:hover {
    background-color: var(--hover-color);
}

/* Contact Form */
.contact-form {
    background-color: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    text-align: right;
    animation: fadeIn 0.7s ease-in-out;
}

.contact-form label {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    display: block;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.contact-form button {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    width: 100%;
    font-size: 1.2rem;
    padding: 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: var(--active-color);
    transform: scale(1.05);
}

/* Info Boxes */
.info-box {
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.info-box h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.info-box p {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.info-box a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.info-box a:hover {
    color: var(--active-color);
}

/* Map Section */
.map-container {
    width: 100%;
    height: 500px;
    border-radius: 10px;
    border: 2px solid var(--secondary-color);
    margin-bottom: 40px;
    box-shadow: var(--shadow-light);
}

.map-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--shadow-light);
}

/* Animations */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styling */
@media (max-width: 768px) {
    .container {
        width: 90%;
    }

    .cover-section {
        height: 50vh;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .phone-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        margin-top: 20px;
    }

    .map-container {
        height: 300px;
    }

    .cover-content h3 {
        font-size: 36px;
    }

    .cover-content h5 {
        font-size: 18px;
    }
}
