
<style>


.TopNav p {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    transition: color 0.3s ease;
    color:#fff;
}
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #333;
}

/* Main Index Container */
.index-container {
    display: flex;
    margin: auto;
    padding: 5px;
    font-family: 'Segoe UI', sans-serif;
    color: #333;
    max-width: 1200px;
    flex-wrap: nowrap;
}

/* Common Container */
.container {
  background-color: #ffffff00;
  padding: 10px;
}

/* Director's Section */
.director-speach-container {
  display: flex;
  flex-wrap: wrap;
  background: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 5px;
  padding: 10px;
  margin-bottom: 10px;
  gap: 10px;
  align-items: center;
}

.director-photo {
  flex: 1;
  max-width: 170px;
  text-align: center;
}

.director-photo img {
  width: 100%;
  max-width: 170px;
  height: auto;
  /*border-radius: 50%;*/
  /*box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);*/
  margin-bottom: 15px;
}

.director-photo h2 {
  font-size: 22px;
  color: #495057;
  margin: 0;
}

.director-photo h3 {
  font-size: 16px;
  color: #666;
  margin-top: 5px;
}

.speach {
  flex: 2;
  font-size: 16px;
  line-height: 1.8;
}

/* About Box Section */
.about-box-container {
  /*display: flex;*/
  /*flex-wrap: wrap;*/
  gap: 10px;
  /*margin-bottom: 10px;*/
}

.about-containt{
  background: #e7ecef;
  border-radius: 5px;
  padding: 15px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  flex: 1;
  min-width: 280px;
  margin-bottom: 10px;
}

.containt-heading {
  color: #666;
  font-size: 24px;
  margin-bottom: 15px;
}

.about-containt p{
    color:#666;
  margin-bottom: 10px;
  font-size: 15px;
}

.about-containt ul{
    color:#666;
  padding-left: 20px;
  list-style: disc;
}

.list li {
  margin-bottom: 8px;
}

.subheading {
  color: #495057;
  font-size: 18px;
  margin-top: 15px;
  margin-bottom: 5px;
}

/* Notice Section */
.notice-container {
  background: #ffffff;
  height:auto;
  /*border-left: 6px solid #0077cc;*/
  padding: 10px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.section-heading {
  font-size: 22px;
  color: #004080;
  margin-bottom: 20px;
}

.news-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.news-list li {
  border-bottom: 1px dashed #ccc;
  padding: 12px 0;
}

.news-list li:last-child {
  border-bottom: none;
}

.news-date {
  font-weight: bold;
  color: #0077cc;
  display: inline-block;
  width: 140px;
}

.news-list p {
  display: inline-block;
  margin: 0;
  font-size: 15px;
  color: #333;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .index-container {
    /*display: flex;*/
    /*margin: auto;*/
    /*padding: 5px;*/
    /*font-family: 'Segoe UI', sans-serif;*/
    /*color: #333;*/
    /*max-width: 1200px;*/
    flex-wrap: wrap;
}

  .director-speach-container {
    flex-direction: column;
    text-align: center;
  }

  .about-box-container {
    flex-direction: column;
  }

  .news-date {
    display: block;
    width: auto;
    margin-bottom: 4px;
  }
}
.marquee-wrapper {
  height: 150px;
  overflow: hidden;
  position: relative;
}

.marquee {
  display: inline-block;
  animation: scroll-up 12s linear infinite;
}

@keyframes scroll-up {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(-100%);
  }
}

.news-list li {
  margin-bottom: 15px;
}

.news-date {
  font-weight: bold;
  color: #007bff;
}


.list {
    margin: 15px 0;
    padding-left: 20px;
}

.list li {
    margin-bottom: 10px;
}


    .quick-link {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 20px 10px;
    /*background-color: #f8f9fa;*/
}

.quick-link-box {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 12px;
    width: 160px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.quick-link-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.quick-link-box a {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
}

.quick-link-box img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 600px) {
    .quick-link-box {
        width: 100%;
    }
}
</style>