/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }
  
  h1, h2, h4, h5 {
    font-weight: 600;
  }
  
  p {
    font-size: 1.1rem;
    line-height: 1.8;
  }
  
  a {
    text-decoration: none;
  }
  
  .btn {
    border-radius: 30px;
    padding: 12px 25px;
  }
  
  /* Navbar */
  .navbar {
    padding: 15px 50px;
    background-color: #fff;
  }
  
  .navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
  }
  
  .nav-link {
    font-weight: 500;
    color: #555;
    margin-left: 15px;
  }
  
  .nav-link:hover {
    color: #007bff;
  }
  
  /* Hero Section */
  .hero {
    background: linear-gradient(to right, #6a11cb, #2575fc);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .hero h1 {
    font-size: 3rem;
    color: #fff;
  }
  
  .hero p {
    color: #f0f0f0;
    margin-top: 20px;
  }
  
  .hero .btn {
    margin-top: 30px;
    background: #ff7675;
    color: white;
    font-size: 1.2rem;
    transition: 0.4s;
  }
  
  .hero .btn:hover {
    background: #ff4757;
  }
  
  /* Curriculum Section */
  #curriculum {
    background-color: #f9f9f9;
  }
  
  .card {
    border: none;
    border-radius: 15px;
    background: #fff;
    transition: transform 0.3s;
    height: 100%;
  }
  
  .card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
  }
  
  .card-title {
    font-size: 1.4rem;
    color: #333;
  }
  
  .card i {
    color: #007bff;
  }
  
  /* Subjects Section */
  .subjects {
    padding: 50px 0;
  }
  
  .subject-card {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
    padding: 30px 20px;
    border-radius: 15px;
    margin-bottom: 30px;
    color: #fff;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .subject-card i {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }
  
  .subject-card:hover {
    transform: scale(1.05);
    box-shadow: 0px 10px 25px rgba(255, 150, 150, 0.5);
  }
  
  .subject-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
  }
  
  .subject-card p {
    flex-grow: 1;
  }
  
  /* Benefits Section */
  #benefits {
    background: linear-gradient(180deg, #f0f8ff, #dff9fb);
    padding: 60px 0;
  }
  
  #benefits img {
    border-radius: 15px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .list-group {
    padding-left: 0;
  }
  
  .list-group-item {
    font-size: 1.1rem;
    padding: 15px 20px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
  }
  
  .list-group-item i {
    color: #28a745;
    margin-right: 10px;
  }
  
  .list-group-item p {
    margin: 0;
  }
  
  /* Contact Section */
  .contact {
    padding: 50px 0;
    text-align: center;
    background: linear-gradient(to right, #24c6dc, #514a9d);
  }
  
  .contact h2 {
    color: white;
    font-size: 2.5rem;
  }
  
  .contact p {
    color: #ddd;
    margin-bottom: 30px;
  }
  
  .contact .btn {
    background-color: #ff7675;
    color: white;
    padding: 15px 30px;
    font-size: 1.2rem;
    border: none;
    transition: 0.4s;
  }
  
  .contact .btn:hover {
    background-color: #ff4757;
    transform: translateY(-5px);
  }
  
  /* Footer */
  footer {
    background-color: #2c2c54;
    color: #ddd;
    padding: 20px 0;
  }
  
  footer p {
    margin: 0;
  }
  
  /* Scroll Animation */
  .card, .subject-card, .btn {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
  }
  
  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .home-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border-radius: 5px;
    transition: 0.3s;
  }
  
  .home-btn i {
    margin-right: 8px;
  }
  
  .home-btn:hover {
    background-color: #0056b3;
    text-decoration: none;
  }
  