@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body{
  background: #3d3d29;
  user-select: none;
}

nav{
  
  z-index: 99;
  width: 100%;
  background:#391326;
}
nav .wrapper{
  position: relative;
  max-width: 1300px;
  padding: 0px 30px;
  height: 70px;
  line-height: 70px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom:1px solid #fff;
}
.wrapper .logo a{
  color: #f2f2f2;
  font-size: 30px;
  font-weight: 600;
  text-decoration: none;
}
.wrapper .nav-links{
  display: inline-flex;
}
.nav-links li{
  list-style: none;
}
.nav-links li a{
  color: #f2f2f2;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  padding: 9px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.nav-links li a:hover{
  background: #3A3B3C;
}
.nav-links .mobile-item{
  display: none;
}
.nav-links li:hover .drop-menu,
.nav-links li:hover .mega-box{
  transition: all 0.3s ease;
  top: 70px;
  opacity: 1;
  visibility: visible;
}

.wrapper .btn{
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: none;
}
.wrapper .btn.close-btn{
  position: absolute;
  right: 30px;
  top: 10px;
  color: #fff;font-size: 2rem;
}

@media screen and (max-width: 970px) {
  .wrapper .btn{
    display: block;
  }
  .wrapper .nav-links{
    position: fixed;
    height: 100vh;
    width: 100%;
    max-width: 350px;
    top: 0;
    left: -100%;
    background: #391326;
    display: block;
    padding: 50px 10px;
    line-height: 50px;
    overflow-y: auto;
    box-shadow: 0px 15px 15px rgba(0,0,0,0.18);
    transition: all 0.3s ease;
  }
  /* custom scroll bar */
  ::-webkit-scrollbar {
    width: 10px;
  }
  ::-webkit-scrollbar-track {
    background: #242526;
  }
  ::-webkit-scrollbar-thumb {
    background: #3A3B3C;
  }
  #menu-btn:checked ~ .nav-links{
    left: 0%;
  }
  #menu-btn:checked ~ .btn.menu-btn{
    display: none;
  }
  #close-btn:checked ~ .btn.menu-btn{
    display: block;
  }
  .nav-links li{
    margin: 15px 10px;
  }
  .nav-links li a{
    padding: 0 20px;
    display: block;
    font-size: 20px;
  }
  .nav-links .drop-menu{
    position: static;
    opacity: 1;
    top: 65px;
    visibility: visible;
    padding-left: 20px;
    width: 100%;
    max-height: 0px;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
  }
  #showDrop:checked ~ .drop-menu,
  #showMega:checked ~ .mega-box{
    max-height: 100%;
  }
  .nav-links .desktop-item{
    display: none;
  }
  .nav-links .mobile-item{
    display: block;
    color: #f2f2f2;
    font-size: 20px;
    font-weight: 500;
    padding-left: 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  .nav-links .mobile-item:hover{
    background: #3A3B3C;
  }
}
nav input{
  display: none;
}

.logo img{width: 70px;}

ul.breadcrumb {
  padding: 10px 16px;
  list-style: none;
}

/* Display list items side by side */
ul.breadcrumb li {
  display: inline;
  font-size: 18px;
}

/* Add a slash symbol (/) before/behind each list item */
ul.breadcrumb li+li:before {
  padding: 8px;
  color: #fff;
  content: "/\00a0";
}

/* Add a color to all links inside the list */
ul.breadcrumb li a {
  color: #ffbb33;
  text-decoration: none;
}

/* Add a color on mouse-over */
ul.breadcrumb li a:hover {
  color: #fff;
  text-decoration: underline;
}

