*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Arial, Helvetica, sans-serif;

}


body{
  min-height: 100vh;
}

body:body::before{
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(155, 230, 0, 0.7),rgba(229, 231, 235, 0.7)100%);
    backdrop-filter: blur(10px);
    z-index: -1;
}

.navbar{
    background-color: rgba(255, 255, 0, 0.1);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(155, 230, 0, 0.2);
    box-shadow: 0 4px 30px rgba(0,0,0.3);
    padding: 1.5rem 4rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-around;
    align-items: center;

}

.logo{
    font-size: 1.5rem;
    font-weight: bold;
}

.logo span{
    color:   #FFA500
}

.nav-links{
    display: flex;
    gap: 2rem;
}

.nav-links a{
    color: #333
    text-decoration: none;
    position: relative;
    font-weight: 500;

}

.nav-links a::after{
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    background-color: #FFA500;
    transition: width 0.3 ease;
}

.nav-links a:hover::after{
    width: 100%;

}

.hamburger{
    cursor: pointer;
    font-size: 1.5rem;
    display: none;

}
.hero{
    padding: 8rem 4 rem 4rem;
    display:flex;
    align-items: center;
    justify-content: space-around;
    max-width: 1200;
    margin: 0 auto;
    position: relative;

}
.hero-contant{
    flex: 1;
    padding: 2rem;
    background: rgba(255, 255, 0, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 0, 0.5);
    box-shadow: 0 4px 30px rgba( 0,0,0,0.1);
}

.hero h1{
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #333, #000);
    -webkit-background-clip: text;
    -webkit-text-fill-color:transparent;

}

.hero p{
    color: #333
    margin-bottom: 2rem;
    line-height:1.6;
    
}

.hero-buttons{
    display: flex;
    gap: 1rem;
}

.btn{
    padding: 0.8 1.5;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
     transition: all 0.3 ease; 


}

.btn:hover{
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba( 0,0,0,0.1);

}

.btn-primary{
    background: #FFA500;
    color: white;
    border: 1px solid rgba(255, 255, 0, 0.1);
    padding: 2px;
}

.btn-secondary{
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: #333;
    border: 1px solid rgba(155, 230, 0, 100);
    padding: 2px;
    box-shadow: #333;
}


.hero-image{
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;

}

.rotating{
    width: 400px;
    height: 400px;
    animation: rotate 20s linear infinite;
    filter: drop-shadow(0 10px 20px black);
}

@keyframes rotate {
    from{
        transform: rotate(0deg);
    }
    to{
        transform: rotate(360deg);
    }

}

