body {
    font-family: Arial, sans-serif;
    text-align: center;
    padding: 10px;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem; /* Add some padding */
    background-color: rgba(255, 255, 255, 0); /* Fully transparent background */
    position: sticky; /* Make the navbar sticky */
    top: 0; /* Stick to the top of the viewport */
    z-index: 10; /* Ensure it stays on top of other elements */
}
.logo img {
    
    height: 55px; /* Set the height of the logo */
}

.menu ul {
    list-style-type: none; /* Remove default list styling */
    padding: 0; /* Remove default padding */
    display: flex; /* Display items in a row */
    margin: 0; /* Remove default margin */
}

.menu li {
    margin-left: 20px; /* Space between menu items */
}

.menu a {
    text-decoration: none; /* Remove underline from links */
    color: black; /* Set link color */
}

/* Hamburger Icon */
.hamburger {
    display: none; /* Hidden by default */
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    height: 3px;
    width: 25px;
    background: black; /* Color of the hamburger icon */
    margin: 3px 0; /* Space between lines */
}
h1{
    font-size: 30px;
}
.container{
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 80vh;
    justify-content: center;
/*  background-image: url('image.jpg');*/ /* Replace with your image path */
    background-size: cover; /* Cover the entire section */
    background-position: center; /* Center the image */
    color: white; /* White text color */
    position: relative;
    border-radius: 5px;
}
.container ::before {
    content:'';
    position: absolute;
    inset: 0;
    background: rgba(15, 21, 37, .5);
    border-radius: 5px;
    object-fit: cover;
    z-index: -1;
}
video{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    object-fit: cover;
    z-index: -2;
}
#text {
    font-size: 18px;
    margin-bottom: 20px;
}
.about {
    color: #006994;
}
.about p {
    color: grey;
}
.flex-container{
    display: flex;
    
}
.row{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-around; 
  padding: 10px;
}
.col-2{
 flex-basis: 50%;
  min-width:  300px;
}
.col-2 img{
  max-width: 50%;
  padding: 30px 0;
}
.col-2 h1{
  font-size: 30px;
  line-height: 50px;
  margin: 25px 0;
}
.col-2 p{
  text-align: justify;
  text-justify: inter-word;
}
p{
  font-size: 12px;
}
.image-gallery h1 {
    color: #006994;
}
.image-gallery h3 strong {
    color: #006994;
}
.image-gallery {
    padding: 40px 20px; /* Add padding for spacing */
    text-align: center; /* Center the content */
}

.image-gallery h2 {
    font-size: 2.5rem; /* Adjust the size of the heading */
    margin-bottom: 20px; /* Space below the heading */
    color: #fff; /* White color for the heading */
}

.image-container {
    display: grid; /* Use a grid layout */
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Responsive grid */
    gap: 20px; /* Space between grid items */
    margin: 0 auto; /* Center the grid container */
    max-width: 1200px; /* Limit the maximum width of the container */
    color: grey;
}

.image-item {
    background-color: rgba(255, 255, 255, 0.8); /* Light background for contrast */
    border-radius: 8px; /* Rounded corners */
    overflow: hidden; /* Prevent overflow */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    
}

.image-item img {
    width: 100%; /* Full width of the container */
    height: 200px; /* Set a fixed height for uniformity */
    object-fit: cover; /* Crop the image to fill the box without distorting */
    border-radius: 8px; /* Match rounded corners */
}

.image-item h3 {
    font-size: 1.5rem; /* Size for the service heading */
    margin: 10px 0; /* Space above and below */
    color: #333; /* Darker color for the heading */
}

.image-item p {
    font-size: 1rem; /* Standard size for the description */
    color: #666; /* Lighter color for the text */
}
h1 {
    margin: 0;
    font-size: 1.5rem;
}

#contact {
    padding: 50px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-container {
    max-width: 600px;
    background-color: white;
    padding: 40px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.contacts-container h2 {
    text-align: center;
    margin-bottom: 10px;
}
.contact-container h1{
    color: #006994;
}

.contacts-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
    color: grey;
}

