
/* Smooth scrolling + optional base styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: theme('fontFamily.sans');
  background-color: theme('colors.arkire.pale');
}

.scrollbar-hide::-webkit-scrollbar {
  display: none;
}
/* Hide scrollbar for IE, Edge and Firefox */
.scrollbar-hide {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;     /* Firefox */
}

#scroll-container {
  width: 100%;
}

.scroll-content {
  display: inline-flex;
  white-space: nowrap;
  animation: scroll-left 20s linear infinite;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Optional: add spacing between cards */
.scroll-content > div {
  margin-right: 1rem;
  flex-shrink: 0;
  min-width: 280px;
}

@keyframes fade-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in-down {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
  animation: fade-in 1s ease-out forwards;
}
.animate-fade-in-down {
  animation: fade-in-down 1s ease-out forwards;
}
.animate-fade-in-up {
  animation: fade-in-up 1s ease-out forwards;
}


.highlight {
  background-color: rgba(255, 153, 51, 0.15);
  padding: 0.15rem 0.35rem;
  border-radius: 0.3rem;
  font-weight: 600;
}

.accordian {
  margin: 60px auto;
  max-width: 350px;  /* max width instead of fixed width */
  width: 90%;        /* width shrinks on small screens */
  padding: 0 15px;   /* small horizontal padding */
  box-sizing: border-box; /* include padding in width */
}


.accordian li{
  list-style:none;
  width:100%;
  margin:20px 0;
  padding:10px;
  border-radius:8px;
  background-color: #f9f9f9;
  box-shadow: 6px 6px 10px -1px rgba(0,0,0,0.1),
              -6px -6px 10px -1px rgba(255,255,255,0.7); 
}

.accordian li label{
  display:flex;
  align-items:center;
  padding:10px;
  cursor: pointer;
  font-weight: 600;
  font-size:18px;
}

.accordian .content {
  display:block;
  padding: 0 10px;
  background-color: #fae9dc;
  border-radius: 8px;
  color: #555;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s, padding 0.5s;
}

label::before{
  content: "+";
  margin-right: 10px;
  font-size: 24px;
  font-weight: 600;
}

input[type="checkbox"] {
  display: none;
}

.accordian input[type="checkbox"]:checked + label + .content {
  max-height: 400px;
  padding: 10px 10px 20px;
}

.accordian input[type="checkbox"]:checked + label::before{
  content: "-";
}

@media (max-width: 480px) {
  .accordian li {
    margin: 12px 0;
  }

  .accordian li label {
    font-size: 16px;
    padding: 8px;
  }

  .accordian .content {
    padding: 8px 8px 16px;
  }

  label::before {
    font-size: 20px;
    margin-right: 8px;
  }
}

/* Border shimmer animation */
@keyframes shimmer-border {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

.border-shimmer {
  position: relative;
  border-radius: 1.5rem; /* match rounded-3xl */
  z-index: 0;
}

.border-shimmer::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(120deg, #f97316, #fb923c, #fac415);
  background-size: 200% 200%;
  animation: shimmer-border 2s linear infinite;
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.border-shimmer:hover::before {
  opacity: 1;
}
