@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;700&display=swap');
    @import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@1,300&display=swap');

    body {
      font-family: 'Poppins', sans-serif;
      font-weight: 300; /* Lighter weight for the main text */
      overflow-x: hidden;
      background: black;
      color: white;
      cursor: none; /* Hides the default cursor */
    }
    
    /* Grain overlay */
    body::after {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      background-image: url('data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjAwIDIwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxmaWx0ZXIgaWQ9Im5vaXNlIiB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIj4KICAgICAgPGZlVHVyYmxlbmNlIHR5cGU9ImZyYWN0YWxOb2lzZSIgYmFzZUZyZXF1ZW5jeT0iMC40IiBudW1PY3RhdmVzPSIzIiBzdGl0Y2hUaWxlcz0ic3RpdGNoIi8+CiAgICAgIDxmZUNvbG9yTWF0cml4IHR5cGU9Im1hdHJpeCIgdmFsdWVzPSIxIDAgMCAwIDAgMCAxIDAgMCAwIDAgMCAxIDAgMCAwIDAgMCAtMSAwIi8+CiAgICA8L2ZpbHRlcj4KICAgIDxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InJnYmEoMCwgMCwgMCwgMC4wNSkiLz4KICAgIDxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjbmlzZSkib3BhY2l0eT0iMC4wNSIgLz4KPC9zdmc+');
      z-index: 100; /* Above the 3D background, but below the content */
    }

    .neon-cursor {
      position: fixed;
      width: 15px;
      height: 15px;
      border-radius: 50%;
      background-color: transparent;
      box-shadow: 0 0 2px #b19cd9, 0 0 4px #b19cd9, 0 0 6px #b19cd9, 0 0 8px #b19cd9, 0 0 12px #b19cd9;
      pointer-events: none; /* Allows clicks to pass through */
      z-index: 9999;
      transform: translate(-50%, -50%);
      transition: transform 0.1s ease-out; /* Smooth follow effect */
    }

    .gradient-text {
      background: linear-gradient(135deg, #b19cd9, #87ceeb, #98fb98, #ffb6c1, #fdfd96);
      background-size: 400% 400%;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: gradient-flow 7s ease infinite;
    }

    /* New CSS for the button gradient */
    .contact-button-gradient {
      background: linear-gradient(135deg, #b19cd9, #87ceeb, #98fb98, #ffb6c1, #fdfd96);
      background-size: 400% 400%;
      animation: gradient-flow 7s ease infinite;
    }

    .elegant-font {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 300;
      font-style: italic;
    }

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

    .section-hidden {
      opacity: 0;
      transform: translateY(50px);
      transition: opacity 1.5s ease-out, transform 1.5s ease-out;
    }

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

    /* Polaroid container for animation */
    .polaroid-left {
      transform: translateX(-100%) rotate(-5deg);
      opacity: 0;
      transition: transform 1.5s ease-in-out, opacity 1.5s ease-in-out;
    }
    .polaroid-right {
      transform: translateX(100%) rotate(5deg);
      opacity: 0;
      transition: transform 1.5s ease-in-out, opacity 1.5s ease-in-out;
    }
    .polaroid:hover {
        transform: translateY(-5px);
    }

    /* Custom scrollbar */
    ::-webkit-scrollbar { width: 5px; }
    ::-webkit-scrollbar-track { background: #000; }
    ::-webkit-scrollbar-thumb { background: #b19cd9; border-radius: 4px; }
    ::-webkit-scrollbar-thumb:hover { background: #87ceeb; }

    .word {
      opacity: 0;
      transition: opacity 0.5s ease-out;
      display: inline-block;
    }

    /* Jiggle effect for button */
    @keyframes jiggle {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-5px); }
    }
    .jiggle-effect {
      animation: jiggle 1s ease-in-out infinite;
    }

    /* Scroll button fade effect */
    .scroll-btn-container {
      opacity: 1;
      transition: opacity 0.5s ease-in-out;
    }
    .scroll-btn-container.fade-out {
      opacity: 0;
      pointer-events: none; /* Disables clicks when faded out */
    }

    /* New CSS for horizontal scrolling logos */
    .logos-container {
      display: flex;
      flex-wrap: nowrap;
      animation: scroll-logos 9s linear infinite; /* Faster scroll */
    }

    .logos-container img {
      flex-shrink: 0;
      margin: 0 2rem;
    }

    /* Feather effect */
    .logo-scroller-mask {
      overflow: hidden;
      -webkit-mask-image: linear-gradient(to right, transparent, white 15%, white 85%, transparent);
      mask-image: linear-gradient(to right, transparent, white 15%, white 85%, transparent);
    }

    @keyframes scroll-logos {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

    /* Circular text animation */
    @keyframes rotate-360 {
        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
    }
    .circular-text-container {
        animation: rotate-360 10s linear infinite;
    }
    .circular-text-path {
        fill: #b19cd9;
    }
     /* Preloader Styles */
    #preloader {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: #000;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      z-index: 9999;
      opacity: 1;
      transition: opacity 1s ease-out, visibility 1s ease-out;
    }

    #preloader.fade-out {
      opacity: 0;
      visibility: hidden;
    }

    #preloader-text {
      color: white;
      font-size: 2rem;
      font-weight: bold;
      opacity: 0;
      animation: text-fade-in 1s forwards;
    }

    @keyframes text-fade-in {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    
    #main-content {
      opacity: 0;
      visibility: hidden;
      transition: opacity 1s ease-in, visibility 1s ease-in;
    }
    #main-content.visible {
      opacity: 1;
      visibility: visible;
    }
    
    
    
    .faq-constellation-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    background: rgba(26, 26, 46, 0.9);
    border: 2px solid transparent;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.faq-constellation-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.faq-constellation-btn:hover::before {
    left: 100%;
}

.faq-constellation-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    padding: 2px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
    border-radius: inherit;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: xor;
    -webkit-mask-composite: xor;
    animation: borderGlow 3s ease infinite;
}

@keyframes borderGlow {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.faq-constellation-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.3);
    background: rgba(26, 26, 46, 1);
}

.btn-icon {
    margin-right: 12px;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-constellation-btn:hover .btn-icon {
    transform: rotate(20deg) scale(1.1);
}

.btn-text {
    position: relative;
    z-index: 1;
}

/* Floating stars around button */
.btn-stars {
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    pointer-events: none;
}

.btn-star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #fff;
    border-radius: 50%;
    opacity: 0;
    animation: starFloat 4s infinite ease-in-out;
}

.btn-star:nth-child(1) { top: 20%; left: 15%; animation-delay: 0s; }
.btn-star:nth-child(2) { top: 60%; left: 80%; animation-delay: 1s; }
.btn-star:nth-child(3) { top: 80%; left: 20%; animation-delay: 2s; }
.btn-star:nth-child(4) { top: 30%; left: 70%; animation-delay: 0.5s; }
.btn-star:nth-child(5) { top: 70%; left: 40%; animation-delay: 1.5s; }

@keyframes starFloat {
    0%, 100% { opacity: 0; transform: translateY(0px); }
    50% { opacity: 0.8; transform: translateY(-10px); }
}

/* Container for button positioning */
.faq-btn-container {
    text-align: center;
    margin: 40px 0;
    position: relative;
}