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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Remove default image styling */
img {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px; /* Account for fixed navbar */
}

/* Section scroll offset for fixed navbar */
section {
    scroll-margin-top: 90px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 4px;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-logo .logo-link {
    text-decoration: none;
    display: block;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 5px 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    gap: 6px;
}

.logo-name {
    font-size: 28px;
    font-weight: 500;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
    font-family: 'Dancing Script', 'Brush Script MT', cursive;
    transform: rotate(-2deg);
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
}

.logo-name::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    animation: underlineGrow 2s ease-in-out 1s forwards;
}

@keyframes underlineGrow {
    to {
        transform: scaleX(1);
    }
}

.logo-tagline {
    font-size: 9px;
    font-weight: 500;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-top: -2px;
    font-style: italic;
    display: flex;
    align-items: center;
    gap: 4px;
}

.logo-tagline::after {
    content: '{✨}';
    font-size: 12px;
    color: #667eea;
    animation: sparkleLoop 2s ease-in-out infinite;
}

@keyframes sparkleLoop {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.2) rotate(180deg);
        opacity: 1;
    }
}



@keyframes sparkle {
    0%, 100% {
        transform: rotate(0deg) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: rotate(180deg) scale(1.2);
        opacity: 1;
    }
}

/* Logo Responsive */
@media (max-width: 768px) {
    .logo-container {
        gap: 8px;
    }
    
    .logo-name {
        font-size: 24px;
        transform: rotate(-1deg);
    }
    
    .logo-tagline {
        font-size: 7px;
        letter-spacing: 0.4px;
    }
    
    .logo-tagline::after {
        font-size: 10px;
    }
    
    .code-bracket {
        font-size: 16px;
    }
    
    .creative-symbol {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    /* Keep the medium logo (signature + tagline) visible on small screens */
    .logo-text {
        display: flex; /* Show the full logo instead of hiding it */
        flex-direction: column;
        line-height: 1.2;
        gap: 4px;
    }
    
    .logo-name {
        font-size: 20px; /* Slightly smaller than medium but still visible */
        transform: rotate(-1deg);
    }
    
    .logo-tagline {
        font-size: 6px; /* Smaller tagline for mobile */
        letter-spacing: 0.3px;
    }
    
    .logo-tagline::after {
        font-size: 8px;
    }
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #667eea;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
}

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

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* New Hero Section - Clean & Simple */
.new-hero {
    min-height: 90vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    padding: 100px 0 20px 0;
    margin: 0;
    position: relative;
}

.new-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.new-hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.new-hero-left {
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.greeting {
    font-size: 1.2rem;
    margin-bottom: 15px;
    opacity: 0.9;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    display: block;
}

.wave {
    display: inline-block;
    animation: wave 2s ease-in-out infinite;
}

@keyframes wave {
    0%, 50%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(14deg); }
    20% { transform: rotate(-8deg); }
    40% { transform: rotate(-4deg); }
}

/* Hero Title Fallback for better visibility */
.new-hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.0;
    background: linear-gradient(135deg, #fff 0%, #f0f8ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    /* Fallback for browsers that don't support background-clip */
    color: white;
    position: relative;
    display: block;
    width: 100%;
}

/* Additional fallback styling for problematic browsers */
@supports not (-webkit-background-clip: text) {
    .new-hero-title {
        color: white !important;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        background: none !important;
        -webkit-text-fill-color: white !important;
    }
}

/* Ensure text is always visible */
.new-hero-title::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    color: white;
    z-index: -1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.new-hero-typing {
    font-size: 1.5rem;
    margin-bottom: 25px;
    min-height: 2rem;
    color: #e6f3ff;
}

.new-hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.95;
    display: flex;
    flex-direction: column;
    gap: 8px;
    word-spacing: normal;
    letter-spacing: normal;
    text-align: left;
}

.highlight-point {
    display: flex;
    align-items: center;
    font-weight: 500;
    color: #f0f8ff;
    padding: 8px 0;
    word-spacing: normal;
    letter-spacing: normal;
    text-align: left;
}

.new-hero-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.stat {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
}

.stat span {
    display: block;
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(255,255,255,0.9);
    margin-top: 5px;
}

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

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

.new-btn-primary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.new-btn-primary:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(255,255,255,0.2);
}

.new-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}

.new-btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
}

.new-hero-right {
    display: flex;
    justify-content: center;
}

.new-profile-wrapper {
    position: relative;
    background: transparent;
    border-radius: 0;
    padding: 0;
    border: none;
    box-shadow: none;
    outline: none;
}

