:root {
    --primary-color: #33AEF5;
    --secondary-color: #536975;
    --accent-color: #F5BB33;
    --orange-accent: #F58133;
    --warm-brown: #756B53;
    --text-primary: #2d3748;
    --text-secondary: #536975;
    --text-light: #ffffff;
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-dark: #536975;
    --border-color: #e8e8e8;
    --shadow-light: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-heavy: 0 4px 20px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.nav-logo h2 {
    color: var(--primary-color);
    font-weight: 700;
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

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

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

.nav-link.nav-active {
    color: var(--primary-color);
    font-weight: 600;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    /* background: #ffffff; */
}

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

.hero-content {
    color: var(--text-primary);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-greeting {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-secondary);
    display: block;
    margin-bottom: 0.5rem;
}

.hero-name {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: inline-block;
    margin-right: 0.5rem;
}

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

.typing-animation {
    position: relative;
    display: inline-block;
    min-width: 300px;
    text-align: left;
    transition: opacity 0.3s ease, transform 0.3s ease;
}


@keyframes fadeOut {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(-10px); }
}

@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}

.text-fade-out {
    animation: fadeOut 0.5s ease-in-out;
}

.text-fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

/* Animation keyframes */
@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-60px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(60px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(60px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    0% {
        opacity: 0;
        transform: translateY(-60px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Animation classes */
.animate-slide-left {
    animation: slideInLeft 0.8s ease-out;
}

.animate-slide-right {
    animation: slideInRight 0.8s ease-out;
}

.animate-slide-up {
    animation: slideInUp 0.8s ease-out;
}

.animate-slide-down {
    animation: slideInDown 0.8s ease-out;
}

.animate-scale {
    animation: scaleIn 0.6s ease-out;
}

.animate-bounce {
    animation: bounceIn 0.8s ease-out;
}

/* Scroll reveal animation */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.8;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-medium);
    font-weight: 500;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
    background: var(--secondary-color);
}


.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    font-weight: 500;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-element {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--accent-color);
    opacity: 0.15;
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    top: 20%;
    left: 10%;
    background: var(--primary-color);
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 60%;
    right: 20%;
    background: var(--orange-accent);
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    bottom: 20%;
    left: 30%;
    background: var(--accent-color);
    animation-delay: 4s;
}

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

section {
    position: relative;
}

section:not(.contact)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    margin-top: 100px;
    margin-bottom: 100px;
}

section:not(.hero, .contact) {
    /* background: var(--bg-primary); */
    padding-bottom: 200px;
}

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

/* About Section - Revolutionary Design */
.about {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    padding: 2rem 0;
}

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

.about-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

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

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
    animation: floatRotate 20s infinite ease-in-out;
}

.shape-1, .shape-2, .shape-3, .shape-4, .shape-5 {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -150px;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: -100px;
    animation-delay: -5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 20%;
    right: 20%;
    animation-delay: -10s;
}

.shape-4 {
    width: 250px;
    height: 250px;
    bottom: 10%;
    left: 10%;
    animation-delay: -15s;
}

.shape-5 {
    width: 100px;
    height: 100px;
    top: 40%;
    left: 30%;
    animation-delay: -7s;
}

@keyframes floatRotate {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-30px) rotate(120deg); }
    66% { transform: translateY(20px) rotate(240deg); }
}

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

/* Profile Visual Section */
.about-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-container {
    position: relative;
    width: 400px;
    height: 400px;
}

.profile-frame {
    position: relative;
    width: 250px;
    height: 250px;
    margin: 75px auto;
}

.profile-avatar {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 20px 60px rgba(45, 55, 72, 0.3);
    z-index: 3;
    border: 4px solid rgba(255, 255, 255, 0.8);
}

.profile-avatar i {
    font-size: 4rem;
    color: white;
}

.profile-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring {
    position: absolute;
    border: 2px solid;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotate 15s linear infinite;
}

.ring-1 {
    width: 220px;
    height: 220px;
    border-color: #EF4444;
    border-width: 3px;
    animation-direction: normal;
}

.ring-2 {
    width: 280px;
    height: 280px;
    border-color: #feca57;
    border-width: 3px;
    animation-direction: reverse;
    animation-duration: 20s;
}

