/* Custom Scrollbar for WebKit (Chrome, Edge, Safari) */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: linear-gradient(180deg, #eef2ff, #e6fff7, #f5ecff);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #5b7cff, #38c0a8);
  border-radius: 10px;
  border: 2px solid #eef2ff; /* creates spacing */
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #38c0a8, #5b7cff);
}

/* For Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #5b7cff #eef2ff;
}




body {
        font-family: "Inter", sans-serif;
        background: linear-gradient(180deg, #eef2ff, #e6fff7, #f5ecff);
        color: #0f1724;
    }

    .navbar {
        backdrop-filter: blur(6px);
        background: rgba(255, 255, 255, 0.7);
    }

    .hero-title {
        background: linear-gradient(90deg, #5b7cff, #38c0a8, #a78bfa);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-size: xxx-large;
    }

    .card-custom {
        background: rgba(255, 255, 255, 0.85);
        border: 1px solid rgba(255, 255, 255, 0.45);
        border-radius: 1rem;
        box-shadow: 0 8px 20px rgba(20, 20, 30, 0.08);
    }

    .btn-gradient {
        background: linear-gradient(90deg, #5b7cff, #38c0a8);
        color: #fff;
        font-weight: 600;
        border-radius: 50rem;
    }

    .floating-cta {
        position: fixed;
        right: 20px;
        bottom: 20px;
        background: linear-gradient(90deg, #5b7cff, #38c0a8);
        color: #fff;
        padding: 12px 20px;
        border-radius: 50rem;
        box-shadow: 0 10px 30px rgba(50, 70, 150, 0.2);
        text-decoration: none;
        font-weight: 600;
        z-index: 999;
    }



    .icon-round {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #ecf2ff, #e9fff6);
  font-size: 22px;
  margin-bottom: 10px;
}
.card-custom {
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.45);
  border-radius: 1rem;
  box-shadow: 0 8px 20px rgba(20,20,30,0.08);
}







.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1; /* Push video to background */
}

.hero-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 36, 0.55); /* Dark overlay for readability */
  z-index: -1;
}

body{
    overflow-x: hidden;
}


/* Loader full screen */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black; /* or gradient if you want */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Optional smooth fade out */
#loader.fade-out {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

#content {
  display: block;
}
