@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Rancho&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
.rancho{
    font-family: "Rancho", cursive !important;
}
:root {
    --golden: #ffc300;
}
.text-golden {
    color: var(--golden);
}
body{
    overflow-x: hidden;
    background: #fff;
    min-height: 100vh;
}
#header{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10000;
}
#header .logo{
    color: #003566;
    font-weight: 700;
    font-size: 1.5em;
    text-decoration: none;
}
#header ul{
    display: flex;
    align-items: center;
    justify-content: center;
}
#header ul li{
    list-style: none;
    margin-left: 20px;
}
#header ul li a{
    text-decoration: none;
    padding: 6px 15px;
    color: #003566;
    border-radius: 30px;
}
#header ul li a:hover,
#header ul li a.active{
    background: #003566;
    color: #fff;
}
section{
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
section::before{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, #003566, transparent);
    z-index: 10;
}
section img{
    position: absolute;
    width: 100%;
    transition: 0.3s;
    height: 100%;
    /* margin-top: 80px; */
}
section #text{
    position: absolute;
    color: #003566;
    /* font-size: 10vw; */
    text-align: center;
    /* line-height: 0.55em; */
    transform: translateY(-50%);
    transition: 0.3s;
}
section #text span{
    /* font-size: 0.20em; */
    /* letter-spacing: 2px; */
    /* font-weight: 400; */
    font-family: 'Poppins', sans-serif;
}
#btn{
    width: 120px;
    height: 120px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 30px;
    background: #fff;
    color: #003566;
    font-size: 1.2em;
    font-weight: 500;
    letter-spacing: 2px;
    border-radius: 50%;
    transform: translateY(100px);
}
.sec{
    position: relative;
    background: #003566;
}

.slideshow {
    position: relative;
    width: 300px;
    height: 400px;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.slide {
    position: absolute;
    inset: 0;
    display: flex;
    transform: rotateY(270deg);
    justify-content: start;
    transform-style: preserve-3d;
    align-items: start;
    animation: animate 20s linear infinite;
    animation-delay: calc(var(--i) * 2s);
}

@keyframes animate {
    0% {
        transform: rotateY(270deg);
    }

    10%,
    100% {
        transform: rotateY(90deg);
    }
}
.slideshow:hover .slide{
    animation-play-state: paused;
}
.slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.slide h2 {
    position: relative;
    z-index: 1000;
    color: #fff;
    font-size: 10em;
    transform: rotateY(180deg) translateY(100px) translateZ(50px);
    transform-style: preserve-3d;
    backface-visibility: hidden;
    font-weight: 900;
    -webkit-text-stroke: 1px #000;
}

.slide h2 span {
    position: absolute;
    top: 50%;
    left: 0;
    font-size: 0.5em;
    font-weight: 500;
    transform: translate(0, 50%) translateZ(50px);
    backface-visibility: hidden;
}


.spin-box {
    position: absolute;
    transform-style: preserve-3d;
    width: 200px;
    height: 300px;
    transform: perspective(1000px) rotateY(-45deg);
}

.spin-box::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -180px;
    width: 100%;
    height: 150px;
    background: #0009;
    transform: rotateX(90deg);
    filter: blur(40px);
    opacity: 0.5;
}

.spin-box div {
    position: absolute;
    inset: 0;
    transform-style: preserve-3d;
    animation: spin-animate 5s linear infinite;
}

@keyframes spin-animate {
    0% {
        transform: perspective(1000px) rotateX(0deg);
    }

    100% {
        transform: perspective(1000px) rotateX(359deg);
    }
}

.spin-box div span {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, #ffc300, #826400, #ffc300);
    border-radius: 20px;
    transform: rotateX(calc(var(--i) * 45deg));
    transform-style: preserve-3d;
}

.button {
    --border-radius: 50px;
    --border-width: 4px;
    appearance: none;
    position: relative;
    padding: 12px 2em;
    border: 0;
    background-color: #fff;
    font-size: 18px;
    font-weight: 500;
    z-index: 2;
}

.button::after {
    --m-i: linear-gradient(#000, #000);
    --m-o: content-box, padding-box;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: var(--border-width);
    border-radius: var(--border-radius);
    background-image: conic-gradient(#488cfb,
            #29dbbc,
            #ddf505,
            #ff9f0e,
            #e440bb,
            #655adc,
            #488cfb);
    -webkit-mask-image: var(--m-i), var(--m-i);
    mask-image: var(--m-i), var(--m-i);
    -webkit-mask-origin: var(--m-o);
    mask-origin: var(--m-o);
    -webkit-mask-clip: var(--m-o);
    mask-composite: exclude;
    -webkit-mask-composite: destination-out;
    filter: hue-rotate(0);
    animation: rotate-hue linear 500ms infinite;
    animation-play-state: paused;
}

.button:hover::after {
    animation-play-state: running;
}

@keyframes rotate-hue {
    to {
        filter: hue-rotate(1turn);
    }
}

.button,
.button::after {
    box-sizing: border-box;
}

.button:active {
    --border-width: 5px;
}
.right-box-sec2{
    background: #eee;
    min-height: 350px;
}

.glassy {
    background: rgba(255, 255, 255, 0.055);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.38);
}
/* ---star-bg */
/* #particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #b61924;
    background-image: url("");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%; 
} */

#magicTree{
    filter: brightness(0.5);
}
.sec-lis{
    border: 2px solid var(--golden);
    width: fit-content;
    height: fit-content;
    background: #ff9f0e40;
    border-radius: 30px;
    padding: 8px 20px;
    font-weight: 500;
}
.popover{
    border-radius: 25px;
}
@media only screen and (max-width:768px) {
    .sec-lis {
        font-size: 10px;
    }
    #header{
        padding: 14px 20px;
        justify-content: center;
        flex-direction: column;
        gap: 20px;
    }
    #header ul{
        padding-left: 0;
    }
    #header ul li a{
        font-size: 14px;
    }
}