body {
  background-color: #000;
  background: radial-gradient(ellipse at bottom, #0d1d31 0%, #0c0d13 100%);
  font-family: 'Noto Sans', sans-serif;
  font-weight: bold;
}

html {
  scroll-behavior: smooth;
}

.display-4, .lead {
  font-weight: bold !important;
}

.display-4 {
  font-size: 3.8em;
}

.contact-info {
  font-size: 0.9em;
}

.container {
  z-index: 2;
}

.lead {
  font-size: 1.25em;
}

.loading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.loading p {
  margin-top: 20px;
}

@media (max-width: 576px) {
  h1 {
      font-size: 2.7em !important;
  }
  
  .lead {
      font-size: 1em !important;
  }

  .countdown-numbers {
      font-size: 2.5em !important;
  }
  
  .countdown {
      flex-direction: row !important;
  }

  footer p {
      font-size: 0.5rem !important;
  }    
}

/* Animation styles */
@keyframes fadeIn {
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}

footer p {
  font-size: 0.6rem;
  font-weight: 200;
}

@import url('https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css');

.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  overflow: hidden;
}

.stars {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

/* Glassmorphism for the FAQ Section */
.glassmorphism {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.card-header .btn-link {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}

.card-header .btn-link:hover {
  text-decoration: underline;
}

.card-body {
  background: transparent;
  color: #fff;
}

/* Styles for the Form */
.page1 {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 16px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.head-box p {
  font-size: 1.5em;
  font-weight: bold;
  text-align: center;
}

.form-control {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.form-control:focus {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
  border-color: rgba(255, 255, 255, 0.5);
}

.custom-btn {
  background: linear-gradient(45deg, #ffab2c, #ffd595);
  border: none;
  color: #fff;
  font-weight: bold;
  padding: 10px 30px;
  border-radius: 30px;
  transition: background 0.3s;
}

.custom-btn:hover {
  background: linear-gradient(45deg, #ffd595, #ffab2c);
  text-decoration: none;
  color: #fff;
}

.footer-box img {
  max-width: 150px;
}

/* Adjustments for Mobile View */
@media (max-width: 576px) {
  .head-box p {
      font-size: 1.2em;
  }

  .custom-btn {
      width: 100%;
      text-align: center;
  }
}
  
  .stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
  }
  
  .star {
    --star-color: #ffab2c;
    --star-tail-length: 6em;
  --star-tail-height: 3px;
  --star-width: calc(var(--star-tail-length) / 3.5);
  --fall-duration: 9s;
  --tail-fade-duration: var(--fall-duration);

  position: absolute;
  width: var(--star-tail-length);
  height: var(--star-tail-height);
  color: var(--star-color);
  background: linear-gradient(45deg, currentColor, transparent);
  border-radius: 50%;
  filter: drop-shadow(0 0 6px currentColor);
  transform: translate3d(104em, 0, 0);
  animation: fall var(--fall-duration) var(--fall-delay) linear infinite, tail-fade var(--tail-fade-duration) var(--fall-delay) ease-out infinite;
}

.star::before,
.star::after {
  position: absolute;
  content: '';
  top: 0;
  left: calc(var(--star-width) / -2);
  width: var(--star-width);
  height: 100%;
  background: linear-gradient(45deg, transparent, currentColor, transparent);
  border-radius: inherit;
  animation: blink 2s linear infinite;
}

.star::before {
  transform: rotate(45deg);
}

.star::after {
  transform: rotate(-45deg);
}

@keyframes fall {
    to {
      transform: translate3d(-104em, 0, 0); /* Move the stars all the way to the left outside the viewport */
    }
  }

@keyframes tail-fade {
  0%, 50% {
    width: var(--star-tail-length);
    opacity: 1;
  }
  70%, 80% {
    width: 0;
    opacity: 0.4;
  }
  100% {
    width: 0;
    opacity: 0;
  }
}

@keyframes blink {
  50% {
    opacity: 0.6;
  }
}
  
.accordion-item {
  position: relative;
  background-color: #000;
  padding: 12px;
  border-radius: 8px;
  color: white;
  cursor: pointer;
}

/* Define the custom property for the gradient rotation */
@property --bg-angle {
  inherits: false;
  initial-value: 0deg;
  syntax: "<angle>";
}

/* Keyframes to spin the gradient */
@keyframes spin {
  to {
    --bg-angle: 360deg;
  }
}

.form-control:focus {
  color: white!important;
}

.form-button {
  position: relative;
  padding: 10px 20px;
  border-radius: 7px;
  color: white!important;
  background-color: black;
}

.form-button::before {
  content: '';
  position: absolute;
  inset: 0;
  left: -5px;
  top: -5px;
  right: -5px;
  bottom: -5px;
  margin: auto;
  border-radius: 12px;
  background:
    /* Create a transparent padding-box to show a solid border */
    linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.1)
      )
      padding-box,
    /* Conic gradient that will rotate */
    conic-gradient(
        from var(--bg-angle),
        #ffab2c,
        #161a2a,
        #ffab2c
      )
      border-box; /* Extends to the outer border */
  z-index: -10;
  pointer-events: none;
  border: 2px solid transparent; /* Clear border so the gradient shines through */
  animation: spin 4s infinite linear; /* Animate the gradient rotation */
}

.form-button::after {
  content: '';
  z-index: -1;
  position: absolute;
  inset: 5px;
  background:
    /* Background colors with gradient effect */
    conic-gradient(
        from var(--bg-angle),
        #ffab2c,
        #161a2a,
        #ffab2c
      );
  filter: blur(15px);
  animation: spin 4s infinite linear; /* Animate the blur effect gradient */
}

.accordion-item::before {
  content: '';
  position: absolute;
  inset: 0;
  left: -5px;
  top: -5px;
  right: -5px;
  bottom: -5px;
  margin: auto;
  border-radius: 10px;
  background:
    /* Create a transparent padding-box to show a solid border */
    linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.1)
      )
      padding-box,
    /* Conic gradient that will rotate */
    conic-gradient(
        from var(--bg-angle),
        #ffab2c,
        #161a2a,
        #ffab2c
      )
      border-box; /* Extends to the outer border */
  z-index: -10;
  pointer-events: none;
  border: 2px solid transparent; /* Clear border so the gradient shines through */
  animation: spin 4s infinite linear; /* Animate the gradient rotation */
}

.accordion-item::after {
  content: '';
  z-index: -1;
  position: absolute;
  inset: 5px;
  background:
    /* Background colors with gradient effect */
    conic-gradient(
        from var(--bg-angle),
        #ffab2c,
        #161a2a,
        #ffab2c
      );
  filter: blur(15px);
  animation: spin 4s infinite linear; /* Animate the blur effect gradient */
}

.accordion-button {
  background-color: transparent;
  color: white;
  border: none;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-body {
  font-size: 14px;
}

.rounded {
  border-radius: 14px!important;
}

.modal-dialog {
  min-width: 60%!important;
}

#backToTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  font-size: 12px;
  border: none;
  outline: none;
  background-color: black;
  color: white;
  cursor: pointer;
  width: 35px;
  height: 35px;
  border-radius: 10px;
  padding: 0;
  display: none; /* Hidden by default */
  box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
}

#backToTopBtn:hover {
  background-color: #555; /* Darker color on hover */
}

