@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&family=Qwitcher+Grypen:wght@700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    /* Ibrahim Memon jaisa dark purplish background */
    background-color: #0d081c; 
    color: #ffffff;
    overflow-x: hidden;
    position: relative;
}

/* Background Blur Lights (Liquid Effect) */
body::before {
    content: '';
    position: fixed;
    top: 10%;
    left: 20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(88, 56, 219, 0.4) 0%, rgba(0,0,0,0) 70%);
    z-index: -1;
    filter: blur(50px);
}

body::after {
    content: '';
    position: fixed;
    bottom: 10%;
    right: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(41, 128, 185, 0.25) 0%, rgba(0,0,0,0) 70%);
    z-index: -1;
    filter: blur(60px);
}

/* LIQUID GLASS CARD CSS (Main Magic) */
.glass-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    border-radius: 24px;
}

/* Navbar */
.glass-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(13, 8, 28, 0.7);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
    font-family: 'Qwitcher Grypen', cursive;
    font-size: 2.5rem;
    color: #fff;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #ddd;
    font-weight: 400;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #a485ff;
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 80px 20px 40px;
}

.memoji-container {
    position: relative;
    margin-bottom: 30px;
}

.greeting-pointer {
    font-size: 1rem;
    margin-bottom: 10px;
}

.highlight {
    color: #a485ff;
    font-weight: 600;
}

.memoji {
    width: 180px;
    filter: drop-shadow(0px 10px 20px rgba(0,0,0,0.5));
}

.headline-container {
    margin-bottom: 40px;
}

.small-text {
    font-size: 1.2rem;
    color: #ccc;
}

.headline {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin: 10px 0;
}

.glass-text {
    color: transparent;
    -webkit-text-stroke: 1px #a485ff;
    background: linear-gradient(90deg, #fff, #a485ff);
    -webkit-background-clip: text;
    background-clip: text;
}

.sub-headline {
    color: #aaa;
    margin-top: 15px;
    font-size: 1.1rem;
}

.role-banner {
    padding: 20px 40px;
    display: inline-block;
    margin-top: 30px;
}

.gradient-text {
    background: linear-gradient(90deg, #a485ff, #00d2ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* About Section */
.about {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 20px;
    font-size: 1.2rem;
    color: #ddd;
    line-height: 1.6;
}

/* Experience */
.experience {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.exp-card {
    display: flex;
    gap: 20px;
    padding: 30px;
    margin-bottom: 25px;
    transition: transform 0.3s;
}

.exp-card:hover {
    transform: translateY(-5px);
}

.exp-icon {
    font-size: 2rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 15px;
    height: fit-content;
}

.exp-details h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.exp-details p {
    color: #aaa;
    margin-bottom: 20px;
}

.glass-btn {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: background 0.3s;
}

.glass-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* --- Contact Section (Updated) --- */
.contact {
    padding-bottom: 100px;
}

.contact-card {
    padding: 50px;
    border-radius: 30px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.email-link {
    display: block;
    margin: 25px 0;
    font-size: 1.2rem;
    color: #00d2ff;
    text-decoration: none;
    font-weight: bold;
}

.social-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 12px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* Specific Brand Colors on Hover */
.github-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255,255,255,0.1);
}

.linkedin-btn:hover {
    background: rgba(0, 119, 181, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 119, 181, 0.2);
}

.social-link i {
    font-size: 1.4rem;
}

/* --- Footer Styles (Matching your screenshot) --- */
footer {
    padding: 40px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
}