/* ============= RESET ============= */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f9f9f9;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ============= TOP BAR ============= */
.top-bar {
  background-color: #0056b3;
  color: #fff;
  font-size: 14px;
  padding: 8px 0;
}

.top-bar .social-icons a {
  color: #fff;
  margin-left: 15px;
  transition: color 0.3s;
}

.top-bar .social-icons a:hover {
  color: #ffd700;
}

/* ============= NAVBAR ============= */
.navbar {
  background-color: #ffffff;
  padding: 10px 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.navbar-brand img {
  width: 80px;
  height: auto;
}

.navbar-brand h5 {
  margin: 0;
  font-weight: 700;
  color: #0056b3;
}

.navbar-nav .nav-link {
  color: #333;
  font-weight: 500;
  margin: 0 10px;
  transition: color 0.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-item.active .nav-link {
  color: #0056b3;
}

/* Dropdown on hover */
.navbar .dropdown:hover .dropdown-menu {
  display: block;
}

.navbar .dropdown-menu {
  margin-top: 0;
  background-color: #fff;
  border: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.navbar .dropdown-menu .dropdown-item {
  color: #333;
}

.navbar .dropdown-menu .dropdown-item:hover {
  background-color: #f1f1f1;
  color: #0056b3;
}

/* Fee Payment Button */
.navbar .btn {
  font-size: 14px;
  padding: 6px 15px;
}

/* ============= SLIDER ============= */
.slider-container {
  position: relative;
  overflow: hidden;
}

.slider-container img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

/* ============= LATEST NEWS ============= */
.latest-news {
  background-color: #0056b3;
  color: #fff;
  padding: 15px;
  border-radius: 5px;
}

.latest-news h5 {
  margin-bottom: 10px;
  font-weight: 600;
}

.latest-news marquee {
  font-weight: 500;
}

/* ============= MISSION VISION BLOCKS ============= */
.info-blocks {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 40px 0;
}

.info-block {
  flex: 1 1 30%;
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  text-align: center;
}

.info-block h4 {
  margin-bottom: 15px;
  color: #0056b3;
}

.info-block p {
  margin: 0;
}

/* ============= DIRECTOR BLOCK ============= */
/* Director Block */
.director-block {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 40px;
}

.director-block h4 {
  color: #0056b3;
  margin-bottom: 20px;
}

.director-block p {
  font-size: 16px;
  line-height: 1.6;
}

.director-photo {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%; /* Makes the image circular */
  border: 5px solid #0056b3; /* Optional: add border color */
  box-shadow: 0 0 10px rgba(0,0,0,0.15);
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .director-photo {
    width: 150px;
    height: 150px;
  }


/* ============= CULTURAL ACTIVITIES ============= */
.cultural-block {
  display: flex;
  flex-wrap: wrap;
  margin: 40px 0;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.cultural-block .image {
  flex: 1 1 40%;
}

.cultural-block .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cultural-block .text {
  flex: 1 1 60%;
  padding: 40px;
}

.cultural-block .text h4 {
  color: #0056b3;
  margin-bottom: 20px;
}



/* ============= FOOTER ============= */

.footer {
  background-color: #0d6efd;
  color: #fff;
}
.footer a {
  color: #fff;
  font-size: 18px;
}
.footer a:hover {
  color: #ffc107;
  text-decoration: none;
}
.footer-bottom {
  background-color: #084298;
}
.footer {
  background-color: #333;
  color: #fff;
  padding: 40px 0;
}

.footer h5 {
  color: #fff;
  margin-bottom: 15px;
}

.footer p, 
.footer a {
  color: #ccc;
  font-size: 14px;
}

.footer a:hover {
  color: #ffd700;
}

.footer .social-icons a {
  display: inline-block;
  margin-right: 10px;
  color: #ccc;
}

.footer .social-icons a:hover {
  color: #ffd700;
}

.footer .map iframe {
  border: 0;
  width: 100%;
  height: 200px;
}

/* ============= RESPONSIVE ============= */
@media (max-width: 991px) {
  .info-blocks {
    flex-direction: column;
  }

  .cultural-block {
    flex-direction: column;
  }

  .cultural-block .image,
  .cultural-block .text {
    flex: 1 1 100%;
  }
}

