body {
      font-family: "Poppins", sans-serif;
      margin: 0;
      padding: 0;
      background-color:#CA8A1C;
      color: #f9f9f9;
    }

    .top-header {
      background-color: #3c1650;
      color: white;
      padding: 20px 20px 40px;
      position: relative;
    }

    .top-header .logo {
      font-size: 90px;
      font-weight: bold;
    }

    .top-header .faq-tab {
      position: absolute;
      top: 25px;
      right: 20px;
      font-size: 14px;
    }

    .top-header .faq-tab a {
      color: #CA8A1C;
      text-decoration: none;
      font-weight: 400;
    }

    .floating-header {
      background-color: #ffffff;
      padding: 10px 25px;
      border-radius: 50px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      display: flex;
      gap: 40px;
      justify-content: flex-end;
      align-items: center;
      position: absolute;
      top: 60px;
      right: 20px;
    }

    .floating-header a {
      color: black;
      text-decoration: none;
      font-weight: 500;
      font-size: 22px;
      position: relative;
      transition: all 0.3s ease;
    }

    .floating-header a:hover {
      color: #CA8A1C;
    }

    .dropdown {
      position: relative;
    }

    .dropdown-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background-color: #fff;
      box-shadow: 0 2px 8px rgba(0,0,0,0.15);
      padding: 10px 0;
      border-radius: 8px;
      z-index: 1000;
    }

    .dropdown:hover .dropdown-menu {
      display: block;
    }

    .dropdown-menu a {
      display: block;
      padding: 8px 20px;
      color: #333;
      text-decoration: none;
      white-space: nowrap;
    }

    .dropdown-menu a:hover {
      background-color: #f5f5f5;
    }

     /* Hamburger Menu */
    .hamburger-menu {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: 50px;
      height: 50px;
      background-color: #f0f0f0;
      border-radius: 50%;
      cursor: pointer;
      position: absolute;
      top: 66px;
      left: 90%;
      transform: translateX(-50%);
      z-index: 1002;
      transition: background 0.3s;
    }

    .hamburger-menu:hover {
      background-color: #a97016;
    }

    .hamburger-menu div {
      width: 25px;
      height: 3px;
      background-color: #3c1650;
      margin: 4px 0;
      transition: 0.4s;
    }

    .hamburger-menu.active .bar1 {
      transform: rotate(-45deg) translate(-6px, 6px);
    }

    .hamburger-menu.active .bar2 {
      opacity: 0;
    }

    .hamburger-menu.active .bar3 {
      transform: rotate(45deg) translate(-6px, -6px);
    }

    @media (max-width: 960px) {
      .floating-header {
        flex-direction: column;
        align-items: center;
        top: 140px;
        left: 50%;
        transform: translateX(-50%);
        background-color: white;
        width: 90%;
        padding: 20px;
        border-radius: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        display: none;
      }

      .floating-header.show {
        display: flex;
        opacity: 1;
        transform: translateX(-50%) translateY(0);
      }

      .hamburger-menu {
        display: flex;
      }
    }




