<style>
  body {
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
  }
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
  }

main{
  max-width: 1200px;
  margin: 0 auto;
}
.index-main{
  display: flex;

}
/* Section base style */
.section {
  padding: 40px 20px;
}

.bg-light {
  background-color: #472a2a;
  color: #ddd;
}

/* Director Section */
.director-container {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

.director-photo {
  width: 150px;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.director-info {
  max-width: 600px;
}

.director-name {
  font-weight: bold;
  font-size: 18px;
  margin: 10px 0 5px;
}

.director-designation {
  font-style: italic;
  margin-bottom: 15px;
}

/* Notice & News */
.notice-list {
  list-style: none;
  padding: 0;
}

.notice-list li {
  padding: 8px 0;
  border-bottom: 1px solid #ddd;
  font-size: 16px;
}
.index-containt{
  background-color: #e6e6e6;
  display: flex  ;
  align-items: center;
  justify-content: space-around;
  margin-top: 10px;
}
.map-container {
  margin-top: 20px;
  border: 2px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
}


  /* Responsive */
  @media (max-width: 768px) {
    .index-main{
    display: flex;
    flex-wrap: wrap;
    }
   
  }
 .gellary-containt{
     display: flex;
     justify-content: center;
 }
  .affilition-containt{
    display: flex;
  }
 .containt-box {
  max-width: 1200px;
  margin: 10px auto;
  padding: 40px 30px;
  background-color: #fdfdfd;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.containt-box-header h1 {
  text-align: center;
  color: #636363;
  font-size: 32px;
  margin-bottom: 30px;
  position: relative;
}

.containt-box-header h1::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: #472a2a;
  margin: 10px auto 0;
  border-radius: 4px;
}

.content p,
.content ul {
  font-size: 17px;
  color: #333;
  line-height: 1.7;
  margin-bottom: 20px;
}

.content ul {
  padding-left: 20px;
}

.content ul li {
  margin-bottom: 10px;
  list-style: disc;
}
</style>