/* 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 30px;
  }
  
  /* Navbar */
  .navbar {
    padding: 15px 50px;
  }
  
  .navbar-brand {
    font-weight: 700;
    font-size: 1.6rem;
  }
  
  .nav-link {
    font-weight: 500;
    color: #555;
    margin-left: 20px;
  }
  
  .nav-link:hover {
    color: #007bff;
  }
  
  /* Hero Section */
  .hero {
    background: linear-gradient(to right, #117216, #db395c);
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
  }
  
  .hero h1 {
    font-size: 3rem;
  }
  
  .hero p {
    margin-top: 20px;
    font-size: 1.2rem;
  }
  
  .hero .btn {
    margin-top: 30px;
    background: #ff4757;
    color: white;
    transition: 0.4s;
  }
  
  .hero .btn:hover {
    background: #ff6b81;
  }
  
  /* Cards */
  .card {
    border: none;
    border-radius: 15px;
    background: white;
    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;
    margin-top: 15px;
  }
  
  /* Courses Section */
  .course-card {
    padding: 30px;
    background: #f5f5f5;
    border-radius: 15px;
    margin: 15px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
  }
  
  .course-card:hover {
    transform: scale(1.05);
    box-shadow: 0px 10px 25px rgba(255, 150, 150, 0.5);
  }
  
  .course-card h4 {
    font-size: 1.3rem;
    margin: 15px 0;
  }
  
  /* Benefits Section */
  #benefits {
    background: linear-gradient(180deg, #f0f8ff, #dff9fb);
    padding: 60px 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;
  }
  
  /* Contact Section */
  .contact {
    background: #2c3e50;
    padding: 60px 0;
    color: white;
  }
  
  .contact h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  .contact p {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }
  
  .contact .btn {
    background: #ff4757;
    border: none;
    padding: 15px 40px;
    transition: 0.4s;
  }
  
  .contact .btn:hover {
    background: #ff6b81;
    transform: translateY(-5px);
  }
  
  /* Footer */
  footer {
    background: #2c2c54;
    color: #ddd;
    padding: 20px 0;
  }
  
  footer p {
    margin: 0;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .hero h1 {
      font-size: 2rem;
    }
    .hero p {
      font-size: 1rem;
    }
    .contact h2 {
      font-size: 2rem;
    }
  }
  

  /* Home button with icon in rectangular box */
.home-btn {
    display: flex;
    align-items: center;
    font-weight: 600;
    background-color: #f0f8ff;
    color: #007bff;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  
  .home-btn:hover {
    background-color: #007bff;
    color: white;
  }
  
  .home-btn i {
    font-size: 1.2rem;
  }
  
  .home-btn:hover i {
    color: white;
  }
  