/* ==========================================================================
   FARIA AHMED EVA - PERSONAL PORTFOLIO STYLESHEET
   Design System: Deep Dark Violet, Soft Lavender, Pastel Rose, Glassmorphism
   ========================================================================== */

:root {
    /* Color Palette Extracted from CV */
    --bg-dark: #0d0818;
    --bg-surface: #140d24;
    --bg-card: rgba(26, 17, 44, 0.65);
    --bg-glass: rgba(181, 158, 222, 0.05);
    
    --border-color: rgba(181, 158, 222, 0.18);
    --border-highlight: rgba(181, 158, 222, 0.45);
    
    --primary: #b59ede;          /* Main Soft Lavender */
    --primary-light: #d4c5f0;    /* Bright Lavender */
    --secondary: #ffd5f2;        /* Pastel Rose Pink */
    --accent: #5e7bff;           /* Electric Indigo Accent */
    --accent-glow: rgba(94, 123, 255, 0.35);
    
    --text-main: #f8f9fc;
    --text-muted: #bdaecf;
    --text-dark: #3f3260;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Spacing & Layout */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base & Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

button, input, textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
}

/* Ambient Glow Elements */
.bg-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    pointer-events: none;
}

.bg-glow-1 {
    top: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(181, 158, 222, 0.25) 0%, rgba(0, 0, 0, 0) 70%);
}

.bg-glow-2 {
    top: 40%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 213, 242, 0.18) 0%, rgba(0, 0, 0, 0) 70%);
}

.bg-glow-3 {
    bottom: -10%;
    left: 20%;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(94, 123, 255, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
}

/* Utility Classes */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

.text-center {
    text-align: center;
}

.gradient-text {
    background: linear-gradient(135deg, var(--text-main) 20%, var(--primary) 60%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Glassmorphism Card Style */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    transition: var(--transition-normal);
}

.glass-card:hover {
    border-color: var(--border-highlight);
    box-shadow: 0 15px 35px rgba(181, 158, 222, 0.15);
}

/* Section Header */
.section-header {
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary);
    background: rgba(181, 158, 222, 0.12);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(181, 158, 222, 0.2);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.section-tag-gold {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.12);
    border-color: rgba(255, 215, 0, 0.25);
}

.section-tag-purple {
    color: var(--secondary);
    background: rgba(255, 213, 242, 0.12);
    border-color: rgba(255, 213, 242, 0.25);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 16px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 680px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition-normal);
}

.btn-primary {
    background: linear-gradient(135deg, #b59ede 0%, #8e73c4 100%);
    color: var(--bg-dark);
    box-shadow: 0 4px 20px rgba(181, 158, 222, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(181, 158, 222, 0.6);
    background: linear-gradient(135deg, #c4b0ea 0%, #9a7fd3 100%);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: rgba(181, 158, 222, 0.15);
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* Header & Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-normal);
}

.navbar.scrolled {
    padding: 14px 0;
    background: rgba(13, 8, 24, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.6rem;
    letter-spacing: 1px;
}

.logo-text {
    color: var(--text-main);
}

.logo-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
    padding: 4px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition-fast);
    border-radius: 2px;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-cta {
    background: rgba(181, 158, 222, 0.12);
    color: var(--primary-light) !important;
    padding: 8px 20px !important;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-color);
}

.nav-cta:hover {
    background: var(--primary) !important;
    color: var(--bg-dark) !important;
}

.nav-cta::after {
    display: none;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-main);
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    padding-top: 140px;
    padding-bottom: 80px;
    display: flex;
    align-items: center;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(181, 158, 222, 0.1);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    color: var(--primary-light);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-badge i {
    color: var(--secondary);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 600px;
}

.hero-highlights {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.highlight-item {
    display: flex;
    flex-direction: column;
}

.highlight-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
}

.highlight-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Hero Visual & Profile Image */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image-wrapper {
    position: relative;
    width: 340px;
    height: 380px;
}

.image-glass-card {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid var(--border-highlight);
    background: linear-gradient(135deg, rgba(181, 158, 222, 0.2) 0%, rgba(26, 17, 44, 0.8) 100%);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(181, 158, 222, 0.2);
}

.hero-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    background: rgba(20, 13, 36, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-highlight);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    animation: float 4s ease-in-out infinite;
}

.floating-badge i {
    font-size: 1.4rem;
    color: var(--primary);
}

.floating-badge strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-main);
}

.floating-badge span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.badge-1 {
    top: 20px;
    left: -40px;
}

