body {
    font-family: Tajawal;
    align-items: center;
    text-align: center;
    flex-direction: row-reverse;
    direction: rtl;
}

@font-face {
    font-family: Tajawal;
    src: url('assets/fonts/Tajawal-Regular.ttf');
}

@font-face {
    font-family: Tajawal-bold;
    src: url('assets/fonts/Tajawal/Tajawal-Bold.ttf');
}

.bannar {
    width: 100%;    
}

.contact-whatsapp {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    background-color: #25D366;
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding: 12px 20px;
    border-radius: 30px;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.whatsapp-button img {
    width: 24px;
    height: 24px;
    margin-left: 10px;
}

.whatsapp-button:hover {
    background-color: #1DA851;
}


.bannar-img {
    width: 100%;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.nav-logo {
    height: 8vw;
}

.nav-logo1 {
    height: 12vw;
}

.top-sec h4 {
    font-weight: 400;
    font-size: 20px;
    color: #193156;
    line-height: 1;
}

.top-sec h5 {
    font-weight: 400;
    font-size: 16px;
    color: #193156;
    line-height: 1;
}

.top-sec h1 {
    font-size: 35px;
    font-weight: bold;
    color: #193156;
    line-height: 1;
}

.top-sec p {
    font-weight: bold;
    font-size: 20px;
    line-height: 0.8;
    font-family: Tajawal;
    flex-direction: row-reverse;
}

.second-sec section {
    display: flex;
    gap: 20px;
    flex-direction: row-reverse; 
    padding: 20px 150px;
}

.second-sec section div {
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 50%;
}

.second-sec section div img {
    height: 80px;
}

/* footer style */

.site-footer {
    background-color: black;
    color: #fff;
    padding: 40px 20px 10px;
    font-family: Tajawal;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column {
    flex: 1 1 200px;
    min-width: 180px;
}

.footer-column h4 {
    margin-bottom: 15px;
    font-size: 18px;
    border-bottom: 2px solid #fff;
    display: inline-block;
    padding-bottom: 5px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
    font-size: 15px;
}

.footer-column a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #ffa500;
}

.footer-logo {
    width: 100px;
    margin-bottom: 10px;
}

.social-icons a {
    display: inline-block;
    margin-right: 10px;
}

.social-icons img {
    width: 24px;
    height: 24px;
    transition: transform 0.3s;
}

.social-icons img:hover {
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 10px;
    font-size: 14px;
}

.top-home {
    height: 300px;
    display: flex;
    padding: 20px;
    justify-content: center;
    align-items: center;
}

.top-home div{
    align-items: center;
    width: 50%;
    justify-content: center;
    height: 100%;
}

.top-home div h1 {
    color: #193156;
    font-size: 40px;
}

.main-second-home {
    
    background-position: center; 
    background-repeat: no-repeat; 
    background-color: #e9eff9;
    padding: 50px 20px;
}

.second-home {
    display: flex;
}

.first {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.first::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://cdn.prod.website-files.com/669f957a68d5838eeab4b65a/669f963cacde2b3d1616af1a_Real-Estate-Transparent-PNG.png'); 
    background-size: auto;
    background-position: center;
    opacity: 0.3;
    z-index: -1;
}


.second-home section {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    padding: 10px 0px;
}

.second-home section div {
    width: 30%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 10px 25px;
    border-radius: 10px;
    height: max-content;
    background-color: #fff;
}

.second-home section div img {
    height: 100px;
}

.second-home section div h1 {
    font-weight: 100;
    font-size: 30px;
}

@media (max-width: 768px) {
    .nav-logo {
        height: 25vw;
    }

    .nav-logo1 {
        height: 40vw;
    }

    .second-sec section {
        display: contents;
        padding: 0;
    }

    .second-sec section div {
        width: 85%;
    }

    /* footer style */
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-column {
        width: 100%;
        max-width: 400px;
    }

    .social-icons a {
        margin: 0 8px;
    }

    .top-home {
        display: math;
        height: 200px;
    }

    .top-home div {
        width: 100%;
    }

    .second-home section {
        display: flow;
        width: 100%;
        padding: 0px 20px;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }

    .second-home section div {
        width: 80%;
        padding: 10px 30px;
        margin: 10px 0;
        background-color: #fff;
    }

    .main-second-home {
        padding: 5px;
    }
}