@import url('httpS://fonts.googleapis.com/css2?family=poppins&display=swap');
*{
    margin: 0;
    padding: 0;
    font-family: "Poppins", monospace;
}

ul {
    list-style: none;
    background: #8c52ff;
}
ul li {
    display: inline-block;
    position: relative;
    }

ul li a {
    display: block;
    padding: 20px 25px;
    color: #fff;
    text-decoration: none;
    text-align: left;
    font-size: 16px;
}
ul li ul.dropdown {
    width: 130%;
    background: #8c52ff;
    position:absolute;
    z-index: 999;
    display: none;
}
ul li a:hover {
background: : #6d30e9;
}
ul li:hover ul.dropdown {
    display: block;
}
.banner {
     width: 100%;
     height: 100px;
     background-color: #4CAF50; /* Green background color */
     color: white;
     text-align: center;
    line-height: 100px; /* Vertically center the text */
     position: fixed; /* Fix the banner at the top */
     top: 0;
     left: 0;
     z-index: 1000; /* Ensure the banner is on top */
        }
        .menu {
         width: 100%;
         background-color: #333; /* Dark background color for the menu */
         overflow: hidden;
         position: fixed; /* Fix the menu below the banner */
         top: 100px; /* Position the menu just below the banner */
         left: 0;
         z-index: 999; /* Ensure the menu is below the banner */
     }
     .menu a {
         float: left;
         display: block;
         color: white;
         text-align: center;
         padding: 14px 16px;
         text-decoration: none;
     }
     .submenu a:hover {
        background-color: #ddd;
        color: black;
    }
    .menu-item {
        position: relative; /* Position relative to contain submenu */
    }
    .menu-item:hover .submenu {
        display: block; /* Show submenu on hover */
    }
   
    body {
        margin: 0;
        padding-top: 180px; /* Prevent content from being hidden under the banner */
    }
    .slideshow-container {
        position: relative;
        max-width: 65%;
        margin: auto;
        top: 26px; /* Position the slideshow below the menu */
    }
    .slides {
        display: none;
    }
    .active {
        display: block;
    }
    .prev, .next {
        cursor: pointer;
        position: absolute;
        top: 50%;
        width: auto;
        padding: 16px;
        margin-top: -22px;
        color: white;
        font-weight: bold;
        font-size: 18px;
        transition: 0.6s ease;
        border-radius: 0 3px 3px 0;
        user-select: none;
    }
    .next {
        right: 0;
        border-radius: 3px 0 0 3px;
    }
    .prev:hover, .next:hover {
        background-color: rgba(0,0,0,0.8);
    }
    .slides img {
        width: 400px; /* Set the width of the images */
        height: 400px; /* Set the height of the images */
        object-fit: cover; /* Ensure the images cover the specified dimensions */
    }
    .photo-link-row {
        display: flex;
        justify-content: space-around; /* Space out the items evenly */
        align-items: center;
        margin-top: 30px; /* Space above the photos */
        flex-wrap: nowrap; /* Prevent wrapping to the next row */
    }
    
    .photo-item {
        display: flex;
        flex-direction: column; /* Arrange photo and link vertically */
        align-items: center; /* Center the items */
        text-align: center; /* Center-align the text */
    }
    
    .photo-item img {
        width: 60px; /* Adjusted size */
        height: auto;
        border: 2px solid #ddd; /* Optional: Add a border */
        border-radius: 5px; /* Optional: Add rounded corners */
        transition: transform 0.2s; /* Optional: Add a hover effect */
    }
    
    .photo-item img:hover {
        transform: scale(1.1); /* Optional: Scale up on hover */
    }
    
    .photo-link {
        margin-top: 10px; /* Space between the photo and the link */
        font-size: 14px; /* Adjust the font size as needed */
        text-decoration: none; /* Remove underline */
        color: #000; /* Link color */
    }
    
    .photo-link:hover {
        text-decoration: underline; /* Add underline on hover */
    }
    .page-content {
        padding: 100px;
    }
    
    .page-content h1 {
        margin-top: 50px; /* Space below the menu */
        font-size: 24px;
        color: #333;
    }
    .grid-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 10px;
    }
    .grid-item {
        flex: 1 0 19%; /* 5 columns, with a bit of spacing */
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .grid-item img {
        max-width: 100%;
        height: auto;
        display: block;
    }
    .grid-item a {
        margin-top: 10px;
        text-decoration: none;
        color: blue;
    }
    .banner1 {
        width: 100%;
        background-color: #8c52ff;
        overflow: hidden;
        white-space: nowrap;
    }
    
    .marquee {
        display: inline-block;
        padding: 20px 0 10px 0;
        white-space: nowrap;
        animation: marquee 10s linear infinite;
    }
    
    .marquee p {
        display: inline-block;
        padding-left: 30%; /* Reduced padding to bring messages closer together */
        animation: marquee-text 10s linear infinite;
        color: white; /* Change text color to white */
        font-size: 20px; /* Increase font size */
    }
    .marquee p a {
        color: rgb(255, 255, 255); /* Ensures the link text color is white */
        text-decoration: none; /* Removes the underline from the link */
    }
    
    .marquee p a:hover {
        text-decoration: underline; /* Adds underline on hover for better visibility */
    }
    
    
    @keyframes marquee {
        from {
            transform: translateX(100%);
        }
        to {
            transform: translateX(-100%);
        }
    }
    
    @keyframes marquee-text {
        from {
            transform: translateX(0);
        }
        to {
            transform: translateX(-100%);
        }
    }
    .content-banner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
        background-color: #f2f2f2;
    }
    
    .message-column {
        flex: 1;
        padding: 20px;
    }
    
    .photo-column {
        flex: 1;
        text-align: center;
    }
    
    .photo-column img {
        max-width: 100%;
        height: auto;
        border-radius: 10px;
    }
    .message-column h2 {
        margin-top: 0;
    }
    .contact-social-banner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
        background-color: #333;
        color: white;
    }
    
    .contact-info, .social-media {
        flex: 1;
    }
    
    .contact-info h2, .social-media h2 {
        margin-top: 0;
    }
    
    .contact-social-banner {
        padding: 20px;
        background-color: #333;
        color: white;
        text-align: center;
    }
    
    .contact-info {
        margin-bottom: 20px;
    }
    
    .contact-info h2 {
        margin-top: 0;
    }
    
    .social-media {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px; /* Increased gap between icons */
    }
    .social-media h2 {
        margin-bottom: 20px; /* Space between heading and icons */
        
    }
    
    .social-icon {
        width: 50px; /* Adjust size as needed */
        height: 50px; /* Adjust size as needed */
        vertical-align: middle; /* Aligns icons with text */
    }
    
    .social-icon:hover {
        opacity: 0.8; /* Slightly change appearance on hover */
    }
    