/* Reset and global styles */
/* style.css */


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

body {
    scroll-behavior: smooth;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: #fff;
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    z-index: 100;
    backdrop-filter: blur(5px);
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: bold;
}

/* Navbar links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links li a {
    color: #fff;              /* White text */
    font-weight: 600;
    transition: 0.3s;
}

.nav-links li a:hover {
    color: #ffeb3b;          /* Yellow text on hover */
}

/* Floating social links */
.social-links {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0.5rem;
    z-index: 99;
}

.social-links a {
    background: #fff;         /* White background for visibility */
    color: #2575fc;           /* Blue text */
    padding: 0.5rem 1rem;
    border-radius: 0 25px 25px 0;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.social-links a:hover {
    background: #2575fc;      /* Blue background on hover */
    color: #fff;              /* White text on hover */
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.btn {
    padding: 0.8rem 1.5rem;
    background: #fff;
    color: #2575fc;
    font-weight: bold;
    border-radius: 25px;
    transition: 0.3s;
}

.btn:hover {
    background: #2575fc;
    color: #fff;
}

/* Sections */
.section {
    padding: 5rem 2rem;
    text-align: center;
    background: rgba(0,0,0,0.3);
}

.section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.section h2::after {
    content: '';
    width: 100px;
    height: 3px;
    background: #fff;
    display: block;
    margin: 10px auto 0;
    border-radius: 5px;
}

/* Skills */
.skills-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.skill-box {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    width: 200px;
    transition: 0.3s;
}

.skill-box:hover {
    background: rgba(255,255,255,0.2);
}

/* Contact */
.contact-info p {
    margin: 1rem 0;
    font-size: 1.2rem;
}

/* Contact Section Links */
.contact-info a {
    color: #ffeb3b;          /* Bright yellow for visibility */
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}

.contact-info a:hover {
    color: #fff;             /* White on hover */
    text-decoration: underline;
}
footer {
    text-align: center;
    padding: 2rem;
    background: rgba(0,0,0,0.5);
}
