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

body {
    background-color: #0f0f0f;
    color: #fff;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 60px;
    background: #111;
    box-shadow: 0 2px 10px rgba(0, 187, 255, 0.5);
}

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

.logo span {
    color: #00ADB5;
}

.menu {
    list-style: none;
    display: flex;
    gap: 25px;
}

.menu a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: 0.3s;
}

.menu a:hover {
    color: #00f2ff;
    text-shadow: 0px 0px 10px#ffffff;
}


.hero {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 100px 50px;
    flex-wrap: wrap;
}

.hero-text {
    max-width: 550px;
}

.hero-text h1 {
    font-size: 45px;
    color: #00ADB5;
}

.hero-text h3 {
    margin: 10px 0;
    font-weight: 400;
    color: #ccc;
}

.hero-text p {
    color: #aaa;
    margin: 20px 0;
}

.buttons {
    margin: 30px 0;
}

.btn {
    background-color: #ffffff;
    color: #00f2ff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-right: 10px;
    transition: 0.3s ease-in-out;
    font-weight: 500;
    box-shadow: 0px 0px 10px #00f2ff;
}

.btn:hover {
    background-color: #00ADB5;
    color: #ffffff;
    box-shadow: 0px 0px 10px white;
    transform: scale(0.5);
}

.btn-outline {
    border: 2px solid #00ADB5;
    background: none;
    color: #00ADB5;
}

.btn-outline:hover {
    background-color: #00f2ff;
    color: #fff;
    box-shadow: 0px 0px 10px white;
}

.hero-img img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 4px solid #00ADB5;
    box-shadow: 0px 0px 20px #00f2ff;
    object-fit: cover;
}

/* About */
.about {
    text-align: center;
    padding: 80px 20px;
}

.about h2 {
    color: #ffffff;
    margin-bottom: 20px;
}

.about p {
    max-width: 700px;
    margin: 0 auto;
    font-weight: 600;
    color: #ccc;
}

/* Skills */
.skills {
    text-align: center;
    padding: 80px 20px;
    background-color: #111;
}

.skill-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

h2 {
    text-shadow: 0px 0px 10px #00f2ff;
}

.skill-card {
    background: #1a1a1a;
    padding: 15px 25px;
    border-radius: 8px;
    color: rgb(0, 172, 181);
    font-weight: 500;

    transition: 0.3s ease-in-out;
}

.skill-card:hover {
    background: #ffffff;
    box-shadow: 0px 0px 20px rgb(0, 242, 255);
    color: rgb(9, 243, 255);
    transform: scale(1.1);
}

/* Projects */
.projects {
    text-align: center;
    padding: 80px 20px;
}

.project-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.project-card {
    background: #1a1a1a;
    width: 300px;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.4s;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.project-card a {
    text-decoration: none;
    color: inherit;
}

.project-card a:hover {
    color: inherit;
    text-decoration: none;
}


.project-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.project-card h3 {
    color: #00ADB5;
    margin: 15px 0 10px;
}

.project-card p {
    padding: 0 15px 20px;
    color: #ccc;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 15px #00ADB5;
}

/* Contact */
.contact {
    text-align: center;
    padding: 80px 20px;
    background-color: #111;
}

.contact a {
    color: #00ADB5;
    text-decoration: none;
}

.contact a:hover {
    text-decoration: underline;
}

.social a {
    margin: 10px;
    color: #00ADB5;
    font-size: 22px;
    transition: 0.3s;
}

.social a:hover {
    color: #fff;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #0d0d0d;
    font-size: 14px;
    color: #aaa;
}