/* ------------------------------
   Global Reset + Body Theme
--------------------------------*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Urbanist', sans-serif;
    background: radial-gradient(circle at top right, #271126 0%, #15152e 70%);
    color: #e0e6ff;
    line-height: 1.7;
}

/* Containers */
.container {
    width: 85%;
    max-width: 1700px;
    margin: auto;
}

/* ------------------------------
   Header + Navbar
--------------------------------*/
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 12px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Navbar */
.nav {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 24px;
}

.nav-links a {
    text-decoration: none;
    color: #f0f0f5;
    font-weight: 400;
    font-size: 1.4rem;
    transition: 0.3s ease;
}

.nav-links a:hover {
    color: #00e6d4;
    text-shadow: 0 0 8px #00e6d4;
}

/* ------------------------------
   HERO SECTION
--------------------------------*/
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 90px 0;
    gap: 40px;
}

.hero-left {
    max-width: 50%;
}

h1, h2 {
    background: linear-gradient(90deg, #c28bff, #00e6d4);
    background-clip: text;
    color: transparent;
    font-weight: 800;
}

.tagline {
    margin: 15px 0;
    font-size: 1.4rem;
    color: #9eadff;
}

.lead {
    margin-bottom: 25px;
    font-size: 1rem;
    color: #d0d4ff;
}

/* Hero Image */
.profile-img {
    width: 350px;
    height: 350px;
    border-radius:50%;
    object-fit: cover;
    border: 1.5px solid #ffffff1f;
    box-shadow: 0 0 18px rgba(204, 181, 235, 0.45);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none;
    background: linear-gradient(90deg, #a259ff, #00d1c1);
    color: white;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn:hover {
    box-shadow: 0 0 18px rgba(162, 89, 255, 0.6);
    transform: translateY(3px);
}

/* Social Icons */
.social-icons {
    margin-top: 18px;
    display: flex;
    gap: 25px;
    margin:auto;
}

.icon i {
    font-size: 3rem;
    color: #a259ff;
    transition: 0.3s ease;
}

.icon i:hover {
    color: #00e6d4;
    transform: scale(1.2);
}

/* ------------------------------
   SECTIONS
--------------------------------*/
.section {
    padding: 80px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* About */
.about-grid {
    display: flex;
    gap: 50px;
}

.skills-quick ul {
    list-style: none;
}

.skills-quick li {
    padding: 7px 0;
    color: #cfcfff;
    margin:10px 0;
}

/* ------------------------------
   EDUCATION + SKILLS
--------------------------------*/
.edu-skills {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.skill-list li {
    margin-bottom: 8px;
}

/* ------------------------------
   PROJECT CARDS
--------------------------------*/
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.project-card {
    background: rgba(255, 255, 255, 0.04);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    transition: 0.3s ease;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 20px rgba(162, 89, 255, 0.3);
}

/* ------------------------------
   CONTACT
--------------------------------*/
.contact-form {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border-radius: 8px;
    border: none;
    background: rgba(255,255,255,0.06);
    color: white;
    outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #9ea5cf;
}

/* ------------------------------
   FOOTER
--------------------------------*/
.site-footer {
    text-align: center;
    padding: 40px 0;
    background: rgba(255,255,255,0.03);
    border-top: 1px solid rgba(255,255,255,0.06);
}

.site-footer small {
    color: #9599bb;
}

/* ------------------------------
   MEDIA QUERIES
--------------------------------*/
@media (max-width: 900px) {
  .hero { flex-direction: column; gap:20px; padding: 50px 0; }
  .hero-left { max-width: 100%; text-align: center; }
  .profile-img { width: 120px; height: 120px; }
  .about-grid { flex-direction: column; }
  .edu-skills { flex-direction: column; }
}
