        #flexSlider .slides img {
    width: 100%;
    height: 500px; /* or 400px etc */
    object-fit: contain; /* contain instead of cover */
    background: #000; /* Optional: add background color to fill empty areas */
  }

  #flexSlider .slides li {
    width: 100%;
    height: 500px;
    overflow: hidden;
    background: #000; /* match background */
  }

  
 
  /* Styling the boxes */
.update-box {
  border: 1px solid #ddd;
  padding: 20px;
  margin: 15px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  background-color: #f8f9fa;
  overflow: hidden;
}

.update-box.bg-info {
  background-color: #17a2b8 !important;  /* Light blue */
}

.update-box.bg-warning {
  background-color: #ffc107 !important;  /* Yellow */
}

.update-box.bg-success {
  background-color: #28a745 !important;  /* Green */
}

/* Styling for the scrollable content */
.update-content {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.content-wrapper {
  height: 100%;
  overflow-y: scroll; /* Enable vertical scroll */
  padding-right: 12px; /* Add space for the scrollbar */
  scrollbar-width: thin; /* For Firefox */
  scrollbar-color: #4db8ff #e0e0e0; /* Custom color for Firefox */
}

.content-wrapper::-webkit-scrollbar {
  width: 8px; /* Width of the scrollbar */
}

.content-wrapper::-webkit-scrollbar-thumb {
  background-color: #4db8ff;
  border-radius: 10px;
}

.content-wrapper::-webkit-scrollbar-track {
  background: #e0e0e0;
}

/* Marquee and hover effect */
.update-content marquee {
  font-size: 14px;
  color: #fff;
  line-height: 1.6;
  font-weight: 400;
  text-align: left;
  list-style: none;
  animation: scrollUp 10s linear infinite;
}

.update-content marquee ul {
  padding-left: 0;
}

.update-content marquee li {
  padding: 5px 0;
  border-bottom: 1px solid #ddd;
}

.new-tag {
  color: #ff3d3d;
  font-weight: bold;
  animation: blink 0.6s infinite alternate;
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes scrollUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}

/* Custom scrollbar style for better appearance */
.update-content::-webkit-scrollbar {
  width: 10px;
}

.update-content::-webkit-scrollbar-thumb {
  background-color: #4db8ff;
  border-radius: 10px;
}

.update-content::-webkit-scrollbar-track {
  background: #e0e0e0;
}

/* Heading styles */
h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #fff;
  font-weight: 600;
}

a {
  color: #fff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:focus {
  outline: none;
}




.photo-gallery-entry {
        text-align: center;
        margin-top: 50px;
    }

    .section-title {
        font-size: 36px;
        font-weight: 700;
        color: #333;
        margin-bottom: 20px;
    }

    .section-description {
        font-size: 18px;
        color: #555;
        margin-bottom: 30px;
        font-family: 'Arial', sans-serif;
        line-height: 1.6;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
        justify-items: center;
    }

    .gallery-item {
        position: relative;
        overflow: hidden;
        border-radius: 8px;
        cursor: pointer;
    }

    .gallery-image {
        width: 100%;
        border-radius: 8px;
        transition: transform 0.3s ease;
    }

    .gallery-item:hover .gallery-image {
        transform: scale(1.05); /* Zoom-in effect */
    }

    .gallery-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.5);
        display: flex;
        justify-content: center;
        align-items: center;
        opacity: 0;
        transition: opacity 0.3s;
        border-radius: 8px;
    }

    .gallery-item:hover .gallery-overlay {
        opacity: 1;
    }

    .overlay-text {
        color: white;
        font-size: 20px;
        font-weight: bold;
        text-transform: uppercase;
    }

    /* Responsive design */
    @media (max-width: 768px) {
        .gallery-item {
            max-width: 100%;
        }
    }


    .styled-section {
  background-color: #f9f9f9;
  padding: 25px 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  margin-bottom: 40px;
}

.styled-section h2 {
  font-size: 24px;
  color: #2c3e50;
  margin-bottom: 15px;
  font-weight: 600;
}

.styled-section p {
  font-size: 16px;
  line-height: 1.7;
  text-align: justify;
  margin-bottom: 20px;
}

.view-footer a {
  display: inline-block;
  color: #0056b3;
  text-decoration: none;
  font-weight: bold;
  font-size: 15px;
  transition: all 0.3s ease;
}

.view-footer a:hover {
  color: #d35400;
}

.view-footer i {
  margin-left: 6px;
}




