/* Add your CSS styles here */
body {
    font-family: Arial, sans-serif;
  }
  
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #f0f0f0;
  }
  
  .logo img {
    max-height: 80px;
  }
  
  nav ul {
    list-style: none;
    display: flex;
  }
  
  nav li {
    margin-right: 20px;
  }
  
  section {
    padding: 40px;
  }
  
  footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: white;
  }
  
  /* Add these styles at the end of your styles.css */
.dark {
    background-color: #222;
    color: white;
  }
  
  .dark header {
    background-color: #111;
  }
  
  .dark footer {
    background-color: #444;
  }
  
/* Add this to your styles.css */
/* Add this to your styles.css */
#about {
  background-color:#0A1828; /* Dark Grey */
  color: #BFA181; /* Yellow-Green */
  padding: 40px;
  text-align: center;
}


#about h1, #about h2 {
  color: #BFA181; /* Gold */
}

#about p {
  color: #BFA181; /* Gold */
}

#about ul {
  color: #BFA181; /* Gold */
}

#about a {
  color: #66a3b9; /* Light Blue for links */
  text-decoration: none;
  transition: color 0.3s;
}

#about a:hover {
  color: #4992a5; /* Darker Blue for link hover */
}



#about h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

#about h2 {
  font-size: 24px;
  margin-top: 20px;
}

#about p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
}

#about ul {
  text-align: left;
  margin-left: 20px;
  font-size: 18px;
  line-height: 1.6;
}

#about li {
  margin-bottom: 10px;
}

#about a {
  color: #007bff;
  text-decoration: none;
  transition: color 0.3s;
}

#about a:hover {
  color: #0056b3;
}

/* Add this to your styles.css */
#about {
  background-color: #0A1828; /* Dark Classic Blue */
  color: #BFA181; /* Gold */
  padding: 40px;
  text-align: center;
}

#about h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

#about h2 {
  font-size: 24px;
  margin-top: 20px;
}

#about p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
}

#about ul {
  text-align: left;
  margin-left: 20px;
  font-size: 18px;
  line-height: 1.6;
}

#about li {
  margin-bottom: 10px;
}

#about a {
  color: #007bff;
  text-decoration: none;
  transition: color 0.3s;
}

#about a:hover {
  color: #0056b3;
}

/* Add animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#about .animated {
  animation: fadeInUp 1s ease-in-out;
}





/* Add this to your styles.css */
.department img {
  width: 200px; /* Adjust the width as needed */
  height: 150px; /* Adjust the height as needed */
  object-fit: cover; /* Preserve aspect ratio and cover the entire container */
  margin: 10px 0; /* Add margin for spacing */
}
/* Add this to your styles.css */
#departments {
  background-color: #0A1828; /* Dark Classic Blue */
  color: #BFA181; /* Gold */
  padding: 40px;
  text-align: center;
}

#departments h1 {
  color: #BFA181; /* Gold */
}

#departments h2 {
  color: #BFA181; /* Gold */
}

#departments p {
  color: #BFA181; /* Gold */
}

#departments img {
  border: 5px solid #BFA181; /* Gold border for images */
}

#departments a {
  color: #66a3b9; /* Light Blue for links */
  text-decoration: none;
  transition: color 0.3s;
}

#departments a:hover {
  color: #4992a5; /* Darker Blue for link hover */
}

/* Add this to your styles.css */
#departments {
  background-color: #0A1828; /* Dark Classic Blue */
  color: #BFA181; /* Gold */
  padding: 40px;
  text-align: center;
}

#departments h1 {
  color: #BFA181; /* Gold */
}

#departments h2 {
  color: #BFA181; /* Gold */
}

#departments p {
  color: #BFA181; /* Gold */
}

#departments .department {
  margin-bottom: 30px;
  padding: 20px;
  background-color: transparent; /* Transparent Background */
  border-radius: 8px;
  transition: background-color 0.3s;
}

#departments .department:hover {
  background-color: rgba(191, 161, 129, 0.1); /* Lighter Gold Background on Hover */
}

#departments img {
  border: 5px solid #BFA181; /* Gold border for images */
  max-width: 100%;
  height: auto;
}

#departments a {
  color: #66a3b9; /* Light Blue for links */
  text-decoration: none;
  transition: color 0.3s;
}

#departments a:hover {
  color: #4992a5; /* Darker Blue for link hover */
}
#activities{
background-color:  #0A1828;
}
/* Add this to your styles.css */
.activity {
  background-color: #0A1828;
  color: #BFA181;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}


/* Add this to your styles.css */
.activity {
  background-color: #0A1828;
  color: #BFA181;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

/* Add this to your styles.css */
.highlight-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none; /* Allow interactions with elements beneath */
}

.activity:hover .highlight-animation {
  opacity: 1;
}

/* Add this to your styles.css */
.activity .highlight-animation {
  transform-origin: center;
  transform: scale(1.05);
  transition: transform 0.3s, opacity 0.3s;
}

.activity:hover .highlight-animation {
  transform: scale(1);
  opacity: 1;
}

/* Add this to your styles.css */
.activity-card {
  background-color: #f7f7f7;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.activity-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.1);
}

.activity-content h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.activity-content p {
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 15px;
}

/* styles.css */
#admissions {
  background-color: #0A1828; /* Dark Classic Blue */
  color: #BFA181; /* Gold */
  padding: 40px;
  text-align: center;
}

#admissions h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

#admissions h2 {
  font-size: 24px;
  margin-top: 20px;
}

#admissions p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
}

#admissions ul {
  text-align: left;
  margin-left: 20px;
  font-size: 18px;
  line-height: 1.6;
}

#admissions li {
  margin-bottom: 10px;
}

#admissions a {
  color: #007bff;
  text-decoration: none;
  transition: color 0.3s;
}

#admissions a:hover {
  color: #0056b3;
}

.portal{
  color: #007bff;
 text-decoration: none;
}

/* Scholarships Section Styles */
#scholarships {
  background-color: #0A1828;
  color: #BFA181;
  padding: 20px;
  border-radius: 8px;
}

#scholarships h1 {
  font-size: 28px;
  margin-bottom: 20px;
}

#scholarships .scholarship {
  background-color: #152C49;
  color: #BFA181;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
}

#scholarships .scholarship h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

#scholarships .scholarship p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 10px;
}

#scholarships .scholarship .additional-info {
  font-size: 16px;
  margin-top: 10px;
  background-color: #152C49;
  color: #BFA181;
  padding: 10px;
  border-radius: 8px ;
  display: none;
  
}

/* Dark Mode Styles */
body.dark-mode {
  background-color: #1E1E1E; /* Dark background color */
  color: #EAEAEA; /* Light text color */
}

/* Additional Dark Mode Styling for Specific Sections */
body.dark-mode #scholarships {
  background-color: #152C49;
  color: #BFA181;
}
