/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY BACKGROUND */
body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #0f172a, #1e293b, #020617);
    color: #e2e8f0;
    min-height: 100vh;
}

/* CONTAINER */
.container {
    width: 85%;
    margin: auto;
    padding: 40px 0;
}

/* SECTION (GLASS EFFECT) */
.section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 25px 30px;
    margin-bottom: 30px;

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, 0.1);

    transition: 0.3s ease;
}

/* HOVER EFFECT */
.section:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(56, 189, 248, 0.2);
}

/* HEADINGS */
h1 {
    font-size: 28px;
    margin-bottom: 10px;

    background: linear-gradient(90deg, #38bdf8, #818cf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h3 {
    color: #94a3b8;
    margin-bottom: 15px;
}

/* PARAGRAPH */
p {
    line-height: 1.6;
    color: #cbd5f5;
}

/* LINKS */
a {
    color: #38bdf8;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* NAME SECTION */
.name h1 {
    font-size: 40px;
    text-align: center;
}

/* CONTACT ICON SPACING */
.contact p {
    line-height: 2;
}

/* SCROLL SMOOTH */
html {
    scroll-behavior: smooth;
}