.custom-read-btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #0078d4;
    color: #fff;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  }

  .custom-read-btn:hover {
    background-color: #005ba1;
    transform: translateY(-2px);
  }

  .read-less {
    background-color: #d43f00;
  }

  .read-less:hover {
    background-color: #a33100;
  }

  .clickable-div1 {
      transition: all 0.3s ease;
      cursor: pointer;
	  padding: 30px; background-color: #ffe5e5; border: 1px solid #dee2e6; border-radius: 10px; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); height: 100%; display: flex; align-items: center; justify-content: center;
    }
	
	  .clickable-div2 {
      transition: all 0.3s ease;
      cursor: pointer;
	  padding: 30px; background-color: #17a2b8; border: 1px solid #dee2e6; border-radius: 10px; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); height: 100%; display: flex; align-items: center; justify-content: center;
    }
	
	  .clickable-div3 {
      transition: all 0.3s ease;
      cursor: pointer;
	  padding: 30px; background-color: #28a745; border: 1px solid #dee2e6; border-radius: 10px; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); height: 100%; display: flex; align-items: center; justify-content: center;
    }
    .clickable-div1:hover {
      transform: scale(1.03);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    }
	
	   .clickable-div2:hover {
      transform: scale(1.03);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    }
	
	   .clickable-div3:hover {
      transform: scale(1.03);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    }
	
	.bix
	{
		flex: 0 0 33.3333%;
		padding: 15px; 
		box-sizing: border-box;
	}
	
	.bix1
	{
		display: flex; flex-wrap: wrap; text-align: center;
	}
	.anc
	{
		text-decoration: none; font-weight: bold; color: #000;    font-family: monospace;
	}
	.news-container {
      display: flex;
      align-items: center;
      background-color: #f2f2f2;
      padding: 10px 20px;
      border: 1px solid #ccc;
      border-radius: 8px;
      overflow: hidden;
    }

    .news-tag {
      background-color: #004709;
      color: white;
      padding: 5px 15px;
      font-weight: bold;
      border-radius: 5px;
      margin-right: 20px;
      white-space: nowrap;
    }

    .news-marquee {
      overflow: hidden;
      white-space: nowrap;
      position: relative;
      flex: 1;
    }

    .news-marquee-content {
      display: inline-block;
      padding-left: 100%;
      animation: marquee 15s linear infinite;
    }

    @keyframes marquee {
      from {
        transform: translateX(0%);
      }
      to {
        transform: translateX(-100%);
      }
    }

    .left-block {
  background: #f5f5f5;
  padding: 20px;
  border-radius: 8px;
  font-family: 'Segoe UI', sans-serif;
}

.view-footer a {
  color: #0077cc;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  margin-top: 10px;
  transition: color 0.3s ease;
}

.view-footer a:hover {
  color: #004a99;
}
/* Optional: custom scrollbar */
div::-webkit-scrollbar {
  width: 6px;
}
div::-webkit-scrollbar-thumb {
  background-color: #999;
  border-radius: 3px;
} 
.custom-readmore-btn {
  display: inline-block;
  padding: 10px 22px;
  background-color: #004080;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.custom-readmore-btn:hover {
  background-color: #0066cc;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}

.readmore-container {
  margin-top: 15px;
}
.section-title {
  color: #000000; /* Pure black */
}


/* tech css */

.technical-support-section {
  background-color: #f5f5f5;
  padding: 30px 20px;
  text-align: center;
  border-top: 1px solid #ddd;
  font-family: 'Segoe UI', sans-serif;
}

.technical-support-section h4 {
  color: #222;
  font-size: 20px;
  margin-bottom: 10px;
}

.technical-support-section p {
  color: #555;
  font-size: 15px;
  margin-bottom: 10px;
}

.technical-support-section ul {
  list-style-type: none;
  padding-left: 0;
  margin: 0;
}

.technical-support-section li {
  margin-bottom: 6px;
  font-size: 15px;
  color: #333;
}

.technical-support-section a {
  color: #004080;
  text-decoration: none;
  font-weight: 500;
}

.technical-support-section a:hover {
  text-decoration: underline;
}


.more-content{
	
	max-height: 500px;
	overflow-y: auto;
	text-align:justify;
}

/* Wrapper */
.shebox-container {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 9999;
}

/* Alert box */
.shebox-box {
  position: relative;
  background-color: #e60000;
  color: #fff;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  width: 260px;
  padding: 10px 14px;
  font-family: 'Segoe UI', sans-serif;
  animation: blink 1.5s infinite;
}

/* Blinking */
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* Close button inside */
.shebox-close-btn {
  position: absolute;
  top: 8px;
  right: 10px;
  background-color: #000;
  color: #fff;
  border-radius: 30%;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10000;
}

/* Text inside */
.shebox-text {
  text-align: center;
  font-size: 14px;
  line-height: 1.4em;
  font-weight: 500;
}

/* Hide box when checkbox checked */
#hide-shebox:checked ~ .shebox-container {
  display: none;
}

