body {
      font-family: "Poppins", sans-serif;
      margin: 0;
      padding: 0;
      background: url('images/Blurred-background.jpeg') center/cover no-repeat;
      color: #333;
    }

    .top-header {
      background-color: #3c1650;
      color: rgb(255, 255, 255);
      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;
      z-index: 1003;
    }

    .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;
      }
    }



.services-title {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  color: #3c1650;
  margin-bottom: 3rem;
  text-transform: uppercase;
  position: relative;
  padding-top: 15px;
}

.services-title::after {
  content: "";
  width: 80px;
  height: 5px;
  display: block;
  margin: 10px auto 0;
  border-radius: 400px;
  background: #CA8A1C;
}

.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }

  
}

@media (min-width: 1024px) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 30px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  text-align: center;
}

.card:hover {
  transform: translateY(-5px);
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #CA8A1C;
}

.card-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: #3c1650;
}

.card p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #444;
}

.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) {
  

  .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;
  }
}