/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    line-height: 1.5;
    color: #333;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Hero Section */
  .hero-section {
    background: linear-gradient(to right, #0444CA, #0444ca);
    color: white;
    padding: 40px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .logo {
    max-width: 150px;
    margin-bottom: 20px;
  }
  
  .hero-content {
    max-width: 60%;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  .hero-content p {
    font-size: 1rem;
    line-height: 1.8;
  }
  
  .signup-form {
    background: white;
    color: #333;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  .signup-form h2 {
    margin-bottom: 15px;
    text-align: center;
    color: #004aad;
  }
  
  .signup-form form {
    display: flex;
    flex-direction: column;
  }
  
  .signup-form input,
  .signup-form select,
  .signup-form button {
    margin-bottom: 15px;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  .signup-form button {
    background: #28a745;
    color: white;
    border: none;
    cursor: pointer;
  }
  
  .signup-form button:hover {
    background: #218838;
  }
  
  /* Course Overview Section */
  .course-overview {
    text-align: center;
    padding: 40px 20px;
    background: #f9f9f9;
  }
  
  .course-overview .highlight {
    color: #004aad;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
  }
  
  .card {
    background: white;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    width: 250px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  
  .card h3 {
    color: #004aad;
    margin-bottom: 10px;
  }
  
  .card p {
    font-size: 0.9rem;
    color: #555;
  }


  #blur {
    color: transparent;
    text-shadow: 0 0 10px #fff;
    font-size: 22px;
    font-family: 'Carme', sans-serif;
  }
  .multi-bg-example {
    width: 100%;
    background-image: url(), url(bubbles.png),
      linear-gradient(to right, rgb(246, 247, 249), rgb(244, 246, 248));
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-position:bottom right, left, right;
  }

   .ani-button {
    animation-duration: 3s;
    animation-name: slide-in;
  }

@keyframes slide-in {
  from {
    translate: 150vw 0;
    scale: 200% 1;
  }

  to {
    translate: 0 0;
    scale: 100% 1;
  }
}

#whatsapp-button {
  position: fixed;
  bottom: 1%;
  right: 1%; 
  background-color: #25d366;
  font-size: 1.5rem;
  
}













  