.new-profile-img {
    width: 300px;
    height: 550px;
    object-fit: contain;
    object-position: center;
    border-radius: 0;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    mix-blend-mode: normal;
    opacity: 1;
    background: transparent;
    /* Remove any potential browser defaults */
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    filter: none;
}

/* New Hero Responsive - Very Large screens */
@media (min-width: 1025px) {
    .new-hero {
        min-height: 90vh;
        padding: 100px 0 20px 0;
    }
    
    .new-hero-container {
        max-width: 1200px;
        padding: 0 40px;
    }
    
    .new-hero-content {
        grid-template-columns: 1.2fr 1fr;
        gap: 60px;
    }
    
    .new-hero-title {
        font-size: 3.2rem;
        line-height: 1.0;
        margin-bottom: 20px;
    }
    
    .greeting {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .new-profile-img {
        width: 300px;
        height: 550px;
    }
}

/* Critical 769px Breakpoint Fix */
@media (min-width: 769px) and (max-width: 800px) {
    .new-hero {
        min-height: 90vh;
        padding: 110px 0 30px 0;
    }
    
    .new-hero-container {
        padding: 0 35px;
        max-width: 800px;
    }
    
    .new-hero-content {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 45px;
        align-items: center;
    }
    
    .greeting {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .new-hero-title {
        font-size: 2.9rem;
        line-height: 1.05;
        margin-bottom: 18px;
        font-weight: 800;
        background: linear-gradient(135deg, #fff 0%, #f0f8ff 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    
    .new-hero-typing {
        font-size: 1.4rem;
        margin-bottom: 22px;
    }
    
    .new-hero-description {
        font-size: 1.05rem;
        margin-bottom: 25px;
    }
    
    .new-profile-img {
        width: 270px;
        height: 420px;
    }
}

/* New Hero Responsive - Large Tablet/Small Desktop screens */
@media (min-width: 769px) and (max-width: 1024px) {
    .new-hero {
        min-height: 90vh;
        padding: 120px 0 20px 0;
    }
    
    .new-hero-container {
        padding: 0 30px;
        max-width: 900px;
    }
    
    .new-hero-content {
        grid-template-columns: 1.1fr 1fr;
        gap: 40px;
        align-items: center;
    }
    
    .new-hero-title {
        font-size: 2.8rem;
        line-height: 1.1;
        margin-bottom: 15px;
        font-weight: 800;
        background: linear-gradient(135deg, #fff 0%, #f0f8ff 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    
    .new-hero-typing {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }
    
    .new-hero-description {
        font-size: 1.05rem;
        margin-bottom: 25px;
    }
    
    .new-profile-img {
        width: 280px;
        height: 450px;
    }
}

/* New Hero Responsive - Medium screens (481px to 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .new-hero {
        min-height: 90vh;
        padding: 80px 0 20px 0;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        display: flex;
        align-items: flex-start;
        justify-content: center;
        padding-top: 90px; /* Just below the header */
    }
    
    .new-hero-container {
        padding: 0 25px;
        max-width: 700px;
        width: 100%;
        margin: 0 auto;
    }
    
    .new-hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 25px;
    }
    
    .new-hero-left {
        color: white;
        width: 100%;
        max-width: 500px;
    }
    
    .greeting {
        font-size: 1.2rem;
        margin-bottom: 15px;
        opacity: 0.95;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.95);
    }
    
    .new-hero-title {
        font-size: 2.5rem;
        line-height: 1.1;
        margin-bottom: 20px;
        font-weight: 800;
        background: linear-gradient(135deg, #fff 0%, #f0f8ff 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        text-shadow: 0 2px 4px rgba(0,0,0,0.1);
        /* Fallback for browsers that don't support background-clip */
        color: white;
        position: relative;
        display: block;
        width: 100%;
    }
    
    .new-hero-typing {
        font-size: 1.3rem;
        margin-bottom: 25px;
        min-height: 40px;
        color: #e6f3ff;
        font-weight: 500;
    }
    
    .new-hero-description {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 25px;
        opacity: 0.9;
        color: rgba(255, 255, 255, 0.9);
        display: flex;
        flex-direction: column;
        gap: 10px;
        word-spacing: normal;
        letter-spacing: normal;
        text-align: center;
    }
    
    .highlight-point {
        font-size: 0.95rem;
        font-weight: 500;
        color: #f0f8ff;
        padding: 6px 0;
        display: flex;
        align-items: center;
        justify-content: center;
        word-spacing: normal;
        letter-spacing: normal;
        text-align: center;
    }
    
    .new-hero-stats {
        justify-content: center;
        gap: 25px;
        margin-bottom: 25px;
        display: flex;
        flex-wrap: wrap;
    }
    
    .stat {
        font-size: 1.6rem;
        font-weight: 700;
        color: white;
        text-align: center;
    }
    
    .stat span {
        display: block;
        font-size: 0.85rem;
        font-weight: 400;
        color: rgba(255,255,255,0.9);
        margin-top: 15px;
    }
    
    .new-hero-actions {
        justify-content: center;
        display: flex;
        gap: 15px;
    }
    
    .new-hero-right {
        order: -1;
        display: flex;
        justify-content: center;
        margin-bottom: 15px;
        margin-top: 25px; /* Added top margin */
    }
    
    .new-profile-img {
        width: 220px;
        height: 320px;
        object-fit: cover;
        object-position: center top;
        border-radius: 15px;
        border: none !important; /* Force remove border */
        box-shadow: none !important; /* Completely remove shadow */
        outline: none !important; /* Remove any outline */
        background: transparent;
    }
}

/* New Hero Responsive - Small screens (≤480px) */
@media (max-width: 480px) {
    .new-hero {
        min-height: 82vh;
        padding: 85px 0 20px 0;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        display: flex;
        align-items: flex-start;
        justify-content: center;
        padding-top: 85px; /* Just below the header */
    }
    
    .new-hero-container {
        padding: 0 20px;
        width: 100%;
        margin: 0 auto;
    }
    
    .new-hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }
    
    .new-hero-left {
        color: white;
        width: 100%;
    }
    
    .greeting {
        font-size: 1.1rem;
        margin-bottom: 12px;
        opacity: 0.95;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.95);
    }
    
    .new-hero-title {
        font-size: 2.0rem;
        line-height: 1.2;
        margin-bottom: 18px;
        font-weight: 800;
        background: linear-gradient(135deg, #fff 0%, #f0f8ff 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        text-shadow: 0 2px 4px rgba(0,0,0,0.1);
        /* Fallback for browsers that don't support background-clip */
        color: white;
        position: relative;
        display: block;
        width: 100%;
    }
    
    .new-hero-typing {
        font-size: 1.1rem;
        margin-bottom: 20px;
        min-height: 35px;
        color: #e6f3ff;
        font-weight: 500;
    }
    
    .new-hero-description {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 20px;
        opacity: 0.9;
        color: rgba(255, 255, 255, 0.9);
        display: flex;
        flex-direction: column;
        gap: 8px;
        word-spacing: normal;
        letter-spacing: normal;
        text-align: center;
    }
    
    .highlight-point {
        font-size: 0.9rem;
        font-weight: 500;
        color: #f0f8ff;
        padding: 5px 0;
        display: flex;
        align-items: center;
        justify-content: center;
        word-spacing: normal;
        letter-spacing: normal;
        text-align: center;
    }
    
    .new-hero-stats {
        justify-content: center;
        gap: 20px;
        margin-bottom: 20px;
        display: flex;
        flex-wrap: wrap;
    }
    
    .stat {
        font-size: 1.4rem;
        font-weight: 700;
        color: white;
        text-align: center;
    }
    
    .stat span {
        display: block;
        font-size: 0.8rem;
        font-weight: 400;
        color: rgba(255,255,255,0.9);
        margin-top: 4px;
    }
    
    .new-hero-actions {
        justify-content: center;
        display: flex;
        gap: 12px;
    }
    
    .new-hero-right {
        order: -1;
        display: flex;
        justify-content: center;
        margin-bottom: 10px;
        margin-top: 25px; /* Added top margin */
    }
    
    .new-profile-img {
        width: 200px;
        height: 300px;
        object-fit: cover;
        object-position: center top;
        border-radius: 12px;
        border: none !important; /* Force remove border */
        box-shadow: none !important; /* Completely remove shadow */
        outline: none !important; /* Remove any outline */
        background: transparent;
    }
}

/* Original Hero Responsive for larger tablets */
@media (max-width: 768px) {
    .logo-name {
        font-size: 24px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    animation: float 6s ease-in-out infinite;
}

.hero-shape.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.hero-shape.shape-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.hero-shape.shape-3 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 20%;
    animation-delay: 4s;
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 40px 60px, rgba(255,255,255,0.3), transparent),
        radial-gradient(2px 2px at 90px 40px, rgba(255,255,255,0.2), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255,255,255,0.4), transparent),
        radial-gradient(1px 1px at 160px 30px, rgba(255,255,255,0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 8s linear infinite;
}

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

@keyframes sparkle {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.8;
    }
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 170px 40px 70px 40px;
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.hero-text {
    color: white;
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    animation: slideInLeft 1s ease-out;
}

.badge-icon {
    font-size: 1.2rem;
    animation: wave 2s ease-in-out infinite;
}

@keyframes wave {
    0%, 50%, 100% {
        transform: rotate(0deg);
    }
    10%, 30% {
        transform: rotate(14deg);
    }
    20% {
        transform: rotate(-8deg);
    }
    40% {
        transform: rotate(-4deg);
    }
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.1;
    animation: slideInLeft 1s ease-out 0.2s both;
}



.name-highlight {
    background: linear-gradient(135deg, #fff 0%, #f0f8ff 50%, #e6f3ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    letter-spacing: -1px;
}

.name-highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, #00d4ff, #ff6b6b);
    border-radius: 2px;
    animation: slideInLeft 1s ease-out 0.8s both;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 25px;
    color: #e6f3ff;
    min-height: 2.5rem;
    height: 2.5rem;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    align-items: center;
    animation: slideInLeft 1s ease-out 0.4s both;
}

.typing-text {
    display: inline-block;
    white-space: nowrap;
    overflow: visible;
    line-height: 1.2;
}

.cursor {
    display: inline-block;
    animation: blink 1s infinite;
    color: #00d4ff;
    font-weight: 300;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.9);
    animation: slideInLeft 1s ease-out 0.6s both;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    animation: slideInLeft 1s ease-out 0.8s both;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #00d4ff;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: slideInLeft 1s ease-out 1s both;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 1s ease-out 0.5s both;
}

.profile-card {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.4s ease;
}

.profile-card:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.card-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

.profile-image-wrapper {
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
}

.profile-img {
    width: 240px;
    height: 320px;
    border-radius: 20px;
    object-fit: cover;
    object-position: center top;
    border: 4px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.image-border {
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 25px;
    background: linear-gradient(135deg, #00d4ff, #ff6b6b, #4ecdc4);
    animation: rotate 4s linear infinite;
    z-index: 1;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.tech-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: floatAround 6s ease-in-out infinite;
}

.tech-icon.icon-1 {
    top: -20px;
    right: -20px;
    animation-delay: 0s;
}

.tech-icon.icon-2 {
    bottom: -10px;
    left: -20px;
    animation-delay: 1.5s;
}

.tech-icon.icon-3 {
    top: 50%;
    right: -30px;
    animation-delay: 3s;
}

.tech-icon.icon-4 {
    top: -10px;
    left: 20%;
    animation-delay: 4.5s;
}

@keyframes floatAround {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(180deg);
    }
}

.status-badge {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(34, 197, 94, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 16px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: white;
    z-index: 3;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    z-index: 10;
    cursor: pointer;
    animation: bounce 2s infinite;
    transition: all 0.3s ease;
}

.scroll-indicator:hover {
    color: white;
    transform: translateX(-50%) translateY(-5px);
}

.scroll-text {
    font-size: 0.85rem;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid rgba(255, 255, 255, 0.8);
    border-bottom: 2px solid rgba(255, 255, 255, 0.8);
    transform: rotate(45deg);
    margin: 0 auto;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Hero Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 0;
        height: 100vh;
        margin-top: 0;
    }
    
    .hero-container {
        padding: 150px 20px 70px 20px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .name-highlight {
        font-size: 3rem;
        letter-spacing: -0.5px;
    }
    
    .hero-tagline {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .tagline-text {
        font-size: 0.7rem;
        letter-spacing: 1px;
        padding: 6px 12px;
    }
    
    .tagline-icon .bracket {
        font-size: 1rem;
    }
    
    .tagline-icon .creative {
        font-size: 0.9rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .profile-card {
        padding: 30px;
        transform: none;
    }
    
    .profile-img {
        width: 200px;
        height: 260px;
    }
    
    .tech-icon {
        width: 30px;
        height: 30px;
        font-size: 1.2rem;
    }
    
    .hero-shape.shape-1 {
        width: 100px;
        height: 100px;
    }
    
    .hero-shape.shape-2 {
        width: 80px;
        height: 80px;
    }
    
    .hero-shape.shape-3 {
        width: 60px;
        height: 60px;
    }
}

.cursor {
    display: inline-block;
    color: white;
    font-weight: 300;
    animation: blink 1s infinite;
}

.typing-text {
    position: relative;
}

@keyframes typing {
    from { 
        width: 0; 
    }
    to { 
        width: 100%; 
    }
}

@keyframes blink {
    0%, 50% { 
        opacity: 1; 
    }
    51%, 100% { 
        opacity: 0; 
    }
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 25px;
    opacity: 0.95;
    line-height: 1.3;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 45px;
    opacity: 0.85;
    line-height: 1.7;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 16px;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: white;
    color: #667eea;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: #667eea;
    transform: translateY(-3px);
}

/* Hero Image */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container {
    position: relative;
    width: 350px;
    height: 350px;
}

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

.shape {
    position: absolute;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.08);
    bottom: 10%;
    left: 20%;
    animation-delay: 4s;
}

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

.profile-img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 5px solid rgba(255, 255, 255, 0.2);
    object-fit: cover;
    position: relative;
    z-index: 2;
    animation: profileFloat 4s ease-in-out infinite;
}

@keyframes profileFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 3px solid white;
    border-bottom: 3px solid white;
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: rotate(45deg) translateY(0); }
    40% { transform: rotate(45deg) translateY(-10px); }
    60% { transform: rotate(45deg) translateY(-5px); }
}

/* Section Styles */
section {
    padding: 60px 0;
}

section:first-of-type {
    padding-top: 0;
}

#about {
    padding-top: 30px;
    margin-top: -1px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* New About Section */
.new-about {
    background: #f8f9fa;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    color: #333;
    margin: 0;
}

.about-bg-elements {
    display: none;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

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

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

.shape-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

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

.about-content-new {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.about-header {
    margin-bottom: 40px;
    text-align: center;
}

.about-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.about-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.about-subtitle {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    text-align: center;
}

.about-content-new {
    display: flex;
    flex-direction: column;
    gap: 35px;
    width: 100%;
}

.about-story,
.about-current,
.about-skills-highlight {
    background: white;
    padding: 35px;
    border-radius: 20px;
    border-left: 5px solid #667eea;
    text-align: left;
    width: 100%;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.about-story:hover,
.about-current:hover,
.about-skills-highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    border-left-color: #764ba2;
}

.about-story h4,
.about-current h4,
.about-skills-highlight h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-story p,
.about-current p {
    color: #666;
    line-height: 1.8;
    font-size: 1rem;
    text-align: justify;
}

.skills-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.skill-tag {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #555;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(102, 126, 234, 0.15);
    transition: all 0.3s ease;
}

.skill-tag:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.about-cta {
    margin-top: 20px;
    text-align: center;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.about-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.4);
    background: white;
    color: #667eea;
}

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

.about-btn:hover i {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .new-about {
        padding: 40px 0 80px 0;
    }
    
    .about-main-content {
        padding: 0 20px;
    }
    
    .about-content-new {
        max-width: 100%;
        text-align: center;
    }
    
    .about-title {
        font-size: 2.5rem;
    }
    
    .skills-tags {
        justify-content: center;
    }
}

/* Services Section */
.services {
    background: white;
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.services .container {
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card.featured {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.service-card.featured::before {
    background: rgba(255, 255, 255, 0.3);
    transform: scaleX(1);
}

.service-card.featured:hover {
    transform: translateY(-8px);
}

.service-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.service-card.featured .service-icon {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.service-badge {
    background: #ff6b6b;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.service-card.featured h3 {
    color: white;
}

.service-card p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 0.95rem;
}

.service-card.featured p {
    color: rgba(255, 255, 255, 0.9);
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.service-features li {
    padding: 8px 0;
    color: #555;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.service-card.featured .service-features li {
    color: rgba(255, 255, 255, 0.9);
}

.service-features i {
    color: #667eea;
    margin-right: 12px;
    font-size: 0.8rem;
    width: 16px;
}

.service-card.featured .service-features i {
    color: rgba(255, 255, 255, 0.8);
}

.service-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #667eea;
    text-align: center;
    padding: 15px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 12px;
    border: 2px dashed rgba(102, 126, 234, 0.3);
}

.service-card.featured .service-price {
    color: white;
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.services-cta {
    text-align: center;
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
}

.cta-content h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.cta-content p {
    color: #666;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
    background: #25d366;
    color: white;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 100%;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-card:hover {
        transform: translateY(-5px);
    }
    
    .service-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .services-cta {
        padding: 40px 20px;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .service-card:last-child {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Projects Section */
.projects {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.projects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23667eea" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

.projects .container {
    position: relative;
    z-index: 1;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 35px;
}

.project-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.project-card:hover::before {
    transform: scaleX(1);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.project-image {
    position: relative;
    overflow: hidden;
    height: 280px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 5%;
    transition: all 0.4s ease;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.95) 0%, rgba(118, 75, 162, 0.95) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(2px);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

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

.project-links {
    display: flex;
    gap: 15px;
}

.project-link {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
    text-decoration: none;
    transition: all 0.3s ease;
    transform: translateY(15px);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
    font-size: 1.2rem;
}

.project-card:hover .project-link {
    transform: translateY(0);
}

.project-link:nth-child(1) {
    transition-delay: 0.1s;
}

.project-link:nth-child(2) {
    transition-delay: 0.2s;
}

.project-link:hover {
    transform: translateY(-3px) scale(1.1);
    background: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.project-content {
    padding: 15px 30px;
    position: relative;
}

.project-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 30px;
    right: 30px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #e9ecef 50%, transparent 100%);
}

.project-content h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: 700;
    line-height: 1.3;
}

.project-content p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 0.95rem;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.project-tech span {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.85rem;
    color: #555;
    font-weight: 600;
    border: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
}

.project-tech span:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

/* Coming Soon Project Card */
.project-card.coming-soon {
    border: 2px dashed rgba(102, 126, 234, 0.3);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
}

.project-card.coming-soon:hover {
    border-color: rgba(102, 126, 234, 0.6);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
}

.coming-soon-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    color: #667eea;
    padding: 40px 20px;
}

.coming-soon-content i {
    font-size: 3.5rem;
    margin-bottom: 20px;
    opacity: 0.8;
    animation: rocketFly 3s ease-in-out infinite;
}

.coming-soon-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    color: #667eea;
}

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

.project-card.coming-soon .project-tech span {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    color: #667eea;
    border-color: rgba(102, 126, 234, 0.2);
}

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .project-card {
        border-radius: 20px;
    }
    
    .project-content {
        padding: 20px;
    }
    
    .project-image {
        height: 220px;
    }
    
    .project-link {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }
}

/* Experience Section */
.timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 20px 0;
    --timeline-dot-size: 20px;
    --timeline-line-width: 3px;
}

.timeline::after {
    content: '';
    position: absolute;
    left: 50%;
    width: var(--timeline-line-width);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: translateX(-50%) scaleY(0);
    transform-origin: top;
    z-index: 3;
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(102, 126, 234, 0.2);
    top: 50px;
    bottom: 50px;
    animation: drawLine 1.5s ease-out 0.2s forwards;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 80px;
    position: relative;
    min-height: 180px;
}

.timeline-item:first-child {
    margin-top: 0;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-item:nth-child(odd) .timeline-content {
    text-align: left;
    margin-right: 50px;
    margin-left: 0;
    margin-top: 0;
    animation: slideInLeft 0.8s ease-out forwards;
    animation-delay: 0.2s;
}

.timeline-item:nth-child(even) .timeline-content {
    text-align: left;
    margin-left: 50px;
    margin-right: 0;
    margin-top: 0;
    animation: slideInRight 0.8s ease-out forwards;
    animation-delay: 0.4s;
}

.timeline-item:nth-child(3) .timeline-content {
    animation-delay: 0.6s;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50px;
    transform: translateX(-50%) translateY(-50%);
    z-index: 5;
    border: 4px solid white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    opacity: 0;
    animation: fadeInDot 0.8s ease forwards;
}

.timeline-item:nth-child(1) .timeline-dot {
    animation-delay: 0.1s;
}

.timeline-item:nth-child(2) .timeline-dot {
    animation-delay: 0.3s;
}

.timeline-item:nth-child(3) .timeline-dot {
    animation-delay: 0.5s;
}

.timeline-content {
    flex: 1;
    max-width: 420px;
    width: 100%;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    z-index: 4;
    position: relative;
    border: 1px solid #f0f0f0;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.6s ease forwards;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.timeline-content h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: #333;
    font-weight: 700;
    line-height: 1.3;
}

.timeline-content h4 {
    color: #667eea;
    margin-bottom: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.4;
}

.timeline-date {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.timeline-content p {
    margin-top: 0;
    color: #555;
    line-height: 1.7;
    font-size: 0.95rem;
    text-align: justify;
    text-justify: inter-word;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 40px 0 20px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.footer-left {
    flex: 1;
    text-align: left;
}

.footer-center {
    flex: 1;
    text-align: center;
}

.footer-right {
    flex: 1;
    text-align: right;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.scroll-to-top {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    z-index: 999;
    pointer-events: auto;
    user-select: none;
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.scroll-to-top i {
    color: white;
    font-size: 16px;
}

.get-in-touch h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: white;
    font-weight: 600;
}

.contact-details-footer {
    margin-bottom: 20px;
}

.contact-item-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.contact-item-footer i {
    width: 18px;
    color: #667eea;
    font-size: 14px;
}

.contact-item-footer a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item-footer a:hover {
    color: #667eea;
}

.contact-item-footer span {
    color: #ccc;
}

.follow-me-footer h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: white;
    font-weight: 500;
}

.social-links-footer {
    display: flex;
    gap: 12px;
    justify-content: flex-start;
}

.social-links-footer a {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links-footer a:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.footer-copyright {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    width: 100%;
}

.footer-copyright p {
    color: #999;
    font-size: 0.85rem;
    margin: 0;
    text-align: center;
    white-space: nowrap;
    width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }

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

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

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

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .footer-left,
    .footer-center,
    .footer-right {
        text-align: center;
    }

    .footer-right {
        justify-content: center;
    }

    .social-links-footer {
        justify-content: center;
    }

    .contact-content {
        padding: 0 20px;
    }
    
    .contact-info {
        padding: 35px 25px;
    }
    
    .contact-intro .section-title {
        font-size: 2rem;
    }
    
    .intro-description {
        font-size: 1rem;
    }
    
    .contact-item {
        flex-direction: row;
        padding: 15px;
    }
    
    .contact-cta .cta-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }

    .timeline::after {
        left: 20px;
        width: 3px;
        top: 40px;
        bottom: 40px;
        background: linear-gradient(135ден, #667eea 0%, #764ba2 100%);
        box-shadow: 0 0 8px rgba(102, 126, 234, 0.2);
        transform: translateX(-50%);
    }

    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
        margin-bottom: 50px;
        min-height: auto;
    }

    .timeline-item .timeline-content {
        margin-left: 50px !important;
        margin-right: 0 !important;
        text-align: left !important;
        max-width: calc(100% - 60px);
        width: calc(100% - 60px);
    }

    .timeline-dot {
        left: 20px !important;
        top: 40px !important;
        transform: translateX(-50%) translateY(-50%);
        width: 16px;
        height: 16px;
        border: 3px solid white;
    }

    /* Footer responsive for medium screens */
    .footer {
        padding: 50px 0 15px 0;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

    .footer-left,
    .footer-center,
    .footer-right {
        text-align: center;
        flex: none;
    }

    .footer-right {
        justify-content: center;
    }

    .social-links-footer {
        justify-content: center;
    }
    
    .get-in-touch h3 {
        font-size: 1.4rem;
        margin-bottom: 18px;
    }
    
    .contact-item-footer {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    
    .follow-me-footer h4 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
}

/* Medium screen responsive styles (481px to 768px) - 2 COLUMN FOOTER */
@media (min-width: 481px) and (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }
    
    /* 2 COLUMN FOOTER LAYOUT */
    .footer {
        padding: 40px 0 15px 0;
    }
    
    .footer-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: start;
        max-width: 700px;
        margin: 0 auto;
    }
    
    /* Left column: Get In Touch */
    .footer-center {
        grid-column: 1;
        grid-row: 1;
        text-align: left;
    }
    
    /* Right column: Follow Me + Scroll Button - LEFT ALIGNED with right positioned scroll */
    .footer-left {
        grid-column: 2;
        grid-row: 1;
        text-align: left;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        position: relative;
    }
    
    /* Hide the original right column */
    .footer-right {
        display: none;
    }
    
    /* Get In Touch styling */
    .get-in-touch h3 {
        text-align: left;
        margin-bottom: 20px;
        font-size: 1.4rem;
    }
    
    .contact-item-footer {
        justify-content: flex-start;
        text-align: left;
        margin-bottom: 12px;
    }
    
    /* Follow Me styling - LEFT ALIGNED */
    .follow-me-footer h4 {
        text-align: left;
        margin-bottom: 15px;
        font-size: 1.2rem;
    }
    
    .social-links-footer {
        justify-content: flex-start;
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .social-links-footer a {
        width: 35px;
        height: 35px;
    }
    
    /* Scroll button styling - positioned to right */
    .scroll-to-top-medium {
        width: 45px;
        height: 45px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
        z-index: 999;
        align-self: flex-end;
    }
    
    .scroll-to-top-medium:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    }
    
    .scroll-to-top-medium i {
        color: white;
        font-size: 16px;
    }
    
    /* Copyright - LEFT ALIGNED */
    .footer-copyright {
        grid-column: 1 / -1;
        text-align: left !important;
        margin-top: 30px;
        width: 100%;
    }
}

/* Small screen responsive styles (max-width: 480px) - 1 COLUMN FOOTER */
@media (max-width: 480px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }
    
    /* 1 COLUMN FOOTER LAYOUT - PROPERLY ORGANIZED */
    .footer {
        padding: 30px 0 15px 0;
        position: relative;
    }
    
    .footer-content {
        display: flex;
        flex-direction: column;
        gap: 25px;
        text-align: center;
        align-items: center;
        max-width: 300px;
        margin: 0 auto;
    }
    
    /* Order: 1. Get In Touch (main content) */
    .footer-center {
        order: 1;
        text-align: center;
        width: 100%;
    }
    
    /* Order: 2. Follow Me (social links) */
    .footer-left {
        order: 2;
        text-align: left;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    /* Order: 3. Hide the separate scroll button section */
    .footer-right {
        display: none;
    }
    
    /* Show the medium scroll button (positioned absolutely in footer right corner) */
    .scroll-to-top-medium {
        display: flex !important;
        position: absolute;
        right: 20px;
        bottom: 80px;
        width: 40px;
        height: 40px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
        z-index: 999;
    }
    
    .scroll-to-top-medium:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    }
    
    .scroll-to-top-medium i {
        color: white;
        font-size: 14px;
    }
    
    /* Style Get In Touch section - LEFT ALIGN */
    .get-in-touch h3 {
        text-align: left;
        font-size: 1.3rem;
        margin-bottom: 18px;
    }
    
    /* LEFT ALIGN contact items */
    .contact-item-footer {
        justify-content: flex-start;
        text-align: left;
        margin-bottom: 10px;
        font-size: 0.9rem;
        padding-left: 0px;
    }
    
    .contact-item-footer i {
        width: 20px;
        text-align: left;
        margin-right: 12px;
    }
    
    /* Style Follow Me section - LEFT ALIGN */
    .follow-me-footer h4 {
        text-align: left;
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .social-links-footer {
        justify-content: flex-start;
        gap: 15px;
        margin-bottom: 0;
    }
    
    .social-links-footer a {
        width: 35px;
        height: 35px;
    }
    
    /* Copyright styling - separate section with order */
    .footer-copyright {
        text-align: left !important;
        margin-top: 25px;
        width: 100%;
        order: 3;
    }
    
    .footer-copyright p {
        font-size: 0.8rem;
    }
}

/* Hide medium scroll button by default */
.scroll-to-top-medium {
    display: none;
}

/* Show medium scroll button on small screens */
@media (max-width: 480px) {
    .footer-left .scroll-to-top-medium {
        display: flex !important;
    }
}

/* Show medium scroll button on large screens */
@media (min-width: 769px) {
    .footer-left .scroll-to-top-medium {
        display: flex !important;
    }
}

/* Large screen footer layout (769px and above) - 2 COLUMNS like medium */
@media (min-width: 769px) {
    .footer-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: start;
        max-width: 900px;
        margin: 0 auto;
    }
    
    .footer-center {
        grid-column: 1;
        grid-row: 1;
        text-align: left;
    }
    
    .footer-left {
        grid-column: 2;
        grid-row: 1;
        text-align: left;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    /* Hide the separate scroll button section */
    .footer-right {
        display: none;
    }
    
    /* Show the medium scroll button (which is inside Follow Me section) */
    .scroll-to-top-medium {
        display: flex !important;
        width: 45px;
        height: 45px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
        z-index: 999;
        align-self: flex-end;
    }
    
    .scroll-to-top-medium:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    }
    
    .scroll-to-top-medium i {
        color: white;
        font-size: 16px;
    }
    
    /* Hide the regular scroll button */
    .scroll-to-top {
        display: none;
    }
    
    /* Copyright styling - spans full width */
    .footer-copyright {
        grid-column: 1 / -1;
        text-align: left !important;
        margin-top: 30px;
        width: 100%;
    }
    
    /* Adjust spacing for large screens */
    .get-in-touch h3 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .follow-me-footer h4 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .social-links-footer {
        justify-content: flex-start;
        gap: 12px;
    }
    
    .contact-item-footer {
        justify-content: flex-start;
        font-size: 0.95rem;
    }
}

/* Show medium scroll button only on medium screens */
@media (min-width: 481px) and (max-width: 768px) {
    .scroll-to-top-medium {
        display: flex !important;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-title {
        font-size: 2.5rem;
        white-space: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
    }

    .typing-text {
        white-space: nowrap;
        display: inline-block;
    }

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

    .hero-description {
        font-size: 1rem;
        max-width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .btn {
        width: 220px;
        padding: 12px 25px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
        white-space: nowrap;
        overflow-x: auto;
        padding-bottom: 5px;
    }
    
    .typing-text {
        font-size: inherit;
        white-space: nowrap;
    }

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

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

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

    .contact-form {
        padding: 30px 20px;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.4s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 0.6s ease forwards;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 0.6s ease forwards;
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Hover Effects */
.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}