#backToTopBtn::after {
  content: '';
  z-index: -1;
  position: absolute;
  inset: 5px;
  background:
    /* Background colors with gradient effect */
    conic-gradient(
        from var(--bg-angle),
        #ffab2c,
        #161a2a,
        #ffab2c
      );
  filter: blur(15px);
  animation: spin 4s infinite linear; /* Animate the blur effect gradient */
}

#backToTopBtn::before {
  content: '';
  position: absolute;
  inset: 0;
  left: -1px;
  top: -1px;
  right: -1px;
  bottom: -1px;
  margin: auto;
  border-radius: 6px;
  background:
    /* Create a transparent padding-box to show a solid border */
    linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.1)
      )
      padding-box,
    /* Conic gradient that will rotate */
    conic-gradient(
        from var(--bg-angle),
        #ffab2c,
        #161a2a,
        #ffab2c
      )
      border-box; /* Extends to the outer border */
  z-index: -10;
  pointer-events: none;
  border: 2px solid transparent; /* Clear border so the gradient shines through */
  animation: spin 4s infinite linear; /* Animate the gradient rotation */
}

#backToTopBtnContents {
  color: white;
  background-color: black;
  margin-left: 2.5px;
  margin-top: 2.5px;
  height: 30px;
  width: 30px;
}

.modal-body > p {
  font-weight: 300;
}

.page1 {
  min-height: 300px;
}

.accordion-button.collapsed::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: rotate(-180deg);
}

#mainContainer {
  min-height: 100vh;
}

.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, #ffab2c 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: screen;
    transition: transform 0.1s ease;
}

.cursor-trail {
    position: fixed;
    width: 4px;
    height: 4px;
    background: #ffab2c;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    opacity: 0;
    transition: all 0.3s ease;
}