.custom-select{width: 100%; padding: 10px; margin-top: 40px; border-radius: 10px; background:#391326; color: #fff;}

footer{margin-top: 40px;background:#391326;color: #fff; padding: 10px;}
footer .text-body{color: #ffbb33!important; text-decoration: none; font-size: 1.2rem;}

article{width: 100%; max-width: 1300px; margin: 20px auto; padding: 5px;}
article h1, h2, h3, h4, h5{
  color:  #ffbb33;
  margin:10px 0 20px;
  font-family: 'Poppins', sans-serif;
}

article p{
  align-items: center;
  color: #fff;
  letter-spacing: 1px;
  font-size: 18px;
  font-weight: 300;
  font-family: 'Poppins', sans-serif;
}

.card-body{background:#391326; color: #fff;}

#faq {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  padding: 20px 16px;
}

.faq-container {
  width: 100%;
  max-width: 1200px;
}

/* Header */
.faq-header {
  text-align: center;
  margin-bottom: 36px;
}

.faq-title {
  font-size: 32px;
  font-weight: 800;
  color:  #ffbb33;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #6366f1, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-subtitle {
  font-size: 16px;
  color:  #ffbb33;
  font-weight: 400;
}

/* FAQ List */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Card */
.faq-card {
  background:#391326;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.03);
}

.faq-card:hover {
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.1), 0 2px 8px rgba(0, 0, 0, 0.06);
  border-color: rgba(99, 102, 241, 0.2);
  transform: translateY(-1px);
}

.faq-card[open] {
  background:#391326;
  box-shadow: 0 12px 32px rgba(99, 102, 241, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
  border-color: rgba(99, 102, 241, 0.25);
}

/* Trigger */
.faq-trigger {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: padding 0.3s ease;
}

.faq-trigger::-webkit-details-marker,
.faq-trigger::marker {
  display: none;
}

.faq-card[open] .faq-trigger {
  padding-bottom: 12px;
}

/* Icon Box */
.faq-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #eef2ff, #e0e7ff);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faq-card[open] .faq-icon-box {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.faq-svg {
  width: 20px;
  height: 20px;
  color: #6366f1;
  transition: all 0.3s ease;
}

.faq-card[open] .faq-svg {
  color: #fff;
}

/* Label */
.faq-label {
  flex: 1;
  font-size: 15px;
  font-weight: 600;
  color:  #ffbb33;
  line-height: 1.4;
}

/* Chevron */
.faq-chevron {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-chevron svg {
  width: 100%;
  height: 100%;
  color: #9ca3af;
  transition: color 0.3s ease;
}

.faq-card[open] .faq-chevron {
  transform: rotate(180deg);
}

.faq-card[open] .faq-chevron svg {
  color: #6366f1;
}

/* Content */
.faq-content {
  padding: 0 22px 22px 76px;
  overflow: hidden;
  animation: slideDown 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-content p {
  font-size: 15px;
  color:  #fff;
  line-height: 1.75;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
    max-height: 0;
  }
  to {
    opacity: 1;
    transform: translateY(0);
    max-height: 300px;
  }
}/* === Simple Accordion FAQ Set === */

.accordion-faq {
  font-family: 'Poppins', sans-serif;
  max-width: 640px;
  margin: 40px auto;
  padding: 0 16px;
}

.faq-item {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.faq-item:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.faq-item[open] {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  border-color: #d1d5db;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::marker {
  display: none;
}

/* Chevron Icon */
.faq-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-left: 12px;
  position: relative;
  transition:
}

.location{margin-top: 30px}
.location a{text-decoration: none; color: #fff;}
.location h4{text-align: center; margin: 20px;}

.call {
  max-width: 3%;
  bottom: 6%;
  right: 12%;
  position: fixed;
  z-index: 990;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}@media (max-width: 767px) {
  .call {
      max-width: 12% !important;
      bottom: 9% !important;
      left: 7%;
  }
}.chat {
  position: fixed;
  right: 3%;
  bottom: 6%;
  z-index: 990;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}@media (max-width: 767px) {
  .chat {
      position: fixed;
      right: 8%;
      bottom: 9% !important;
      z-index: 9999;
  }
}

.chat1 {
  max-width: 3%;
  bottom: 15%;
  right: 12%;
  position: fixed;
  z-index: 990;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}@media (max-width: 767px) {
  .chat1 {
      max-width: 12% !important;
      bottom: 18% !important;
      left: 7%;
  }
}.call1 {
  position: fixed;
  right: 3%;
  bottom: 15%;
  z-index: 990;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}@media (max-width: 767px) {
  .call1 {
      position: fixed;
      right: 8%;
      bottom: 18% !important;
      z-index: 9999;
  }
}