/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #0F2027, #203A43, #2C5364);
    color: #fff;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    position: fixed;
    width: 100%;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.logo {
    font-weight: 600;
    font-size: 1.5rem;
    color: #00ffff;
}

.nav-links a {
    color: #fff;
    margin-left: 20px;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #00ffff;
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: radial-gradient(circle at top left, #1c1c1c, #000);
    padding-top: 60px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.highlight {
    color: #00ffff;
}

.subtext {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 30px;
}

.btn {
    padding: 12px 30px;
    background: #00ffff;
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #00cccc;
}

/* Sections */
.section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

/* Glass Card */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    text-align: center;
}

/* Projects */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.project-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.project-info {
    padding: 20px;
}

.project-card h3 {
    margin-bottom: 10px;
    color: #00ffff;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Skills */
.skills-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.skill {
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 500;
    transition: 0.3s;
}

.skill:hover {
    background: #00ffff;
    color: #000;
}

/* Contact */
.contact-card a {
    color: #00ffff;
    text-decoration: none;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #111;
    font-size: 0.9rem;
    color: #999;
}

/* Responsive */
@media(max-width: 600px){
    .hero-content h1 {
        font-size: 2rem;
    }

    .section {
        padding: 60px 20px;
    }
}

.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: url('images/bg.jpg') center/cover no-repeat;
    background-attachment: fixed; /* Optional: Parallax feel */
    padding-top: 60px;
    position: relative;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 30px 0;
}

.social-links a {
  font-size: 30px;
  color: #fff;
  transition: transform 0.3s, color 0.3s;
}

.social-links a:hover {
  transform: scale(1.2);
  color: #00bcd4; /* Or any highlight color */
}

.project-btn {
    margin-top: 10px;
    text-align: left;
    font-size: 0.9rem;
    height: 50px;
}