/* Interactive cursor states */
.custom-cursor.hover {
    transform: scale(1.5);
    background: radial-gradient(circle, #ffab2c 0%, rgba(255, 171, 44, 0.3) 70%);
}

@media (hover: hover) and (pointer: fine) {
    * {
        cursor: none !important;
    }
}

/* Custom Cursor Styles */
.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, #ffab2c 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    mix-blend-mode: screen;
    transition: transform 0.2s ease, background 0.2s ease;
    opacity: 0;
}

.cursor-trail {
    position: fixed;
    width: 4px;
    height: 4px;
    background: #ffab2c;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
    box-shadow: 0 0 3px #ffab2c;
}

/* Hover state for cursor */
.custom-cursor.hover {
    transform: scale(1.5);
    background: radial-gradient(circle, #ffab2c 0%, rgba(255, 171, 44, 0.4) 50%, transparent 70%);
    box-shadow: 0 0 20px rgba(255, 171, 44, 0.6);
}

.cursor-trail.hover {
    background: #ffd595;
    transform: scale(1.2);
}

/* Glow effect animation */
@keyframes cursorGlow {
    0% {
        box-shadow: 0 0 5px rgba(255, 171, 44, 0.5);
    }
    50% {
        box-shadow: 0 0 15px rgba(255, 171, 44, 0.8);
    }
    100% {
        box-shadow: 0 0 5px rgba(255, 171, 44, 0.5);
    }
}

.custom-cursor.hover {
    animation: cursorGlow 1s ease-in-out infinite;
}

.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delays */
.scroll-animate[data-delay="1"] {
    transition-delay: 0.2s;
}

.scroll-animate[data-delay="2"] {
    transition-delay: 0.4s;
}

.scroll-animate[data-delay="3"] {
    transition-delay: 0.6s;
}

.scroll-animate[data-delay="4"] {
    transition-delay: 0.8s;
}

.scroll-animate[data-delay="5"] {
    transition-delay: 1s;
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    .scroll-animate {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Different animation styles */
.scroll-animate.fade-in {
    transform: none;
}

.scroll-animate.slide-left {
    transform: translateX(-30px);
}

.scroll-animate.slide-left.visible {
    transform: translateX(0);
}

.scroll-animate.slide-right {
    transform: translateX(30px);
}

.scroll-animate.slide-right.visible {
    transform: translateX(0);
}

.scroll-animate.scale-up {
    transform: scale(0.9);
}

.scroll-animate.scale-up.visible {
    transform: scale(1);
}

.account-tools h2 {
    font-weight: bold;
    font-size: 2.2em;
    text-align: center;
}

.tool-card {
    transition: transform 0.3s ease, background 0.3s ease;
    cursor: pointer;
}

.tool-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delays */
.scroll-animate[data-delay="1"] {
    transition-delay: 0.2s;
}

.scroll-animate[data-delay="2"] {
    transition-delay: 0.4s;
}

.scroll-animate[data-delay="3"] {
    transition-delay: 0.6s;
}

.scroll-animate[data-delay="4"] {
    transition-delay: 0.8s;
}

.scroll-animate[data-delay="5"] {
    transition-delay: 1s;
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    .scroll-animate {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Different animation styles */
.scroll-animate.fade-in {
    transform: none;
}

.scroll-animate.slide-left {
    transform: translateX(-30px);
}

.scroll-animate.slide-left.visible {
    transform: translateX(0);
}

.scroll-animate.slide-right {
    transform: translateX(30px);
}

.scroll-animate.slide-right.visible {
    transform: translateX(0);
}

.scroll-animate.scale-up {
    transform: scale(0.9);
}

.scroll-animate.scale-up.visible {
    transform: scale(1);
}

@keyframes rotateGlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.tool-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  background-size: 200% 200%;
  animation: rotateGlow 10s ease infinite;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
}

.tool-card:hover {
  transform: translateY(-5px);
}

#faqSearch {
  max-width: 600px;
}

#faqSearch::placeholder {
  max-width: 600px;
  color: white!important;
  opacity: 1!important;
}

.header, .footer {
  border-color: #ffab2c!important;
}


.contact-info, .footer-link{
  background: linear-gradient(to right, #ffcc00 0%, #ffa000 50%, #ffcc00 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent; /* Fallback for browsers that don't support text-fill-color */
    animation: gradientAnimation 5s ease infinite; /* Apply the animation */
    background-size: 200% 100%; /* Make gradient larger for animation */
}

@keyframes gradientAnimation {
0% {
background-position: 0% 50%;
}
100% {
background-position: 100% 50%;
}
}