:root {
    --bg-primary: #12007a;
    --bg-secondary: #0d005f;
    --accent-blue: #00f2ff;
    --accent-pink: #ff00f2;
    --text-main: #ffffff;
    --text-muted: #b8b8b8;
    --card-bg: rgba(255, 255, 255, 0.05); /* Glassmorphism background */
    --card-border: rgba(255, 255, 255, 0.1);
    --border-radius: 20px;
    --transition-speed: 0.3s;
}

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

body {
    background-color: var(--bg-primary);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Blob Background Decoration */
.blob-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    filter: blur(80px);
}

.blob {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    opacity: 0.4;
    animation: move-blobs 20s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

.blob-1 {
    background-color: var(--accent-blue);
    top: -100px;
    left: -100px;
}

.blob-2 {
    background-color: var(--accent-pink);
    bottom: -100px;
    right: -100px;
    animation-delay: -5s;
}

.blob-3 {
    background-color: #6a00ff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    animation-delay: -10s;
}

@keyframes move-blobs {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(100px, 100px) scale(1.2); }
}

/* Navigation bar */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--card-border);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    transition: var(--transition-speed);
}

.nav-links a:hover {
    color: var(--accent-blue);
}

.btn-primary {
    background: linear-gradient(45deg, var(--accent-blue), var(--accent-pink));
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600 !important;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 242, 255, 0.4);
}

/* Sections */
.section {
    padding: 100px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
    padding-left: 40px;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 30px;
    height: 4px;
    background: var(--accent-blue);
    transform: translateY(-50%);
    border-radius: 4px;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    padding: 150px 5% 100px;
    max-width: 1400px;
    margin: 0 auto;
    gap: 50px;
}

.hero-content {
    flex: 1;
}

.greeting {
    font-size: 1.5rem;
    color: var(--accent-blue);
    font-weight: 500;
}

.hero h1 {
    font-size: 4.5rem;
    margin: 10px 0 30px;
    line-height: 1.2;
}

.hero-titles {
    list-style: none;
    margin-bottom: 50px;
    border-left: 2px solid var(--accent-blue);
    padding-left: 20px;
}

.hero-titles li {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.stat-item i {
    width: 50px;
    height: 50px;
    color: var(--accent-blue);
}

.stat-item span {
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 50%;
    border: 5px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 50px rgba(0, 242, 255, 0.2);
}

/* Cards & Grid Styling */
.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius);
    padding: 30px;
    transition: var(--transition-speed);
}

.glass-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Experience */
.experience-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.exp-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.exp-logo {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.exp-logo i {
    color: var(--accent-blue);
}

.red-crescent i {
    color: #ff3c3c;
}

.role {
    color: var(--accent-blue);
    font-weight: 600;
}

/* Skills Grid */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.skill-category h3 {
    margin-bottom: 25px;
    color: var(--accent-blue);
    font-size: 1.5rem;
}

.skill-category ul {
    list-style: none;
}

.skill-category li {
    padding: 10px 0;
    border-bottom: 1px solid var(--card-border);
    display: flex;
    align-items: center;
}

.skill-category li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--accent-blue);
    border-radius: 50%;
    margin-right: 15px;
}

/* Partners Grid */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    align-items: center;
    margin-bottom: 50px;
}

.partner-item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    height: 120px;
    background: white; /* Logos look best on white/clean backgrounds */
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-speed);
}

.partner-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: var(--transition-speed);
}

.partner-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.partner-item:hover img {
    transform: scale(1.05);
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

/* CTA Section */
.cta-section {
    padding: 150px 5%;
    background: linear-gradient(rgba(18, 0, 122, 0.8), rgba(18, 0, 122, 0.8)), url('blobs_bg.png');
    background-size: cover;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.big-cta {
    font-size: 4rem;
    font-weight: 800;
    margin: 20px 0 50px;
    background: linear-gradient(45deg, #fff, var(--accent-blue));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-cta {
    display: inline-block;
    background: #ff4757;
    color: white;
    text-decoration: none;
    padding: 20px 50px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: var(--transition-speed);
}

.btn-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 71, 87, 0.4);
}

/* Footer */
footer {
    padding: 80px 5%;
    background: var(--bg-secondary);
    border-top: 1px solid var(--card-border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-socials {
    display: flex;
    gap: 20px;
}

.footer-socials a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--card-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    transition: var(--transition-speed);
}

.footer-socials a:hover {
    background: var(--accent-blue);
    color: var(--bg-primary);
    transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 100px;
    }
    
    .hero h1 { font-size: 3rem; }
    
    .hero-titles { border: none; padding-left: 0; }
    
    .hero-stats { justify-content: center; }
    
    .hero-image { order: -1; justify-content: center; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .big-cta { font-size: 2.5rem; }
    .footer-content { flex-direction: column; gap: 40px; text-align: center; }
}
