* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  font-family: Arial, sans-serif;
  background-color: white;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  width: 100%;
  background-color: #18B0DD;
  padding: 30px 0;
  flex-shrink: 0;
}

.header-inner {
  max-width: 1200px;
  height: 140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding-left: 20px;
  position: relative;
}

header img.logo {
  height: 160px;
  width: auto;
  flex-shrink: 0;
}

.header-text-container {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  white-space: nowrap;
  max-width: 80%;
}

.header-text, .header-text-devnagri, .header-subtext {
  font-weight: bold;
  color: #fff;
  white-space: nowrap;
  font-family: Arial, 'Noto Sans Devanagari', 'Mangal', 'Arial Unicode MS', sans-serif;
}

.header-text, .header-text-devnagri {
  font-size: 40px;
}

.header-text-devnagri {
  margin-top: 16px;
  margin-bottom: 30px;
}

.header-subtext {
  margin-top: 14px;
  font-size: 18px;
  font-weight: normal;
}

.scrolling-text-container {
  width: 100%;
  background-color: #0f92bf;
  overflow: hidden;
  height: 50px;
  white-space: nowrap;
  box-sizing: border-box;
  padding: 10px 0;
  flex-shrink: 0;
}

.scrolling-text {
  display: inline-block;
  color: white;
  font-size: 25px;
  font-weight: bold;
  padding-left: 100%;
  animation: scroll-left 20s linear infinite;
}

@keyframes scroll-left {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-100%); }
}

.page-buttons {
  display: flex;
  justify-content: center;
  background-color: #f1f1f1;
  padding: 15px 0;
  gap: 20px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.page-buttons button,
.page-buttons a.btn-link {
  background-color: #18B0DD;
  border: none;
  color: white;
  padding: 12px 25px;
  font-size: 18px;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
  min-width: 120px;
  text-align: center;
}

.page-buttons button:hover,
.page-buttons a.btn-link:hover {
  background-color: #0f92bf;
}
body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}
.slider-container {
  position: relative;
  width: 960px; /* ✅ Set your fixed width */
  height: 600px; /* ✅ Set your fixed height */
  overflow: hidden;
  margin: 0 auto;
  border: 2px solid #ccc; /* optional border */
  border-radius: 10px;    /* optional rounded corners */
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  height: 100%;
}

.slide {
  position: relative;
  min-width: 100%;
  overflow: hidden;
}

.slide img {
  width: 100%;
  display: block;
}
img {
  width: 120px;
  height: auto;
  object-fit: cover;
}


.caption {
  position: absolute;
  bottom: 0.5px;
  left: 0;
  width: 100%;
  color: white;
  font-weight: bold;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px;
  line-height: 1.8;
  text-align: justify;
}


/* Slider Button Styles */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.3);
  color: white;
  font-size: 20px;
  padding: 6px 10px;
  border: none;
  cursor: pointer;
  z-index: 10;
  border-radius: 4px;
}
.slider-btn:hover {
  color: #00f0ff;
  text-shadow: 0 0 10px #00f0ff;
}


.slider-btn.prev { left: 10px; }
.slider-btn.next { right: 10px; }
.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0,0,0,0.4);
  border: none;
  color: white;
  font-size: 24px;
  padding: 10px;
  cursor: pointer;
  z-index: 100;
}
.nav.prev { left: 10px; }
.nav.next { right: 10px; }

footer {
  background-color: #18B0DD;
  color: white;
  text-align: center;
  padding: 10px 5px;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: auto;
}

footer a {
  color: white;
  text-decoration: underline;
}

@media (max-width: 1300px) {
  .header-inner {
    max-width: 90%;
  }
  .slider-container {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .nav {
    font-size: 18px;
    padding: 5px;
  }
}

@media (max-width: 768px) {
  .header-text, .header-text-devnagri {
    font-size: 28px;
    white-space: normal;
  }
  .header-subtext {
    font-size: 16px;
  }
  .page-buttons {
    gap: 10px;
  }
  .page-buttons button, .page-buttons a.btn-link {
    min-width: 90px;
    padding: 10px 15px;
    font-size: 16px;
  }
  .slide {
    height: auto;
  }
}
main {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
  flex-grow: 1;
}

h1 {
  color: #18B0DD;
  margin-bottom: 20px;
  text-align: center;
}

p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: justify;
}

