* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background: #0f0f1b;
    color: white;
}

a {
    text-decoration: none;
    color: white;
    transition: 0.3s;
}

.hero {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px 9%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 100;
    background: transparent;
    margin-left: 65px;
}

.logo {
    font-size: 30px;
    font-weight: 700;
}

.hero ul {
    display: flex;
    list-style: none;
}

.hero ul li {
    margin-left: 55px;
}

.hero ul li a {
    font-size: 20px;
    font-weight: 500;
}

.hero ul li a.active,
.hero ul li a:hover {
    color: #00ff88;
}

.home {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 9% 0;
    height: 100vh;
}

.home-info h1 {
    font-size: 55px;
}

.home-info h2 {
    font-size: 32px;
    margin-top: -10px;
}

.highlight {
    color: #ff1e00;
}

.home-info p {
    font-size: 16px;
    margin: 10px 0 25px;
    max-width: 500px;
    line-height: 1.5;
}

.btn-sci {
    display: flex;
    align-items: center;
}

.btn {
    display: inline-block;
    padding: 10px 30px;
    background: #ff0000;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 600;
    color: rgb(250, 250, 250);
    transition: 0.5s;
}

.btn:hover {
    background: transparent;
    color: red;
    border: 2px solid white;
    box-shadow: 0 0 10px white;
}

.sci {
    margin-left: 20px;
}

.sci a {
    display: inline-flex;
    padding: 8px;
    border: 2px solid #ff3c00;
    border-radius: 50%;
    font-size: 20px;
    color: #ff3300;
    margin: 0 8px;
    transition: 0.5s;
}

.sci a:hover {
    background: #ff3c00;
    color: black;
    box-shadow: 0 0 10px white;
    
}

.img-box {
    position: relative;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-box::before,
.img-box::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(transparent 240deg, #fa4801);
    animation: rotate-border 6s linear infinite;
}

.img-box::after {
    filter: blur(20px);
    opacity: 0.1;
}

@keyframes rotate-border {
    100% {
        transform: rotate(360deg);
    }
}

.img-item {
    position: relative;
    width: 90%;
    height: 90%;
    border-radius: 50%;
    overflow: hidden;
    background: #000;
}

.img-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    object-position: 60% 10%;
}
.img-box1 {
    position: relative;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-box1::before,
.img-box1::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(transparent 240deg, #2fa70b);
    animation: rotate-border 6s linear infinite;
}

.img-box1::after {
    filter: blur(20px);
    opacity: 0.1;
}

@keyframes rotate-border {
    100% {
        transform: rotate(360deg);
    }
}

.img-item1 {
    position: relative;
    width: 90%;
    height: 90%;
    border-radius: 50%;
    overflow: hidden;
    background: #000;
}

.img-item1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    object-position: 60% 10%;
}
.img-box2 {
    position: relative;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-box2::before,
.img-box2::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(transparent 240deg, #e501fa);
    animation: rotate-border 6s linear infinite;
}

.img-box2::after {
    filter: blur(20px);
    opacity: 0.1;
}

@keyframes rotate-border {
    100% {
        transform: rotate(360deg);
    }
}

.img-item2 {
    position: relative;
    width: 90%;
    height: 90%;
    border-radius: 50%;
    overflow: hidden;
    background: #000;
}

.img-item2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    object-position: 60% 10%;
}
.img-box3 {
    position: relative;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-box3::before,
.img-box3::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(transparent 240deg, #e0e402);
    animation: rotate-border 6s linear infinite;
}

.img-box3::after {
    filter: blur(20px);
    opacity: 0.1;
}

@keyframes rotate-border {
    100% {
        transform: rotate(360deg);
    }
}

.img-item3 {
    position: relative;
    width: 90%;
    height: 90%;
    border-radius: 50%;
    overflow: hidden;
    background: #000;
}

.img-item3 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    object-position: 60% 10%;
}
.highlight2 {
    color: #a200ff;
}
.highlight3 {
    color: #ffee00;
}
.highlight1 {
    color: #08c721;
}
.btn1 {
    display: inline-block;
    padding: 10px 30px;
    background: #00ff88;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 600;
    color: black;
    transition: 0.5s;
}

.btn1:hover {
    background: transparent;
    color: #00ff88;
    border: 2px solid #00ff88;
    box-shadow: 0 0 10px white;
}

.sci1 {
    margin-left: 180px;
    position: relative;
    bottom: 38px;
}

.sci1 a {
    display: inline-flex;
    padding: 8px;
    border: 2px solid #00ff88;
    border-radius: 50%;
    font-size: 20px;
    color: #00ff88;
    margin: 0 8px;
    transition: 0.5s;
}

.sci1 a:hover {
    background: #00ff88;
    color: black;
    box-shadow: 0 0 10px white;
    
}
.btn2 {
    display: inline-block;
    padding: 10px 30px;
    background: #ff00f2;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 600;
    color: rgb(255, 255, 255);
    transition: 0.5s;
}

.btn2:hover {
    background: transparent;
    color: #dc0bf8;
    border: 2px solid #e100ff;
    box-shadow: 0 0 10px white;
}

.sci2 {
    margin-left: 180px;
    position: relative;
    bottom: 38px;
}

.sci2 a {
    display: inline-flex;
    padding: 8px;
    border: 2px solid #e80afc;
    border-radius: 50%;
    font-size: 20px;
    color: #b700ff;
    margin: 0 8px;
    transition: 0.5s;
}

.sci2 a:hover {
    background: #cc00ff;
    color: black;
    box-shadow: 0 0 10px white;
    
}
.btn3 {
    display: inline-block;
    padding: 10px 30px;
    background: rgb(201, 201, 7);
    border-radius: 40px;
    font-size: 16px;
    font-weight: 600;
    color: rgb(0, 0, 0);
    transition: 0.5s;
}

.btn3:hover {
    background: transparent;
    color: yellow;
    border: 2px solid yellow;
    box-shadow: 0 0 10px white;
}

.sci3 {
    margin-left: 180px;
    position: relative;
    bottom: 38px;
}

.sci3 a {
    display: inline-flex;
    padding: 8px;
    border: 2px solid yellow;
    border-radius: 50%;
    font-size: 20px;
    color: yellow;
    margin: 0 8px;
    transition: 0.5s;
}

.sci3 a:hover {
    background: #facc00;
    color: black;
    box-shadow: 0 0 10px white;
    
}
