 :root {
            --yellow:#FFAE00;
            --white:#fff;
            --navy:#030625;
            --gray:rgba(255, 255, 255, 0.3);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        a, li {
            list-style-type: none;
            text-decoration: none;
        }

        body {
            width: 100vw;
            height: 100vh;
            position: relative;
            overflow: hidden;
            background-image:url(img/bk.jpg);
            background-repeat: no-repeat;
            background-position: top;
            background-size: cover;
        }

        .header {
            width: 100%;
            height: 130px;
            background-image:url(img/bbk.png);
            background-repeat: no-repeat;
            background-position: top;
            background-size: cover;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 100px;
            position: fixed;
            top: 0;
            z-index: 1000;
        }

        .logo {
            color: var(--yellow);
            font-family: Bayon;
            font-size: 48px;
            font-weight: 400;
        }

        .nav {
            width: auto;
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .nav-div {
            width: auto;
            display: flex;
            align-items: center;
            gap: 40px;
            margin-right: 20px;
        }

        .nav-link {
            position: relative;
            color: var(--white);
            font-family: "Chakra Petch";
            font-size: 24px;
            font-weight: 400;
            padding-bottom: 5px;
            transition: color 0.3s ease-in-out;
            cursor: pointer;
        }

        .nav-link::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 0%;
            height: 4px;
            background: var(--yellow);
            transition: width 0.4s ease-in-out;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .nav-link:hover {
            color: var(--yellow);
        }

 .nav-icon {
            width: 50px;
            height: 50px;
            cursor: pointer;
            filter: brightness(0) invert(1);
            transition: filter 0.2s ease-in-out;
            background-image: url(img/ic4.png);
            background-repeat: no-repeat;
            background-position: center;
            background-size: contain;
        }
        
        .nav-icon.active {
            filter: invert(54%) sepia(93%) saturate(2230%) hue-rotate(1deg) brightness(135%) contrast(102%);
            background-image: url(img/ic2.png);
        }
        

        .nav-iconn {
            width: 50px;
            height: 50px;
            cursor: pointer;
            filter: brightness(0) invert(1);
            transition: filter 0.3s ease-in-out;
        }

        .nav-iconn:hover {
            filter: invert(54%) sepia(93%) saturate(2230%) hue-rotate(1deg) brightness(135%) contrast(102%);
        }
        .slider-container {
            width: 100%;
            height: 100vh;
            position: relative;
            overflow: hidden;
        }

        .slide {
            position: absolute;
            width: 100%;
            height: 100vh;
            top: 100vh;
            left: 0;
            opacity: 0;
            transition: all 0.8s ease-in-out;
        }

        .slide.active {
            top: 0;
            opacity: 1;
        }

        .slide.going-up {
            top: -100vh;
            opacity: 0;
        }

        .slide.going-down {
            top: 100vh;
            opacity: 0;
        }

        .section1, .section2, .section3, .section4, .section5, .section6 {
            width: 100%;
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding-top: 130px;
        }

        .section1-div {
            width: 1096.422px;
            display: flex;
            justify-content: flex-start;
            align-items: center;
            flex-direction: column;
            gap:30px;
                height: 690px;
        }

        .moon1{
            width: 850px;
            position: relative;
            top: -140px;
            background: url(img/moon.png) no-repeat center;
            background-size: contain;
            z-index: -1;
            filter: blur(10px);
        }

        .moon {
            width: 950px;
            position: absolute;
            top: 140px;
            background: url(img/moon.png) no-repeat center;
            background-size: contain;
            z-index: -1;
            animation: rotatePlanet 5s 5s ease-in-out infinite;
        }

        @keyframes rotatePlanet {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .rocket1 {
            width: 90px;
            height: auto;
            position: relative;
            top: 104px;
            filter: blur(10px);
        }

        .section2-divv{
            position: absolute;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
                top: 140px;
    z-index: -2;
        }

        .rocket {
            width: 111.836px;
            height: 243.21px;
            position: relative;
            bottom: 74px;
            animation: rocket 4s ease-in-out infinite alternate;
        }

        @keyframes rocket {
            from { transform: translateY(0px); }
            to { transform: translateY(20px); }
        }

        .section1-title {
            color: var(--white);
            text-align: center;
            width: 556px;
            font-family: Bayon;
            font-size: 80px;
            font-weight: 400;
            line-height: 99px;
        }

        .cta-div{
            width: auto;
            height: auto;
            display: flex;
            gap: 30px;
            position: relative;
        }

        .cta {
            width: 170px;
            height: 60px;
            border-radius: 50px;
            background: var(--yellow);
            color: var(--white);
            font-family: "Chakra Petch";
            font-size: 24px;
            font-weight: 700;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: all 0.5s ease-in-out;
            cursor: pointer;
        }

        .cta:hover {
            color: var(--yellow);
            background: var(--white);
        }

        .cta-back {
            width: 170px;
            height: 60px;
            border-radius: 50px;
            background: var(--white);
            color: var(--yellow);
            font-family: "Chakra Petch";
            font-size: 24px;
            font-weight: 700;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: all 0.5s ease-in-out;
            cursor: pointer;
        }

        .cta-back:hover {
            color: var(--white);
            background: var(--yellow);
        }

        .section2 {
            justify-content: center;
            align-items: center;
            gap: 50px;
        }

        .section2-div {
            width: 416.422px;
            display: flex;
            justify-content: flex-start;
            align-items: flex-start;
            flex-direction: column;
            gap:30px;
        }

        .section2-img {
            width: 322.424px;
        }

        .section2-title {
            color: var(--yellow);
            font-family: Bayon;
            font-size: 40px;
            font-weight: 400;
            line-height: 50px;
        }

        .section2-text {
            color: var(--white);
            width: 426px;
            font-family: "Chakra Petch";
            font-size: 18px;
            font-style: italic;
            font-weight: 500;
        }

        .rock, .rock2, .rock3, .rock4, .rock5, .rock6, .rock7, .rock8 {
            position: absolute;
            animation: rotateRock 20s linear infinite;
            opacity: 1;
        }

        @keyframes rotateRock {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .rock  { width: 200px; top: 110px; left: -80px; }
        .rock2 { width: 200px; top: 120px; right: 340px; }
        .rock3 { width: 200px; top: 490px; left: 20px;}
        .rock4 { width: 200px; top: 210px; right: 50px; }
        .rock5 { width: 200px; top: 440px; right: 340px;}
        .rock6 { width: 200px; top: 630px; right: 50px;}
        .rock7 { width: 200px; top: 250px; left: 350px; }
        .rock8 { width: 200px; top: 700px; left: 390px;}

        .section3{
            width: 100%;
            height: 100vh;
            display: flex;
            gap: 200px;
            flex-direction: row;
            position: relative;
            justify-content: flex-start;
            align-items: center;
            padding: 0 100px;
        }

        .section3-div{
            width: 890px;
            height: auto;
            display: flex;
            flex-direction: column;
            gap: 30px;
            justify-content: space-between;
            align-items: flex-start;
        }

        .section3-title{
            color: var(--yellow);
            font-family: Bayon;
            font-size: 40px;
            font-style: normal;
            font-weight: 400;
            line-height: 50px;
        }

        .section3-text{
            color: var(--white);
            font-family: "Chakra Petch";
            font-size: 18px;
            font-style: italic;
            font-weight: 500;
            line-height: normal;
        }

        .fire{
            width: 650px;
            height: auto;
            transform: rotate(1.89deg);
            flex-shrink: 0;
            aspect-ratio: 548.41 / 410.13;
 animation: softSlide 3.2s ease-out forwards infinite;
}


@keyframes softSlide {
  0% {
    transform: translate(40px, -40px) rotate(1.89deg);
    opacity: 0;
  }

  70% {
    transform: translate(-20px, 20px) rotate(1.89deg);
    opacity: 1;
  }

  100% {
    transform: translate(-20px, 20px) rotate(1.89deg);
    opacity: 1;
  }
}


        .section4{
            width: 100%;
            height: 120vh;
            display: flex;
            gap: 130px;
            flex-direction: row;
            position: relative;
            justify-content: flex-end;
            align-items: center;
            padding: 0 100px;
        }

        .section4-div{
            width: 890px;
            height: auto;
            display: flex;
            flex-direction: column;
            gap: 30px;
            justify-content: flex-start;
            align-items: flex-start;
            margin-top: 100px;
        }

        .earth{
        width: 740px;
    height: auto;
    position: relative;
    left: -370px;
            animation: rotateearth 10s 5s ease-in-out infinite;
        }

        @keyframes rotateearth {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .fire1{
            width: 650px;
            height: auto;
            transform: rotate(1.89deg);
            flex-shrink: 0;
            aspect-ratio: 548.41 / 410.13;
            position: absolute;
            top: 50px;
            left: 600px;
              animation: softSlide2 3.2s ease-out forwards infinite;
}


@keyframes softSlide2 {
  0% {
    transform: translate(40px, -40px) rotate(1.89deg);
    opacity: 0;
  }

  70% {
    transform: translate(-20px, 20px) rotate(1.89deg);
    opacity: 1;
  }

  100% {
    transform: translate(-20px, 20px) rotate(1.89deg);
    opacity: 1;
  }
}

        .section5{
            width: 100%;
            height: 100vh;
            display: flex;
            gap: 130px;
            flex-direction: row;
            position: relative;
            justify-content: flex-start;
            align-items: center;
            padding: 0 100px;
        }

        .section5-div{
            width: 890px;
            height: auto;
            display: flex;
            flex-direction: column;
            gap: 30px;
            justify-content: flex-start;
            align-items: flex-start;
            margin-top: 100px;
        }

        .earth-die{
               width: 740px;
    height: auto;
    position: relative;
    right: -370px;
            animation: rotateearthh 10s 5s ease-in-out infinite;
        }

        @keyframes rotateearthh {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .section6{
            width: 100%;
            height: 100vh;
            display: flex;
            gap: 30px;
            flex-direction: column;
            position: relative;
            justify-content: center;
            align-items: center;
            padding: 0 100px;
        }

        .section6-div{
            width: 890px;
            height: auto;
            display: flex;
            flex-direction: column;
            gap: 30px;
            justify-content: center;
            align-items: center;
            position: relative;
            top: 480px;
        }

        .cloud{
            width: 1920px;
            height: auto;
         
        }

        .cards-footer-wrapper {
            width: 100%;
            height: 100vh;
            overflow-y: auto;
            overflow-x: hidden;
            padding-top: 130px;
        }

        .cards{
            width: 100%;
            height: auto;
            display: flex;
            gap: 20px;
            flex-direction: column;
            position: relative;
            justify-content: center;
            align-items: center;
            padding: 50px 100px;
            background-image: url(img/fbkk.jpg);
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }

        .card-div{
            width: 1920px;
            height: auto;
            display: flex;
            gap: 20px;
            flex-direction: row;
            position: relative;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
        }

        .card{
            width: 556px;
            height: 672px;
            border-radius: 66px;
            background:var(--navy);
            backdrop-filter: blur(39.5px);
            display: flex;
            gap: 20px;
            flex-direction: column;
            position: relative;
            justify-content: flex-start;
            align-items: flex-start;
            padding: 30px;
        }

        .card-img{
            width: 100%;
            max-width: 479px;
            height: auto;
        }

        .card-title{
            color: var(--white);
            text-align: center;
            font-family: Bayon;
            font-size: 32px;
            font-style: normal;
            font-weight: 400;
            line-height: normal;
        }

        .card-text{
            color: var(--white);
            font-family: "Chakra Petch";
            font-size: 20px;
            font-style: normal;
            font-weight: 700;
            line-height: normal;
        }

        .img{
            width: 100%;
            height: auto;
        }

        .footer{
            height: 290px;
            display: flex;
            gap: 60px;
            flex-direction: column;
            position: relative;
            justify-content: flex-start;
            align-items: flex-start;
            padding: 50px 100px;
            background-color: var(--navy);
            margin-top: -11px;
        }

        .footer-div{
            width: 100%;
            max-width: 1720px;
            height: auto;
            display: flex;
            position: relative;
            justify-content: space-between;
            align-items: center;
        }

        .footer-title{
            color: var(--white);
            font-family: Bayon;
            font-size: 40px;
            font-style: normal;
            font-weight: 400;
            line-height: normal;
        }

        .footer-text{
            color: var(--white);
            font-family: "Chakra Petch";
            font-size: 18px;
            font-style: normal;
            font-weight: 400;
            line-height: normal;
            margin: 10px 0;
        }

        .footer-text1{
            color: var(--white);
            font-family: "Chakra Petch";
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: normal;
        }

        .footer-logo {
            color: var(--yellow);
            font-family: Bayon;
            font-size: 48px;
            font-weight: 400;
        }

        .footer-bottom{
            align-items: center;
            display: flex;
            justify-content: space-between;
            width: 100%;
            max-width: 1720px;
        }

        .social-img{
            width: 202px;
            height: auto;
            cursor: pointer;
        }

        .star-pagination {
            position: fixed;
            bottom: 50px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 20px;
            z-index: 1000;
            opacity: 1;
            transition: opacity 0.3s ease;
        }

        .star-pagination.hidden {
            opacity: 0;
            pointer-events: none;
        }

     .star-dot {
    width: 30px;
    height: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--gray);


    clip-path: polygon(
        50% 5%,
        62% 38%,
        95% 38%,
        68% 57%,
        78% 88%,
        50% 70%,
        22% 88%,
        31% 57%,
        5% 38%,
        38% 38%
    );
}

        .star-dot.active {
            background: var(--yellow);
            transform: scale(1.3);
        }

        .star-dot:hover {
            background: var(--yellow);
            transform: scale(1.2);
        }