/*impoting fonts*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600&display=swap');

body {
      font-family: "Poppins", sans-serif;
      margin: 0;
      padding: 0;
      background-color: #ffffff;
      color: #333;
    }

    .top-header {
      background-color: #3c1650;
      color: white;
      padding: 20px 20px 40px;
      position: relative;
    }

    .top-header .logo {
      font-size: 50px;
      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;
      }

      .hero-section .hero-image-wrapper {
    display: none;
  }

      .floating-header.show {
        display: flex;
        opacity: 1;
        transform: translateX(-50%) translateY(0);
      }

      .hamburger-menu {
        display: flex;
      }
    }

    @media screen and (max-width: 600px) {
  .hero-section .section-content {
    flex-direction: column-reverse;
    text-align: center;
    padding: 20px;
    gap: 20px;
  }

  .hero-section .hero-image-wrapper {
    display: none;
  }

  .hero-section .hero-details :is(.subtitle, .description) {
    max-width: 100%;
  }

  .hero-section .buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .stat-wrapper {
    flex-direction: column;
    gap: 20px;
  }

  .vertical-line {
    display: none;
  }

  .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;
  }
}

.hero-section .hero-details .button:hover {
  outline-offset: 3px;
  transform: translateY(-2px);
}

.hero-section {
      min-height: 70vh;
      background: rgb(255, 255, 255);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
    }

    .section-content {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex: 2;
      padding: 0px 30px 10px;
    }

    .hero-details {
      flex: 4;
    }

    .hero-details .title {
      font-size: 3rem;
      color: #3c1650;
      font-family: 'Poppins', sans-serif;
    }

    .highlight {
    background-color: #3c1650;
    color: #ffffff;
    padding: 5px 12px;
    border-radius: 30px;
    font-weight: bold;
    margin: 0 5px;
    display: inline-block;
}
    .hero-details .subtitle {
      font-size: larger;
      color: #a97016;
      margin-top: 10px;
    }

    .description {
      max-width: 80%;
      margin: 10px 0 40px;
      font-size: larger;
    }

    .buttons .button {
      padding: 10px 20px;
      margin-right: 25px;
      border: none;
      color: #3c1650;
      border-radius: 15px;
      background: #CA8A1C;
      font-weight: bold;
      font-size: 15px;
      cursor: pointer;
      box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);
      text-decoration: none;
    }
    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
        gap: 10px;
        padding: 10px 5px;
        border-radius: 25px;
        margin-top: 30px;
        }

        .service-card {
        background: white;
        border-radius: 20px;
        padding: 25px 15px;
        text-align: center;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
        }

        .service-card i {
        font-size: 36px;
        color: #3c1650;
        margin-bottom: 5px;
        }

        .service-card h3 {
        font-size: 20px;
        margin-bottom: 5px;
        color: #333;
        }

        .service-btn {
        display: inline-block;
        margin: 5px 0;
        padding: 8px 18px;
        border-radius: 20px;
        background: #e7d6ff;
        color: #3c1650;
        font-weight: 600;
        text-decoration: none;
        font-size: 14px;
        }

        .service-card p {
        font-size: 14px;
        color: #666;
        }

        .service-card.disabled {
        opacity: 0.6;
        }

        .coming-soon {
        background: #ddd;
        color: #777;
        }


    .hero-image-wrapper {
      flex: 2;
      display: flex;
      align-items: end;
      justify-content: end;
      margin-right: 0px;
      padding-right: 0px;
    }

    .hero-image {
      height: 70vh;
      object-fit: contain;
      display: block;
      margin-right: 0px;
      justify-content: end;
      
      
    }
    .slider-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
}


@media screen and (max-width: 900px) {
  body.show-mobile-menu header::before {
    content: "";
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    backdrop-filter: blur(5px);
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 999; 
  }

  .hero-section .section-content{
    gap: 20px;
    text-align: center;
    padding :20px 30px 20px;
    flex-direction: column-reverse;
    justify-content: center;
}
}

    .copyright {
      background-color: #3c1650;
      color: white;
      text-align: center;
      padding: 20px;
      font-size: 14px;
    }