html {
  scroll-behavior: smooth;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  background-color: #f9f9f9;
  color: #2a2a2a;
}


section {
  padding: 4.5rem 2rem; 
  /* border-bottom: 1px solid #ccc; */
  min-height: 100vh;
}

#intro{
    padding: 1rem 2rem ;
}

.heads{
    color:  #1b4332;
    background-color:  #1b4332;
    color: #f9f9f9;

    display: inline-block;
    border-radius: 1rem;
        margin: 1rem 0;
    padding: 0.5rem 1rem;
}

p{
    color: #555;
      font-size: clamp(1rem, 1.1vw, 1.25rem);
      margin-top: 0.75rem;
      line-height: 1.5;
}

.director-container {
  overflow: hidden;
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  text-align: justify;
}

.director-img {
  float: left;
  margin: 0 1.5rem 1rem 0;
  width: 250px;
  max-width: 100%;
  height: auto;
}

.director-content {
  overflow: hidden;
}

@media (max-width:527px) {
    .director-container{
        display: flex;
        flex-direction: column;
    }
    .director-img{
        margin: auto;
    }
}
body {
  /* overflow-y: scroll;             */
  -ms-overflow-style: none;       /* IE and Edge */
  scrollbar-width: none;          /* Firefox */
}

body::-webkit-scrollbar {
  display: none;                  /* Chrome, Safari, Opera */
}

/* Section Title */
.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin: 2rem 0 1rem;
  color: #1b4332;
  font-weight: 700;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  margin: 10px auto 0;
  background-color: #74c69d;
  border-radius: 2px;
}

/* Container for overflow */
.milestone-container {
  overflow-x: auto;
  padding: 0 1rem;
}

/* Table Styling */
.milestone-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Segoe UI', sans-serif;
  border-radius: 8px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

/* Header */
.milestone-table thead th {
  background: linear-gradient(to right, #1b4332, #2d6a4f);
  color: #fff;
  font-size: 1.1rem;
  padding: 1rem;
  text-align: left;
}

/* Row Styling */
.milestone-table tbody tr:nth-child(even) {
  background-color: #f8f9fa;
}
.milestone-table tbody tr:nth-child(odd) {
  background-color: #ffffff;
}

/* Hover Effect */
.milestone-table tbody tr:hover {
  background-color: #e6f2ec;
  transition: background-color 0.3s ease;
}

/* Cell Styling */
.milestone-table td {
  padding: 1.2rem;
  font-size: 1rem;
  vertical-align: top;
  color: #343a40;
}

.milestone-table td ul {
  padding-left: 1.2rem;
  margin: 0;
  list-style: disc;
}

.milestone-table td ul li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .milestone-table th,
  .milestone-table td {
    padding: 0.8rem;
    font-size: 0.95rem;
  }
}

/* Section Title */
.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin: 2rem 0 1rem;
  color: #1b4332;
  font-weight: 700;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  margin: 10px auto 0;
  background-color: #74c69d;
  border-radius: 2px;
}

/* Grid Layout */
.directors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  padding: 2rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Card Styling */
.director-card {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 5px solid #40916c;
}

.director-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Card Text */
.director-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #1b4332;
}

.director-card p {
  font-size: 0.95rem;
  color: #495057;
  font-style: italic;
  margin: 0;
}

/* Responsive Font Size */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .director-card h3 {
    font-size: 1rem;
  }

  .director-card p {
    font-size: 0.9rem;
  }
}

#directors{
    padding: 0;
}

.vision-mission {
  background: #f8f9fc;
  padding: 60px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}

.container {
  max-width: 900px;
  margin: 0 auto;
}

.section-title {
  font-size: 28px;
  color: #004080;
  margin-bottom: 15px;
  border-left: 5px solid #004080;
  padding-left: 10px;
}

.vision-text {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
  background: #fff;
  padding: 20px;
  border-left: 4px solid #28a745;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.mission-list {
  list-style: none;
  padding-left: 0;
}

.mission-list li {
  font-size: 17px;
  margin-bottom: 15px;
  padding: 15px 20px;
  background: #ffffff;
  border-left: 4px solid #17a2b8;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}
#toTopBtn {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  font-size: 22px;
  color: white;
  background-color: #1b4332;
  border: none;
  border-radius: 50%;
  padding:0.75rem 1.05rem;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease, transform 0.2s;
}

#toTopBtn:hover {
  background-color: #285f44;
  transform: scale(1.1);
}

#toTopBtn i {
  font-weight: bold;
}
.copyright {
  background-color: #1b4332;
  color: #f9f9f9;
  padding: 1rem;
  text-align: center;
}
