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

body {
    background: #f7f9fb;
    color: #222;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 50px;
    background: #ffffffcc;
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #e5e5e5;
}

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

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    font-weight: 500;
    color: #333;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #0e5484;
}

/* HERO SECTION */
.hero {
    height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 50px;
    background: linear-gradient(135deg, #e8f3ff, #ffffff);
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    width: 100%;
    max-width: 1300px;
}

/* LEFT SIDE TEXT */
.hero-left h1 {
    font-size: 55px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-left h1 span {
    color: #0e5484;
}

.hero-left p {
    margin-top: 15px;
    width: 470px;
    font-size: 18px;
    line-height: 1.6;
    color: #555;
}

.btn {
    margin-top: 25px;
    padding: 5px 30px;
    background: #0e5484;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 17px;
    transition: 0.3s;
}

.btn:hover {
    background: #093b5f;
}

/* RIGHT SIDE IMAGE */
.hero-right img {
    width: 410px;
    border-radius: 50%;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    animation: float 4s ease-in-out infinite;
}

/* Smooth Floating Animation */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-18px); }
    100% { transform: translateY(0px); }
}

/* SECTION TITLE */
section {
    padding: 60px 50px;
}

h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #0e5484;
    position: relative;
}

h2::after {
    content: "";
    width: 60px;
    height: 4px;
    background: #3bd80d;
    position: absolute;
    bottom: -10px;
    left: 0;
    border-radius: 5px;
}

/* ABOUT SECTION */
.about p {
    width: 75%;
    font-size: 18px;
    color: #444;
    line-height: 1.7;
}

/* IMPROVED SKILLS */
.skills {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.skill-box {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.skill-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* PROJECT CARDS */
.project-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    margin-bottom: 20px;
}

.project-btn {
    display: inline-block;
    margin-top: 10px;
    font-weight: 600;
    color: #0e5484;
    text-decoration: none;
    transition: 0.3s;
}

.project-btn:hover {
    color: #093b5f;
}

/* EDUCATION */
.edu-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    margin-bottom: 15px;
}
