/* ================= PORTFOLIO.CSS ================= */

/* Global Reset */

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

body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: #0a0f1c;
color: #f5f5f5;
line-height: 1.6;
}

a {
color: inherit;
text-decoration: none;
}

.container {
width: 90%;
max-width: 1200px;
margin: auto;
}

/* Header */
.header {
background: #111827;
padding: 1rem 0;
position: sticky;
top: 0;
z-index: 1000;
}

.header-inner {
display: flex;
justify-content: space-between;
align-items: center;
}

.logo {
font-size: 1.5rem;
font-weight: bold;
color: #0ABAB5;
}

.logo span {
color: #8A2BE2;
}

.nav {
display: flex;
gap: 1.5rem;
}

.nav-link {
font-size: 1rem;
transition: color 0.3s ease;
}

.nav-link:hover {
color: #00c8ff;
}

/* Hero */
.hero {
background: linear-gradient(to right, #1e293b, #0f172a);
padding: 5rem 0;
text-align: center;
}

.hero-title {
font-size: 2.5rem;
margin-bottom: 1rem;
color: #00c8ff;
}

.hero-sub {
font-size: 1.2rem;
margin-bottom: 2rem;
color: #e5e7eb;
}

.btn-primary {
background: #00c8ff;
color: #0a0f1c;
padding: 0.8rem 1.5rem;
border-radius: 5px;
font-weight: bold;
transition: background 0.3s ease;
}

.btn-primary:hover {
background: #0284c7;
color: #fff;
}

/* Section Titles */
.section-title {
font-size: 2rem;
margin-bottom: 1rem;
text-align: center;
color: #facc15;
}

/* About */
.about {
padding: 4rem 0;
text-align: center;
color: #d1d5db;
}

/* Skills */
.skills {
padding: 4rem 0;
background: #111827;
}

.skills-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 2rem;
}

.skill {
background: #1e293b;
padding: 2rem;
border-radius: 8px;
transition: transform 0.3s ease;
}

.skill:hover {
transform: translateY(-5px);
}

/* Portfolio */
.portfolio {
padding: 4rem 0;
}

.portfolio-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2rem;
}

.project {
background: #1e293b;
padding: 1rem;
border-radius: 8px;
text-align: center;
transition: transform 0.3s ease;
}

.project img {
width: 100%;
border-radius: 5px;
}

.project:hover {
transform: scale(1.05);
}

/* Services */
.services {
padding: 4rem 0;
background: #111827;
}

.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 2rem;
}

.service {
background: #1e293b;
padding: 2rem;
border-radius: 8px;
transition: transform 0.3s ease;
}

.service:hover {
transform: translateY(-5px);
}

/* Contact */
.contact {
padding: 4rem 0;
}

.contact-form {
display: flex;
flex-direction: column;
gap: 1rem;
max-width: 600px;
margin: auto;
}

.contact-form input,
.contact-form textarea {
padding: 0.8rem;
border: none;
border-radius: 5px;
background: #1e293b;
color: #f5f5f5;
}

.contact-form button {
align-self: flex-start;
}

/* Footer */
.footer {
background: #0f172a;
text-align: center;
padding: 1rem 0;
color: #9ca3af;
}

