@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500&family=Poppins:wght@300;500&display=swap');

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #141e30, #243b55);
    color: white;
}

/* Main container */
.main {
    width: 85%;
    margin: auto;
    padding: 20px;
}

/* Header */
header {
    text-align: center;
    margin-bottom: 30px;
}

header h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 42px;
    color: #00e6ff;
}

header p {
    color: #ccc;
}

/* Cards */
.card {
    background: rgba(255,255,255,0.07);
    padding: 20px;
    margin: 20px 0;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0,255,255,0.2);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

/* Highlight card */
.highlight {
    border-left: 5px solid #00e6ff;
}

/* Headings */
h2 {
    color: #00e6ff;
    border-bottom: 2px solid #00e6ff;
    padding-bottom: 5px;
}

/* Skills */
.skills span {
    display: inline-block;
    background: #00e6ff;
    color: black;
    padding: 6px 14px;
    margin: 5px;
    border-radius: 20px;
    font-weight: bold;
}

/* Education */
.edu {
    margin-bottom: 10px;
}

/* Links */
a {
    color: #00e6ff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Contact */
.contact {
    text-align: center;
}