/* إعدادات عامة */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;




}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;

}

/* تنسيق الحاوية الرئيسية للشعار */
.logo {
    display: flex;
    /* يجعل العناصر بداخلها على نفس الخط */
    align-items: center;
    /* يجعل الشعار والنص بمحاذاة رأسية */
    gap: 0px;
    /* مسافة بين الصورة والنص */
    height: 60px;
    /* تحديد ارتفاع ثابت للحاوية */
}

/* تنسيق الشعار (الصورة) */
.logo img {
    width: 90px;
    /* حجم الشعار */
    height: auto;
    /* يحافظ على نسبة العرض إلى الارتفاع */
    object-fit: contain;
    /* يحافظ على أبعاد الصورة */
}










/* تنسيق النص */
.logo h1 {



    /* حجم النص */
    margin: 0;
    /* إزالة الهوامش الافتراضية */

}














.hero {
    background-image: url(../images/5.jpg);
    position: relative;
    width: 100%;
    height: 100vh;

    background-size: cover;
    background-position: center;
    transition: opacity 1s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}


.hero-content {
    z-index: 2;

}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}


.hero.fade-out {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}






.cta-btn {
    display: inline-block;
    background-color: #f1c40f;
    color: #1f3b55;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.cta-btn:hover {
    background-color: #fff;
    color: #1f3b55;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;

}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}


.service-item,
.about-item {
    text-align: center;
    background: #fff8e1;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease;

    border: 2px solid gold;

}

.service-item:hover,
.about-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.service-item i {
    font-size: 2em;
    margin-bottom: 10px;
    color: #f1c40f;
}


.h2 {
    background-color: #ff9900;

    color: #fff;

    display: inline-block;
    padding: 15px 30px;
    border-radius: 10px;
    text-align: center;
    margin: 20px auto;
    font-size: 1.8rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;

    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3),
        inset 0 -3px 5px rgba(0, 0, 0, 0.2);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;

}

.h2:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.5),
        inset 0 -5px 7px rgba(0, 0, 0, 0.3);
}






footer {
    background-color: #1f3b55;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}





#map-section {
    width: 100%;
    margin: 20px 0;
    text-align: center;
}

#map-section h2 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
}

.map-container {
    position: relative;
    padding-bottom: 56.25%;

    height: 0;
    overflow: hidden;
    max-width: 100%;
    height: auto;
}

.map-container iframe {
    border: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
















@media (max-width: 768px) {
    #map-section h2 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    #map-section h2 {
        font-size: 18px;
    }
}



@media (min-width: 768px) {
    .hero {
        padding: 150px 50px;
        background-size: contain;

    }
}


@media (min-width: 1200px) {
    .hero {
        background-size: cover;

        padding: 200px 100px;
    }
}