body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background-color: #f3e0c2;
  color: #194850;
  line-height: 1.7;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #194850;
  padding: 15px 40px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 45px;         
  height: auto;
  border-radius: 8px; 
}

.logo span {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #14464d;
  padding: 15px 60px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 45px;         
  height: auto;
  border-radius: 8px;  
}

.logo span {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}


.nav-links {
  list-style: none; 
  display: flex;
  gap: 40px; 
  justify-content: center;
  flex: 1;
} 


.nav-links  a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links  a:hover {
 color: #093943;
  filter: drop-shadow(5px 5px 5px rgb(255, 255, 255));
}
.nav-links a.active {
  position: relative;
  
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -5px;   
  left: 0;
  width: 100%;
  height: 3px;    
  background-color: #ffffff; 
  border-radius: 50px;
  
  filter: drop-shadow(5px 5px 5px rgb(255, 255, 255));
}



.search-box {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 30px;
  padding: 5px 10px;
  margin-left: 20px;
  margin-right: 20px;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.search-box input {
  border: none;
  outline: none;
  background: transparent;
  padding: 8px 10px;
  font-size: 0.95rem;
  width: 150px;
  transition: width 0.3s ease;
}

.search-box input:focus {
  width: 200px;
}

.search-box button {
  border: none;
  background: none;
  color: #004d61;
  font-size: 1rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.search-box button:hover {
  color: #00a6b4;
}




.profile-pic {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ccc;
  cursor: pointer;
  
}

.about-page {
  padding: 60px 80px;
 
}

.about-header {
  text-align: center;
  margin-bottom: 60px;
  
}

.about-header h1 {
  font-size: 48px;
  color: #194850;
  margin-bottom: 10px;
  font-weight: bolder;
}

.about-header span {
  color: #3bbed5;
}

.about-header p {
  font-size: 20px;
  color: #194850;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

.about-content .text {
  flex: 1;
  font-size: 25px;
}

.about-content .text h2 {
  font-size: 30px;
  color: #194850;
  margin-bottom: 15px;
 
}

.about-content .text p {
  font-size: 16px;
  color: #194850;
  margin-bottom: 15px;
  font-size: large;
}

.about-content .image {
  flex: 1;
  text-align: center;
  font-size: 30px;
 
}

.about-content .image img {
  width: 100%;
  max-width: 400px;
  transition: transform 0.3s ease;
}

.about-content .image img:hover {
  transform: scale(1.03);
}

.stats-bar {
  display: flex;
  justify-content: space-around;
  text-align: center;
  margin-top: 50px;
  padding: 30px 0;
  background-color: #f3e0c2; 
  border-radius: 10px;
}

.stat-item h3 {
  font-size: 45px;
  color: #194850;
  margin: 0;
  font-weight: 700;
  font-family: monospace; 
}

.stat-item p {
  font-size: 18px;
  color: #194850;
  margin-top: 5px;
  font-weight: 500;
}
.mission {
  margin-top: 60px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.mission h2 {
  font-size: 30px;
  color: #194850;
  margin-bottom: 15px;
}

.mission p {
  font-size: 18px;
  color: #194850;
}
.footer {
  background-color: #194850;
  color: #fff;
  text-align: center;
  padding: 25px 10px;
  margin-top: 60px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  margin: 0 12px;
}

.footer-links a:hover {
  color: #f3e0c2;
}