body {
    margin: 0;
    font-family: 'Tajawal', sans-serif;

}

        header {
            background-color: #333;
            font-family: 'Tajawal', sans-serif;
            padding: 10px;
            text-align: center;
            color: #fff;
        }

        .gallery-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            max-width: 1000px;
            margin: 0 auto;
            padding: 20px;
        }

        .gallery-item {
            width: 50%;
            box-sizing: border-box;
            padding: 5px;
            position: relative;
        }

        .gallery-item img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 0 auto;
            border: 1px solid #000;
        }

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    background-color: transparent;
    padding: 5px;
    text-align: center;
    font-family:sans-serif;
    font-size: 10px;
    font-weight: bold;
    color: #333;
    box-sizing: border-box; /* Add this line */
}



.pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 10px auto 10px;
    max-width: 500px; /* Set a maximum width for the pagination section */
}

.pagination-link {
    color: white;
    display: inline-block;
    padding: 10px 15px;
    margin: 0 5px;
    font-size: 16px;
    border: 1px solid #FFFFFF;
    border-radius: 5px;
    text-decoration: none;
    white-space: nowrap;
}

        .custom-link {
            color: white;
            text-decoration: none;
            cursor: pointer;
        }

        .whatsapp-link {
            display: block;
            text-align: center;
            margin-top: 20px;
            font-size: 20px;
            color: #fff;
            background-color: #25d366;
            padding: 10px;
            border-radius: 10px;
            text-decoration: none;
        }
        
        
            footer a {
            color: white;
            display: inline-block;
            padding: 10px 15px;
            margin: 0 5px;
            font-size: 16px;
            border: 1px solid #FFFFFF;
            border-radius: 5px;
            text-decoration: none;
        }
        

        .menu-box {
            background-color: #333;
            padding: 10px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            max-width: 100%;
            margin: 0 auto; /* Center the menu box horizontally */
        }

        .menu {
            text-align: center;
            list-style: none;
            font-family: Tajawal;
            padding: 0;
            margin: 0;
            display: flex; /* Display menu items horizontally */
            justify-content: center; /* Center the menu items horizontally */
        }

        .menu li {
            color: #fff;
            margin-right: 10px; /* Add spacing between menu items */
        }

        .menu li:last-child {
            color: #fff;

            margin-right: 0; /* Remove right margin from the last menu item */
        }

        .menu li a {
        color: white;
        text-decoration: none;
            font-weight: bold;
        }

.menu li:not(:last-child)::after {
    content: "|";
    margin-left: 10px;
    color: white; /* or color: #ffffff; */
}



/* Media queries for different screen sizes */
@media (max-width: 767px) {
    /* Styles for mobile devices */
        .container {
        padding: 10px;
    }
}

@media (min-width: 768px) {
    /* Styles for tablets and larger devices */
    .container {
        max-width: 768px;
    }
}

@media (min-width: 992px) {
    /* Styles for laptops and larger devices */
        .container {
        max-width: 992px;
    }
}

@media (min-width: 1200px) {
    /* Styles for larger screens */
      .container {
        max-width: 1200px;
    }
}


        