 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: "Poppins", sans-serif;
    }

    body {
      background-color: #fff;
    }

    /* ===== HEADER ===== */
    
    .captionbtn{width:100%; display:flex; justify-content:center;
        flex-direction: column; align-content: center;
        
    }
    .foot {
  background: #f8f9fb;
  padding: 50px 20px;
  text-align: center;
  border-top: 1px solid #e5e5e5;
}

.footer-title {
  font-size: 22px;
  font-weight: 700;
  color: #222;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.search-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.search-buttons a {
  background: #007bff;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 30px;
  transition: all 0.3s ease;
  border: 1px solid #007bff;
}

.search-buttons a:hover {
  background: #0056b3;
  border-color: #0056b3;
  transform: translateY(-2px);
}

/* Mobile Friendly Adjustments */

.captionbtn div{display:flex;  width:100%; justify-content:center; align-items:center; text-align:center; }

.captionbtn p{position:relative; top:-25px;}

 .contact-bar {
    display: none; /* Hidden by default (desktop) */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    
    justify-content: space-between;
    text-align: center;
  }

  .contact-bar a {
    flex: 1;
    color: #fff;
    padding: 14px 0;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
  }

  .contact-bar .whatsapp {
    background: #25d366;
  }

  .contact-bar .call {
    background: #007bff;
  }

  .contact-bar .whatsapp:hover {
    background: #1ebe57;
  }

  .contact-bar .call:hover {
    background: #0056b3;
  }

  .contact-bar i {
    margin-right: 8px;
    font-size: 18px;
  }

form {
  max-width: 500px;
  margin: 40px auto;
  background: #ffffff;
  border-radius: 16px;
  padding: 35px 30px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
}

/* Modal Overlay */
    .modal {
      display: none; 
      position: fixed;
      z-index: 1000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0,0,0,0.6);
      align-items: center;
      justify-content: center;
    }

    /* Modal Box */
    .modal-content {
      background: #fff;
      padding: 30px;
      border-radius: 10px;
      width: 90%;
      max-width: 420px;
      text-align: left;
      position: relative;
      animation: slideIn 0.3s ease;
    }

    /* Close Button */
    .close-btn {
      position: absolute;
      right: 15px;
      top: 10px;
      font-size: 20px;
      color: #333;
      cursor: pointer;
    }

    /* Form Styles */
    .form-control {
      width: 100%;
      padding: 10px;
      margin: 8px 0;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 15px;
    }

    .trk-btn {
      background: #007bff;
      color: #fff;
      border: none;
      padding: 12px 18px;
      font-size: 15px;
      border-radius: 6px;
      cursor: pointer;
      width: 100%;
    }

    .trk-btn:hover {
      background: #0056b3;
    }

    @keyframes slideIn {
      from {
        transform: translateY(-40px);
        opacity: 0;
      }
      to {
        transform: translateY(0);
        opacity: 1;
      }
    }