.badge-2 {
    bottom: 20px;
    right: -30px;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.about-card {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: rgba(181, 158, 222, 0.15);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 24px;
}

.about-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.about-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-card {
    padding: 28px 24px;
}

.stat-card i {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 14px;
}

.stat-card h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.stat-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* ==========================================================================
   SECTION 1: LONG FORM VIDEO EDITING SECTION
   ========================================================================== */

.long-form-section {
    background: linear-gradient(180deg, rgba(13, 8, 24, 0.3) 0%, rgba(22, 14, 40, 0.7) 50%, rgba(13, 8, 24, 0.3) 100%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.long-form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 32px;
}

.long-form-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

.long-form-card:hover {
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.12);
    transform: translateY(-4px);
}

.long-form-thumb {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
    background: #000;
}

.long-form-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.long-form-card:hover .long-form-thumb img {
    transform: scale(1.06);
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 9, 28, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.long-form-card:hover .play-overlay {
    opacity: 1;
}

.play-btn-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 0 25px rgba(181, 158, 222, 0.8);
    transform: scale(0.8);
    transition: var(--transition-normal);
}

.long-form-card:hover .play-btn-circle {
    transform: scale(1);
}

.video-badge-gold {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(13, 8, 24, 0.9);
    backdrop-filter: blur(8px);
    color: #ffd700;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.long-form-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.portfolio-channel {
    font-size: 0.88rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.long-form-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.4;
    margin-bottom: 10px;
}

.long-form-desc {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.portfolio-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.portfolio-tag {
    font-size: 0.75rem;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.05);
    padding: 3px 10px;
    border-radius: var(--radius-full);
}

.btn-watch-video {
    margin-top: auto;
    width: 100%;
    padding: 10px 18px;
    border-radius: var(--radius-full);
    background: rgba(181, 158, 222, 0.12);
    border: 1px solid var(--border-color);
    color: var(--primary-light);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.long-form-card:hover .btn-watch-video {
    background: var(--primary);
    color: var(--bg-dark);
    border-color: var(--primary);
}

/* ==========================================================================
   SECTION 2: SHORT FORM VIDEO EDITING SECTION (REELS & SHORTS)
   ========================================================================== */

.short-form-section {
    background: linear-gradient(180deg, rgba(13, 8, 24, 0.3) 0%, rgba(30, 16, 48, 0.75) 50%, rgba(13, 8, 24, 0.3) 100%);
    border-bottom: 1px solid var(--border-color);
}

.short-form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 28px;
}

.short-form-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    background: rgba(24, 15, 40, 0.7);
    transition: var(--transition-normal);
}

.short-form-card:hover {
    border-color: var(--secondary);
    box-shadow: 0 15px 40px rgba(255, 213, 242, 0.2);
    transform: translateY(-6px);
}

.short-form-thumb {
    position: relative;
    width: 100%;
    padding-top: 155%; /* Vertical 9:16 Aspect Ratio */
    overflow: hidden;
    background: #000;
    border-bottom: 1px solid var(--border-color);
}

.short-form-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.short-form-card:hover .short-form-thumb img {
    transform: scale(1.08);
}

.video-badge-rose {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(13, 8, 24, 0.9);
    backdrop-filter: blur(8px);
    color: var(--secondary);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 213, 242, 0.3);
}

.short-form-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.short-form-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.35;
    margin-bottom: 8px;
}

.short-form-desc {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 14px;
}

.btn-watch-short {
    margin-top: auto;
    width: 100%;
    padding: 10px 16px;
    border-radius: var(--radius-full);
    background: rgba(255, 213, 242, 0.12);
    border: 1px solid rgba(255, 213, 242, 0.25);
    color: var(--secondary);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.short-form-card:hover .btn-watch-short {
    background: var(--secondary);
    color: var(--bg-dark);
    border-color: var(--secondary);
}

/* ==========================================================================
   VIDEO PLAYER MODAL (SUPPORTS BOTH WIDESCREEN & VERTICAL SHORTS)
   ========================================================================== */

.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 6, 18, 0.88);
    backdrop-filter: blur(16px);
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 880px;
    z-index: 10;
    overflow: hidden;
    padding: 0;
    transition: var(--transition-normal);
}