.contacts-form input,
.contacts-form textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

.contacts-form button {
    background-color: #006994;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
}

.contacts-form button:hover {
    background-color: #00557a;
}

.contacts-info p {
    margin: 5px 0;
    font-size: 1rem;
    line-height: 1.5;
}
.projects {
    color: #006994;
}
.announcements, .events {
    max-width: 600px;
    background-color: white;
    padding: 40px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}


.event-container, .event-card h2 {
    text-align: center;
    margin-bottom: 10px;
}

.announcements, .events{
    color: #006994;
    display: flex;
    align-items: center;
    position: relative;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
    max-width: 937px;
    margin: auto;
   
}
.events img{
    width:650px;
}

 @media (max-width: 768px) {

     .menu {
        display: none; /* Hide menu by default */
        width: 100%; /* Full width for mobile */
        position: absolute;
        top: 60px; /* Adjust as necessary */
        left: 0;
        background-color: white; /* Background color for dropdown */
        z-index: 10; /* On top of other elements */
    }

    .menu ul {
        flex-direction: column; /* Stack items vertically */
        padding: 0; /* Remove default padding */
        display: flex; /* Display items in a row */
        margin: 0; /* Remove default margin */
    }

.menu li {
    margin-left: 20px; /* Space between menu items */
}
.menu a {
    text-decoration: none; /* Remove underline from links */
    color: black; /* Set link color */
}

    .menu.active {
        display: flex; /* Show menu when active */
    }

    /* Hamburger Icon */
.hamburger {
        display: flex; /* Show hamburger icon on small screens */
        
    }

.hamburger span {
    height: 3px;
    width: 25px;
    background: black; /* Color of the hamburger icon */
    margin: 3px 0; /* Space between lines */
}
    .logo img {
    
    height: 35px; /* Set the height of the logo */
}

    h1{
    font-size: 18px;
    
}
.container{
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 40vh;
    justify-content: center;
 /*   background-image: url('image.jpg');*/ /* Replace with your image path */
    background-size: cover; /* Cover the entire section */
    background-position: center; /* Center the image */
    color: white; /* White text color */
    position: relative;
    border-radius: 5px;
}
.container ::before {
    content:'';
    position: absolute;
    inset: 0;
    background: rgba(15, 21, 37, .5);
    border-radius: 5px;
    object-fit: cover;
    z-index: -1;
}
video{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    object-fit: cover;
    z-index: -2;
}
.about {
    color: #006994;
    
}
.col-2 h1{
  font-size: 30px;
  line-height: 30px;
  margin-bottom: 0;
  padding: 0;
}
.col-2 p{
  text-align: justify;
  text-justify: inter-word;
}
.col-2 img{
  max-width: 100%;
  
}
.flex-container{
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    
}


.about p {
    color: grey;
}
.about img{
    width: 280px;
}
iframe {
    width: 260px;
    height: 155px
}
#text {
    font-size: 15px;
    margin-bottom: 50px;
}
.image-gallery h1 {
    color: #006994;
}
.image-gallery {
    padding: 10px 20px; /* Add padding for spacing */
    text-align: center; /* Center the content */
    margin: 0px;
}

.image-gallery h2 {
    font-size: 2rem; /* Adjust the size of the heading */
    margin-bottom: 10px; /* Space below the heading */
    color: #fff; /* White color for the heading */
}

.image-container {
    display: grid; /* Use a grid layout */
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Responsive grid */
    gap: 10px; /* Space between grid items */
    margin: 0 auto; /* Center the grid container */
   max-width: 1200px; /* Limit the maximum width of the container */
}

.image-item {
    background-color: rgba(255, 255, 255, 0.8); /* Light background for contrast */
    border-radius: 8px; /* Match rounded corners */
    overflow: hidden; /* Prevent overflow */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    padding:  10px; /* Padding inside the item */
}

