body {
    margin: 0;
    font-family: sans-serif;
    background: linear-gradient(to bottom, rgb(66,49, 99), rgb(112,55, 112));
    color: white;
    overflow-x: hidden;
    max-width: 1280px;
    margin: auto;
    padding-top: 90px; /* Add padding to account for the fixed header height */
    
}



.stars{
  .star{ 
    position: absolute;
    width: 10px;
    height: 10px;
    &::before, &::after{
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 3px;
      height: 3px;
      background:white;
      border-radius: 50%;
      animation: shineMe 1s ease-in-out infinite alternate;
      transform-origin: middle;
      box-shadow: 0 0 6px 3px rgba($white, .15);
    }
    &::before{
      transform: translate(-50%, -50%);
    }
    &::after{
      transform: translate(-50%, -50%) rotate(90deg);
    }
    &:nth-child(1){
      top: 3%;
      left: 3%;
      &::before, &::after{
        animation-delay: 1s;
      }
    }
    &:nth-child(2){
      top: 20%;
      left: 23%;
      transform: scale(1.4);
    }
    &:nth-child(3){
      top: 3%;
      right: 7%;
      transform: scale(.7);
    }
    &:nth-child(4){
      top: 9%;
      left: 59%;
      transform: scale(1.5);
      &::before, &::after{
        animation-delay: 1.5s;
      }
    }
    &:nth-child(5){
      top: 19%;
      left: 69%;
      &::before, &::after{
        animation-delay: 1s;
      }
    }
    &:nth-child(6){
      top: 49%;
      left: 0;
      transform: scale(.7);
      &::before, &::after{
        animation-delay: 1s;
      }
    }
  }
}

@keyframes shineMe {
  from{
    height: 3px;
  }
  to{
    height: 100%;
  }
}

.stars2{
  .star{ 
    position: absolute;
    width: 10px;
    height: 10px;
    animation: swing2 8s linear infinite;
    &::before{
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 3px;
      height: 3px;
      background: $sky-color-2;
      border-radius: 50%;
      animation: shineMe2 2s ease-in-out infinite alternate;
      transform: translate(-50%, -50%);
      transform-origin: middle;
      box-shadow: 0 0 6px 3px rgba($light-blue, .15);
      opacity: .1;
    }
    &:nth-child(1){
      top: 20%;
      right: 3%;
    }
    &:nth-child(2){
      top: 30%;
      left: 6%;
    }
    &:nth-child(3){
      top: 3%;
      left: 32%;
    }
    &:nth-child(4){
      top: 9%;
      left: 69%;
    }
    &:nth-child(5){
      top: 40%;
      right: 9%;
    }
    &:nth-child(6){
      top: 50%;
      left: 25%;
    }
  }
}

@keyframes shineMe2{
  from{
    opacity: .3;
  }
  to{
    opacity: .9;
  }
}