@media (max-width: 768px) {
  main {
    margin: 20px 10px;
    padding: 0 10px;
  }

  p {
    font-size: 16px;
  }
}
main h2 {
  color: #18B0DD;
  text-align: center;
  margin-bottom: 25px;
  font-size: 32px;
}

.address-block {
  font-size: 18px;
  line-height: 1.8;
  background-color: #f9f9f9;
  padding: 20px;
  border-left: 5px solid #18B0DD;
  border-radius: 5px;
  margin-bottom: 20px;
}

main a {
  color: #18B0DD;
  text-decoration: none;
}

main a:hover {
  text-decoration: underline;
}

.official-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.official-list li {
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
  display: flex;
  flex-direction: column;
}

.official-name {
  font-weight: bold;
  font-size: 24px;
  color: #18B0DD; /* Your brand blue */
}

.official-position {
  font-weight: normal;
  font-size: 18px;
  color: #555;
  margin-top: 6px;
}

@media (max-width: 768px) {
  .official-name {
    font-size: 20px;
  }
  .official-position {
    font-size: 16px;
  }
}

/* ========== Bye-Laws Page Styles ========== */

iframe {
  width: 100%;
  height: 800px;
  border: 1px solid #ccc;
}

.content {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
  font-size: 22px;
}	

.year-dropdown-container {
  display: flex;
  justify-content: center;
  margin: 30px auto;
}


/* ========== Audit Page Styles ========== */
.year-dropdown-container select {
  font-size: 18px;
  padding: 10px 20px;
  border-radius: 5px;
  border: 1px solid #ccc;
  min-width: 220px;
  cursor: pointer;
}

/* ========== Dropdown Styles ========== */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  background-color: #18B0DD;
  border: none;
  color: white;
  padding: 12px 25px;
  font-size: 18px;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px; /* spacing between text and arrow */
  transition: background-color 0.3s ease;
  min-width: 100px;
  text-align: center;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 180px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
  z-index: 1;
  border-radius: 5px;
}

.dropdown-content a {
  color: #333;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-size: 16px;
}

.dropdown-content a:hover {
  background-color: #ddd;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown:hover .dropbtn {
  background-color: #0f92bf;
}

page-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  padding: 15px 10px;
  background-color: #f1f1f1;
}

.page-buttons button,
.page-buttons .dropbtn {
  background-color: #18B0DD;
  border: none;
  color: white;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
}

.page-buttons button:hover,
.page-buttons .dropbtn:hover {
  background-color: #0f92bf;
}

/* Dropdown styles */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 150px;
  z-index: 1;
  border-radius: 5px;
  box-shadow: 0px 2px 6px rgba(0,0,0,0.2);
}

.dropdown-content a {
  color: black;
  padding: 10px 15px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #eee;
}

.dropdown:hover .dropdown-content {
  display: block;
}
.contact-info {
  font-size: 1.3rem;
  font-weight: bold;
}

.text-slider-container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 30px auto;
  overflow: hidden;
  background: #f1f1f1;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.text-slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.text-slide {
  min-width: 100%;
  font-size: 1.1rem;
  text-align: center;
  padding: 10px;
  color: #333;
}

.text-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #444;
  color: #fff;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 1.2rem;
  border-radius: 4px;
}

.text-slider-btn.prev {
  left: 10px;
}

.text-slider-btn.next {
  right: 10px;
}

.page-wrapper {
  min-height: calc(100vh - 60px); /* adjust 60px based on footer height */
}
.slider-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin: 20px;
  flex-wrap: wrap;
}

.news-box {
  width: 200px;
  background: #f3f3f3;
  padding: 15px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.6;
  max-height: 350px;
  overflow-y: auto;
}
.news-box h3 {
  margin-top: 0;
  font-size: 16px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 5px;
}

.slider-container {
  flex: 1;
  position: relative;
  overflow: hidden;
  min-width: 300px;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  background: rgba(0,0,0,0.4);
  color: #fff;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
}

.slider-btn.prev { left: 10px; }
.slider-btn.next { right: 10px; }

