.container {
    margin-top: 0px;
    padding-top: 0px;
    margin-bottom: 0px;
    padding-bottom: 0px;
}


/* Navbar Container */
header.navbar-custom {
    width: 100;
    background-color: #5777AA !important;
    padding: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Logo Styling */
.navbar-logo {
    max-height: 60px;
    width: auto;
    margin-right: 10px;
}


/* Text Styling */
.navbar-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0;
}

.navbar-text p {
    margin: 0;
    padding: 2px;
    line-height: 1.2;
    color: white;
}

.brand-name {
    font-weight: bold;
    font-size: 1.25rem;
}

.brand-description {
    font-size: 0.9rem;
    color: white;
}

/*.navbar {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: space-evenly;*/
/*    background: #5777AA;*/
/*    padding: 10px 20px;*/
/*    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);*/
/*}*/

/*.navbar img {*/
/*    width: 60px;*/
/*    height: auto;*/
/*}*/

/*.navbar-text {*/
/*    text-align: left;*/
/*}*/

/*.navbar-text p {*/
/*    margin: 0;*/
/*    font-size: 14px;*/
/*    color: #fff;*/
/*}*/

/* Mobile View */
/*@media (max-width: 768px) {*/
/*    .navbar {*/
/*        flex-direction: row;*/
/*        align-items: center;*/
/*    }*/
/*    .navbar img {*/
/*        width: 50px;*/
/*    }*/
/*    .navbar-text {*/
/*        text-align: left;*/
/*        font-size: 12px;*/
/*    }*/
/*}*/

/* footer */
.image-section {
    text-align: center;
    margin-bottom: 20px;
    background-color: #5777AA;
}

.image-section img {
    max-width: 100px;
    height: auto;
    border-radius: 8px;  /* Optional: to add rounded corners to image */
}


/* Styling for the image gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Creates a 4-column grid */
    gap: 40px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Individual image styling */
.image-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Image specific styling */
.image {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Ensures the image fills the container */
    transition: transform 0.3s ease-in-out;
}

/* Image hover effect */
.image-item:hover .image {
    transform: scale(1.1); /* Slight zoom effect */
}

/* Fullscreen Modal */
.fullscreen-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
    z-index: 1000;
}
.fullscreen-container img {
    max-width: 90%;
    max-height: 90%;
}
.close-btn, .prev-btn, .next-btn {
    position: absolute;
    color: white;
    font-size: 24px;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    padding: 10px;
    border-radius: 5px;
}
.close-btn { top: 10px; right: 10px; }
.prev-btn { left: 10px; }
.next-btn { right: 10px; }
        
@media (max-width:768px) {
    .gallery {
        grid-template-columns: repeat(1, 1fr); /* Creates a 4-column grid */
        gap: 20px;
    }
}


  /* for language change in header*/
      .language-selector {
        position: relative;
        display: inline-block;
        margin-left: auto;
      }

      .language-btn {
        background: white;
        color: black;
        border: none;
        padding: 5px 10px;
        cursor: pointer;
        border-radius: 5px;
      }

      .language-options {
        display: none;
        position: absolute;
        background: white;
        border: 1px solid #ccc;
        list-style: none;
        padding: 0;
        margin: 0;
        width: 100px;
        text-align: left;
        border-radius: 5px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        z-index: 1000;
      }

      .language-options ul {
        padding: 0;
        margin: 0;
      }

      .language-options li {
        padding: 5px;
        cursor: pointer;
        list-style: none;
      }

      .language-options li:hover {
        background: #f1f1f1;
      }
    

