body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
  }
  .navbar {
     position: sticky;
     background-color: #1c2251;
     top: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
        /* color: #e62f2f; */
    font-family: Arial, sans-serif;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .nav-links {
    padding-right: 20px;
    list-style: none;
    display: flex;
    gap: 20px;
  }
  .logo img{
    margin: 0;
    padding: 0;
    display: block; /* Ensures no extra space is added */
  }
  
  .nav-links li {
    display: inline;
  }
  
  .nav-links a {
    text-decoration: none;
    color: #fefefe;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  
  
  
  /* Toggle Button Styling */
  .toggle-btn {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .toggle-btn {
      display: block;
    }
   .logo{
    height: 90px;
    width: 180px;
   }
    .nav-links {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 50px;
      right: 0px;
      background-color: #1c2251;
      width:100%;
      border-radius: 8px;
      overflow: hidden;
    }
  
    .nav-links.active {
      display: flex;
    }
  
    .nav-links a {
      padding: 10px 15px;
      text-align: center;
    }
  }
 
.image-boxes {
  display: flex;
  justify-content: space-between;

  gap: 20px;
  margin: 20px;
  flex-wrap: wrap; 
  padding-left: 90px;
}
.image-box {
  flex: 1 1 calc(50% - 20px);
  max-width: 100%;
}

.image {
gap: 0%;
  width: 80%;
  height: auto;
  border-radius: 8px;
  border: 2px solid #ddd;
}

/* Media query for tablets and smaller screens */
@media (max-width: 768px) {
  .image-box {
      flex: 1 1 100%; /* Images will take 100% width on smaller screens */
      margin-bottom: 20px;
  }

  .image-boxes {
      justify-content: center;
  }
}

/* Media query for mobile screens */
@media (max-width: 480px) {
  .image-box {
      flex: 1 1 100%; /* Stack images vertically */
      margin-bottom: 15px;
  }

  .image-boxes {
      justify-content: center;
  }
}

.container {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.section {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section img {
  width: 80%;
 height: auto;
  object-fit: cover;
  border-radius: 8px;
}
.map-container iframe {
  width: 80%;
  height: 650px;
  border-radius: 8px;
  border: none;
}
@media (max-width: 768px) {
  .container {
      flex-direction: column;
  }
}

.heading {
  font-size: 2em;
  color: #333;
  margin-bottom: 20px;
}

.images {
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 2px solid #ddd;
}

/* Media query for smaller screens */
@media (max-width: 768px) {
  .heading {
      font-size: 1.5em;
  }

  .image-boxs {
      width: 90%;
  }
}

/* Media query for mobile screens */
@media (max-width: 480px) {
  .heading {
      font-size: 1.2em;
  }

  .image-boxs {
      width: 95%;
      padding: 15px;
  }
}

/* Media query for mobile screens */
@media (max-width: 768px) {
  .heading {
      font-size: 1.5em;
  }

  .image-boxs {
      width: 90%;
  }
}

/* Media query for mobile screens */
@media (max-width: 480px) {
  .heading {
      font-size: 1.2em;
  }

  .image-boxs {
      width: 95%;
      padding: 15px;
  }
}


.containers {
  /* margin-top: 10px; */
  padding-bottom: 30px;
  max-width: 1200px;
  margin: auto;
}
.section {
  background: #fff;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  opacity: 0; /* Initially hidden */
  transform: translateX(-100%); 
    animation: slideIn 2s forwards; 
}
h3 {
  color: #007bff;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 10px;
}
.icon {
  font-size: 24px;
  margin-right: 10px;
}
@keyframes slideIn {
  to {
      opacity: 5;
      transform: translateX(0);
  }
}
@media (max-width: 600px) {
  body {
      padding: 10px;
  }
  .section {
      padding: 10px;
  }
  h1 {
      font-size: 20px;
  }
  h2 {
      font-size: 18px;
  }
}
.download-button {
  z-index: 100;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #f0a500;
    color: rgb(255, 253, 253);
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    box-shadow: 0 0 10px rgba(19, 25, 88, 0.8);
    cursor: pointer;
  }
  
  .download-button:hover {
    background-color: #1c2251;
    color: rgb(255, 253, 253);

  }
  
  .download-button .icon {
    margin-right: 10px;
  }


  .containe{
    max-width: 1200px;
    margin: auto;
}
.section {
    background: #fff;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h2 {
    color: #007bff;
}
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}
.icon {
    font-size: 24px;
    margin-right: 10px;
}
@media (max-width: 600px) {
    body {
        padding: 10px;
    }
    .section {
        padding: 10px;
    }
    h1 {
        font-size: 20px;
    }
    h2 {
        font-size: 18px;
    }
}


.footer {
    background: #1c2251;
    color: white;
    padding: 40px 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .footer p{
    color: #ffffff;
    font-size: 1rem;
  }
  .footer div {
    flex: 1;
    min-width: 250px;
    margin: 10px;
  }
  .footer h3 {
    margin-bottom: 15px;
  }
  .footer a {
    color: white;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
  }
  .footer iframe {
    width: 100%;
    height: 200px;
    border: none;
  }
  @media (max-width: 768px) {
    .footer {
        flex-direction: column;
        text-align: center;
    }
  }