form:hover {
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

/* Input and Textarea Styling */
form .form-control {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  padding: 12px 15px;
  font-size: 15px;
  color: #1f2937;
  background-color: #f9fafb;
  outline: none;
  transition: all 0.25s ease;
}

form .form-control:focus {
  border-color: #2563eb; /* blue border */
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
  background-color: #fff;
}

/* Placeholder Style */
form .form-control::placeholder {
  color: #9ca3af;
  font-size: 14px;
}

/* Button Styling */
form .trk-btn {
  display: inline-block;
  width: 100%;
  padding: 14px 0;
  border: none;
  border-radius: 10px;
  background: linear-gradient(90deg, #2563eb, #1d4ed8);
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

form .trk-btn:hover {
  background: linear-gradient(90deg, #1d4ed8, #1e40af);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(29, 78, 216, 0.3);
}



.contact-wrapper {
  padding: 60px 20px;
  background: #fff;
  font-family: 'Poppins', sans-serif;
}

.container {
  max-width: 1100px;
  margin: auto;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

/* Left: Form */
.contact-form {
  flex: 1;
  min-width: 340px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 25px;
  background: #fff;
}

.contact-form h4 {
  font-weight: 600;
  margin-bottom: 10px;
}

.contact-form hr {
  border: none;
  border-top: 1px solid #e5e7eb;
  margin-bottom: 20px;
}

.form-row {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}

.form-group label {
  font-weight: 500;
  margin-bottom: 6px;
  color: #374151;
}

.form-group input,
.form-group textarea {
  border: 1px solid #d1d5db;
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 14px;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #2563eb;
}

.btn-submit {
  background: #0066ff;
  color: #fff;
  padding: 10px 18px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.btn-submit:hover {
  background: #0052cc;
}

/* Right: Contact Info */
.contact-info {
  flex: 0.6;
  min-width: 280px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 25px;
  background: #fff;
}

.contact-info h4 {
  font-weight: 600;
  margin-bottom: 8px;
}

.contact-info p {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 25px;
}

.info-box {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.icon {
  background: #e0e7ff;
  color: #2563eb;
  font-size: 20px;
  padding: 8px;
  border-radius: 6px;
}

.info-box h6 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 3px;
}

.info-box p {
  font-size: 14px;
  color: #4b5563;
  margin: 0;
}



    header {
      width: 100%;
      background: #fff;
      box-shadow: 0 1px 4px rgba(0,0,0,0.1);
      padding: 12px 60px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: relative;
      z-index: 999;
    }

    /* ===== LOGO ===== */
    .logo {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .logo img {
      height: 32px;
      width: 32px;
    }

    .logo span {
      font-weight: 700;
      font-size: 22px;
      color: #002147;
    }

    /* ===== NAVIGATION ===== */
    nav {
      flex: 1;
      display: flex;
      justify-content: center;
    }

    nav ul {
      display: flex;
      align-items: center;
      list-style: none;
      gap: 28px;
    }

    nav ul li a,
    nav ul li select {
      text-decoration: none;
      color: #002147;
      font-weight: 500;
        text-align: center;
      background: transparent;
      border: none;
      font-size: 15px;
      cursor: pointer;
      transition: color 0.3s ease;
    }

    nav ul li a:hover,
    nav ul li select:hover {
      color: #0078ff;
    }

    /* ===== BUTTONS ===== */
    .header-buttons {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .btn-outline {
      border: 1.5px solid #002147;
      color: #002147;
      background: transparent;
      border-radius: 25px;
      padding: 8px 18px;
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 6px;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .btn-outline:hover {
      background: #002147;
      color: #fff;
    }

    .btn-primary {
      background: #0078ff;
      color: #fff;
      border: none;
      border-radius: 25px;
      padding: 9px 20px;
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 6px;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .btn-primary:hover {
      background: #005ed6;
    }

    /* ===== HAMBURGER ICON ===== */
    .menu-toggle {
      display: none;
      flex-direction: column;
      justify-content: space-between;
      width: 26px;
      height: 18px;
      cursor: pointer;
    }

    .menu-toggle span {
      height: 3px;
      width: 100%;
      background: #002147;
      border-radius: 2px;
      transition: 0.3s;
    }

    .mobilebtn{display: none;}

.hero {
      background-color: #eaf3ff;
      padding: 80px 20px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    /* Illustrations */
    .hero .illustration-left {
      position: absolute;
      bottom: 0;
      left: 40px;
      width: 330px;
      max-width: 30%;
    }

    .hero .illustration-right {
      position: absolute;
      bottom: 0;
      right: 40px;
      width: 330px;
      max-width: 30%;
    }

    /* Trustpilot section */
    .trust {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-size: 14px;
      color: #555;
      margin-bottom: 16px;
    }

    .trust img {
      height: 18px;
    }

    .trust strong {
      color: #002147;
      font-weight: 600;
    }

    /* Heading */
    .hero h1 {
      font-size: 42px;
      font-weight: 700;
      color: #002147;
      max-width: 800px;
      margin: 0 auto 40px auto;
      line-height: 1.3;
    }

    /* Search Box */
    .search-box {
      background: #fff;
      border-radius: 50px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 600px;
      max-width: 95%;
      margin: 0 auto;
      box-shadow: 0 3px 8px rgba(0,0,0,0.1);
      padding: 10px 20px;
    }

    .search-box i {
      color: #0078ff;
      font-size: 18px;
      margin-right: 10px;
    }

    .search-box input {
      border: none;
      outline: none;
      flex: 1;
      font-size: 16px;
      color: #333;
    }

    .search-box button {
      background: #0078ff;
      border: none;
      color: #fff;
      font-size: 18px;
      border-radius: 50%;
      width: 45px;
      height: 45px;
      cursor: pointer;
      /* transition: background 0.3s ease; */
    }

    .search-box button:hover {
      background: #005ed6;
    }

    .contact-header {
  background: linear-gradient(90deg, #ff5fa3, #655cff);
}
.contact-section h2 {
  font-size: 2rem;
}
.contact-section p {
  max-width: 700px;
  margin: auto;
  font-size: 1rem;
}
.contact-section .card {
  background: #fff;
  border-radius: 12px;
}
.contact-section .form-control {
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 10px 14px;
}
.contact-section .btn-primary {
  background-color: #3b82f6;
  border: none;
  border-radius: 8px;
  transition: 0.3s;
}
.contact-section .btn-primary:hover {
  background-color: #2563eb;
}

.course-overview-section {
  background: #f8fbff;
  padding: 80px 8%;
  font-family: 'Inter', sans-serif;
}

.course-box {
  background: #fff;
  border-radius: 12px;
  padding: 40px 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.course-box h2, .course-box h3 {
  color: #002147;
  font-weight: 700;
  margin-bottom: 15px;
}

.course-box p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 15px;
}

.course-points {
  list-style: none;
  padding-left: 0;
  margin: 20px 0 30px;
}

.course-points li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  font-size: 15px;
  color: #333;
  line-height: 1.6;
}

.course-points li::before {
  content: "✔";
  color: #0078ff;
  font-weight: bold;
  position: absolute;
  left: 0;
}


section.categories {
      padding: 80px 40px;
      text-align: center;
    }

    .categories h2 {
      font-size: 28px;
      font-weight: 700;
      margin-bottom: 10px;
      color: #002147;
    }

    .categories p {
      font-size: 15px;
      color: #6b7280;
      margin-bottom: 50px;
    }

    /* === GRID === */
    .category-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
      gap: 25px;
      justify-items: center;
      max-width: 1100px;
      margin: 0 auto;
    }

    .category-card {
      width: 100%;
      background: #fff;
      border: 1px solid #e5e7eb;
      border-radius: 12px;
      padding: 30px 20px;
      text-align: center;
      transition: all 0.3s ease;
      box-shadow: 0 0 0 rgba(0,0,0,0);
    }

    .category-card:hover {
      box-shadow: 0 4px 15px rgba(0,0,0,0.08);
      transform: translateY(-4px);
    }

    .category-card .icon {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: #f5f9ff;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 15px;
      color: #0078ff;
      font-size: 26px;
      transition: all 0.3s ease;
    }

    .category-card:hover .icon {
      background: #0078ff;
      color: #fff;
    }

    .category-card h3 {
      font-size: 17px;
      font-weight: 600;
      color: #002147;
      margin-bottom: 6px;
    }

    .category-card p {
      font-size: 14px;
      color: #6b7280;
    }


    
/* ===== Section Styling ===== */
.courses-section {
  padding: 80px 40px;
  max-width: 1300px;
  margin: auto;
}

.courses-section h2 {
  font-size: 30px;
  font-weight: 700;
  color: #002147;
  text-align: center;
  margin-bottom: 10px;
}

.courses-section p {
  text-align: center;
  color: #6b7280;
  margin-bottom: 50px;
  font-size: 15px;
}

/* ===== Grid ===== */
.course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* ===== Course Card ===== */
.course-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
}

.course-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 25px rgba(0,0,0,0.1);
}

/* Image section */
.course-img {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.course-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

.course-card:hover .course-img img {
  transform: scale(1.05);
}

.course-img .favorite {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #0078ff;
  color: #fff;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== Content ===== */
.course-content {
  padding: 20px;
}

.course-content h3 {
  font-size: 16px;
  font-weight: 600;
  color: #002147;
  margin-bottom: 12px;
  line-height: 1.4;
}

.course-info {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  color: #6b7280;
  font-size: 14px;
  margin-bottom: 15px;
}

.course-info i {
  margin-right: 6px;
  color: #0078ff;
}

.course-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #e5e7eb;
  padding-top: 15px;
}

.course-meta .price {
  font-weight: 600;
  color: #002147;
}

.course-meta .rating {
  font-size: 14px;
  color: #fbbf24;
}

.course-meta .rating span {
  color: #6b7280;
  font-size: 13px;
}

.newsletter {
  background-color: #0078ff;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.newsletter h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.newsletter p {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 30px;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  border-radius: 50px;
  overflow: hidden;
}

.newsletter-form input {
  flex: 1;
  padding: 15px 25px;
  border: none;
  outline: none;
  font-size: 14px;
  color: #333;
}

.newsletter-form button {
  background: #002147;
  color: #fff;
  border: none;
  padding: 15px 30px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.newsletter-form button:hover {
  background: #004aad;
}

/* ============ Footer Section ============ */
.footer {
  background: #fff;
  color: #002147;
  padding: 60px 50px 20px;
  border-top: 1px solid #e5e7eb;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo img {
  width: 140px;
  margin-bottom: 15px;
}

.footer-logo p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 15px;
}

.footer-logo .contact-info {
  font-size: 14px;
  color: #444;
  line-height: 1.8;
}

.footer-logo .contact-info i {
  color: #0078ff;
  margin-right: 8px;
}

/* ============ Footer Links ============ */
.footer h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #002147;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 8px;
}

.footer ul li a {
  color: #555;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
}

.footer ul li a:hover {
  color: #0078ff;
}

/* ============ App Buttons ============ */
.app-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.app-btn {
  display: flex;
  align-items: center;
  background: #f5f8ff;
  padding: 12px 20px;
  border-radius: 10px;
  transition: 0.3s;
}

.app-btn:hover {
  background: #e6efff;
}

.app-btn i {
  font-size: 22px;
  margin-right: 10px;
  color: #0078ff;
}

.app-btn .text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.app-btn .text small {
  font-size: 12px;
  color: #6b7280;
}

.app-btn .text span {
  font-size: 14px;
  font-weight: 600;
  color: #002147;
}

/* ============ Footer Bottom ============ */
.footer-bottom {
  border-top: 1px solid #e5e7eb;
  padding-top: 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #555;
}

.footer-bottom a {
  color: #0078ff;
  text-decoration: none;
  font-weight: 500;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  background: #f5f8ff;
  color: #0078ff;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #0078ff;
  color: #fff;
}


/* ===== Instructor Section ===== */
.instructor {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #e5e7eb;
  padding: 15px 20px;
  background: #fafafa;
}

.instructor-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.instructor-left img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
}

.instructor-left span {
  font-size: 14px;
  color: #002147;
  font-weight: 500;
}

.instructor-right a {
  color: #0078ff;
  font-size: 13px;
  text-decoration: none;
  font-weight: 500;
}

.instructor-right a:hover {
  text-decoration: underline;
}

why-choose {
  padding: 100px 8%;
  background: #fff;
  color: #002147;
}

.why-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

/* Image Area */
.why-image {
  position: relative;
  flex: 1 1 45%;
  text-align: center;
}

.why-image img {
  width: 100%;
  border-radius: 30px;
  object-fit: cover;
}

.mini-image {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 10px;
  border-radius: 50%;
}

.mini-image img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
}

/* Content Area */
.why-content {
  flex: 1 1 50%;
}

.why-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #002147;
}

.why-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 15px;
}
 li{list-style: none;}

.why-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 25px;
  margin: 25px 0;
}

.point {
  font-size: 15px;
  color: #002147;
  display: flex;
  align-items: center;
  gap: 10px;
}

.point i {
  color: #0078ff;
  font-size: 18px;
}

.cta-btn {
  display: inline-block;
  background: #0078ff;
  color: #fff;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #004aad;
}



    /* ===== RESPONSIVE ===== */
    @media (max-width: 992px) {
        
           
        
 .why-container {
    flex-direction: column;
    text-align: center;
  }

  .why-content {
    margin-top: 60px;
  }

  .why-points {
    grid-template-columns: 1fr;
  }

  .mini-image {
    position: relative;
    bottom: -20px;
    left: auto;
    transform: none;
    margin-top: -40px;
  }
          .courses-section {
    padding: 60px 20px;
  }
  .course-img {
    height: 160px;
  }
      header {
        padding: 12px 25px;
      }

       .hero h1 {
        font-size: 34px;
      }

      .hero .illustration-left {
        width: 220px;
        left: 10px;
      }

      .hero .illustration-right {
        width: 220px;
        right: 10px;
      }
   .mobilebtn{display: block;}
      nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #fff;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      }
 section.categories {
        padding: 60px 20px;
      }

      .categories h2 {
        font-size: 24px;
      }

      .category-grid {
        gap: 20px;
      }

      .category-card {
        padding: 25px 15px;
      }
      nav ul {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 18px;
      }

      .menu-toggle {
        display: flex;
      }

     
      .header-buttons {
        display: none;
      }

      nav.active {
        display: block;
        animation: slideDown 0.3s ease forwards;
      }

   
  

    /* Animate toggle */
    .menu-toggle.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active span:nth-child(2) {
      opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -5px);
    }
    
    
    }

@media (max-width: 768px) {
      .contact-bar {
      display: flex;
    }
    .footer-title {
    font-size: 18px;
  }

  .search-buttons a {
    font-size: 14px;
    padding: 8px 14px;
  } 
  form {
    padding: 25px 20px;
  }
  form .trk-btn {
    font-size: 15px;
  }

.course-box {
    padding: 25px;
  }

  .contact-header h2 {
    font-size: 1.6rem;
  }
  .contact-section .card {
    margin-bottom: 20px;
  }

  .course-box h2 {
    font-size: 22px;
  }

  .course-box h3 {
    font-size: 18px;
  }
     .newsletter-form {
    flex-direction: column;
    border-radius: 10px;
  }
  .newsletter-form button {
    border-radius: 0;
  }
  .footer {
    padding: 40px 20px;
  }

     .course-img {
    height: 140px;
  }
  .course-content h3 {
    font-size: 15px;
  }
      .hero {
        padding: 60px 20px 160px;
      }

      .hero .illustration-left,
      .hero .illustration-right {
        display: none;
      }

       .category-card h3 {
        font-size: 16px;
      }

      .category-card .icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
      }

      .hero h1 {
        font-size: 28px;
        margin-bottom: 25px;
      }

      .search-box {
        width: 100%;
      }
      
 
      
    }
