/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}


header {
    height: 60px;
    width: 100%;
    background-color: #003366;
    color: white;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    /* padding: 1rem 2rem; */
    /* position: relative; */
    
  }
  
  
  nav {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* position:sticky;
    top: 0; */
  
  }
  .logo{
    height:55px;
    width: 65px;
    background-image: url(img/logo1.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    /* background-color: yellow; */
    margin-left: 20px;
    border-radius: 10%;
  
  }
  .links{
    height: 100%;
    width: 70%;
    /* background-color: yellow; */
    display: flex;
    align-items: center;
    font-size: 20px;
    justify-content: flex-end;
    margin-right: 25px;
  
  
  }
  
  nav ul {
    display: flex;
    list-style: none;
    /* margin-left: 80px; */
    padding: 0;
  }
  
  nav ul li {
    margin-left: 2rem;
  }
  
  nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
  }
  
  nav ul li a:hover {
    color: lightblue;
  }
  
  .menua{
    display: none;
  }
  
  a{
    text-decoration: none;
    color: #fff;
  }

/* General Section Styling */
.section {
    padding: 50px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* Alternate Background Colors */
.section:nth-child(odd) {
    background-color: #003366;
    color: #fff;
}

.section:nth-child(even) {
    background-color: #dcdcdc;
    color: #003366;
}


/* Styling for Text */
.text {
    width: 45%;
    font-size: 1.5rem;
    line-height: 1.6;
    font-weight: 600;
    padding: 20px;
}
.text h2{
    font-size: 40px;
}

/* Image Styling */
.image-gallery {
    display: flex;
    justify-content: center;
    gap: 20px; /* Adds spacing between images */
    width: 100%;
}

.image-gallery img {
    width: 45%;
    border-radius: 10px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out;
    
}

.image-gallery img:hover {
    transform: scale(1.05);
}

/* Centered Text for Image Sections */
.image-text {
    width: 100%;
    text-align: center;
    margin-top: 20px;
}

/* Video Container */
.video-container {
    width: 45%;
    display: flex;
    justify-content: center;
}

.video-container video {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    border: 3px solid #003366;
    box-shadow: 0px 8px 20px rgba(0, 168, 232, 0.4);
    transition: transform 0.3s ease-in-out;
    object-fit: cover;
}

.video-container video:hover {
    transform: scale(1.05);
}

/* Modal Styling */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
}



/* Close Button */
.close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

/* Fullscreen Image */
.modal-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}
footer p{
    text-align: center;
    color: #fff;
    background-color: #003366;
  }

/* Responsive Design */
@media (max-width: 1024px) {
    .section {
        flex-direction: column;
        text-align: center;
    }

    .text, .image-gallery img, .video-container {
        width: 90%;
    }

    .video-container video {
        height: auto;
    }

    .image-gallery {
        flex-direction: column;
    }

    .image-gallery img {
        width: 80%;
    }
}

@media (max-width: 768px) {
  
    nav ul li a {
      flex-direction: column;
      display: none;
    }
  
    nav ul.active {
      display: flex;
    }
    
  .menua{
    display: flex;
  }

  .image-gallery img{
    padding-right: 0;
    padding-bottom: 20px;
    margin-left: 30px;
  }
}