main {
      background: linear-gradient(to bottom, #ffffff 10%, #3c1650 100%);
      color: #3c1650;
      
}
.intro-section{
      padding: 40px 20px;
      text-align: center;
    }

    .intro-section h2 {
      font-size: 2.5rem;
      margin-bottom: 10px;
      color: #CA8A1C;
    }

     .intro-section h2::after {
  content: "";
  width: 200px;
  height: 5px;
  display: block;
  margin: 10px auto 0;
  border-radius: 400px;
  background: #3c1650;
}

    .intro-section p {
      font-size: 1.1rem;
      max-width: 800px;
      margin: 0 auto;
      color: #3c1650;
    }
    .smartskills-section{
  
     color: rgb(4, 0, 0);
     align-items: center;
     font-family:'Poppins', sans-serif;
     padding: 40px 20px;
    }
   .section-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      
    }

    .section-header h2 {
      font-size: 2.5rem;
      color: #3c1650;
    }
    .section-header p{
      font-size: 1rem;
    }

    .filter-select {
      padding: 8px;
      border-radius: 5px;
      border: none;
      font-size: 1rem;
      background-color: #CA8A1C;
      color: #3c1650;
    }

    .scroll-container {
      display: flex;
      gap: 16px;
      overflow-x: auto;
      padding-bottom: 10px;
    }

    .card {
      min-width: 250px;
      background:white;
      color: black;
      border-radius: 15px;
      overflow: hidden;
      flex-shrink: 0;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .card:hover {
      transform: scale(1.05);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    }

    .card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .card-content {
      padding: 16px;
    }

    .card h3 {
      margin-bottom: 8px;
      font-size: 1.2rem;
    }

    .card p {
      margin-bottom: 10px;
      font-size: 0.95rem;
    }

    .map-link {
      display: flex;
      align-items: center;
      color: #3c1650;
      text-decoration: none;
      font-weight: bold;
    }

    .map-link:hover {
      text-decoration: underline;
    }

    .map-link span {
      margin-left: 5px;
    }


    .info-section {
      background-color: #3c1650;
      color: white;
      padding: 40px 20px;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 40px;
    }
    .info-section .footer-logo img {
      height: 70px;
      margin-bottom: 20px;
    }
    .info-section .footer-text {
      max-width: 300px;
      font-size: 14px;
      line-height: 1.6;
    }
    .info-section .footer-links ul {
      list-style: none;
      padding: 0;
    }
    .info-section .footer-links li {
      margin-bottom: 10px;
    }
    .info-section .footer-links a {
      color: white;
      text-decoration: none;
      font-size: 14px;
    }
    .info-section .footer-social {
      display: flex;
      gap: 20px;
      align-items: center;
    }
    .info-section .footer-social a {
      color: white;
      font-size: 22px;
      text-decoration: none;
      transition: transform 0.2s;
    }
    .info-section .footer-social a:hover {
      transform: scale(1.2);
      color: #CA8A1C;
    }
    .info-section .newsletter {
      display: flex;
      gap: 10px;
    }
    .info-section .newsletter input {
      padding: 10px;
      border-radius: 4px;
      border: none;
    }
    .info-section .newsletter button {
      background-color: #CA8A1C;
      color: white;
      border: none;
      padding: 10px 20px;
      border-radius: 4px;
      cursor: pointer;
    }

    .copyright {
      background-color: white;
      color: #3c1650;
      text-align: center;
      padding: 20px;
      font-size: 14px;
    }

    @media (max-width: 768px) {
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .filter-select {
    width: 100%;
    font-size: 0.95rem;
  }

  .scroll-container {
    flex-direction: column;
    overflow-x: hidden;
  }

  .card {
    width: 100%;
    min-width: 100%;
    margin-bottom: 20px;
  }

  .card img {
    height: 180px;
  }

  .intro-section {
    padding: 30px 15px;
  }

  .intro-section h2 {
    font-size: 1.8rem;
  }

  .intro-section p {
    font-size: 1rem;
    padding: 0 10px;
  }

  .info-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .info-section .newsletter {
    flex-direction: column;
    width: 100%;
  }

  .info-section .newsletter input,
  .info-section .newsletter button {
    width: 100%;
  }

  .floating-header {
    top: 120px;
  }

  .hamburger-menu {
    left: 85%;
  }
  .info-section {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
  }

  .info-section .footer-text {
    max-width: 100%;
    font-size: 13px;
  }

  .info-section .footer-links ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .info-section .footer-links li {
    margin: 0;
  }

  .info-section .newsletter {
    flex-direction: column;
    width: 100%;
  }

  .info-section .newsletter input {
    width: 100%;
  }

  .info-section .newsletter button {
    width: 111%;
  }

  .footer-social {
    justify-content: center;
  }
}
