/* Apply a background color to odd-numbered sections */
section:nth-child(even) {
    background-color: #dadcdd; /* Light blue background for odd sections */
  }
  
/* Hero Section */
.hero {
    position: relative;
    background-image: url('starlight.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh; /* Adjust the height as needed */
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  /* Overlay */
  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(59, 29, 29, 0.616); /* Adjust the opacity as needed */
    z-index: 1;
  }
  
  .container {
    position: relative;
    z-index: 2;
  }

  h2, h3{
     color: #154f8d;
  }

  /* Basic Button Styling */
.btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    background-color: #007bff; /* Blue background */
    color: rgb(255, 254, 254);
    border: none;
    border-radius: 20px;
    transition: background-color 0.3s, transform 0.3s;
  }
  
  .btn:hover {
    background-color: #0056b3; /* Darker blue on hover */
    transform: translateY(-2px); /* Slight lift effect */
  }
  
  .btn:active {
    background-color: #0e73df; /* Even darker blue on click */
    transform: translateY(0); /* Reset lift effect */
  }
/* About Section */
.about-section {
    padding: 50px 0;
    background-color: #f4f4f4;
  }
  
  .section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  .section-description {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 40px;
  }
  
  .about-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  
  .about-img,
  .about-text {
    flex: 1 1 40%;
    min-width: 300px;
  }
  
  .about-img img {
    width: 100%;
    max-height: 200px;;
    border-radius: 8px;
  }
  
 
  
  .about-text p {
    font-size: 1rem;
    line-height: 1.6;
  }

  /* Academics Section */
.academics-section {
    padding: 50px 0;
    background-color: #f4f4f4;
  }
  
  .section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  .section-description {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 40px;
  }
  
  .programs {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .program {
    flex: 1 1 30%;
    min-width: 250px;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .program h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  
  .program p {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .about-info {
      flex-direction: column;
      align-items: center;
    }
  
    .about-img,
    .about-text {
      flex: 1 1 100%;
      min-width: 100%;
    }
  
    .about-img img {
      margin-bottom: 20px;
    }

    .programs {
        flex-direction: column;
        align-items: center;
      }
    
      .program {
        flex: 1 1 100%;
        min-width: 100%;
        margin-bottom: 20px;
      }
  }
  