body{	
	font-family: Calibri, kalpurush !important;
	max-width:900px; 
	font-size: 17px; 
	color: #000; 
	background-color:#F1F4F9;
  	margin-bottom:10px;
	margin: 0 auto;
	padding: 3px;
	border: 1px solid #a2a2a2;
}
a {
	text-decoration: none; 
	color: #991a22;	
}

hr {
	margin-top:6px;
	margin-bottom:6px;
	border:1px dotted #a5a6a8;  
  }
  

  .div2 {
    padding: 10px;
    font-size: 20px;
    font-weight: bold;
    background-color: #f5f5f5;
    text-align: center;
  }
  .div {border-radius:4px;padding: 8px; font-weight: bold; background-color:#047448;font-size: 20px;color:#fff; }

  .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    padding: 15px;
    max-width: 1000px;
    margin: 0 auto;
  }
  .gallery-item {
    cursor: pointer;
    transition: transform 0.2s;
    aspect-ratio: 1/1;
  }
  .gallery-item:hover {
    transform: scale(1.05);
  }
  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  }
  .modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    overflow: auto;
  }
  .modal-content {
    display: block;
    margin: auto;
    max-width: 95%;
    max-height: 95%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: contain;
  }
  .close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
  }
  .nav-btn {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    padding: 15px;
    user-select: none;
    background-color: rgba(0,0,0,0.5);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    border: none;
    outline: none;
  }
  .nav-btn:hover {
    background-color: rgba(0,0,0,0.8);
  }
  .prev {
    left: 20px;
  }
  .next {
    right: 20px;
  }
  .caption {
    position: fixed;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
    font-size: 16px;
    padding: 10px;
    background-color: rgba(0,0,0,0.5);
    z-index: 1001;
  }

  @media (max-width: 768px) {
    .nav-btn {
      width: 40px;
      height: 40px;
      font-size: 24px;
      padding: 10px;
    }
    .prev {
      left: 10px;
    }
    .next {
      right: 10px;
    }
  }
  .progress-container {
    width: 80%;
    margin: 10px auto;
	background:#e2e2e2;
    border-radius: 10px;
    overflow: hidden;
    display: none;
  }
  .progress-bar {
    height: 20px;
	padding: 3px;
    background: linear-gradient(to right, #4CAF50, #8BC34A);
    width: 0%;
    transition: width 0.3s;
  }
    #progress {
    height: 20px;
	padding: 3px;
    width: 0%;
    background: linear-gradient(to right, #4CAF50, #8BC34A);
    transition: width 0.3s ease;
  }
  .progress-text {
    text-align: center;
    font-size: 16px;
	padding: 5px;
	
  }
