
.manual-item {
    background: #a9c8e9;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
    margin-bottom: 20px;
    padding: 20px;
    transition: box-shadow 0.3s ease;
    -webkit-transition: box-shadow 0.3s ease;
    -moz-transition: box-shadow 0.3s ease;
    -ms-transition: box-shadow 0.3s ease;
    -o-transition: box-shadow 0.3s ease;
  }
  
  .manual-item:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  }
  
  .manual-item h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #000000;
    text-align: center;
  }
  
  .manual-preview {
    width: 100%;
    height: 600px;
    border: none;
    margin-bottom: 15px;
  }
  
  .btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    background-color: #000000;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
    text-align: center;
    cursor: pointer;
    margin: 0 auto;
    display: block;
    max-width: 200px;
  }
  
  .btn:hover {
    background-color: #29c18a;
    transform: scale(1.05);
  }
  
  .btn:active {
    background-color: #000000;
  }
  
  /* p {
    font-size: 16px;
    text-align: center;
    color: #666;
  } */
  
  
  
  
  /* List of documents */
  .documents-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  
  .document-item {
    background: #aed0e7;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 45%; /* Adjust for two columns */
    text-align: center;
    position: relative;
  }
  
  .document-item h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
  }
  
  .document-preview {
    width: 100%;
    height: 400px;
    border: 2px solid #a4dee7;
    border-radius: 8px;
    margin-bottom: 15px;
  }
  
  iframe {
    border: none;
  }
  
  p {
    font-size: 18px;
    color: #666;
  }
  
  
  
  
  
  /* List of documents */
  .documents-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  
  .document-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 45%; /* Adjust for two columns */
    text-align: center;
    position: relative;
  }
  
  .document-item h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
  }
  
  .document-preview {
    width: 100%;
    height: 400px;
    border: 2px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
  }
  
  iframe {
    border: none;
  }
  
  p {
    font-size: 18px;
    color: #666;
  }
  /* General responsive styles */
  @media (max-width: 768px) {
    .container {
        padding: 20px;
    }
  
    .documents-list {
        flex-direction: column;
        align-items: center;
    }
  
    .document-item {
        width: 90%; /* Adjust for smaller screens */
        margin-bottom: 20px;
    }
  
    .document-preview {
        height: 300px; /* Adjust iframe height for smaller screens */
    }
  }
  
  @media (max-width: 480px) {
    .document-preview {
        height: 200px; /* Further adjust iframe height for very small screens */
    }
  
    .btn {
        padding: 10px 20px;
        font-size: 16px;
    }
  
    h1, h2 {
        font-size: 22px;
    }
  
    .document-item h2 {
        font-size: 20px;
    }
  }
  
  





.container {
    padding: 20px;
}

.col-lg-4,
.col-md-6 {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.col-lg-4 img,
.col-lg-4 video {
    transition: transform 0.4s ease;
    border-radius: 10px;
    width: 100%;
    height: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.col-lg-4:hover img,
.col-lg-4:hover video {
    transform: scale(1.1);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 10px;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 0 0 10px 10px;
    text-align: center;
}

.col-lg-4:hover .gallery-caption {
    opacity: 1;
}

@media (max-width: 768px) {
    .col-lg-4 {
        margin-bottom: 20px;
    }

    .gallery-caption {
        font-size: 12px;
        padding: 8px;
    }
}





.container {
  padding: 20px;
}

.card {
  border: none;
  overflow: hidden;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card img {
  border-radius: 15px 15px 0 0;
  transition: transform 0.3s ease;
  height: 200px;
  object-fit: cover;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.card:hover img {
  transform: scale(1.1);
}

.card-body {
  background: linear-gradient(to right, #29de95, #19b39b);
  color: white;
  border-radius: 0 0 15px 15px;
  padding: 15px;
}

.card-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.card a.btn {
  background: white;
  color: #0d335e;
  font-weight: bold;
  border-radius: 50px;
  transition: background 0.3s ease, color 0.3s ease;
}

.card a.btn:hover {
  background: #0056b3;
  color: white;
}






.map-container {
  text-align: center;
  background: linear-gradient(45deg, #e3f2fd, #bbdefb, #64b5f6);
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
}

.map-container:hover {
  box-shadow: 0px 15px 40px rgba(0, 0, 0, 0.3);
}

#visualization {
  border-radius: 10px;
  transition: transform 0.3s ease-in-out;
}

#visualization:hover {
  transform: scale(1.02);
}