.image-item img {
    width: 80%; /* Full width of the container */
    height: 300px; /* Set a fixed height for uniformity */
    object-fit: cover; /* Crop the image to fill the box without distorting */
    border-radius: 8px; /* Match rounded corners */
}

.image-item h3 {
    font-size: 1.5rem; /* Size for the service heading */
    margin: 10px 0; /* Space above and below */
    color: #333; /* Darker color for the heading */
}

.image-item p {
    font-size: 1rem; /* Standard size for the description */
    color: #666; /* Lighter color for the text */
}
h1 {
    margin: 0;
    font-size: 1.5rem;
}

#contacts {
    padding: 50px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.projects h1{
    padding: 50px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.projects img .thumbnail{
    width:80p;
}
.events img{
    width:250px;
}

.contacts-container {
    max-width: 600px;
    background-color: white;
    padding: 40px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.contacts-container h2 {
    text-align: center;
    margin-bottom: 10px;
}

.contacts-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.contacts-form input,
.contacts-form textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

.contacts-form button {
    background-color: #006994;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
}

.contacts-form button:hover {
    background-color: #00557a;
}

.contacts-info p {
    margin: 5px 0;
    font-size: 1rem;
    line-height: 1.5;
}


/* Contact section styling */
#contacts {
    background-color: #f0f0f0; /* Light background for contrast */
    position: relative;
}

/* Canvas styling */
#bubbleCanvas {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1; /* Ensure it is behind the content */
    width: 100%;
    height: 100%;
}

/* Contact content styling */
.contacts-content {
    position: relative;
  z-index: 0;
    color: #333;
    text-align: center;
    margin-top: 40vh;
}
/* Ensure the contact section content is on top */
.contacts-content {
    position: relative; /* Keep this as relative */
    z-index: 10; /* Set a higher z-index to bring it to the front */
    color: #333;
    text-align: center;
    margin-top: 40vh; /* Center content vertically */
    padding: 20px; /* Add padding for spacing */
    background-color: rgba(255, 255, 255, 0.8); /* Optional: light background for better contrast */
    border-radius: 10px; /* Optional: rounded corners */
}

/* Optional: adjust the canvas z-index if needed */
#bubbleCanvas {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1; /* Ensure the canvas is behind the content */
    width: 100%;
    height: 100%;
}
.hover-effect {
    transition: transform 0.3s ease-out; /* Smooth transition for hovering */
    display: inline-block; /* Ensure inline elements behave as block elements */
}


}
.about h1, .about p, .image-item {
    opacity: 0; /* Hidden by default */
    transform: translateY(20px) scale(0.9); /* Initial position */
    transition: opacity 0.6s ease, transform 0.6s ease; /* Smooth transition */
}


/* Contact section styling */
#contacts {
    background-color: #f0f0f0; /* Light background for contrast */
    position: relative;
}

/* Canvas styling */
#bubbleCanvas {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2; /* Ensure it is behind the content */
    width: 100%;
    height: 100%;
}

/* Contact content styling */
.contacts-content {
    position: relative;
    z-index: 0;
    color: #333;
    text-align: center;
    margin-top: 40vh;
}
/* Ensure the contact section content is on top */
.contacts-container {
    position: relative; /* Keep this as relative */
    z-index: 10; /* Set a higher z-index to bring it to the front */
    color: #333;
    text-align: center;
    margin-top: 1vh; /* Center content vertically */
    padding: 20px; /* Add padding for spacing */
    background-color: rgba(255, 255, 255, 0.8); /* Optional: light background for better contrast */
    border-radius: 10px; /* Optional: rounded corners */
}

/* Optional: adjust the canvas z-index if needed */
#bubbleCanvas {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1; /* Ensure the canvas is behind the content */
    width: 100%;
    height: 100%;
}
/* Add some styling for the introductory text */
section p {
  font-size: 1rem;
  text-align: center;
  margin: 10px 0 20px;
  color: #555;
  line-height: 1.5;
}
