/* Fix double scrollbar issue */
html {
    overflow-x: hidden;
    overflow-y: auto;
}

body {
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
    position: relative;
}

#mainNavbar {
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
  }

  /* When scrolled */
  .navbar-scrolled {
    background-color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }
.text-custom-primary {
    color: #926efb;
}
.text-custom-secondary {
    color: #4a326f;
}
.hero h1{
    font-size: 30px;
}
p.sub-title{
    font-size: 14px;
    letter-spacing: 4px;
    margin-bottom: 10px;
}
.hero{
    background-image: url('/img/bg-group-3.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* height: 100vh;
    width: 100%; */
    position: relative;
}
.btn-custom{
    background-color: #926efb;
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.bg-light-custom{
    background-color: #faf9fc;
}
.btn-custom:hover{
    background-color: #7a56e9;
    color: #fff;
}
.btn-custom-outline{
    background-color: transparent;
    border: 1px solid #926efb;
    color: #926efb;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-custom-outline:hover{
    background-color: #926efb;
    color: #fff;
}
.z-999{
    z-index: 999;
}

.pt-10{
    padding-top: 100px;
}
@media screen and (min-width: 768px) {
    .pt-md-120{
        padding-top: 120px !important;
        /* padding-bottom: 100px !important; */
    }
    .hero-section {
        display: block !important;
    }
    .w-md-25{
        width: 25%;
    }
    .w-md-75{
        width: 75%;
    }
    .hero h1{
        font-size: 70px;
    }
    .hero p.sub-title{
        font-size: 20px;
        letter-spacing: 4px;
        margin-bottom: 25px;
    }
    .cta-section .number{
        font-size: 70px!important;
        font-weight: 800;
        color: #fff;
        margin-bottom: 0!important;
    }
    .cta-section p.text-white{
        font-size: 20px!important;
        font-weight: 600;
        color: #fff;
    }
}

/* Animated dots styles */
.hero {
    overflow-x: hidden;
    overflow-y: visible;
}

.animated-dot {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.6;
    animation: float 15s infinite ease-in-out;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -50px) scale(1.1);
    }
    50% {
        transform: translate(-20px, 30px) scale(0.9);
    }
    75% {
        transform: translate(50px, 20px) scale(1.05);
    }
}

/* ---------- MAIN MEDIA LAYOUT ---------- */
.media-container {
    position: relative;
    margin: auto;
    /* max-width: 1100px; */
    height: 600px;
    overflow: hidden;
    width: 100%;
  }

  /* Images */
  .left-top {
    left: 0;
    top: 0;
    width: 350px;
  }
  .left-bottom {
    left: 40px;
    bottom: 40px;
    width: 230px;
  }
  .right-top {
    right: 0;
    top: 0px;
    width: 300px;
  }

  /* Center Video */
  .center-video {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 65%;
    aspect-ratio: 16/9;
    border-radius: 30px;
    border: 1px solid var(--border);
    overflow: hidden;
    position: absolute;
    background: var(--card);
    box-shadow: 0 0 40px rgba(3, 98, 128, 0.5);
  }

  .center-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

/* ---------- FLOATING CARDS ---------- */
.floating-card {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--card);
    transition: 0.4s;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
  }

  .floating-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 35px 60px rgba(0,0,0,0.7);
  }

  .animate-float {
    animation: float 6s ease-in-out infinite;
  }
  .animate-float-delayed {
    animation: float 6s ease-in-out infinite 2s;
  }
  .animate-float-slow {
    animation: float 8s ease-in-out infinite 1s;
  }

  @keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
  }
/* ---------- HERO SECTION ---------- */
.hero-section {
    position: relative;
    /* min-height: 100vh; */
    overflow: hidden;
    width: 100%;
    display: none;
    padding-top: 50px;
  }

  /* Background gradient overlay */
  .bg-overlay {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(to bottom, var(--background), var(--background), var(--muted)); */
  }

  /* Grid pattern */
  .grid-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: radial-gradient(circle at 1px 1px, var(--foreground) 1px, transparent 0);
    background-size: 40px 40px;
}
.cta-section, .get-started{
    background: linear-gradient(90deg,rgba(147, 110, 252, 1) 0%, rgba(71, 94, 215, 1) 100%);
}
.cta-section .number{
    font-size: 50px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0!important;
}
.cta-section p.text-white{
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}
.bg-light-gray{
    background-color: #fafafc;
}
.pricing-card{
    border: 1px solid #926efb;
    border-radius: 10px;
    /* padding: 20px; */
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
.pricing-card .price{
    font-size: 34px;
    font-weight: 600;
}
.pricing-card ul li{
    font-size: 16px;
    margin-bottom: 10px;
}
.border-custom-primary{
    border-color: #926efb!important;
}

.form-input{
    border: 1px solid #d6c8ff;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 16px;
    font-weight: 300;
    color: #757575;
    background-color: #fff;
    transition: all 0.3s ease;
}
.form-input:focus{
    border-color: #926efb;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
.form-custom{
    padding: 40px;
    border-radius: 10px;
    border: 2px solid #a88ff4;
    background-color: #fff;
}