body {
    font-family: 'Space Grotesk', sans-serif;
    background-color: #020617;
    background-image: radial-gradient(circle at 50% -20%, #1e1b4b 0%, #020617 85%);
}

.neon-border {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.neon-border:hover {
    border-color: #3b82f6;
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.2);
    transform: translateY(-5px);
}

.glow-button {
    background: linear-gradient(90deg, #2563eb, #7c3aed);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
}

.glow-button:hover {
    box-shadow: 0 4px 25px rgba(124, 58, 237, 0.6);
    transform: scale(1.02);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.float-anim {
    animation: float 5s ease-in-out infinite;
}

.gradient-text {
    background: linear-gradient(to right, #60a5fa, #a78bfa, #f472b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeIn {
    animation: fadeIn 0.4s ease forwards;
}

.spotlight-item.active h3 {
    color: white;
    font-size: 2.25rem;
}

section {
    position: relative;
    margin-top: 120px;
    margin-bottom: 120px;
}

section:nth-of-type(odd) {
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.02),
            rgba(255, 255, 255, 0));
}

section:nth-of-type(even) {
    background: linear-gradient(180deg,
            rgba(59, 130, 246, 0.04),
            rgba(0, 0, 0, 0));
}

section::before,
section::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.15),
            transparent);
}

section::before {
    top: 0;
}

section::after {
    bottom: 0;
}

section>div {
    position: relative;
    z-index: 1;
}

section::after {
    filter: blur(1px);
}

html{
  overflow-x: hidden;
  font-family: 'Space Grotesk', sans-serif;
}

.neon-border {
  box-sizing: border-box;
}


@media (max-width: 768px) {
  nav .logo img {
    max-width: 180px;
  }

  nav button {
    padding: 8px 18px;
    font-size: 12px;
  }
}


@media (max-width: 1024px) {
  main h1 {
    font-size: 4rem;
  }
}

@media (max-width: 768px) {
  main {
    padding-top: 6rem;
    text-align: center;
  }

  main h1 {
    font-size: 3rem;
    line-height: 1.1;
  }

  main p {
    font-size: 1rem;
  }

  .float-anim {
    width: 260px;
    height: 260px;
    padding: 2rem;
  }

  .float-anim .text-8xl {
    font-size: 4rem;
  }
}


@media (max-width: 768px) {
  section.grid {
    gap: 1.5rem;
  }

  section.grid > div {
    padding: 2rem;
    border-radius: 28px;
  }
}

@media (max-width: 768px) {
  #simulator h2 {
    font-size: 2rem;
  }

  #simulator .text-\[130px\] {
    font-size: 5rem;
  }

  #simulator button {
    width: 100%;
  }
}


@media (max-width: 768px) {
  #services h2 {
    font-size: 2.4rem;
  }

  #services p {
    font-size: 1rem;
  }
}


@media (max-width: 1024px) {
  .spotlight-item h3 {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .spotlight-item p {
    max-width: 100%;
    font-size: 0.95rem;
  }

  #display-content {
    width: 100%;
    height: auto;
   padding: 1rem;
        margin-top: 12px;
  }
}



@media (max-width: 768px) {
  #how-it-works h2 {
    font-size: 2.4rem;
  }

  #how-it-works .w-20 {
    width: 64px;
    height: 64px;
  }

  #how-it-works span.text-3xl {
    font-size: 1.5rem;
  }
}


@media (max-width: 768px) {
  footer {
    text-align: center;
  }

  footer .logo img {
    margin: 0 auto;
  }

  footer form button {
    width: 100%;
  }
}


@media (max-width: 360px) {
  h1 {
    font-size: 2.2rem !important;
  }

  h2 {
    font-size: 1.8rem !important;
  }

  p {
    font-size: 0.9rem;
  }
}


@media (max-width: 768px) {
    
    #hacks {
        padding-top: 4rem !important;
        padding-bottom: 4rem !important;
    }
    #hacks .flex-col {
        gap: 3rem !important; 
    }

    #hacks .md\:sticky {
        position: relative !important;
        top: 0 !important;
        width: 100% !important;
        text-align: center; 
    }

    #hacks h2 {
        font-size: 2.5rem !important; 
        margin-top: 1rem !important;
    }

    #hacks p.text-lg {
        font-size: 1rem !important;
        margin-left: auto;
        margin-right: auto;
    }

    #hacks .md\:w-2\/3 {
        width: 100% !important;
        display: flex;
        flex-direction: column;
        gap: 4rem !important; 
    }

    #hacks .flex.items-baseline {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }


    #hacks .border-t {
        padding-top: 2rem !important;
    }

    #hacks h4 {
        font-size: 1.25rem !important;
        margin-bottom: 0.5rem !important;
    }
}



@media (max-width: 768px) {
    #simulator .neon-border {
        padding: 2.5rem 1.5rem !important; 
        border-radius: 40px !important;
    }

    #simulator .grid {
        gap: 3rem !important; 
    }
    #simulator h2 {
        font-size: 1.875rem !important; 
        text-align: center;
    }

    #simulator .space-y-4 > div {
        padding: 1.25rem !important;
        flex-direction: column; 
        align-items: center;
        text-align: center;
        gap: 0.5rem;
    }

    #simulator .text-\[130px\] {
        font-size: 80px !important;
        line-height: 1 !important;
        margin-top: 0.5rem;
    }
    #simulator .md\:border-l {
        border-left: none !important;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-left: 0 !important;
        padding-top: 3rem !important;
    }

    #simulator button {
        width: 100%;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
}

@media (max-width: 400px) {
    #simulator .text-\[130px\] {
        font-size: 64px !important;
    }
    
    #simulator h2 {
        font-size: 1.5rem !important;
    }
}
@media (max-width: 767px) {


  .float-anim {
    width: 240px !important;
    height: 240px !important;
    padding: 1.5rem !important;
    border-radius: 32px !important;
  }
.flex{
        justify-content: center;
}
  .float-anim .text-8xl {
    font-size: 3.2rem !important;
  }

  .float-anim .absolute.border-\[12px\] {
    border-width: 6px !important;
    border-radius: 32px !important;
  }

  .float-anim .rotate-45 {
   display: none;
  }
}
@media (max-width: 767px) {
  .float-anim {
    margin-top: 1rem;
  }
  footer{
      text-align:left;
  }
}


.footer-title {
    
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

.contact-details-container {
    display: flex;
    flex-direction: column;
    gap: 12px; 
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-item i {
   
    font-size: 0.9rem; 
    margin-top: 3px;
}

.contact-text .label {
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1px;
}

.contact-text .details {
    color: #94a3b8;
    font-size: 0.75rem; 
    line-height: 1.4;
    margin: 0;
}

.contact-text .details br {
    display: block;
    content: "";
    margin-top: 2px;
}
