/* ============================================
   🎨 EASY COLOR CUSTOMIZATION - CHANGE THESE
   ============================================ */
:root {
    /* Theme Colors */
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --bg-card: #1e293b;
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --border-color: #334155;

    /* Brand Colors */
    --primary: #0ea5e9;
    --secondary: #10b981;
    --accent: #8b5cf6;

    /* Geometric Shape Colors - CHANGE THESE EASILY */
    --geo-primary: #6366f1;      /* Main shape color */
    --geo-secondary: #8b5cf6;    /* Secondary shape color */
    --geo-tertiary: rgba(99, 102, 241, 0.2); /* Overlay */

    /* Light Mode Overrides */
    --geo-light-primary: #a7f3d0;
    --geo-light-secondary: #6ee7b7;
    --geo-light-tertiary: rgba(167, 243, 208, 0.3);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0ea5e9 0%, #10b981 100%);
    --gradient-text: linear-gradient(135deg, #0ea5e9 0%, #8b5cf6 50%, #10b981 100%);

    /* Shadows */
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.4);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.5);
}

/* Light Theme */
[data-theme="light"] {
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-card: #ffffff;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --border-color: #e2e8f0;

    /* Use mint colors for light theme */
    --geo-primary: var(--geo-light-primary);
    --geo-secondary: var(--geo-light-secondary);
    --geo-tertiary: var(--geo-light-tertiary);
}

/* ============================================
   BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.bg-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(14, 165, 233, 0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(14, 165, 233, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

.bg-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 20%, rgba(14, 165, 233, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.section-padding {
    padding: 6rem 0;
}

h1, h2, h3, h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

.text-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   LOGO - Tamim (Green) Hasan (White)
   ============================================ */
.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
}

.logo-mark {
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-size: 1.25rem;
    height: 40px;
    display: flex;
    align-items: center;
}

.logo-text {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-left: 0.5rem;
    display: flex;
    align-items: center;
    height: 40px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
}

[data-theme="light"] .navbar {
    background: rgba(255, 255, 255, 0.8);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.2s;
}

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

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

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.theme-toggle {
    position: relative;
    width: 50px;
    height: 26px;
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: 13px;
    cursor: pointer;
    overflow: hidden;
}

.theme-toggle i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    transition: 0.2s;
}

.theme-toggle .fa-sun {
    left: 6px;
    color: #f59e0b;
    opacity: 1;
}

.theme-toggle .fa-moon {
    right: 6px;
    color: #a78bfa;
    opacity: 0.3;
}

[data-theme="light"] .theme-toggle .fa-sun {
    opacity: 0.3;
}

[data-theme="light"] .theme-toggle .fa-moon {
    opacity: 1;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: 0.2s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--secondary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.1); }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-weight: 500;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.4);
}

.btn-secondary {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 1.5px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-color);
}

/* ============================================
   GEOMETRIC PROFILE DESIGN
   ============================================ */
.geometric-profile {
    position: relative;
    width: 500px;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.geo-shape {
    position: absolute;
    border-radius: 40px;
    transition: all 0.6s ease;
}

.shape-1 {
    width: 360px;
    height: 480px;
    background: linear-gradient(135deg, var(--geo-primary) 0%, var(--geo-secondary) 100%);
    top: 50%;
    left: 45%;
    transform: translate(-50%, -50%) rotate(-12deg);
    z-index: 1;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.shape-2 {
    width: 340px;
    height: 460px;
    background: var(--bg-card);
    top: 48%;
    left: 55%;
    transform: translate(-50%, -50%) rotate(8deg);
    z-index: 2;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
}

.shape-3 {
    width: 300px;
    height: 400px;
    background: var(--geo-tertiary);
    top: 52%;
    left: 40%;
    transform: translate(-50%, -50%) rotate(-3deg);
    z-index: 0;
    border-radius: 35px;
    backdrop-filter: blur(10px);
}

.geometric-profile:hover .shape-1 {
    transform: translate(-50%, -50%) rotate(-15deg) scale(1.03);
}

.geometric-profile:hover .shape-2 {
    transform: translate(-50%, -50%) rotate(12deg) scale(1.03);
}

.geometric-profile:hover .shape-3 {
    transform: translate(-50%, -50%) rotate(0deg) scale(1.05);
}

.geo-image-container {
    position: relative;
    width: 430px;
    height: 500px;
    z-index: 3;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: visible;
    margin-top: -90px;
    margin-left: 20px;
}

.geo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
    filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.25));
    transition: transform 0.4s ease;
    transform: scale(1.45);
}

