:root {
    --primary-color: #007bff;
    --bg-gradient: linear-gradient(45deg, #007bff, #6610f2);
    --font-main: 'Inter', sans-serif;
}

body {
    font-family: var(--font-main);
    color: #2d3436;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Glassmorphic Nav */
.navbar {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
}

/* Hero Section Styles */
.hero-section {
    min-height: 90vh;
    padding-top: 100px;
}

.text-gradient {
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Profile Image Styling */
.profile-image-container {
    position: relative;
    width: 320px;
    height: 320px;
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; /* Organic shape */
    border: 8px solid white;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: all 0.5s ease;
}

.profile-img:hover {
    border-radius: 50%;
    transform: scale(1.02);
}

/* Skills Badges */
.skill-badge {
    background: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    transition: 0.3s;
}

.skill-badge:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-5px);
}

/* Project Cards */
.project-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.4s;
}

.project-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.project-img-box {
    overflow: hidden;
    background: #f8f9fa;
}

.project-img-box img {
    transition: 0.5s;
}

.project-card:hover img {
    transform: scale(1.1);
}

/* Helper Classes */
.bg-soft-primary {
    background: #e7f1ff;
    color: #007bff;
}