*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

body{
    font-family:Arial, sans-serif;
    background:#0A0F1E;
    color:white;
}

/* NAVBAR */

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 8%;
    background:#0A0F1E;
    position:sticky;
    top:0;
    z-index:1000;
}

.logo{
    height: 80px;
    font-weight:bold;
}

.logo img{
    height: 90px;
}



.nav-links{
    display:flex;
    list-style:none;
    gap:35px;
}

.nav-links a{
    text-decoration:none;
    color:white;
    transition:.3s;
}

.nav-links a:hover{
    color:#00E5B5;
}

/* HERO */

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 8%;
}

.hero-content{
    max-width:650px;
}

.badge{
    display:inline-block;
    border:1px solid #00E5B5;
    color:#00E5B5;
    padding:12px 20px;
    border-radius:50px;
    margin-bottom:20px;
}

.hero h1{
    font-size:70px;
    line-height:1.1;
}

.hero h1 span{
    color:#00E5B5;
}

.hero p{
    color:#8899AA;
    margin:25px 0;
    line-height:1.8;
}

.hero-image img{
    width:450px;

    animation:
        float 4s ease-in-out infinite,
        glow 3s ease-in-out infinite;

    filter:drop-shadow(0 0 15px #00E5B5);
}
@keyframes glow{
    0%{
        filter:drop-shadow(0 0 15px #00E5B5);
    }

    50%{
        filter:drop-shadow(0 0 40px #00E5B5)
               drop-shadow(0 0 60px #00E5B5);
    }

    100%{
        filter:drop-shadow(0 0 15px #00E5B5);
    }
}

.hero-buttons{
    display:flex;
    gap:20px;
}

/* BUTTONS */

.btn{
    background:#00E5B5;
    color:black;
    padding:14px 30px;
    border-radius:10px;
    text-decoration:none;
    font-weight:bold;
    border:none;
    cursor:pointer;
}

.btn-outline{
    border:1px solid #00E5B5;
    color:#00E5B5;
    padding:14px 30px;
    border-radius:10px;
    text-decoration:none;
}

.btn:hover{
    box-shadow:0 0 20px #00E5B5;
}

.btn-outline:hover{
    background:#00E5B5;
    color:black;
}

.hero-socials{
    margin-top:30px;
    display:flex;
    gap:20px;
}

.hero-socials a{
    color:#00E5B5;
    font-size:28px;
    transition:.3s;
}

.hero-socials a:hover{
    transform:translateY(-5px) scale(1.1);
    text-shadow:0 0 15px #00E5B5;
}

/* SECTIONS */

.services,
.projects,
.about,
.contact{
    padding:100px 8%;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:50px;
    margin-bottom:15px;
}

/* SERVICES */

.services-grid,
.project-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.service-card,
.project-card{
    background:#121B2E;
    padding:35px;
    border-radius:20px;
    transition:.4s;
}

.service-card:hover,
.project-card:hover{
    transform:translateY(-10px);
    border:1px solid #00E5B5;
}

.service-card h3,
.project-card h3{
    color:#00E5B5;
    margin-bottom:15px;
}

/* ABOUT */

.about-text{
    max-width:900px;
    margin:auto;
    text-align:center;
    line-height:1.8;
    color:#8899AA;
}

.skills{
    margin-top:50px;
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:15px;
}

.skills span{
    background:#121B2E;
    padding:12px 20px;
    border-radius:30px;
}

/* CONTACT */

.social-links{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
    margin-top:50px;
}

.social-card{
    background:#121B2E;
    padding:35px;
    border-radius:20px;
    text-decoration:none;
    color:white;
    transition:.4s;
    border:1px solid rgba(255,255,255,.05);
}

.social-card:hover{
    transform:translateY(-10px);
    border-color:#00E5B5;
    box-shadow:0 0 25px rgba(0,229,181,.4);
}

.social-card h3{
    color:#00E5B5;
    margin-bottom:12px;
    font-size:24px;
}

.social-card i{
    margin-right:10px;
}

.social-card p{
    color:#8899AA;
    line-height:1.6;
}

/* FOOTER */

.footer {
    background: #0f0f0f;
    color: #fff;
    padding: 40px 20px 20px;
    margin-top: 50px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: auto;
    gap: 20px;
}

.footer-logo h2 {
    margin-bottom: 10px;
    color: #00bcd4;
}

.footer-contact-info p {
    margin: 8px 0;
    font-size: 15px;
}

.footer-contact-info a {
    color: #fff;
    text-decoration: none;
}

.footer-contact-info a:hover {
    color: #00e5b5;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid #333;
    padding-top: 15px;
    font-size: 14px;
    color: #aaa;
}
/* ANIMATION */

@keyframes float{
    0%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-20px);
    }
    100%{
        transform:translateY(0);
    }
}

/* RESPONSIVE */

@media(max-width:900px){

    .hero{
        flex-direction:column;
        text-align:center;
        gap:50px;
        padding-top:50px;
    }

    .hero h1{
        font-size:48px;
    }

    .hero-image img{
        width:300px;
    }

    .nav-links{
        display:none;
    }
}