.content-box {
  display: -webkit-box;
  -webkit-line-clamp: 7; /* limit to 10 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.read-more {
  display: inline-block;
  margin-top: 8px;
  color: blue;
  text-decoration: underline;
  cursor: pointer;
}

/* Container for the list */
.stylish-list {
  display: flex; /* Use Flexbox for easy alignment */
  flex-direction: column;
  gap: 10px; /* Adds space between items without margins */
  padding: 20px;
  /*background-color: #f8f9fa;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);*/
}

/* Individual list item */
.stylish-list-item {
  display: flex; /* Use Flexbox to align marker and text */
  align-items: center; /* Vertically center marker and text */
  padding: 15px;
  background-color: #ffffff;
  border-left: 5px solid #015296; /* Adds a colorful border accent */
  border-top: 0.2px solid #e2e3e5;
  border-radius: 4px;
  transition: transform 0.2s ease, box-shadow 0.2s ease; /* Smooth hover transition */
  color: #333;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.who-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-family: Arial, sans-serif;
  font-size: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.who-table th,
.who-table td {
  border: 1px solid #ddd;
  padding: 10px 14px;
  text-align: left;
}

.who-table thead {
  background: #003366; /* dark blue header */
  color: #fff;
}

.who-table tbody tr:nth-child(even) {
  background: #f9f9f9; /* alternate row color */
}

.who-table tbody tr:hover {
  background: #e6f0ff; /* highlight on hover */
}

.who-table td {
  vertical-align: middle;
}

/* Custom bullet/marker using ::before pseudo-element */
.stylish-list-item::before {
  content: "→"; /* Use a custom character or emoji as the marker */
  font-size: 1.2em;
  color: #015296;
  font-weight: bold;
  margin-right: 15px;
}

/* Hover effect for a more interactive feel */
.stylish-list-item:hover {
  transform: translateX(5px); /* Moves the item slightly to the right */
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 15px;
}

.gallery img {
  width: 100%;
  height: 180px; /* Shrunk thumbnails */
  object-fit: cover; /* Crops image nicely */
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.gallery img:hover {
  transform: scale(1.05);
}

/* Lightbox overlay */
.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

/* Close button */
.lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

a.ach {
  display: inline-block !important;
}
a.ach img.icon-size4 {
  width: 40px;
  height: 20px;
  vertical-align: middle;
  margin-left: 6px;
}
 .hide{
	 display: none;
 }
 
 .visible{
	 visibility: hidden;
 }
 
 .footer-wrapper2 {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}