/* When playing vertical shorts, scale down modal width */
.modal-content.is-short-modal {
    max-width: 440px;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 20;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.modal-close:hover {
    background: var(--primary);
    color: var(--bg-dark);
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* Default 16:9 */
    background: #000;
}

.modal-content.is-short-modal .video-wrapper {
    padding-top: 140%; /* Vertical 9:14 Aspect Ratio */
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.modal-info {
    padding: 24px;
}

.modal-info .badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    background: rgba(181, 158, 222, 0.15);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    margin-bottom: 10px;
}

.modal-info h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    margin-bottom: 6px;
}

.modal-author {
    color: var(--primary-light);
    font-size: 0.92rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.modal-description {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.modal-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* Skills Section */
.skills-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.skills-category {
    padding: 36px;
}

.skills-category h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.skills-category h3 i {
    color: var(--primary);
}

.skill-item {
    margin-bottom: 20px;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.skill-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: var(--radius-full);
    transition: width 1s ease-in-out;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.skill-tags .tag {
    background: rgba(181, 158, 222, 0.1);
    border: 1px solid var(--border-color);
    padding: 10px 18px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.skill-tags .tag:hover {
    background: rgba(181, 158, 222, 0.2);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.skill-tags .tag i {
    color: var(--primary);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.service-card {
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
}

.service-icon {
    width: 54px;
    height: 54px;
    border-radius: var(--radius-md);
    background: rgba(181, 158, 222, 0.12);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    transition: var(--transition-normal);
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: var(--bg-dark);
    transform: scale(1.1);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Experience Timeline */
.timeline {
    position: relative;
    max-width: 850px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 28px;
    width: 2px;
    background: var(--border-color);
}

.timeline-item {
    position: relative;
    padding: 32px 36px 32px 80px;
    margin-bottom: 30px;
}

.timeline-badge {
    position: absolute;
    top: 32px;
    left: 10px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--bg-dark);
    border: 2px solid var(--primary);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 0 15px rgba(181, 158, 222, 0.4);
}

.timeline-date {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    background: rgba(181, 158, 222, 0.1);
    padding: 4px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 10px;
}

.timeline-content h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 4px;
}

.company-name {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 16px;
}

.timeline-content ul {
    list-style: disc;
    padding-left: 20px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.timeline-content li {
    margin-bottom: 8px;
}

/* Education Section */
.education-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.education-card {
    padding: 32px;
    display: flex;
    gap: 20px;
}

.edu-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: rgba(181, 158, 222, 0.12);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.edu-year {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
}

.edu-details h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin: 4px 0;
}

.edu-details h4 {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 12px;
}

.gpa-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 213, 242, 0.12);
    color: var(--secondary);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    border: 1px solid rgba(255, 213, 242, 0.2);
}

/* Hobbies Section */
.hobbies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.hobby-card {
    padding: 30px 20px;
    text-align: center;
}

.hobby-card i {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.hobby-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.hobby-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    background: rgba(181, 158, 222, 0.12);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-card h4 {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.contact-card p, .contact-card a {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-main);
}

.contact-card a:hover {
    color: var(--primary);
}

.contact-form {
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
}

.form-group input, .form-group textarea {
    background: rgba(13, 8, 24, 0.6);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    transition: var(--transition-fast);
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(181, 158, 222, 0.2);
}

.form-submit {
    width: 100%;
    margin-top: 10px;
}

.form-status {
    text-align: center;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 10px;
    border-radius: var(--radius-sm);
}

.form-status.success {
    background: rgba(46, 204, 113, 0.15);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.3);
}

/* Footer */
.footer {
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
    background: rgba(10, 6, 18, 0.9);
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: 10px;
    max-width: 450px;
}

.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-copy {
    color: var(--text-muted);
    font-size: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
    padding-top: 24px;
}

/* ==========================================================================
   Responsive Design Breakpoints
   ========================================================================== */

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-highlights {
        justify-content: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .about-grid, .skills-grid, .education-grid, .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .hero-image-wrapper {
        width: 280px;
        height: 320px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(13, 8, 24, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        transition: var(--transition-normal);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: block;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .long-form-grid, .short-form-grid {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 18px;
    }

    .timeline-item {
        padding-left: 54px;
        padding-right: 20px;
    }

    .timeline-badge {
        left: 0;
        width: 34px;
        height: 34px;
        font-size: 0.85rem;
    }

    .floating-badge {
        padding: 8px 12px;
    }

    .floating-badge i {
        font-size: 1.1rem;
    }

    .badge-1 {
        left: -10px;
    }

    .badge-2 {
        right: -10px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .about-stats-grid {
        grid-template-columns: 1fr;
    }

    .hero-highlights {
        flex-direction: column;
        gap: 16px;
    }
}
