.logo-width
{
 width:75%!important;
   
}

.service-card.style2 .service-info
{
    text-align: center!important;
    padding:3px 23px 4px!important;
}
.white
{
    color:white!important;
}
/* @media only screen and (min-width: 992px) {
    .header-wrap .navbar .navbar-nav {
        margin-right: 50px!important;
    }
} */
.partner-item img
{
    max-width:100%!important;
}

@keyframes jump {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.whatsapp_float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
}

.whatsapp_icon {
    width:40px;
    height:40px;
    border-radius: 50%;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    animation: jump 1s infinite;
}
.section-title span, .content-title span
{
    line-height:39px!important;
}



/* photography page */



#imageGallery img {
    width: 100%;
    height: auto; /* Maintain aspect ratio */
    object-fit: cover; /* Ensure images fill their containers */
}

@media (max-width: 768px) {
    #imageGallery .col-md-6, 
    #imageGallery .col-lg-4, 
    #imageGallery .col-xl-3 {
        flex: 0 0 90%; /* Each image will take up 90% of the screen width */
        max-width: 90%; /* Same as above */
        margin-left: auto; /* Center the image horizontally */
        margin-right: auto; /* Center the image horizontally */
        margin-bottom: 20px; /* Add space between images */
    }

    .container {
        padding-left: 15px; /* Add padding on the left */
        padding-right: 15px; /* Add padding on the right */
    }
}


/*#imageGallery img {*/
/*    margin: 10px;*/
/*    max-width: 100%;*/
/*    height: auto;*/
/*}*/



/* .photography */

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}
.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}
.close {
    position: absolute;
    top: 10px;
    right: 20px;
    color: white;
    font-size: 35px;
    font-weight: bold;
}
.close:hover, .close:focus {
    color: #999;
    cursor: pointer;
}
/* Navigation Arrows */
.nav-left, .nav-right {
    position: absolute;
    top: 50%;
    color: #ffffff;
    font-size: 60px;
    font-weight: bold;
    cursor: pointer;
    user-select: none;
    padding: 10px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    transform: translateY(-50%);
}

.nav-left {
    left: 30px;
}

.nav-right {
    right: 30px;
}

.nav-left:hover,
.nav-right:hover {
    background-color: rgba(0, 0, 0, 0.8);
}


/* .photography





{
    padding: 0 10px 1px!important;
}

.service-images {
    text-align: center;
  
}

#serviceImages img {
    max-width: 200px;
    margin: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
} */


/* photography page */

/* #serviceImages {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

#serviceImages img {
    width: 150px;
    height: auto;
    cursor: pointer;
    object-fit: cover;
} */


.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    text-align: center;
}

.modal-content {
    max-width: 90%;
    max-height: 60%;
    margin: auto;
    display: block;
    object-fit: contain; 
    background-color: transparent;
}

.close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

#caption {
    margin: auto;
    display: block;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    padding: 16px;
    margin-top: -22px;
    color: white; 
    font-weight: bold;
    font-size: 40px;
    user-select: none;
}


.prev:hover, .next:hover {
    color: white;
}

.prev {
    left: 0;
}

.next {
    right: 0;
}

/* 
.thumbnails {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    overflow-x: auto; 
}

.thumbnails img {
    width: 100px;
    height: auto;
    margin: 5px;
    cursor: pointer;
    object-fit: cover;
    border: 2px solid transparent;
}

.thumbnails img.active {
    border: 2px solid white;
}

 */


/* 
#all-service-images {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 20px;
}

#all-service-images h3 {
    width: 100%;
    text-align: center;
    margin-top: 40px;
    color: #333;
}

#all-service-images img {
    max-width: 200px;
    margin: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
} */
/* Modal styles */
/* Modal Styling */

            <!-- Add the following custom CSS for automatic scrolling -->
            <style>
            .service-container {
                position: relative;
                overflow: hidden;
                /* Hide scrollbar */
            }

            .scroll-content {
                display: flex;
                flex-wrap: nowrap;
                animation: scroll-left 30s linear infinite;
                /* Animation for scrolling */
            }

            .service-card {
                flex: 0 0 auto;
                margin-right: 20px;
            }

            .service-card img {
                width: 100%;
                height: auto;
                object-fit: cover;
            }

            /* Animation for continuous scrolling */
            @keyframes scroll-left {
                0% {
                    transform: translateX(0);
                }

                100% {
                    transform: translateX(-100%);
                }
            }

            /* Duplicate content to loop smoothly */
            .scroll-content::after {
                content: "";
                display: flex;
            }
            </style>
