/* Change the background color */



/* Adjust the main content background */
.pkp_structure_main {

    background-color: #f4f7fc; /* Light blue shade */
     /* Replace with your image path */
    background-size: cover; /* Ensure the image covers the entire page */
    background-repeat: no-repeat; /* Prevent image repetition */
    background-attachment: fixed; /* Make the background stay fixed */
    background-color: rgba(255, 255, 255, 0.9); /* White with slight transparency */
    padding: 20px;
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Light shadow */
}




/* Footer Carousel Styles */
.footer-carousel {
    overflow: hidden;
    width: 100%;
    background-color: none;
    padding: 3em 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.carousel-container {
    display: flex;
    gap: 3em;
    animation: scroll 15s linear infinite;
}
.carousel-container img {
    width: 150px; /* Adjust based on your preference */
    height: auto;
    border-radius: none; /* Optional: for rounded corners */
}
@keyframes scroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}
/* Style for Making Images in Footer Larger */
.footer-carousel img {
    width: 200px; /* Adjust width to make images larger */
    height: auto; /* Maintain aspect ratio */
    margin: 0 20px; /* Space between images */
}
/* Style for Making Images in Footer Larger */


.pkp_brand_footer {
    display: none;
}