.cta-primary {
    animation: pulse2 2s infinite ease-in-out;
}
@keyframes pulse2 {
    0%, 100% { transform: scale(1); }
    80% { transform: scale(1.1); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

nav a.active {
    border-bottom: 2px solid #ffbf00;
}

footer .social-icons a:hover {
    color: #ffbf00;
    transform: scale(1.2);
}

.bg-image1 {
    position: absolute;
    width: 60px;
    height: 60px;
    background: url('/images/planet.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.3;
    animation: moveUpDown 5s infinite alternate ease-in-out;
}
.bg-image2 {
    position: absolute;
    width: 60px;
    height: 60px;
    background: url('/images/planet2.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.3;
    animation: moveUpDown 5s infinite alternate ease-in-out;
}

.bg-image-1 {
    top: 10%;
    left: 15%;
}

.bg-image-2 {
    top: 60%;
    left: 70%;
    animation-delay: 1s;
}

.bg-image-3 {
    top: 30%;
    left: 40%;
    animation-delay: 2s;
}

@keyframes moveUpDown {
    from {
        transform: translateY(10px);
    }
    to {
        transform: translateY(20px);
    }
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(125, 27, 140, 0.05); /* Semi-transparent background */
    backdrop-filter: blur(8px); /* Apply blur effect */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    z-index: 100;
}

.header-image {
    position: absolute;
    top: 20px; /* Adjust top position as needed */
    left: 50%;
    transform: translateX(-50%);
    z-index: 0; /* Ensure it's behind the header */
}

.header-image img {
    max-height: 300px;
}

header .logo {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
}

header nav {
    display: flex;
    gap: 20px;
}

header nav a {
    text-decoration: none;
    color: white;
    font-weight: 400;
}

header nav a:hover {
    color: #ffbf00;
}

.hero {
    text-align: center;
    margin-top: 160px;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.25rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero .cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero .cta a {
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    margin: 10px;
}

.cta-primary {
    background: #ffbf00;
    color: #333;
}

.cta-primary:hover {
    background: #e6a700;
}

.cta-secondary {
    border: 2px solid white;
    color: white;
}

.cta-secondary:hover {
    background: white;
    color: #333;
}

section {
    padding: 30px 20px;
    text-align: center;
}

section h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.feature .feature-icon {
    width: 80px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    font-size: 2rem;
    margin-bottom: 5px;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.feature {
    max-width: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    text-align: left;
    margin-bottom: 10px;
    transition: transform 0.3s ease-in-out;
    text-decoration: none;
    border: 1px solid rgb(146, 148, 248);
    position: relative;
    overflow: hidden;
}


.feature:hover {
    box-shadow: 1px 1px 15px 5px rgba(45, 157, 255, 0.4);
}
  
.feature:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      120deg,
      transparent,
      rgba(146, 148, 248, 0.4),
      transparent
    );
    transition: all 650ms;
 }
  
 .feature:before {
    left: 100%;
 }


footer {
    background: #0a002a;
    color: white;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer .social-icons a {
    margin-right: 15px;
    color: white;
    text-decoration: none;
}

footer .social-icons a:hover {
    color: #ffbf00;
}

.starry-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}
/*
.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    animation: pulse 2s infinite ease-in-out;
}*/

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(0.8);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

@media screen and (max-width: 768px) {
    body {
        width: 100%;
    }

    header {
        padding: 20px 10px;
    }

    .hero {
        text-align: center;
        padding: 150px 20px 50px 20px;
        position: relative;
        z-index: 1;
    }

    header nav {
        margin-top: 20px;
        flex-direction: row;
        align-items: center;
        gap: 10px;
    }

    header .header-image {
        position: absolute;
        top: 80px;
        left: 50%;
        transform: translateX(-50%);
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero .cta {
        flex-direction: column;
        align-items: center;
    }

    .hero .cta a {
        width: 80%;
        text-align: center;
        margin: 10px 0;
    }

    .features {
        flex-direction: column;
        align-items: center;
    }

    .feature {
        width: 90%;
        max-width: none;
    }

    footer {
        flex-direction: column;
        text-align: center;
    }

    footer .social-icons {
        margin-top: 20px;
    }
}

.cookie-notification {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    font-size: 14px;
}

.cookie-notification button {
    background-color: #00aaff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 14px;
    border-radius: 5px;
}

.cookie-notification button:hover {
    background-color: #0088cc;
}

/* Basic styles for new pages */
h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}




svg.filters { height:0; width: 0; position: absolute; z-index:-1; }
.header-text {
    color: #c8c2bd;
    font-size: 2.7em;
    text-align: center;
    line-height: 1.0625;
    font-weight: 600;
    letter-spacing: -0.009em;
}
.glow-filter{
    position: relative;
    display: inline-block;
    scale: 1;

    animation: onloadscale 1s ease-out forwards;
}
.glow-filter::before{
    content: attr(data-text);
    position: absolute;
    pointer-events: none;
    color:  #fffaf6;
    background: linear-gradient(0deg, #dfe5ee 0%, #fffaf6 50%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: url(#glow-4);
    -moz-filter: url(#glow-4);
    -webkit-filter: url(#glow-4);

    opacity: 0;
    animation: onloadopacity 1s ease-out forwards;
}
@keyframes onloadscale {
    24% { scale: 1; }
    100% { scale: 1.02; }
}
@keyframes onloadopacity {
    24% { opacity: 0; }
    100% { opacity: 1; }
}


@keyframes onloadbgt {
    0% { translate: 0 -70%; opacity: 0.3; }
    100% { translate: 0 -64%; opacity: 0.8; }
}
@keyframes onloadbgb {
    0% { translate: 0 70%; opacity: 0.3; }
    100% { translate: 0 64%; opacity: 0.8; }
}


.cta-button {
    z-index: 100;
    margin-top:20px;
    padding: 20px 40px;
    background-color: #ffa220;
    border: 0;
    border-radius: 10px;
    color: white;
    font-size: 2rem;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(0,0,0,0.10), 0 6px 6px rgba(0,0,0,0.05);
    animation: shadow-pulse 1s infinite;
    cursor:pointer;
  }
  
  @keyframes shadow-pulse
  {
       0% {
            box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.2);
       }
       100% {
            box-shadow: 0 0 0 35px rgba(255, 255, 255, 0);
       }
  }
  
  .cta-button:focus {
    outline:none;
  }
  