.ring-3 {
    width: 340px;
    height: 340px;
    border-color: #10B981;
    border-width: 3px;
    animation-duration: 25s;
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.stats-floating {
    position: absolute;
    width: 100%;
    height: 100%;
}

.stat-item {
    position: absolute;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(45, 55, 72, 0.1);
    text-align: center;
    min-width: 120px;
    animation: bounce 6s infinite ease-in-out;
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-item:nth-child(1) {
    top: 20px;
    right: 0;
    animation-delay: 0s;
}

.stat-item:nth-child(2) {
    bottom: 80px;
    left: -20px;
    animation-delay: 2s;
}

.stat-item:nth-child(3) {
    top: 50%;
    right: -40px;
    animation-delay: 4s;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
}

/* Content Section */
.about-content {
    padding-left: 2rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(51, 174, 245, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(51, 174, 245, 0.2);
    position: relative;
    z-index: 10;
}

.about-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

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

.title-accent {
    position: relative;
}

.title-accent::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    border-radius: 4px;
    opacity: 0.3;
}

.about-story {
    margin-bottom: 3rem;
}

.story-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(45, 55, 72, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.story-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.story-item:hover {
    transform: translateX(10px);
    box-shadow: 0 20px 50px rgba(45, 55, 72, 0.15);
}

.story-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.story-item:nth-child(1) .story-icon {
    background: linear-gradient(135deg, #feca57 0%, #ff9ff3 100%);
}

.story-item:nth-child(2) .story-icon {
    background: linear-gradient(135deg, #10B981 0%, #34D399 100%);
}

.story-item:nth-child(3) .story-icon {
    background: linear-gradient(135deg, #EF4444 0%, #F87171 100%);
}

.story-icon i {
    font-size: 1.5rem;
    color: white;
}

.story-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.story-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}


.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 15px 40px rgba(45, 55, 72, 0.2);
    transition: all 0.3s ease;
    margin-bottom: 1rem;}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(45, 55, 72, 0.3);
}

.cta-button i {
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}

.cta-info {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-style: italic;
}

/* Responsive Design removed - using new breakpoint system */

.services {
    padding: 2rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(45, 55, 72, 0.12);
    border-color: var(--primary-color);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotateY(180deg);
    color: var(--primary-color);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    transition: all 0.4s ease;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Skills Section - New Visual Design */
.skills {
    background: var(--bg-secondary);
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}

.skills::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(45, 55, 72, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.skills-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    margin-top: 4rem;
}

/* Circular Skills Visualization */
.skills-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 500px;
}

.skills-circle {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.skills-circle .skill-orbit-item {
    position: absolute;
    width: 70px;
    height: 70px;
    /* transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-2040px) rotate(calc(-1 * var(--angle))); */
    animation: orbit 40s linear infinite;
    transition: animation-play-state 0.8s ease;
    z-index: 1;
}

.center-logo {
    position: absolute;
    z-index: 10;
    text-align: center;
    background: var(--primary-color);
    color: white;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(45, 55, 72, 0.2);
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(45, 55, 72, 0.2);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(45, 55, 72, 0.3);
    }
}

.center-logo i {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.center-logo span {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Removed - now handled by .skills-circle .skill-orbit-item */

@keyframes orbit {
    from { transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-200px) rotate(calc(-1 * var(--angle))); }
    to { transform: translate(-50%, -50%) rotate(calc(var(--angle) + 360deg)) translateY(-200px) rotate(calc(-1 * (var(--angle) + 360deg))); }
}

.skill-icon {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(45, 55, 72, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 3px solid transparent;
}

.skill-icon:hover {
    transform: scale(1.2);
    box-shadow: 0 12px 35px rgba(45, 55, 72, 0.25);
    background: var(--bg-secondary);
}

.skill-orbit-item:hover {
    z-index: 100;
}

.skill-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 2px;
}

.skill-icon .skill-name {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1;
}

/* Skills Categories Cards */
.skills-categories {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.skill-category-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(45, 55, 72, 0.1);
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
}

.skill-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(75, 181, 209, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.skill-category-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.5s ease;
}

.skill-category-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 70px rgba(45, 55, 72, 0.2);
}

.skill-category-card:hover::before {
    opacity: 1;
}

.skill-category-card:hover::after {
    transform: scale(1);
}

.category-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.category-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.8) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.skill-category-card:hover .category-icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.category-icon i {
    font-size: 2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.category-header h3 {
    font-size: 1.6rem;
    color: var(--text-primary);
    margin: 0;
    font-weight: 600;
    letter-spacing: -0.5px;
    font-weight: 700;
}

.category-skills {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.8rem;
    position: relative;
    z-index: 2;
    flex: 1;
}

.skill-tag {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(248, 250, 252, 0.9) 100%);
    color: var(--text-primary);
    padding: 10px 16px;
    border-radius: 18px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.skill-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.skill-tag:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(45, 55, 72, 0.2);
    border-color: transparent;
}

.skill-tag:hover::before {
    left: 100%;
}

.category-progress {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.progress-bar {
    flex: 1;
    height: 8px;
    background: var(--bg-secondary);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 4px;
    animation: progress-fill 2s ease-out;
}

@keyframes progress-fill {
    from { width: 0%; }
}

.progress-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 600;
}

/* New Projects Section - Modern Showcase Design */
.projects {
    background: var(--bg-primary);
    position: relative;
    padding: 2rem 0;
}

.projects-header {
    text-align: center;
    margin-bottom: 4rem;
}

.projects-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-top: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Modern Filter Tabs */
.projects-filter-modern {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.filter-tab {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    min-width: 140px;
    justify-content: center;
}

.filter-tab:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(45, 55, 72, 0.1);
}

.filter-tab.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(45, 55, 72, 0.2);
}

.filter-tab i {
    font-size: 1.2rem;
}

.filter-tab span {
    font-weight: 600;
    font-size: 0.9rem;
}

.filter-count {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    margin-left: auto;
}

.filter-tab:not(.active) .filter-count {
    background: var(--bg-secondary);
    color: var(--text-secondary);
}

/* Project Showcase Layout */
.projects-showcase {
    position: relative;
    min-height: 800px;
}

.project-showcase-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.project-showcase-item.featured {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.project-showcase-item:nth-child(even) {
    grid-template-columns: 1fr 1fr;
}

.project-showcase-item:nth-child(even) .project-visual {
    order: 2;
}

.project-showcase-item:nth-child(even) .project-details {
    order: 1;
}

/* Project Visual */
.project-visual {
    position: relative;
}

.project-image-container {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(45, 55, 72, 0.15);
    transition: all 0.5s ease;
}

.project-image-container:hover {
    transform: scale(1.03);
    box-shadow: 0 30px 80px rgba(45, 55, 72, 0.25);
}

.project-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.8s ease;
    display: block;
}

/* .project-image-container:hover .project-image {
    transform: scale(1.1);
} */

.project-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 55, 72, 0.1) 0%, rgba(45, 55, 72, 0.6) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-image-container:hover .project-gradient-overlay {
    opacity: 1;
}