.geometric-profile:hover .geo-image {
    transform: scale(1.5) translateY(-5px);
}

/* Floating Tags */
.floating-tag {
    position: absolute;
    background: rgba(30, 41, 59, 0.95);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #f8fafc;
    z-index: 10;
    animation: float 3s ease-in-out infinite;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    white-space: nowrap;
}

[data-theme="light"] .floating-tag {
    background: rgba(255, 255, 255, 0.95);
    color: #0f172a;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.tag-dev {
    top: 20%;
    left: 0%;
    animation-delay: 0s;
}

.tag-scrum {
    top: 50%;
    right: -5%;
    animation-delay: 0.5s;
}

.tag-analyst {
    bottom: 25%;
    left: 5%;
    animation-delay: 1s;
}

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

/* ============================================
   SECTIONS
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header.left {
    text-align: left;
}

.section-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 50px;
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    border: 1px solid rgba(14, 165, 233, 0.2);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

/* ============================================
   ACHIEVEMENTS SECTION
   ============================================ */
.achievements {
    background: var(--bg-primary);
    position: relative;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.achievement-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    display: flex;
    gap: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.achievement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.2);
    border-color: var(--primary);
}

.achievement-card.featured {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(14, 165, 233, 0.05) 100%);
    border: 2px solid rgba(14, 165, 233, 0.2);
}

