* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #021024, #05f751);
    color: white;
    overflow-x: hidden;
}

/* NAVBAR */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: rgba(0, 0, 0, 0.3);
    position: fixed;
    width: 100%;
    backdrop-filter: blur(8px);
    z-index: 1000;
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    position: relative;
    transition: 0.3s;
}

nav ul li a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    left: 0;
    bottom: -5px;
    background: #00d4ff;
    transition: 0.4s;
}

nav ul li a:hover::after {
    width: 100%;
}

/* HERO */
.hero {
    display: flex;
    justify-content: space-around;
    align-items: center;
    min-height: 100vh;
    padding: 120px 8% 40px;
    animation: fadeIn 1.2s ease;
}

.left-section {
    max-width: 500px;
}

.left-section h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.left-section span {
    color: #00d4ff;
}

.left-section h2 {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.left-section p {
    margin-bottom: 25px;
    line-height: 1.6;
}

.right-section img {
    width: 350px;
    animation: float 3s ease-in-out infinite;
}

/* BUTTONS */
.buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 12px 22px;
    border: none;
    border-radius: 8px;
    background: #00d4ff;
    color: #000;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,212,255,0.4);
}

.btn.outline {
    background: transparent;
    border: 2px solid #00d4ff;
    color: white;
}

/* SECTIONS */
.section {
    padding: 80px 10%;
    text-align: center;
}

.section h2{
    margin-bottom: 20px;
    font-size: 2rem;
}

.button{
    margin-left: 1%;
}
.cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    background: rgba(255,255,255,0.08);
    padding: 30px;
    border-radius: 12px;
    transition: 0.3s;
    min-width: 220px;
}

.card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.15);
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    background: rgba(0,0,0,0.3);
}

/* ANIMATIONS */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

@keyframes fadeIn {
    from {opacity: 0; transform: translateY(30px);}
    to {opacity: 1; transform: translateY(0);}
}

/* SCROLL REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
#contact  {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 15px;
    justify-content: center;
    height: 100vh;
}