.project-type-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 16px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-primary);
}

.project-actions-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.project-image-container:hover .project-actions-overlay {
    opacity: 1;
    transform: translateY(0);
}

.action-btn {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 12px 20px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    min-width: 160px;
    justify-content: center;
}

.action-btn.primary {
    background: var(--primary-color);
    color: white;
}

.action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(45, 55, 72, 0.2);
}

/* Project Details */
.project-details {
    padding: 2rem 0;
}

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

.project-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    opacity: 0.3;
}

.project-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-primary);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.project-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.project-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.project-features {
    margin-bottom: 2rem;
}

.project-features h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.features-list {
    list-style: none;
    padding: 0;
}

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

.features-list i {
    color: #10b981;
    font-size: 1.2rem;
}

.project-tech-stack {
    display: block;
}

.project-tech-stack h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}


.tech-stack-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
}

.tech-item {
    background: var(--bg-primary);
    padding: 1rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.tech-item:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(45, 55, 72, 0.1);
}

.tech-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: block;
}

.tech-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
}

/* Navigation */
.projects-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4rem;
    padding: 2rem 0;
    position: relative;
    z-index: 10;
}

.nav-btn {
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 1rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--text-primary);
}

.nav-btn:hover:not(:disabled) {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.nav-btn[data-disabled="true"] {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.projects-indicators {
    display: flex;
    gap: 1rem;
}

.indicator {
    width: 12px;
    height: 12px;
    background: var(--border-color);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--primary-color);
    transform: scale(1.3);
}

.indicator:hover {
    background: var(--primary-color);
}

/* Contact Section - Clean & Simple */
.contact {
    background: var(--bg-secondary);
    padding: 2rem 0;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 1rem auto 0;
    line-height: 1.6;
}

.contact-content {
    max-width: 900px;
    margin: 0 auto;
}

/* Info Cards */
.contact-info-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.contact-info-cards .info-card {
    flex: 0 1 280px;
}

.info-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(45, 55, 72, 0.08);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(45, 55, 72, 0.15);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.info-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.info-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.info-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.info-link:hover {
    gap: 0.8rem;
    color: var(--secondary-color);
}

/* Form */
.contact-form-container {
    margin-top: 3rem;
}

.form-card {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(45, 55, 72, 0.1);
    border: 1px solid var(--border-color);
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.form-group label {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem 1.2rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--bg-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(45, 55, 72, 0.1);
}

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

.submit-button {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin: 1rem auto 0;
    box-shadow: 0 10px 30px rgba(45, 55, 72, 0.2);
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(45, 55, 72, 0.3);
}

.submit-button:hover .btn-icon {
    transform: translateX(3px);
}

.btn-icon {
    transition: transform 0.3s ease;
}

.form-footer {
    text-align: center;
    margin-top: 1.5rem;
}

.form-footer p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-footer i {
    color: var(--accent-color);
}

.form-message {
    margin-top: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 500;
    transition: all 0.3s ease;
}

.form-message.success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.form-message.error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

/* Old responsive rules removed */

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

.social-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--primary-color);
}

.footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.footer-section p,
.footer-section ul {
    opacity: 0.8;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

.footer-section .social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section .social-link:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    opacity: 0.6;
}

.project-detail {
    padding: 120px 0 80px;
    background: var(--bg-secondary);
}

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

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.back-btn:hover {
    color: var(--accent-color);
}

.project-content {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.project-image-large img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow-heavy);
}

.project-info h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.project-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.detail-section {
    margin-bottom: 2rem;
}

.detail-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.tech-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-badge {
    background: var(--primary-color);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}


.project-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.related-projects h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--text-primary);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.related-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease;
    text-align: center;
}

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

.related-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.related-card h4 {
    padding: 1rem;
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.related-card a {
    display: block;
    padding: 0 1rem 1rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.related-card a:hover {
    color: var(--accent-color);
}

/* ======================
   RESPONSIVE BREAKPOINTS
   ======================
   
   Extra Large Desktop: 2000px+
   Large Desktop XL: 1200px - 1999px
   Large Desktop: 992px - 1199px  
   Tablet Landscape: 768px - 991px
   Mobile Large: 576px - 767px
   Mobile Small: 320px - 575px
   
   ====================== */

/* All default styles apply */

/* Below 1200px */
@media (max-width: 1199px) {
    .project-tech-stack {
        display: none;
    }
    
    .projects-showcase {
        min-height: 500px;
    }

    .nav-btn {
        display: none;
    }
    
    .projects-navigation {
        justify-content: center;
    }
}

/* Tablet Landscape and Large Desktop - 992px to 1199px */
@media (min-width: 992px) and (max-width: 1199px) {
    
    @keyframes orbit {
        from { transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-180px) rotate(calc(-1 * var(--angle))); }
        to { transform: translate(-50%, -50%) rotate(calc(var(--angle) + 360deg)) translateY(-180px) rotate(calc(-1 * (var(--angle) + 360deg))); }
    }
    .container,
    .nav-container,
    .hero-container,
    .about-container {
        padding: 0 30px;
        max-width: 1000px;
    }
    
    .hero-container {
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-name {
        font-size: 3rem;
    }
    
    .skills-circle {
        width: 350px;
        height: 350px;
    }
    
    .about-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }


}

/* Tablet Landscape - 768px to 991px */
@media (min-width: 768px) and (max-width: 991px) {

    @keyframes orbit {
        from { transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-140px) rotate(calc(-1 * var(--angle))); }
        to { transform: translate(-50%, -50%) rotate(calc(var(--angle) + 360deg)) translateY(-140px) rotate(calc(-1 * (var(--angle) + 360deg))); }
    }

    .container,
    .nav-container,
    .hero-container,
    .about-container {
        padding: 0 25px;
        max-width: 900px;
    }
    
    .hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-name {
        font-size: 2.8rem;
    }
    
    .skills-circle {
        width: 320px;
        height: 320px;
    }
    
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .about-title {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .contact-info-cards {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .contact-info-cards .info-card {
        flex: 0 1 300px;
    }
    
    .form-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
}

/* Mobile Large - 576px to 767px */
@media (min-width: 576px) and (max-width: 767px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-medium);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .container,
    .nav-container,
    .hero-container,
    .about-container {
        padding: 0 20px;
        max-width: 100%;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .hero-name {
        font-size: 2.2rem;
        display: block;
        margin-bottom: 0.5rem;
    }
    
    .hero-greeting {
        font-size: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-visual {
        height: 200px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
        justify-content: center;
        padding: 14px 24px;
    }
    
    .skills-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .skills-circle {
        width: 280px;
        height: 280px;
        margin: 0 auto;
    }
    
    .center-logo {
        width: 90px;
        height: 90px;
    }
    
    .center-logo i {
        font-size: 1.6rem;
        margin-bottom: 0.3rem;
    }
    
    .center-logo span {
        font-size: 0.7rem;
        line-height: 1;
        letter-spacing: 0.5px;
        word-break: break-all;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .about-content {
        padding-left: 0;
        order: 2;
    }
    
    .about-title {
        font-size: 2.2rem;
        margin-bottom: 2rem;
        margin-top: 2rem;
    }

    .about-visual {
        display: none !important;
    }

    .about-story{
        text-align: left;
    }
    
    .profile-container {
        width: 250px;
        height: 250px;
    }
    
    .stat-item {
        position: static !important;
        display: inline-block;
        margin: 0.5rem;
        padding: 1.2rem;
        min-width: 100px;
        top: auto !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
    }
    
    .stats-floating {
        position: static !important;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
        margin-top: 2rem;
        margin-bottom: 3rem;
    }
    
    .shape,
    .floating-shapes .shape,
    .about-background {
        display: none !important;
    }
    
    .section-badge {
        position: relative;
        z-index: 50 !important;
        background: rgba(51, 174, 245, 0.15) !important;
        border: 2px solid rgba(51, 174, 245, 0.3) !important;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-info-cards .info-card {
        width: 100%;
        max-width: 350px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .projects-navigation {
        margin-top: 8rem !important;
        padding: 4rem 0;
        clear: both;
    }
    
    .tech-stack-grid {
        margin-bottom: 4rem;
    }
}

/* Mobile Small - 320px to 575px */




@media (max-width: 575px) {
    .hamburger {
        display: flex;
    }
    
    .skill-orbit-item {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 80px;
        height: 80px;
        animation: orbit 40s linear infinite;
        transition: animation-play-state 0.8s ease;
        z-index: 1;
    }

    @keyframes orbit {
        from { transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-130px) rotate(calc(-1 * var(--angle))); }
        to { transform: translate(-50%, -50%) rotate(calc(var(--angle) + 360deg)) translateY(-130px) rotate(calc(-1 * (var(--angle) + 360deg))); }
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-medium);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .container,
    .nav-container,
    .hero-container,
    .about-container {
        padding: 0 15px;
        max-width: 100%;
    }
    
    section {
        padding: 50px 0;
    }
   
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-name {
        font-size: 2rem;
        display: block;
        margin-bottom: 0.3rem;
    }
    
    .hero-greeting {
        font-size: 0.9rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-visual {
        height: 150px;
    }
    
    .floating-element {
        width: 60px;
        height: 60px;
    }
    
    .typing-animation {
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
        justify-content: center;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .skills-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .skills-circle {
        width: 240px;
        height: 240px;
        margin: 0 auto;
    }
    
    .skill-icon {
        width: 70px;
        height: 70px;
    }
    
    .center-logo {
        width: 90px;
        height: 90px;
    }
    
    .center-logo i {
        font-size: 1.4rem;
        margin-bottom: 0.2rem;
    }
    
    .center-logo span {
        font-size: 0.6rem;
        line-height: 0.9;
        letter-spacing: 0.5px;
        word-break: break-all;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-content {
        padding-left: 0;
        order: 2;
    }
    
    .about-visual {
        order: 1;
        margin-bottom: 1.5rem;
        display: none;
    }
    
    .about-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .profile-container {
        width: 220px;
        height: 220px;
    }
    
    .stat-item {
        position: static !important;
        display: inline-block;
        margin: 0.3rem;
        padding: 1rem;
        min-width: 90px;
        top: auto !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .stats-floating {
        position: static !important;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 2rem;
        margin-bottom: 3rem;
    }
    
    .shape,
    .floating-shapes .shape,
    .about-background {
        display: none !important;
    }
    
    .about-visual {
        margin-bottom: 3rem;
    }
    
    .about-title {
        margin-top: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .contact-info-cards {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .contact-info-cards .info-card {
        width: 100%;
        max-width: 300px;
        padding: 2rem 1.5rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-card {
        padding: 2rem 1.5rem;
    }
    
    .projects-navigation {
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 8rem !important;
        padding: 4rem 0;
        clear: both;
    }

    
    
    .tech-stack-grid {
        margin-bottom: 4rem;
    }
    
    .nav-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-section .social-links {

        justify-content: center;

    }
    
    /* Project showcase - mobile small only */

    .projects-showcase {
        min-height: 300px;
    }

    .project-showcase-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .project-showcase-item:nth-child(even) {
        grid-template-columns: 1fr;
    }
    
    .project-showcase-item:nth-child(even) .project-visual,
    .project-showcase-item:nth-child(even) .project-details {
        order: initial;
    }
    
    .project-details {
        display: none;
    }
    
    .project-visual {
        order: 1;
    }
}