.achievement-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.achievement-icon.gold { background: linear-gradient(135deg, #f59e0b, #f97316); }
.achievement-icon.blue { background: linear-gradient(135deg, #0ea5e9, #6366f1); }
.achievement-icon.purple { background: linear-gradient(135deg, #8b5cf6, #ec4899); }
.achievement-icon.green { background: linear-gradient(135deg, #10b981, #06b6d4); }
.achievement-icon.orange { background: linear-gradient(135deg, #f97316, #ef4444); }
.achievement-icon.pink { background: linear-gradient(135deg, #ec4899, #f43f5e); }

.achievement-content {
    flex: 1;
}

.achievement-year {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.achievement-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.achievement-desc {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.achievement-list {
    list-style: none;
    margin: 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.achievement-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.achievement-list i {
    color: var(--secondary);
    font-size: 0.875rem;
}

.achievement-issuer {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-color);
}

/* Certifications Section */
.certifications-section {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    text-align: center;
}

.cert-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
    position: relative;
    display: inline-block;
}

.cert-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: var(--bg-secondary);
    border-radius: 12px;
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 500;
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
}

.cert-item:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(14, 165, 233, 0.1);
}

.cert-item i {
    color: var(--primary);
    font-size: 1.25rem;
}

/* ============================================
   MODERN ABOUT SECTION
   ============================================ */
.about {
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.about-grid-modern {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 5rem;
    align-items: center;
}

/* Visual Story - Image Collage */
.about-visual-story {
    position: relative;
}

.image-collage {
    position: relative;
    width: 100%;
    height: 550px;
}

.image-main {
    position: absolute;
    width: 70%;
    height: 80%;
    top: 0;
    margin-top: 0px;
    left: 0;
    z-index: 2;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 3px solid var(--bg-card);
}

.img-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-main:hover .img-main {
    transform: scale(1.05);
}

.image-accent-shape {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 24px;
    z-index: -1;
    opacity: 0.3;
}

.image-secondary {
    position: absolute;
    width: 50%;
    height: 50%;
    bottom: 0;
    right: 0;
    z-index: 3;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
    border: 3px solid var(--bg-card);
    transform: rotate(3deg);
    transition: transform 0.3s ease;
}

.image-secondary:hover {
    transform: rotate(0deg) scale(1.05);
    z-index: 4;
}

.img-secondary {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-float {
    position: absolute;
    bottom: 35%;
    left: 45%;
    transform: translateX(-50%);
    background: var(--bg-card);
    padding: 1.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    z-index: 5;
    border: 1px solid var(--border-color);
    min-width: 120px;
}

.exp-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.exp-text {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    line-height: 1.3;
}

/* Content Side */
.about-content-modern {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.about-intro-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-primary);
    font-weight: 500;
}

.sub-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.highlight {
    background: linear-gradient(120deg, rgba(14, 165, 233, 0.2) 0%, rgba(16, 185, 129, 0.2) 100%);
    padding: 0.1rem 0.4rem;
    border-radius: 6px;
    color: var(--primary);
    font-weight: 600;
}

/* Info Cards Grid */
.info-cards-grid {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.info-card-modern {
    display: flex;
    gap: 1.25rem;
    padding: 1.75rem;
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: default;
}

.info-card-modern:hover {
    transform: translateX(10px);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.2);
    border-color: var(--primary);
}

.card-hover-line {
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.info-card-modern:hover .card-hover-line {
    transform: scaleY(1);
}

.card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.info-card-modern:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.card-icon.blue { background: linear-gradient(135deg, #0ea5e9, #6366f1); }
.card-icon.green { background: linear-gradient(135deg, #10b981, #06b6d4); }
.card-icon.purple { background: linear-gradient(135deg, #8b5cf6, #ec4899); }

.card-content h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 600;
}

.card-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Projects */
.projects-wrapper {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.project-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    background: var(--bg-card);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
}

.project-featured:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}

.project-image {
    width: 100%;
}

.project-frame {
    width: 100%;
    height: 300px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: white;
    font-size: 1.25rem;
    font-weight: 500;
}

.project-frame i {
    font-size: 4rem;
}

.purple-gradient { background: linear-gradient(135deg, #8b5cf6, #ec4899); }

.project-label {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 50px;
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1rem;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.project-title {
    font-size: 1.875rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.project-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.tech-tag {
    padding: 0.4rem 0.875rem;
    background: var(--bg-secondary);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    transition: all 0.2s;
}

.tech-tag:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* Projects Carousel */
.projects-carousel-container {
    margin-top: 3rem;
    background: var(--bg-card);
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.carousel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.carousel-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    font-family: 'Space Grotesk', sans-serif;
}

.carousel-controls {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    flex-shrink: 0;
}

.carousel-btn:hover:not(:disabled) {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.carousel-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.dot.active {
    background: var(--primary);
    width: 30px;
    border-radius: 5px;
}

.dot:hover:not(.active) {
    background: var(--text-muted);
}

.carousel-wrapper {
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.carousel-slide {
    flex: 0 0 calc((100% - 3rem) / 3);
    min-width: calc((100% - 3rem) / 3);
    max-width: calc((100% - 3rem) / 3);
}

.carousel-slide .project-card {
    height: 100%;
    background: var(--bg-primary);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.carousel-slide .project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.2);
    border-color: var(--primary);
}

.carousel-slide .card-image {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    transition: transform 0.5s ease;
    flex-shrink: 0;
}

.carousel-slide .project-card:hover .card-image {
    transform: scale(1.05);
}

.carousel-slide .card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.carousel-slide .card-category {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    display: block;
}

.carousel-slide h4 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    font-weight: 600;
    line-height: 1.3;
}

.carousel-slide p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
}

.blue-gradient { background: linear-gradient(135deg, #0ea5e9, #06b6d4); }
.orange-gradient { background: linear-gradient(135deg, #f59e0b, #f97316); }
.green-gradient { background: linear-gradient(135deg, #10b981, #14b8a6); }
.pink-gradient { background: linear-gradient(135deg, #ec4899, #f43f5e); }
.red-gradient { background: linear-gradient(135deg, #ef4444, #dc2626); }
.teal-gradient { background: linear-gradient(135deg, #14b8a6, #0d9488); }
.indigo-gradient { background: linear-gradient(135deg, #6366f1, #4f46e5); }
.cyan-gradient { background: linear-gradient(135deg, #06b6d4, #0891b2); }
.rose-gradient { background: linear-gradient(135deg, #fb7185, #e11d48); }

.tech-tags.small {
    margin-top: 0.75rem;
    gap: 0.35rem;
}

.tech-tags.small .tech-tag {
    padding: 0.25rem 0.6rem;
    font-size: 0.75rem;
}

/* ============================================
   COMPREHENSIVE SKILLS SECTION
   ============================================ */
.skills {
    background: var(--bg-secondary);
}

.skills-grid-comprehensive {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.skill-category {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.skill-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}

.skill-header-modern {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border-color);
}

.skill-icon-large {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.skill-icon-large.blue { background: linear-gradient(135deg, #0ea5e9, #6366f1); }
.skill-icon-large.pink { background: linear-gradient(135deg, #ec4899, #f97316); }
.skill-icon-large.purple { background: linear-gradient(135deg, #8b5cf6, #a855f7); }
.skill-icon-large.orange { background: linear-gradient(135deg, #f59e0b, #f97316); }

.skill-title-wrap h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.skill-title-wrap p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.skill-tags-modern {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.skill-tag {
    padding: 0.5rem 1rem;
    background: var(--bg-secondary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
    cursor: default;
}

.skill-tag:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.2);
}

.skill-tag.highlight {
    background: rgba(16, 185, 129, 0.1);
    color: var(--secondary);
    border-color: rgba(16, 185, 129, 0.3);
    font-weight: 600;
}

.skill-tag.highlight:hover {
    background: var(--secondary);
    color: white;
    border-color: var(--secondary);
}

/* Contact */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2.5rem 0;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.contact-method:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.method-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.method-details {
    display: flex;
    flex-direction: column;
}

.method-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.method-details a {
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 600;
    text-decoration: none;
}

.method-details a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 48px;
    height: 48px;
    background: var(--bg-card);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    transition: all 0.3s;
    text-decoration: none;
}

.social-link:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(14, 165, 233, 0.3);
}

.contact-form {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: var(--bg-secondary);
    border: 1.5px solid var(--border-color);
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-primary);
    transition: all 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--bg-card);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-full {
    width: 100%;
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-primary);
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Toast */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateX(150%);
    transition: transform 0.3s ease;
    z-index: 9999;
}

.toast.show {
    transform: translateX(0);
}

/* Scroll Top */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s;
    z-index: 999;
    box-shadow: var(--shadow-lg);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(14, 165, 233, 0.4);
}

/* Gallery Section */
.gallery {
    background: var(--bg-secondary);
}

.gallery-showcase {
    max-width: 1000px;
    margin: 0 auto;
}

.gallery-slider {
    position: relative;
    background: var(--bg-card);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid var(--border-color);
}

.gallery-track {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    display: flex;
}

.gallery-slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-image-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    overflow: hidden;
}

.slide-image-wrapper.full .gallery-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 2rem;
    transition: transform 6s ease;
}

.gallery-slide.active .gallery-img {
    transform: scale(1.02);
}

.gallery-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 10;
}

.progress-bar {
    height: 100%;
    background: var(--gradient-primary);
    width: 0%;
    transition: width 0.1s linear;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    font-size: 1.25rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.gallery-nav:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
}

.gallery-nav.prev {
    left: 1.5rem;
}

.gallery-nav.next {
    right: 1.5rem;
}

.gallery-dots.bottom {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.gallery-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.gallery-dots .dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.gallery-dots .dot.active {
    background: var(--primary);
    width: 30px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(14, 165, 233, 0.5);
}

.gallery-thumbnails {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
    justify-content: center;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--bg-secondary);
}

.gallery-thumbnails::-webkit-scrollbar {
    height: 6px;
}

.gallery-thumbnails::-webkit-scrollbar-track {
    background: var(--bg-secondary);
    border-radius: 3px;
}

.gallery-thumbnails::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 3px;
}

.gallery-thumbnails .thumb {
    width: 70px;
    height: 50px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.6;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.gallery-thumbnails .thumb:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

.gallery-thumbnails .thumb.active {
    opacity: 1;
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
    transform: scale(1.05);
}

.gallery-thumbnails .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   MOBILE RESPONSIVE - FIXED
   ============================================ */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-description {
        margin: 0 auto 2rem;
    }

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

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

    .hero-visual {
        order: -1;
    }

    .geometric-profile {
        width: 400px;
        height: 500px;
        margin: 0 auto;
    }

    .shape-1 {
        width: 300px;
        height: 400px;
    }

    .shape-2 {
        width: 280px;
        height: 380px;
    }

    .shape-3 {
        width: 240px;
        height: 320px;
    }

    .geo-image-container {
        width: 380px;
        height: 480px;
    }

    .geo-image {
        transform: scale(1.3);
    }

    .floating-tag {
        display: none;
    }

    .about-grid-modern {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-visual-story {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }

    .image-collage {
        height: 450px;
    }

    .project-featured {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .carousel-slide {
        flex: 0 0 calc((100% - 1.5rem) / 2);
        min-width: calc((100% - 1.5rem) / 2);
        max-width: calc((100% - 1.5rem) / 2);
    }

    .skills-grid-comprehensive {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .achievements-grid {
        grid-template-columns: 1fr;
    }

    .achievement-card.featured {
        grid-column: span 1;
    }

    .cert-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-track {
        height: 500px;
    }

    .slide-image-wrapper.full .gallery-img {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    /* Navigation Mobile */
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        gap: 1.5rem;
        transition: left 0.3s ease;
        align-items: flex-start;
        border-top: none;
        border-right: 1px solid var(--border-color);
        z-index: 999;
    }

    [data-theme="light"] .nav-menu {
        background: rgba(255, 255, 255, 0.98);
    }

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

    .nav-menu::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
        z-index: -1;
    }

    .nav-menu.active::before {
        opacity: 1;
        visibility: visible;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding: 100px 0 4rem;
    }

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

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-padding {
        padding: 4rem 0;
    }

    .container {
        padding: 0 1.5rem;
    }

    .geometric-profile {
        width: 340px;
        height: 420px;
    }

    .shape-1 {
        width: 260px;
        height: 340px;
    }

    .shape-2 {
        width: 240px;
        height: 320px;
    }

    .shape-3 {
        display: none;
    }

    .geo-image-container {
        width: 320px;
        height: 400px;
        margin-top: 30px;
        margin-left: 0;
    }

    .geo-image {
        transform: scale(1.2);
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }

    .stat-divider {
        display: none;
    }

    .stat-item {
        text-align: center;
        padding: 0 1rem;
    }

    .image-collage {
        height: 380px;
    }

    .experience-float {
        padding: 1rem 1.5rem;
        bottom: 10%;
    }

    .exp-number {
        font-size: 2rem;
    }

    .info-card-modern {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .info-card-modern:hover {
        transform: translateY(-5px);
    }

    .card-hover-line {
        width: 100%;
        height: 4px;
        top: 0;
        left: 0;
        transform: scaleX(0);
    }

    .info-card-modern:hover .card-hover-line {
        transform: scaleX(1);
    }

    .carousel-slide {
        flex: 0 0 100%;
        min-width: 100%;
        max-width: 100%;
    }

    .projects-carousel-container {
        padding: 1.5rem;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }

    .carousel-header {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
    }

    .achievement-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .achievement-list li {
        justify-content: center;
    }

    .cert-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .gallery-track {
        height: 400px;
    }

    .gallery-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .gallery-nav.prev {
        left: 1rem;
    }

    .gallery-nav.next {
        right: 1rem;
    }

    .gallery-thumbnails .thumb {
        width: 60px;
        height: 45px;
    }

    .skill-category {
        padding: 1.5rem;
    }

    .skill-header-modern {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .skill-tags-modern {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

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

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .stat-number {
        font-size: 2rem;
    }

    .logo-mark {
        font-size: 1rem;
        padding: 0.4rem 0.8rem;
    }

    .logo-text {
        font-size: 1.25rem;
    }

    .geometric-profile {
        width: 280px;
        height: 350px;
    }

    .shape-1 {
        width: 220px;
        height: 280px;
    }

    .shape-2 {
        width: 200px;
        height: 260px;
    }

    .geo-image-container {
        width: 260px;
        height: 320px;
    }

    .geo-image {
        transform: scale(1.1);
    }

    .gallery-track {
        height: 350px;
    }

    .slide-image-wrapper.full .gallery-img {
        padding: 1rem;
    }

    .gallery-thumbnails {
        gap: 0.5rem;
    }

    .gallery-thumbnails .thumb {
        width: 50px;
        height: 40px;
    }

    .project-featured {
        padding: 1.5rem;
    }

    .project-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.75rem;
    }
}

/* Animations */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}

[data-delay="100"] { transition-delay: 100ms; }
[data-delay="150"] { transition-delay: 150ms; }
[data-delay="200"] { transition-delay: 200ms; }