/* Import Google Fonts */
@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap);
@import url(https://cdnjs.cloudflare.com/ajax/libs/bootstrap/3.3.7/css/bootstrap.min.css);

/* Global Styles */
* {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


.gallery-container {
  width: 100%; 
  margin: auto;
  padding: 20px;
  width: 100%;
}

hr{
    text-align: center;
}


.documents-section {
  display: flex;
 flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 30px;
}

.documents-header {
  background: #ddd;
  padding: 10px;
  width: fit-content;
  font-weight: bold;
  border-radius: 5px;
  height: fit-content;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 10px;
  margin-right: 30px;
  margin-left: 120px;
}


.documents-content {
  display: flex;
 
  gap: 20px;
  justify-content: space-between;
  width: auto;
}

.documents-content ul {
  list-style: none;
  padding: 0;
}

.documents-content li {
 
  padding: 10px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  font-size: 1rem;
  font-weight: bold;
  color: #333;
  
}

/* Eligibility Section */
.eligibility-section {
  background: #eef2ff;
  padding: 15px;
  border-radius: 8px;
  text-align: left;
  margin-top: 20px;
}

.eligibility-section h3 {
  color: #0056b3;
  margin-bottom: 5px;
}

/* Section Title */
.section-title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
}

/* Tickmark */
.tickmark {
  color: #09a404;
  font-size: 20px;
  margin-right: 8px;
}

/* Photo Gallery */
.photo-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.photo-gallery img {
  width: 300px;
  height: 300px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease-in-out;
}

.photo-gallery img:hover {
  transform: scale(1.05);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .documents-section {
    display: block;
   flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
  }
  .eligibility-section {
    background: #eef2ff;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    margin-top: 20px;
  }
  .eligibility-section h3 {
    color: #0056b3;
    margin: 20px auto;
  } 
   .eligibility-section p {
padding: 0px;
    margin: 0px;
  }
  .documents-header {
    font-size: 1.2rem;
    text-align: center;
    display: flex;
    align-items: center;
    margin: 10px auto;
  }
  .documents-content {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .gallery-container {
    max-width: 700px;
    margin-bottom: 10px;
    padding: 20px;
    text-align: center;
    align-items: center;
    justify-content: center;
  }

  .photo-gallery img {
    width: 45%;
  }
}

@media (max-width: 480px) {
  .eligibility-section {
    background: #eef2ff;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    margin-top: 20px;
  }
  .eligibility-section h3 {
    color: #0056b3;
    margin: 20px auto;
  } 
   .eligibility-section p {
padding: 0px;
    margin: 0px;
  }
  .documents-header {
    font-size: 1.2rem;
    text-align: center;
    display: flex;
    align-items: center;
    margin: 10px auto;
  }

  .documents-content li {
    font-size: 0.9rem;
  }
  .gallery-container {
    max-width: 700px;
    margin-bottom: 10px;
    padding: 20px;
    text-align: center;
    align-items: center;
    justify-content: center;
  }
  .photo-gallery img {
    width: 100%;
  }
}
