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

:root {
    --gold-primary: #fbbf24;
    --gold-secondary: #f59e0b;
    --gold-dark: #d97706;
    --dark-primary: #1f2937;
    --dark-secondary: #111827;
    --gold-gradient: linear-gradient(45deg, #fbbf24, #f59e0b, #d97706);
    --dark-gradient: linear-gradient(135deg, #1f2937, #111827);
}

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

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

 

/* ==================================
   NAVIGATION STYLES - CLEAN VERSION
   ================================== */

/* Main Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    position: relative;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    z-index: 1002;
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

/* Desktop Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
    align-items: center;
}

.nav-menu li {
    margin: 0;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    display: block;
}

.nav-link:hover {
    color: #e94560;
    background: rgba(233, 69, 96, 0.1);
    transform: translateY(-2px);
}

.nav-link:active {
    transform: translateY(0);
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1002;
    width: 30px;
    height: 25px;
    justify-content: space-between;
    padding: 0;
    background: none;
    border: none;
}

.hamburger-menu span {
    display: block;
    height: 3px;
    width: 100%;
    background: #333;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: #e94560;
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background: #e94560;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .hamburger-menu {
        display: flex !important;
    }

    .nav-menu {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        width: 100% !important;
        height: 100vh !important;
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(25px) !important;
        -webkit-backdrop-filter: blur(25px) !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 2rem !important;
        z-index: 1000 !important;
        transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
        padding: 2rem !important;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1) !important;
        display: flex !important;
        list-style: none !important;
    }

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

    .nav-menu li {
        opacity: 0;
        transform: translateX(50px);
        transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-menu.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { transition-delay: 0.15s; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.2s; }
    .nav-menu.active li:nth-child(4) { transition-delay: 0.25s; }
    .nav-menu.active li:nth-child(5) { transition-delay: 0.3s; }
    .nav-menu.active li:nth-child(6) { transition-delay: 0.35s; }

    .nav-link {
        font-size: 1.3rem;
        font-weight: 600;
        padding: 1rem 2rem;
        border-radius: 12px;
        text-align: center;
        min-width: 200px;
        border: 2px solid transparent;
        background: rgba(233, 69, 96, 0.05);
        transition: all 0.3s ease;
    }

    .nav-link:hover {
        background: linear-gradient(45deg, #e94560, #533483);
        color: white;
        transform: scale(1.05);
        box-shadow: 0 10px 30px rgba(233, 69, 96, 0.3);
        border-color: rgba(255, 255, 255, 0.2);
    }

    /* Mobile overlay */
    .nav-menu::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 20% 20%, rgba(233, 69, 96, 0.1) 0%, transparent 50%),
                    radial-gradient(circle at 80% 80%, rgba(83, 52, 131, 0.1) 0%, transparent 50%);
        z-index: -1;
    }
}

/* Scrolled Navbar Effect */
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.15) !important;
}

/* Active nav link */
.nav-link.active {
    color: #e94560;
    background: rgba(233, 69, 96, 0.1);
}

/* Smooth transitions for better UX */
* {
    -webkit-tap-highlight-color: transparent;
}

.nav-menu,
.nav-link,
.hamburger-menu span {
    will-change: transform;
}

/* Grid System for CTA Buttons */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 10px;
}

@media (max-width: 768px) {
    .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 1rem;
    }
    
    .col-md-6:last-child {
        margin-bottom: 0;
    }
}

/* Hero Section - Redesigned */
/* Hero Section - Redesigned */
.hero {
    min-height: 100vh;
    padding-top: 80px;
    background: linear-gradient(135deg, 
        #1a1a2e 0%, 
        #16213e 25%, 
        #0f3460 50%, 
        #533483 75%, 
        #e94560 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative; 
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(233, 69, 96, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(83, 52, 131, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(15, 52, 96, 0.08) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite alternate;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: 
        conic-gradient(from 0deg at 50% 50%, 
            rgba(233, 69, 96, 0.1) 0deg, 
            transparent 60deg, 
            rgba(83, 52, 131, 0.05) 120deg, 
            transparent 180deg, 
            rgba(233, 69, 96, 0.1) 240deg, 
            transparent 300deg, 
            rgba(83, 52, 131, 0.05) 360deg);
    animation: rotate 20s linear infinite;
}

@keyframes pulse {
    0% { opacity: 0.6; }
    100% { opacity: 1; }
}

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

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 900;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.5);
    background: linear-gradient(45deg, #ffffff, #e94560, #533483, #ffffff);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
    position: relative;
}

.hero-content h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #e94560, transparent);
    border-radius: 2px;
    animation: expandWidth 2s ease-out forwards;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes expandWidth {
    from { width: 0; }
    to { width: 150px; }
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 600;
    color: #DEB887;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
    margin-bottom: 1.5rem;
}

.hero-subtitle::before {
    content: '👨‍💻';
    display: block;
    font-size: 2rem;
    margin-bottom: 1rem;
    animation: bounce 2s ease-in-out infinite;
}

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

.hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-description::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 3rem;
    color: #e94560;
    font-family: 'Georgia', serif;
    opacity: 0.6;
}

.cta-buttons-container {
    position: absolute; 
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1.5rem;
    z-index: 2;
}

.btn {
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(45deg, #e94560, #533483);
    color: white;
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.4);
    border: 2px solid rgba(233, 69, 96, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(45deg, #d63384, #6f42c1);
    border-color: rgba(233, 69, 96, 0.6);
    box-shadow: 0 15px 35px rgba(233, 69, 96, 0.5);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.2);
}

/* Floating elements for visual interest */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(233, 69, 96, 0.6);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

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

.floating-element:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

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

.floating-element:nth-child(4) {
    top: 40%;
    right: 30%;
    animation-delay: 1s;
}

.floating-element:nth-child(5) {
    bottom: 60%;
    left: 60%;
    animation-delay: 3s;
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: clamp(2.5rem, 10vw, 4rem);
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.4rem);
    }

    .hero-description {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
        padding: 1.5rem;
    }

    .cta-buttons-container {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn {
        width: 280px;
        justify-content: center;
    }
}

/* About Section - Redesigned */
.about {
    
    background: linear-gradient(135deg, 
        #0f0f23 0%, 
        #1a1a2e 25%, 
        #16213e 50%, 
        #0f3460 75%, 
        #533483 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(83, 52, 131, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(251, 191, 36, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(83, 52, 131, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
    opacity: 0.6;
}

/* Skills Section */
.skills {
    padding: 120px 0;
    background: linear-gradient(135deg, 
        #0f0f23 0%, 
        #1a1a2e 25%, 
        #16213e 50%, 
        #0f3460 75%, 
        #533483 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.skills::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(83, 52, 131, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(251, 191, 36, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(83, 52, 131, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
    opacity: 0.6;
}

/* Experience Section - Updated to match contact section style */
.experience {
  
    background: linear-gradient(135deg, 
        #0f0f23 0%, 
        #1a1a2e 25%, 
        #16213e 50%, 
        #0f3460 75%, 
        #533483 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.experience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(83, 52, 131, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(251, 191, 36, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(83, 52, 131, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
    opacity: 0.6;
}

/* Projects Section - Updated to match contact section style */
.projects {
    padding: 120px 0;
    background: linear-gradient(135deg, 
        #0f0f23 0%, 
        #1a1a2e 25%, 
        #16213e 50%, 
        #0f3460 75%, 
        #533483 100%);
    color: white;
    overflow: hidden;
}

.projects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(83, 52, 131, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(251, 191, 36, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(83, 52, 131, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
    opacity: 0.6;
}

/* Testimonials Section - Updated to match contact section style */
.testimonials {
    padding: 120px 0;
    background: linear-gradient(135deg, 
        #0f0f23 0%, 
        #1a1a2e 25%, 
        #16213e 50%, 
        #0f3460 75%, 
        #533483 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.testimonials-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.carousel-container {
    overflow: hidden;
    position: relative;
    margin: 0 auto;
    width: 100%;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 30px;
    padding: 20px 0;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 20px);
    min-width: calc(33.333% - 20px);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    height: auto;
    min-height: 750px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.testimonial-quote {
    /* font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    flex-grow: 1;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1); */
}

.testimonial-quote.collapsed {
    /* max-height: 150px;
    overflow: hidden;
    text-overflow: ellipsis; */
}

.testimonial-quote::before {
    /* content: '"';
    position: absolute;
    top: 0;
    left: 1rem;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.1);
    font-family: Georgia, serif;
    line-height: 1; */
}

.read-more-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin: 0.5rem 0;
    width: fit-content;
    align-self: center;
}

.read-more-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.author-info {
    flex-grow: 1;
}

.author-info h4 {
    font-size: 1rem;
    margin: 0;
    color: white;
    font-weight: 600;
}

.author-position {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.25rem;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.15);
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-nav svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

.carousel-prev {
    left: -50px;
}

.carousel-next {
    right: -50px;
}

.carousel-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

@media (max-width: 1024px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 20px);
        min-width: calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        flex: 0 0 calc(100% - 20px);
        min-width: calc(100% - 20px);
    }
    
    .carousel-nav {
        display: none;
    }
    
    .testimonials-carousel {
        padding: 0 10px;
    }
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(83, 52, 131, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(251, 191, 36, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(83, 52, 131, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
    opacity: 0.6;
}

/* Update section titles to match contact section style */
.section-title {
    text-align: center;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
    background: linear-gradient(45deg, #ffffff, #e94560, #533483, #fbbf24, #ffffff);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #e94560, #533483, #fbbf24, transparent);
    border-radius: 2px;
    animation: expandWidth 2.5s ease-out forwards;
}

.section-subtitle {
    text-align: center;
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 4rem;
    font-weight: 400;
    position: relative;
    z-index: 2;
    letter-spacing: 1px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* Update all containers to have proper z-index */
.about > .container,
.skills > .container,
.experience > .container,
.projects > .container,
.testimonials > .container,
.contact > .container {
    position: relative;
    z-index: 2;
}

/* Update about text styling to match contact section */
.about-text {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px);
    padding: 2.5rem;
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Update profile card styling to match contact section */
.profile-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(30px);
    padding: 3rem 2.5rem;
    border-radius: 30px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-align: center;
    border: 3px solid rgba(255, 255, 255, 0.2);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 400px;
}

/* Update stat cards styling to match contact section */
.stat-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(25px);
    padding: 3rem 2rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.18);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Update skill categories styling to match contact section */
.skill-category {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Update timeline content styling to match contact section */
.timeline-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

/* Update project cards styling to match contact section */
.project-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transform: translateY(0);
}

/* Update testimonial cards styling to match contact section */
.testimonial-card {
    flex: 0 0 calc(33.333% - 20px);
    min-width: calc(33.333% - 20px);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    height: auto;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Update contact info styling to match contact section */
.contact-info {
    background: rgba(255, 255, 255, 0.08);
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    position: relative;
    z-index: 2;
}

/* Update skills preview styling to match contact section */
.skills-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.skill-tag {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.85rem;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Update contact items styling to match contact section */
.contactus-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

/* Update contact icon styling to match contact section */
.contactus-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    background: linear-gradient(45deg, #e94560, #533483);
    -webkit-background-clip: text; 
    background-clip: text;
    transition: all 0.4s ease;
}

/* Update contact item headings to match contact section */
.contactus-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fbbf24;
}

/* Update contact item text to match contact section */
.contactus-item p {
    font-size: .7rem;
    color: rgba(255, 255, 255, 0.9);
    word-break: break-all;
}

/* Update contact item links to match contact section */
.contactus-item a {
    color: #fbbf24;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contactus-item a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

/* Floating elements for visual interest */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(233, 69, 96, 0.6);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

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

.floating-element:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

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

.floating-element:nth-child(4) {
    top: 40%;
    right: 30%;
    animation-delay: 1s;
}

.floating-element:nth-child(5) {
    bottom: 60%;
    left: 60%;
    animation-delay: 3s;
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: clamp(2.5rem, 10vw, 4rem);
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.4rem);
    }

    .hero-description {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
        padding: 1.5rem;
    }

    .cta-buttons-container {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        bottom: 30px;
    }

    .btn {
        width: 280px;
        justify-content: center;
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: clamp(2rem, 12vw, 3rem);
    }

    .hero-subtitle {
        font-size: clamp(0.9rem, 5vw, 1.2rem);
    }

    .hero-description {
        font-size: clamp(0.8rem, 4vw, 1rem);
        padding: 1rem;
    }

    .cta-buttons-container {
        bottom: -32px;
    }

    .btn {
        width: 250px;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

.about-container {
    position: relative;
    z-index: 2;
}

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

.about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s;
}

.about-text:hover::before {
    left: 100%;
}

.about-text:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.25);
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.about-text p:last-child {
    margin-bottom: 0;
}

.highlight-text {
         color: #F5F5DC;
         font-weight: 600;
         text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
         background: linear-gradient(45deg, #DEB887, #CD853F);
         -webkit-background-clip: text; 
   }

.profile-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.profile-card::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, 
        #8B7355, #A0522D, #8B4513, #654321, 
        #DEB887, #CD853F, #D2691E, #8B4513);
    border-radius: 30px;
    z-index: -1;
    animation: borderGlow 4s ease-in-out infinite alternate;
    background-size: 400% 400%;
}

@keyframes borderGlow {
    0% { 
        opacity: 0.6;
        background-position: 0% 50%;
    }
    50% {
        opacity: 0.8;
        background-position: 100% 50%;
    }
    100% { 
        opacity: 0.6;
        background-position: 0% 50%;
    }
}

.profile-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 
        0 40px 120px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.35);
}

.profile-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, 
        #8B7355 0%, #A0522D 50%, #8B4513 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    margin: 0 auto 2rem;
    font-weight: 800;
    border: 6px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.15);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.profile-img::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, 
        transparent, rgba(255, 255, 255, 0.08), transparent, 
        rgba(255, 255, 255, 0.03), transparent);
    animation: rotate 8s linear infinite;
}

.profile-img:hover {
    transform: scale(1.08) rotate(5deg);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.5),
        inset 0 2px 0 rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.45);
}

.profile-card h3 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 2;
}

.profile-role {
    color: #DEB887;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 2;
}

.profile-location {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.contact-info {
    background: rgba(255, 255, 255, 0.08);
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    position: relative;
    z-index: 2;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

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

.contact-item a {
    color: #DEB887;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.contact-item a:hover {
    color: #CD853F;
    text-shadow: 0 0 10px rgba(205, 133, 63, 0.5);
}

.contact-icon {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
    filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.3));
}

/* Skills Tags */
.skills-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.skill-tag {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.85rem;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.skill-tag:hover {
    background: rgba(205, 133, 63, 0.25);
    border-color: rgba(205, 133, 63, 0.5);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(205, 133, 63, 0.3);
}

/* Stats Grid - Enhanced */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(25px);
    padding: 3rem 2rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.18);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 
        0 35px 100px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(139, 115, 85, 0.5);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.4));
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #DEB887;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
    background: linear-gradient(45deg, #DEB887, #CD853F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.stat-description {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.85rem;
    margin-top: 0.5rem;
    font-weight: 400;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in-delay-1 { animation-delay: 0.2s; }
.fade-in-delay-2 { animation-delay: 0.4s; }
.fade-in-delay-3 { animation-delay: 0.6s; }

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

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

.skill-category {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.skill-category:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 
        0 40px 120px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(233, 69, 96, 0.3);
}

.skill-category h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    color: #fbbf24;
    text-shadow: 0 0 15px rgba(251, 191, 36, 0.4);
    border-bottom: 2px solid rgba(251, 191, 36, 0.2);
    padding-bottom: 1rem;
}

.skill-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.skill-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.skill-list li:hover {
    background: rgba(251, 191, 36, 0.1);
    padding-left: 1rem;
    border-radius: 10px;
}

.skill-list li:last-child {
    border-bottom: none;
}

.skill-list li::before {
    content: '✨';
    color: #fbbf24;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.skill-list li:hover::before {
    transform: scale(1.2) rotate(15deg);
}

/* Experience Section - Redesigned */
.experience {
    padding: 120px 0;
    background: linear-gradient(135deg, 
        #0f0f23 0%, 
        #1a1a2e 25%, 
        #16213e 50%, 
        #0f3460 75%, 
        #533483 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.experience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(83, 52, 131, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(251, 191, 36, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(83, 52, 131, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
    opacity: 0.6;
}

.experience::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: 
        conic-gradient(from 0deg at 50% 50%, 
            rgba(102, 126, 234, 0.05) 0deg, 
            transparent 60deg, 
            rgba(245, 87, 108, 0.03) 120deg, 
            transparent 180deg, 
            rgba(240, 147, 251, 0.05) 240deg, 
            transparent 300deg, 
            rgba(79, 172, 254, 0.03) 360deg);
    animation: rotate 30s linear infinite;
}

/* Floating particles effect for experience */
.experience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(83, 52, 131, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(251, 191, 36, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(83, 52, 131, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
    opacity: 0.6;
}

.experience .section-title {
    text-align: center;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
    background: linear-gradient(45deg, #ffffff, #e94560, #533483, #fbbf24, #ffffff);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

.experience .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #e94560, #533483, #fbbf24, transparent);
    border-radius: 2px;
    animation: expandWidth 2.5s ease-out forwards;
}

.timeline {
    max-width: 1200px;
    margin: 4rem auto 0;
    position: relative;
    z-index: 2;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, 
        #667eea 0%, 
        #f093fb 25%, 
        #f5576c 50%, 
        #4facfe 75%, 
        #667eea 100%);
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.5);
    animation: timelineGlow 3s ease-in-out infinite alternate;
}

@keyframes timelineGlow {
    0% { box-shadow: 0 0 20px rgba(102, 126, 234, 0.5); }
    100% { box-shadow: 0 0 30px rgba(240, 147, 251, 0.8); }
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    width: 50%;
    opacity: 0;
    transform: translateY(50px);
    animation: slideInUp 0.8s ease-out forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.3s; }
.timeline-item:nth-child(3) { animation-delay: 0.5s; }
.timeline-item:nth-child(4) { animation-delay: 0.7s; }
.timeline-item:nth-child(5) { animation-delay: 0.9s; }

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

.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 3rem;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 3rem;
}

.timeline-content:hover::before {
    opacity: 1;
}

.timeline-content:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 35px 100px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(102, 126, 234, 0.4);
}

.timeline-date {
    color: #fbbf24;
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(251, 191, 36, 0.15);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(251, 191, 36, 0.3);
    display: inline-block;
    transition: all 0.3s ease;
}

.timeline-content:hover .timeline-date {
    background: rgba(251, 191, 36, 0.25);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(251, 191, 36, 0.3);
}

.timeline-title {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    color: white;
    letter-spacing: -0.5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.timeline-content:hover .timeline-title {
    color: #fbbf24;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
}

.timeline-company {
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin-bottom: 1.5rem;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.timeline-content:hover .timeline-company {
    color: rgba(255, 255, 255, 1);
}

.timeline-description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    font-size: 0.95rem;
    font-weight: 400;
    transition: all 0.3s ease;
}

.timeline-description ul {
    margin-top: 1rem;
    padding-left: 1.2rem;
}

.timeline-description li {
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
    position: relative;
    transition: all 0.3s ease;
}

.timeline-description li::before {
    content: '▸';
    color: #fbbf24;
    font-weight: bold;
    position: absolute;
    left: -1.2rem;
    transition: all 0.3s ease;
}

.timeline-content:hover .timeline-description li::before {
    transform: scale(1.2);
    color: #ffffff;
}

.timeline-dot {
    position: absolute;
    width: 25px;
    height: 25px;
    background: linear-gradient(45deg, #667eea, #f093fb, #f5576c);
    border-radius: 50%;
    top: 2.5rem;
    border: 4px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 0 0 4px rgba(102, 126, 234, 0.3),
        0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    z-index: 3;
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -12.5px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -12.5px;
}

.timeline-content:hover + .timeline-dot,
.timeline-content:hover ~ .timeline-dot {
    transform: scale(1.3);
    box-shadow: 
        0 0 0 6px rgba(102, 126, 234, 0.4),
        0 15px 40px rgba(0, 0, 0, 0.4);
    background: linear-gradient(45deg, #fbbf24, #f093fb, #f5576c);
}

/* Responsive design for timeline */
@media (max-width: 768px) {
    .timeline:before {
        left: 30px;
    }
    
    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 4rem !important;
        padding-right: 1rem !important;
        text-align: left !important;
    }
    
    .timeline-dot {
        left: 17.5px !important;
        right: auto !important;
    }
    
    .timeline-content {
        padding: 2rem;
        border-radius: 20px;
    }
    
    .experience .section-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
}

/* Projects Section - Redesigned */
.projects {
    padding: 120px 0;
    background: linear-gradient(135deg, 
        #0f0f23 0%, 
        #1a1a2e 25%, 
        #16213e 50%, 
        #0f3460 75%, 
        #533483 100%);
    color: white;
    overflow: hidden;
}

.projects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(83, 52, 131, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(251, 191, 36, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(83, 52, 131, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
    opacity: 0.6;
}

.projects::after {
    content: ''; 
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: 
        conic-gradient(from 0deg at 50% 50%, 
            rgba(233, 69, 96, 0.05) 0deg, 
            transparent 60deg, 
            rgba(83, 52, 131, 0.03) 120deg, 
            transparent 180deg, 
            rgba(233, 69, 96, 0.05) 240deg, 
            transparent 300deg, 
            rgba(83, 52, 131, 0.03) 360deg);
    animation: rotate 30s linear infinite;
}

/* Floating particles effect */
.projects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(83, 52, 131, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(251, 191, 36, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(83, 52, 131, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
    opacity: 0.6;
}

@keyframes sparkle {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-100px); }
}

.projects .section-title {
    text-align: center;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
    background: linear-gradient(45deg, #ffffff, #e94560, #533483, #fbbf24, #ffffff);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

.projects .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #e94560, #533483, #fbbf24, transparent);
    border-radius: 2px;
    animation: expandWidth 2.5s ease-out forwards;
}

.projects .section-subtitle {
    text-align: center;
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 5rem;
    font-weight: 400;
    position: relative;
    z-index: 2;
    letter-spacing: 1px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

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

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

.project-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transform: translateY(0);
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(233, 69, 96, 0.1) 0%, 
        rgba(83, 52, 131, 0.1) 50%, 
        rgba(15, 52, 96, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 30px;
}

.project-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        #e94560, #533483, #0f3460, #fbbf24, #e94560);
    border-radius: 30px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
    background-size: 400% 400%;
    animation: borderGradient 3s ease infinite;
}

@keyframes borderGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

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

.project-card:hover::after {
    opacity: 0.8;
}

.project-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: 
        0 40px 120px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(233, 69, 96, 0.3);
}

.project-category {
    color: #e94560;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: rgba(233, 69, 96, 0.15);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    border: 1px solid rgba(233, 69, 96, 0.3);
    display: inline-block;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.project-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(233, 69, 96, 0.2), transparent);
    transition: left 0.6s ease;
}

.project-card:hover .project-category::before {
    left: 100%;
}

.project-card:hover .project-category {
    background: rgba(233, 69, 96, 0.25);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(233, 69, 96, 0.3);
}

.project-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.3;
    transition: all 0.3s ease;
}

.project-card:hover .project-title {
    color: #fbbf24;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
}

.project-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 1.05rem;
    font-weight: 400;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.project-description a {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: #fbbf24;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 1rem 2rem;
    background: rgba(251, 191, 36, 0.1);
    border: 2px solid rgba(251, 191, 36, 0.3);
    border-radius: 30px;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.project-description a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.2), transparent);
    transition: left 0.6s ease;
}

.project-description a:hover::before {
    left: 100%;
}

.project-description a:hover {
    background: rgba(251, 191, 36, 0.2);
    border-color: rgba(251, 191, 36, 0.6);
    transform: translateY(-3px);
    box-shadow: 
        0 15px 35px rgba(251, 191, 36, 0.3),
        0 0 20px rgba(251, 191, 36, 0.2);
    color: #ffffff;
}

.project-description a::after {
    content: '↗';
    font-size: 1.2rem;
    font-weight: 800;
    transition: all 0.3s ease;
}

.project-description a:hover::after {
    transform: translate(3px, -3px) rotate(15deg);
}

/* Floating animation for cards */
.project-card:nth-child(odd) {
    animation: float 6s ease-in-out infinite;
}

.project-card:nth-child(even) {
    animation: float 6s ease-in-out infinite reverse;
}

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

/* Enhanced hover effects */
.project-card:hover .project-category {
    animation: pulse 1s ease-in-out infinite alternate;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .project-card {
        padding: 2rem;
        border-radius: 25px;
    }
    
    .projects .section-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
}

/* Enhanced Testimonials Section */
.testimonials {
    padding: 120px 0;
    background: linear-gradient(135deg, 
        #0f0f23 0%, 
        #1a1a2e 25%, 
        #16213e 50%, 
        #0f3460 75%, 
        #533483 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(83, 52, 131, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(251, 191, 36, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(83, 52, 131, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
    opacity: 0.6;
}

.testimonials::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: 
        conic-gradient(from 0deg at 50% 50%, 
            rgba(102, 126, 234, 0.05) 0deg, 
            transparent 60deg, 
            rgba(245, 87, 108, 0.03) 120deg, 
            transparent 180deg, 
            rgba(240, 147, 251, 0.05) 240deg, 
            transparent 300deg, 
            rgba(79, 172, 254, 0.03) 360deg);
    animation: rotate 30s linear infinite;
}

/* Enhanced floating particles effect */
.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(102, 126, 234, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(245, 87, 108, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(240, 147, 251, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(79, 172, 254, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(102, 126, 234, 0.3), transparent),
        radial-gradient(1px 1px at 200px 50px, rgba(251, 191, 36, 0.3), transparent),
        radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(245, 87, 108, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(240, 147, 251, 0.06) 0%, transparent 50%);
    background-repeat: repeat, no-repeat, no-repeat, no-repeat;
    background-size: 250px 120px, cover, cover, cover;
    animation: 
        sparkle 25s linear infinite,
        pulse 6s ease-in-out infinite alternate;
    opacity: 0.7;
}

.testimonials .section-title {
    text-align: center;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
    background: linear-gradient(45deg, #ffffff, #e94560, #533483, #fbbf24, #ffffff);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

.testimonials .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #e94560, #533483, #fbbf24, transparent);
    border-radius: 2px;
    animation: expandWidth 2.5s ease-out forwards;
}

.testimonials-carousel {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    margin-top: 4rem;
}

.carousel-container {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 450px;
    overflow: hidden;
    transform: translateY(50px);
    animation: slideInUp 0.8s ease-out forwards;
    margin-right: 3rem;
}

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }
.testimonial-card:nth-child(4) { animation-delay: 0.4s; }
.testimonial-card:nth-child(5) { animation-delay: 0.5s; }
.testimonial-card:nth-child(6) { animation-delay: 0.6s; }
.testimonial-card:nth-child(7) { animation-delay: 0.7s; }
.testimonial-card:nth-child(8) { animation-delay: 0.8s; }
.testimonial-card:nth-child(9) { animation-delay: 0.9s; }
.testimonial-card:nth-child(10) { animation-delay: 1.0s; }
.testimonial-card:nth-child(11) { animation-delay: 1.1s; }
.testimonial-card:nth-child(12) { animation-delay: 1.2s; }
.testimonial-card:nth-child(13) { animation-delay: 1.3s; }
.testimonial-card:nth-child(14) { animation-delay: 1.4s; }

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

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(233, 69, 96, 0.1) 0%, 
        rgba(83, 52, 131, 0.1) 50%, 
        rgba(15, 52, 96, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 30px;
}

.testimonial-card::after {
    content: '"';
    font-size: 6rem;
    color: rgba(251, 191, 36, 0.2);
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: 'Georgia', serif;
    transition: all 0.3s ease;
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-card:hover::after {
    color: rgba(251, 191, 36, 0.4);
    transform: scale(1.1);
}

.testimonial-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 40px 120px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(233, 69, 96, 0.4);
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 2rem;
    color: #ffffff;
    transition: color 0.3s ease;
}

.carousel-arrow:hover {
    color: #fbbf24;
}

.carousel-prev {
    left: -50px;
}

.carousel-next {
    right: -50px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: #fbbf24;
}

.dot:hover {
    background: #fbbf24;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .carousel-container {
        width: 90%;
    }
    
    .testimonial-card {
        margin-right: 2rem;
    }
}

@media (max-width: 576px) {
    .carousel-container {
        width: 100%;
    }
    
    .testimonial-card {
        margin-right: 1rem;
    }
}

.testimonial-quote {
    /* font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-weight: 400;
    font-style: italic;
    flex: 1;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease; */
}

.testimonial-quote.collapsed {
    /* max-height: 120px;
    overflow: hidden; */
}

.testimonial-quote.collapsed::after {
    /* content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(transparent, rgba(255, 255, 255, 0.1));
    pointer-events: none;
    border-radius: 0 0 30px 30px; */
}

.read-more-btn {
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    align-self: flex-start;
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.3);
    position: relative; 
}

.read-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.read-more-btn:hover::before {
    left: 100%;
}

.read-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(251, 191, 36, 0.4);
    background: linear-gradient(45deg, #f59e0b, #d97706);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.author-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    overflow: hidden;
}

.testimonial-card:hover .author-avatar {
    transform: scale(1.1);
    border-color: rgba(251, 191, 36, 0.5);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.testimonial-card:hover .author-avatar img {
    transform: scale(1.1);
}

.author-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.4rem;
    letter-spacing: -0.3px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.testimonial-card:hover .author-info h4 {
    color: #fbbf24;
    text-shadow: 0 0 15px rgba(251, 191, 36, 0.5);
}

.author-position {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    transition: all 0.3s ease;
}

.testimonial-card:hover .author-position {
    color: rgba(255, 255, 255, 1);
}

.author-company {
    font-size: 0.8rem;
    color: #fbbf24;
    font-weight: 600;
    margin-top: 0.2rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover .author-company {
    color: #ffffff;
}

/* Enhanced floating animation for cards */
.testimonial-card:nth-child(odd) {
    animation: float 8s ease-in-out infinite;
}

.testimonial-card:nth-child(even) {
    animation: float 8s ease-in-out infinite reverse;
}

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

/* Enhanced responsive design for testimonials */
@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testimonial-card {
        padding: 2rem;
        border-radius: 25px;
        height: auto;
        min-height: 400px;
    }
    
    .testimonials .section-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .author-avatar {
        width: 60px;
        height: 60px;
    }
}

.contactus-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.contactus-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.contactus-item:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 
        0 40px 120px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(233, 69, 96, 0.3);
}

.contactus-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    background: linear-gradient(45deg, #e94560, #533483);
    -webkit-background-clip: text; 
    background-clip: text;
    transition: all 0.4s ease;
}

.contactus-item:hover .contactus-icon {
    transform: scale(1.2) rotate(10deg);
    text-shadow: 0 0 20px rgba(233, 69, 96, 0.5);
}

.contactus-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fbbf24;
}

.contactus-item p {
    font-size: .7rem;
    color: rgba(255, 255, 255, 0.9);
    word-break: break-all;
}

.contactus-item a {
    color: #fbbf24;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contactus-item a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

/* Enhanced Footer */
.footer {
    background: #0f0f23;
    color: rgba(255, 255, 255, 0.8);
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, transparent 20%);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    background: linear-gradient(45deg, #e94560, #533483);
    border-color: rgba(233, 69, 96, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.footer p {
    font-size: 0.9rem;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 968px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .profile-section {
        order: -1;
    }

    .nav-menu {
        display: none;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

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

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

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

    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 2rem !important;
        padding-right: 0 !important;
        text-align: left !important;
    }

    .timeline:before {
        left: 10px;
    }

    .timeline-item .timeline-dot {
        left: 0 !important;
        right: auto !important;
    }

    .section-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }

    .section-subtitle {
        font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    }
}

@media (max-width: 768px) {
    .about {
        padding: 80px 0;
    }

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

    .about-text {
        padding: 2rem;
    }

    .profile-card {
        padding: 2rem 1.5rem;
    }

    .profile-img {
        width: 150px;
        height: 150px;
        font-size: 3rem;
    }

    .stat-card {
        padding: 2rem 1.5rem;
    }

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

    .about-grid {
        gap: 2rem;
    }

    .skills-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contactus-info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .skills-preview {
        justify-content: center;
    }

    .about-text p {
        font-size: 1rem;
    }

    .profile-card h3 {
        font-size: 1.5rem;
    }

    .profile-role {
        font-size: 1rem;
    }

    .cta-buttons-container {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 250px;
    }

    .section-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }

    .about-text {
        padding: 1.5rem;
    }

    .profile-card {
        padding: 1.5rem;
    }

    .stat-card {
        padding: 1.5rem;
    }

    .skill-category {
        padding: 2rem 1.5rem;
    }

    .project-card {
        padding: 2rem 1.5rem;
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    .contactus-item {
        padding: 2rem 1.5rem;
    }
}

.projects > .container,
.experience > .container,
.testimonials > .container {
    position: relative;
    z-index: 2;
}

@media (max-width: 1200px) {
    .contactus-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .contactus-info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Additional Mobile Improvements */
@media (max-width: 768px) {
    /* Improve touch targets */
    .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .btn {
        min-height: 44px;
        touch-action: manipulation;
    }

    /* Better spacing for mobile */
    .hero {
        
        min-height: 90vh;
    }

    .about, .skills, .experience, .projects, .testimonials, .contact {
        padding: 80px 0;
    }

    /* Improve card layouts */
    .project-card, .testimonial-card, .skill-category {
        margin-bottom: 1.5rem;
    }

    /* Better text readability */
    .hero-description, .about-text p, .timeline-description {
        font-size: .9rem;
        line-height: 1.6;
    }

    /* Improve contact grid */
    .contactus-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    /* Better timeline on mobile */
    .timeline-content {
        padding: 1.5rem;
        margin-left: 1rem;
    }

    .timeline:before {
        left: 15px;
    }

    .timeline-dot {
        left: 7.5px !important;
    }
}

@media (max-width: 480px) {
    /* Even better mobile experience */
    .container {
        padding: 0 10px;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .about-text, .profile-card, .stat-card, .skill-category, 
    .project-card, .testimonial-card, .contactus-item {
        padding: 1.5rem;
    }

    .timeline-content {
        padding: 1.2rem;
        margin-left: 0.5rem;
    }

    .timeline:before {
        left: 10px;
    }

    .timeline-dot {
        left: 2.5px !important;
    }

    /* Better button sizing */
    .btn {
        width: 100%;
        max-width: 280px;
        margin: -16px auto
    }

    /* Improve social links */
    .social-links {
        gap: 1rem;
    }

    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

/* Landscape orientation improvements */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: 2rem 0;
    }

    .hero-content h1 {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-subtitle {
        font-size: clamp(0.9rem, 4vw, 1.2rem);
    }

    .hero-description {
        font-size: clamp(0.8rem, 3vw, 1rem);
    }

    .cta-buttons-container {
        position: relative;
        bottom: auto;
        margin-top: 2rem;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hamburger-menu span {
        height: 2px;
    }
}

.about .section-title {
    text-align: center;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 2;
    background: linear-gradient(45deg, #ffffff, #e94560, #533483, #fbbf24, #ffffff);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

.about .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #e94560, #533483, #fbbf24, transparent);
    border-radius: 2px;
    animation: expandWidth 2.5s ease-out forwards;
}

.skills .section-title {
    text-align: center;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 4rem;
    color: white;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
    background: linear-gradient(45deg, #ffffff, #e94560, #533483, #fbbf24, #ffffff);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

.skills .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #e94560, #533483, #fbbf24, transparent);
    border-radius: 2px;
    animation: expandWidth 2.5s ease-out forwards;
}

/* Enhanced Contact Section */
.contact {
    padding: 120px 0;
    background: linear-gradient(135deg, 
        #0f0f23 0%, 
        #1a1a2e 25%, 
        #16213e 50%, 
        #0f3460 75%, 
        #533483 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(83, 52, 131, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(251, 191, 36, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(83, 52, 131, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
    opacity: 0.6;
}

.contact .section-title {
    text-align: center;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 4rem;
    color: white;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
    background: linear-gradient(45deg, #ffffff, #e94560, #533483, #fbbf24, #ffffff);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

.contact .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #e94560, #533483, #fbbf24, transparent);
    border-radius: 2px;
    animation: expandWidth 2.5s ease-out forwards;
}

.hero-content h1 {
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.5);
    background: linear-gradient(45deg, #ff6b6b, #f9d74c, #ff6b6b);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
    position: relative;
}

.hero-subtitle {
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Amr Ebied - Full Stack .NET Developer</title>
<link rel="icon" href="amr_ebied_logo.svg" type="image/svg+xml">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap" rel="stylesheet">
<style>
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold-primary: #fbbf24;
    --gold-secondary: #f59e0b;
    --gold-dark: #d97706;
    --dark-primary: #1f2937;
    --dark-secondary: #111827;
    --gold-gradient: linear-gradient(45deg, #fbbf24, #f59e0b, #d97706);
    --dark-gradient: linear-gradient(135deg, #1f2937, #111827);
}

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

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

 
/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    width: 30px;
    height: 25px;
    justify-content: space-between;
}

.hamburger-menu span {
    display: block;
    height: 3px;
    width: 100%;
    background: #333;
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 1000;
        display: flex; /* Ensure menu is display flex */
    }

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

    .nav-menu li {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-menu li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu li:nth-child(2) { transition-delay: 0.2s; }
    .nav-menu li:nth-child(3) { transition-delay: 0.3s; }
    .nav-menu li:nth-child(4) { transition-delay: 0.4s; }
    .nav-menu li:nth-child(5) { transition-delay: 0.5s; }
    .nav-menu li:nth-child(6) { transition-delay: 0.6s; }

    .nav-link {
        font-size: 1.2rem;
        font-weight: 600;
        padding: 1rem 2rem;
        border-radius: 10px;
        transition: all 0.3s ease;
    }

    .nav-link:hover {
        background: var(--gold-gradient);
        color: white;
        transform: scale(1.05);
    }
}

/* Hero Section - Redesigned */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #4c247d 0%, #a23b72 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    margin-top: 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(233, 69, 96, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(83, 52, 131, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(15, 52, 96, 0.08) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite alternate;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: 
        conic-gradient(from 0deg at 50% 50%, 
            rgba(233, 69, 96, 0.1) 0deg, 
            transparent 60deg, 
            rgba(83, 52, 131, 0.05) 120deg, 
            transparent 180deg, 
            rgba(233, 69, 96, 0.1) 240deg, 
            transparent 300deg, 
            rgba(83, 52, 131, 0.05) 360deg);
    animation: rotate 20s linear infinite;
}

/* About Section - Redesigned */
.about {
     
    background: linear-gradient(135deg, 
        #0f0f23 0%, 
        #1a1a2e 25%, 
        #16213e 50%, 
        #0f3460 75%, 
        #533483 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(83, 52, 131, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(251, 191, 36, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(83, 52, 131, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
    opacity: 0.6;
}

/* Skills Section */
.skills {
    padding: 120px 0;
    background: linear-gradient(135deg, 
        #0f0f23 0%, 
        #1a1a2e 25%, 
        #16213e 50%, 
        #0f3460 75%, 
        #533483 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.skills::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(83, 52, 131, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(251, 191, 36, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(83, 52, 131, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
    opacity: 0.6;
}

/* Experience Section - Updated to match contact section style */
.experience {
    padding: 120px 0;
    background: linear-gradient(135deg, 
        #0f0f23 0%, 
        #1a1a2e 25%, 
        #16213e 50%, 
        #0f3460 75%, 
        #533483 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.experience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(83, 52, 131, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(251, 191, 36, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(83, 52, 131, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
    opacity: 0.6;
}

/* Projects Section - Updated to match contact section style */
.projects {
    padding: 120px 0;
    background: linear-gradient(135deg, 
        #0f0f23 0%, 
        #1a1a2e 25%, 
        #16213e 50%, 
        #0f3460 75%, 
        #533483 100%);
    color: white;
    overflow: hidden;
}

.projects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(83, 52, 131, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(251, 191, 36, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(83, 52, 131, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
    opacity: 0.6;
}

/* Testimonials Section - Updated to match contact section style */
.testimonials {
    padding: 120px 0;
    background: linear-gradient(135deg, 
        #0f0f23 0%, 
        #1a1a2e 25%, 
        #16213e 50%, 
        #0f3460 75%, 
        #533483 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(83, 52, 131, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(251, 191, 36, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(83, 52, 131, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
    opacity: 0.6;
}

/* Update section titles to match contact section style */
.section-title {
    text-align: center;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
    background: linear-gradient(45deg, #ffffff, #e94560, #533483, #fbbf24, #ffffff);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #e94560, #533483, #fbbf24, transparent);
    border-radius: 2px;
    animation: expandWidth 2.5s ease-out forwards;
}

.section-subtitle {
    text-align: center;
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 4rem;
    font-weight: 400;
    position: relative;
    z-index: 2;
    letter-spacing: 1px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* Update all containers to have proper z-index */
.about > .container,
.skills > .container,
.experience > .container,
.projects > .container,
.testimonials > .container,
.contact > .container {
    position: relative;
    z-index: 2;
}

/* Update about text styling to match contact section */
.about-text {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px);
    padding: 2.5rem;
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Update profile card styling to match contact section */
.profile-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(30px);
    padding: 3rem 2.5rem;
    border-radius: 30px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-align: center;
    border: 3px solid rgba(255, 255, 255, 0.2);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 400px;
}

/* Update stat cards styling to match contact section */
.stat-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(25px);
    padding: 3rem 2rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.18);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Update skill categories styling to match contact section */
.skill-category {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Update timeline content styling to match contact section */
.timeline-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

/* Update project cards styling to match contact section */
.project-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transform: translateY(0);
}

/* Update testimonial cards styling to match contact section */
.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 450px;
    overflow: hidden;
    transform: translateY(50px);
    animation: slideInUp 0.8s ease-out forwards;
}

/* Update contact info styling to match contact section */
.contact-info {
    background: rgba(255, 255, 255, 0.08);
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    position: relative;
    z-index: 2;
}

/* Update skills preview styling to match contact section */
.skills-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.skill-tag {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.85rem;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Update contact items styling to match contact section */
.contactus-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

/* Update contact icon styling to match contact section */
.contactus-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    background: linear-gradient(45deg, #e94560, #533483);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.4s ease;
}

/* Update contact item headings to match contact section */
.contactus-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fbbf24;
}

/* Update contact item text to match contact section */
.contactus-item p {
    font-size: .7rem;
    color: rgba(255, 255, 255, 0.9);
    word-break: break-all;
}

/* Update contact item links to match contact section */
.contactus-item a {
    color: #fbbf24;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contactus-item a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

/* Floating elements for visual interest */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(233, 69, 96, 0.6);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

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

.floating-element:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

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

.floating-element:nth-child(4) {
    top: 40%;
    right: 30%;
    animation-delay: 1s;
}

.floating-element:nth-child(5) {
    bottom: 60%;
    left: 60%;
    animation-delay: 3s;
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: clamp(2.5rem, 10vw, 4rem);
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.4rem);
    }

    .hero-description {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
        padding: 1.5rem;
    }

    .cta-buttons-container {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        bottom: 30px;
    }

    .btn {
        width: 280px;
        justify-content: center;
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: clamp(2rem, 12vw, 3rem);
    }

    .hero-subtitle {
        font-size: clamp(0.9rem, 5vw, 1.2rem);
    }

    .hero-description {
        font-size: clamp(0.8rem, 4vw, 1rem);
        padding: 1rem;
    }

    .cta-buttons-container {
        bottom: -32px;
    }

    .btn {
        width: 250px;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

.about-container {
    position: relative;
    z-index: 2;
}

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

.about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s;
}

.about-text:hover::before {
    left: 100%;
}

.about-text:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.25);
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.about-text p:last-child {
    margin-bottom: 0;
}

.highlight-text {
         color: #F5F5DC;
         font-weight: 600;
         text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
         background: linear-gradient(45deg, #DEB887, #CD853F);
         -webkit-background-clip: text; 
   }

.profile-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.profile-card::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, 
        #8B7355, #A0522D, #8B4513, #654321, 
        #DEB887, #CD853F, #D2691E, #8B4513);
    border-radius: 30px;
    z-index: -1;
    animation: borderGlow 4s ease-in-out infinite alternate;
    background-size: 400% 400%;
}

@keyframes borderGlow {
    0% { 
        opacity: 0.6;
        background-position: 0% 50%;
    }
    50% {
        opacity: 0.8;
        background-position: 100% 50%;
    }
    100% { 
        opacity: 0.6;
        background-position: 0% 50%;
    }
}

.profile-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 
        0 40px 120px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.35);
}

.profile-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, 
        #8B7355 0%, #A0522D 50%, #8B4513 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    margin: 0 auto 2rem;
    font-weight: 800;
    border: 6px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.15);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.profile-img::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, 
        transparent, rgba(255, 255, 255, 0.08), transparent, 
        rgba(255, 255, 255, 0.03), transparent);
    animation: rotate 8s linear infinite;
}

.profile-img:hover {
    transform: scale(1.08) rotate(5deg);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.5),
        inset 0 2px 0 rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.45);
}

.profile-card h3 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 2;
}

.profile-role {
    color: #DEB887;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 2;
}

.profile-location {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.contact-info {
    background: rgba(255, 255, 255, 0.08);
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    position: relative;
    z-index: 2;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

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

.contact-item a {
    color: #DEB887;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.contact-item a:hover {
    color: #CD853F;
    text-shadow: 0 0 10px rgba(205, 133, 63, 0.5);
}

.contact-icon {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
    filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.3));
}

/* Skills Tags */
.skills-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.skill-tag {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.85rem;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.skill-tag:hover {
    background: rgba(205, 133, 63, 0.25);
    border-color: rgba(205, 133, 63, 0.5);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(205, 133, 63, 0.3);
}

/* Stats Grid - Enhanced */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(25px);
    padding: 3rem 2rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.18);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 
        0 35px 100px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(139, 115, 85, 0.5);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.4));
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #DEB887;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
    background: linear-gradient(45deg, #DEB887, #CD853F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.stat-description {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.85rem;
    margin-top: 0.5rem;
    font-weight: 400;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in-delay-1 { animation-delay: 0.2s; }
.fade-in-delay-2 { animation-delay: 0.4s; }
.fade-in-delay-3 { animation-delay: 0.6s; }

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

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

.skill-category {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.skill-category:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 
        0 40px 120px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(233, 69, 96, 0.3);
}

.skill-category h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    color: #fbbf24;
    text-shadow: 0 0 15px rgba(251, 191, 36, 0.4);
    border-bottom: 2px solid rgba(251, 191, 36, 0.2);
    padding-bottom: 1rem;
}

.skill-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.skill-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.skill-list li:hover {
    background: rgba(251, 191, 36, 0.1);
    padding-left: 1rem;
    border-radius: 10px;
}

.skill-list li:last-child {
    border-bottom: none;
}

.skill-list li::before {
    content: '✨';
    color: #fbbf24;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.skill-list li:hover::before {
    transform: scale(1.2) rotate(15deg);
}

/* Experience Section - Redesigned */
.experience {
    padding: 120px 0;
    background: linear-gradient(135deg, 
        #0f0f23 0%, 
        #1a1a2e 25%, 
        #16213e 50%, 
        #0f3460 75%, 
        #533483 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.experience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(83, 52, 131, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(251, 191, 36, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(83, 52, 131, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
    opacity: 0.6;
}

.experience::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: 
        conic-gradient(from 0deg at 50% 50%, 
            rgba(102, 126, 234, 0.05) 0deg, 
            transparent 60deg, 
            rgba(245, 87, 108, 0.03) 120deg, 
            transparent 180deg, 
            rgba(240, 147, 251, 0.05) 240deg, 
            transparent 300deg, 
            rgba(79, 172, 254, 0.03) 360deg);
    animation: rotate 30s linear infinite;
}

/* Floating particles effect for experience */
.experience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(83, 52, 131, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(251, 191, 36, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(83, 52, 131, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
    opacity: 0.6;
}

.experience .section-title {
    text-align: center;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
    background: linear-gradient(45deg, #ffffff, #e94560, #533483, #fbbf24, #ffffff);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

.experience .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #e94560, #533483, #fbbf24, transparent);
    border-radius: 2px;
    animation: expandWidth 2.5s ease-out forwards;
}

.timeline {
    max-width: 1200px;
    margin: 4rem auto 0;
    position: relative;
    z-index: 2;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, 
        #667eea 0%, 
        #f093fb 25%, 
        #f5576c 50%, 
        #4facfe 75%, 
        #667eea 100%);
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.5);
    animation: timelineGlow 3s ease-in-out infinite alternate;
}

@keyframes timelineGlow {
    0% { box-shadow: 0 0 20px rgba(102, 126, 234, 0.5); }
    100% { box-shadow: 0 0 30px rgba(240, 147, 251, 0.8); }
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    width: 50%;
    opacity: 0;
    transform: translateY(50px);
    animation: slideInUp 0.8s ease-out forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.3s; }
.timeline-item:nth-child(3) { animation-delay: 0.5s; }
.timeline-item:nth-child(4) { animation-delay: 0.7s; }
.timeline-item:nth-child(5) { animation-delay: 0.9s; }

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

.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 3rem;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 3rem;
}

.timeline-content:hover::before {
    opacity: 1;
}

.timeline-content:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 35px 100px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(102, 126, 234, 0.4);
}

.timeline-date {
    color: #fbbf24;
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(251, 191, 36, 0.15);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(251, 191, 36, 0.3);
    display: inline-block;
    transition: all 0.3s ease;
}

.timeline-content:hover .timeline-date {
    background: rgba(251, 191, 36, 0.25);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(251, 191, 36, 0.3);
}

.timeline-title {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    color: white;
    letter-spacing: -0.5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.timeline-content:hover .timeline-title {
    color: #fbbf24;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
}

.timeline-company {
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin-bottom: 1.5rem;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.timeline-content:hover .timeline-company {
    color: rgba(255, 255, 255, 1);
}

.timeline-description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    font-size: 0.95rem;
    font-weight: 400;
    transition: all 0.3s ease;
}

.timeline-description ul {
    margin-top: 1rem;
    padding-left: 1.2rem;
}

.timeline-description li {
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
    position: relative;
    transition: all 0.3s ease;
}

.timeline-description li::before {
    content: '▸';
    color: #fbbf24;
    font-weight: bold;
    position: absolute;
    left: -1.2rem;
    transition: all 0.3s ease;
}

.timeline-content:hover .timeline-description li::before {
    transform: scale(1.2);
    color: #ffffff;
}

.timeline-dot {
    position: absolute;
    width: 25px;
    height: 25px;
    background: linear-gradient(45deg, #667eea, #f093fb, #f5576c);
    border-radius: 50%;
    top: 2.5rem;
    border: 4px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 0 0 4px rgba(102, 126, 234, 0.3),
        0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    z-index: 3;
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -12.5px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -12.5px;
}

.timeline-content:hover + .timeline-dot,
.timeline-content:hover ~ .timeline-dot {
    transform: scale(1.3);
    box-shadow: 
        0 0 0 6px rgba(102, 126, 234, 0.4),
        0 15px 40px rgba(0, 0, 0, 0.4);
    background: linear-gradient(45deg, #fbbf24, #f093fb, #f5576c);
}

/* Responsive design for timeline */
@media (max-width: 768px) {
    .timeline:before {
        left: 30px;
    }
    
    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 4rem !important;
        padding-right: 1rem !important;
        text-align: left !important;
    }
    
    .timeline-dot {
        left: 17.5px !important;
        right: auto !important;
    }
    
    .timeline-content {
        padding: 2rem;
        border-radius: 20px;
    }
    
    .experience .section-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
}

/* Projects Section - Redesigned */
.projects {
    padding: 120px 0;
    background: linear-gradient(135deg, 
        #0f0f23 0%, 
        #1a1a2e 25%, 
        #16213e 50%, 
        #0f3460 75%, 
        #533483 100%);
    color: white;
    overflow: hidden;
}

.projects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(83, 52, 131, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(251, 191, 36, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(83, 52, 131, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
    opacity: 0.6;
}

.projects::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: 
        conic-gradient(from 0deg at 50% 50%, 
            rgba(233, 69, 96, 0.05) 0deg, 
            transparent 60deg, 
            rgba(83, 52, 131, 0.03) 120deg, 
            transparent 180deg, 
            rgba(233, 69, 96, 0.05) 240deg, 
            transparent 300deg, 
            rgba(83, 52, 131, 0.03) 360deg);
    animation: rotate 30s linear infinite;
}

/* Floating particles effect */
.projects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(83, 52, 131, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(251, 191, 36, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(83, 52, 131, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
    opacity: 0.6;
}

@keyframes sparkle {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-100px); }
}

.projects .section-title {
    text-align: center;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
    background: linear-gradient(45deg, #ffffff, #e94560, #533483, #fbbf24, #ffffff);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

.projects .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #e94560, #533483, #fbbf24, transparent);
    border-radius: 2px;
    animation: expandWidth 2.5s ease-out forwards;
}

.projects .section-subtitle {
    text-align: center;
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 5rem;
    font-weight: 400;
    position: relative;
    z-index: 2;
    letter-spacing: 1px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

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

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

.project-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transform: translateY(0);
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(233, 69, 96, 0.1) 0%, 
        rgba(83, 52, 131, 0.1) 50%, 
        rgba(15, 52, 96, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 30px;
}

.project-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        #e94560, #533483, #0f3460, #fbbf24, #e94560);
    border-radius: 30px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
    background-size: 400% 400%;
    animation: borderGradient 3s ease infinite;
}

@keyframes borderGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

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

.project-card:hover::after {
    opacity: 0.8;
}

.project-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: 
        0 40px 120px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(233, 69, 96, 0.3);
}

.project-category {
    color: #e94560;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: rgba(233, 69, 96, 0.15);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    border: 1px solid rgba(233, 69, 96, 0.3);
    display: inline-block;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.project-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(233, 69, 96, 0.2), transparent);
    transition: left 0.6s ease;
}

.project-card:hover .project-category::before {
    left: 100%;
}

.project-card:hover .project-category {
    background: rgba(233, 69, 96, 0.25);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(233, 69, 96, 0.3);
}

.project-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.3;
    transition: all 0.3s ease;
}

.project-card:hover .project-title {
    color: #fbbf24;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
}

.project-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 1.05rem;
    font-weight: 400;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.project-description a {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: #fbbf24;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 1rem 2rem;
    background: rgba(251, 191, 36, 0.1);
    border: 2px solid rgba(251, 191, 36, 0.3);
    border-radius: 30px;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.project-description a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.2), transparent);
    transition: left 0.6s ease;
}

.project-description a:hover::before {
    left: 100%;
}

.project-description a:hover {
    background: rgba(251, 191, 36, 0.2);
    border-color: rgba(251, 191, 36, 0.6);
    transform: translateY(-3px);
    box-shadow: 
        0 15px 35px rgba(251, 191, 36, 0.3),
        0 0 20px rgba(251, 191, 36, 0.2);
    color: #ffffff;
}

.project-description a::after {
    content: '↗';
    font-size: 1.2rem;
    font-weight: 800;
    transition: all 0.3s ease;
}

.project-description a:hover::after {
    transform: translate(3px, -3px) rotate(15deg);
}

/* Floating animation for cards */
.project-card:nth-child(odd) {
    animation: float 6s ease-in-out infinite;
}

.project-card:nth-child(even) {
    animation: float 6s ease-in-out infinite reverse;
}

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

/* Enhanced hover effects */
.project-card:hover .project-category {
    animation: pulse 1s ease-in-out infinite alternate;
}

/* Responsive adjustments */
<!DOCTYPE html>
<html lang="en">
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Amr Ebied - Full Stack .NET Developer</title>
<link rel="icon" href="amr_ebied_logo.svg" type="image/svg+xml">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap" rel="stylesheet">
<style>
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold-primary: #fbbf24;
    --gold-secondary: #f59e0b;
    --gold-dark: #d97706;
    --dark-primary: #1f2937;
    --dark-secondary: #111827;
    --gold-gradient: linear-gradient(45deg, #fbbf24, #f59e0b, #d97706);
    --dark-gradient: linear-gradient(135deg, #1f2937, #111827);
}

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

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

 

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    width: 30px;
    height: 25px;
    justify-content: space-between;
}

.hamburger-menu span {
    display: block;
    height: 3px;
    width: 100%;
    background: #333;
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 1000;
        display: flex; /* Ensure menu is display flex */
    }

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

    .nav-menu li {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-menu li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu li:nth-child(2) { transition-delay: 0.2s; }
    .nav-menu li:nth-child(3) { transition-delay: 0.3s; }
    .nav-menu li:nth-child(4) { transition-delay: 0.4s; }
    .nav-menu li:nth-child(5) { transition-delay: 0.5s; }
    .nav-menu li:nth-child(6) { transition-delay: 0.6s; }

    .nav-link {
        font-size: 1.2rem;
        font-weight: 600;
        padding: 1rem 2rem;
        border-radius: 10px;
        transition: all 0.3s ease;
    }

    .nav-link:hover {
        background: var(--gold-gradient);
        color: white;
        transform: scale(1.05);
    }
}

/* Hero Section - Redesigned */
/* Hero Section - Redesigned */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, 
        #1a1a2e 0%, 
        #16213e 25%, 
        #0f3460 50%, 
        #533483 75%, 
        #e94560 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    margin-top: 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(233, 69, 96, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(83, 52, 131, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(15, 52, 96, 0.08) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite alternate;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: 
        conic-gradient(from 0deg at 50% 50%, 
            rgba(233, 69, 96, 0.1) 0deg, 
            transparent 60deg, 
            rgba(83, 52, 131, 0.05) 120deg, 
            transparent 180deg, 
            rgba(233, 69, 96, 0.1) 240deg, 
            transparent 300deg, 
            rgba(83, 52, 131, 0.05) 360deg);
    animation: rotate 20s linear infinite;
}

@keyframes pulse {
    0% { opacity: 0.6; }
    100% { opacity: 1; }
}

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

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 900;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.5);
    background: linear-gradient(45deg, #ffffff, #e94560, #533483, #ffffff);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
    position: relative;
}

.hero-content h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #e94560, transparent);
    border-radius: 2px;
    animation: expandWidth 2s ease-out forwards;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes expandWidth {
    from { width: 0; }
    to { width: 150px; }
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 600;
    color: #DEB887;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
    margin-bottom: 1.5rem;
}

.hero-subtitle::before {
    content: '👨‍💻';
    display: block;
    font-size: 2rem;
    margin-bottom: 1rem;
    animation: bounce 2s ease-in-out infinite;
}

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

.hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-description::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 3rem;
    color: #e94560;
    font-family: 'Georgia', serif;
    opacity: 0.6;
}

.cta-buttons-container {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1.5rem;
    z-index: 2;
}

.btn {
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(45deg, #e94560, #533483);
    color: white;
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.4);
    border: 2px solid rgba(233, 69, 96, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(45deg, #d63384, #6f42c1);
    border-color: rgba(233, 69, 96, 0.6);
    box-shadow: 0 15px 35px rgba(233, 69, 96, 0.5);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.2);
}

/* Floating elements for visual interest */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(233, 69, 96, 0.6);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

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

.floating-element:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

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

.floating-element:nth-child(4) {
    top: 40%;
    right: 30%;
    animation-delay: 1s;
}

.floating-element:nth-child(5) {
    bottom: 60%;
    left: 60%;
    animation-delay: 3s;
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: clamp(2.5rem, 10vw, 4rem);
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.4rem);
    }

    .hero-description {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
        padding: 1.5rem;
    }

    .cta-buttons-container {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn {
        width: 280px;
        justify-content: center;
    }
}

/* About Section - Redesigned */
.about {
    
    background: linear-gradient(135deg, 
        #0f0f23 0%, 
        #1a1a2e 25%, 
        #16213e 50%, 
        #0f3460 75%, 
        #533483 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(83, 52, 131, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(251, 191, 36, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(83, 52, 131, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
    opacity: 0.6;
}

/* Skills Section */
.skills {
    padding: 120px 0;
    background: linear-gradient(135deg, 
        #0f0f23 0%, 
        #1a1a2e 25%, 
        #16213e 50%, 
        #0f3460 75%, 
        #533483 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.skills::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(83, 52, 131, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(251, 191, 36, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(83, 52, 131, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
    opacity: 0.6;
}

/* Experience Section - Updated to match contact section style */
.experience {
  
    background: linear-gradient(135deg, 
        #0f0f23 0%, 
        #1a1a2e 25%, 
        #16213e 50%, 
        #0f3460 75%, 
        #533483 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.experience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(83, 52, 131, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(251, 191, 36, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(83, 52, 131, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
    opacity: 0.6;
}

/* Projects Section - Updated to match contact section style */
.projects {
    padding: 120px 0;
    background: linear-gradient(135deg, 
        #0f0f23 0%, 
        #1a1a2e 25%, 
        #16213e 50%, 
        #0f3460 75%, 
        #533483 100%);
    color: white;
    overflow: hidden;
}

.projects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(83, 52, 131, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(251, 191, 36, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(83, 52, 131, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
    opacity: 0.6;
}

/* Testimonials Section - Updated to match contact section style */
.testimonials {
    padding: 120px 0;
    background: linear-gradient(135deg, 
        #0f0f23 0%, 
        #1a1a2e 25%, 
        #16213e 50%, 
        #0f3460 75%, 
        #533483 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(83, 52, 131, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(251, 191, 36, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(83, 52, 131, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
    opacity: 0.6;
}

/* Update section titles to match contact section style */
.section-title {
    text-align: center;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
    background: linear-gradient(45deg, #ffffff, #e94560, #533483, #fbbf24, #ffffff);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #e94560, #533483, #fbbf24, transparent);
    border-radius: 2px;
    animation: expandWidth 2.5s ease-out forwards;
}

.section-subtitle {
    text-align: center;
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 4rem;
    font-weight: 400;
    position: relative;
    z-index: 2;
    letter-spacing: 1px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* Update all containers to have proper z-index */
.about > .container,
.skills > .container,
.experience > .container,
.projects > .container,
.testimonials > .container,
.contact > .container {
    position: relative;
    z-index: 2;
}

/* Update about text styling to match contact section */
.about-text {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px);
    padding: 2.5rem;
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Update profile card styling to match contact section */
.profile-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(30px);
    padding: 3rem 2.5rem;
    border-radius: 30px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-align: center;
    border: 3px solid rgba(255, 255, 255, 0.2);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 400px;
}

/* Update stat cards styling to match contact section */
.stat-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(25px);
    padding: 3rem 2rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.18);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Update skill categories styling to match contact section */
.skill-category {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Update timeline content styling to match contact section */
.timeline-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

/* Update project cards styling to match contact section */
.project-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transform: translateY(0);
}

/* Update testimonial cards styling to match contact section */
.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 450px;
    overflow: hidden;
    transform: translateY(50px);
    animation: slideInUp 0.8s ease-out forwards;
}

/* Update contact info styling to match contact section */
.contact-info {
    background: rgba(255, 255, 255, 0.08);
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    position: relative;
    z-index: 2;
}

/* Update skills preview styling to match contact section */
.skills-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.skill-tag {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.85rem;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Update contact items styling to match contact section */
.contactus-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

/* Update contact icon styling to match contact section */
.contactus-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    background: linear-gradient(45deg, #e94560, #533483);
    -webkit-background-clip: text; 
    background-clip: text;
    transition: all 0.4s ease;
}

/* Update contact item headings to match contact section */
.contactus-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fbbf24;
}

/* Update contact item text to match contact section */
.contactus-item p {
    font-size: .7rem;
    color: rgba(255, 255, 255, 0.9);
    word-break: break-all;
}

/* Update contact item links to match contact section */
.contactus-item a {
    color: #fbbf24;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contactus-item a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

/* Floating elements for visual interest */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(233, 69, 96, 0.6);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

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

.floating-element:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

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

.floating-element:nth-child(4) {
    top: 40%;
    right: 30%;
    animation-delay: 1s;
}

.floating-element:nth-child(5) {
    bottom: 60%;
    left: 60%;
    animation-delay: 3s;
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: clamp(2.5rem, 10vw, 4rem);
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.4rem);
    }

    .hero-description {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
        padding: 1.5rem;
    }

    .cta-buttons-container {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        bottom: 30px;
    }

    .btn {
        width: 280px;
        justify-content: center;
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: clamp(2rem, 12vw, 3rem);
    }

    .hero-subtitle {
        font-size: clamp(0.9rem, 5vw, 1.2rem);
    }

    .hero-description {
        font-size: clamp(0.8rem, 4vw, 1rem);
        padding: 1rem;
    }

    .cta-buttons-container {
        bottom: -32px;
    }

    .btn {
        width: 250px;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

.about-container {
    position: relative;
    z-index: 2;
}

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

.about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s;
}

.about-text:hover::before {
    left: 100%;
}

.about-text:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.25);
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.about-text p:last-child {
    margin-bottom: 0;
}

.highlight-text {
         color: #F5F5DC;
         font-weight: 600;
         text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
         background: linear-gradient(45deg, #DEB887, #CD853F);
         -webkit-background-clip: text; 
   }

.profile-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.profile-card::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, 
        #8B7355, #A0522D, #8B4513, #654321, 
        #DEB887, #CD853F, #D2691E, #8B4513);
    border-radius: 30px;
    z-index: -1;
    animation: borderGlow 4s ease-in-out infinite alternate;
    background-size: 400% 400%;
}

@keyframes borderGlow {
    0% { 
        opacity: 0.6;
        background-position: 0% 50%;
    }
    50% {
        opacity: 0.8;
        background-position: 100% 50%;
    }
    100% { 
        opacity: 0.6;
        background-position: 0% 50%;
    }
}

.profile-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 
        0 40px 120px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.35);
}

.profile-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, 
        #8B7355 0%, #A0522D 50%, #8B4513 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    margin: 0 auto 2rem;
    font-weight: 800;
    border: 6px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.15);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.profile-img::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, 
        transparent, rgba(255, 255, 255, 0.08), transparent, 
        rgba(255, 255, 255, 0.03), transparent);
    animation: rotate 8s linear infinite;
}

.profile-img:hover {
    transform: scale(1.08) rotate(5deg);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.5),
        inset 0 2px 0 rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.45);
}

.profile-card h3 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 2;
}

.profile-role {
    color: #DEB887;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 2;
}

.profile-location {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.contact-info {
    background: rgba(255, 255, 255, 0.08);
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    position: relative;
    z-index: 2;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

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

.contact-item a {
    color: #DEB887;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.contact-item a:hover {
    color: #CD853F;
    text-shadow: 0 0 10px rgba(205, 133, 63, 0.5);
}

.contact-icon {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
    filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.3));
}

/* Skills Tags */
.skills-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.skill-tag {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.85rem;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.skill-tag:hover {
    background: rgba(205, 133, 63, 0.25);
    border-color: rgba(205, 133, 63, 0.5);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(205, 133, 63, 0.3);
}

/* Stats Grid - Enhanced */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(25px);
    padding: 3rem 2rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.18);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 
        0 35px 100px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(139, 115, 85, 0.5);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.4));
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #DEB887;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
    background: linear-gradient(45deg, #DEB887, #CD853F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.stat-description {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.85rem;
    margin-top: 0.5rem;
    font-weight: 400;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in-delay-1 { animation-delay: 0.2s; }
.fade-in-delay-2 { animation-delay: 0.4s; }
.fade-in-delay-3 { animation-delay: 0.6s; }

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

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

.skill-category {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.skill-category:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 
        0 40px 120px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(233, 69, 96, 0.3);
}

.skill-category h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    color: #fbbf24;
    text-shadow: 0 0 15px rgba(251, 191, 36, 0.4);
    border-bottom: 2px solid rgba(251, 191, 36, 0.2);
    padding-bottom: 1rem;
}

.skill-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.skill-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.skill-list li:hover {
    background: rgba(251, 191, 36, 0.1);
    padding-left: 1rem;
    border-radius: 10px;
}

.skill-list li:last-child {
    border-bottom: none;
}

.skill-list li::before {
    content: '✨';
    color: #fbbf24;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.skill-list li:hover::before {
    transform: scale(1.2) rotate(15deg);
}

/* Experience Section - Redesigned */
.experience {
    padding: 120px 0;
    background: linear-gradient(135deg, 
        #0f0f23 0%, 
        #1a1a2e 25%, 
        #16213e 50%, 
        #0f3460 75%, 
        #533483 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.experience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(83, 52, 131, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(251, 191, 36, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(83, 52, 131, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
    opacity: 0.6;
}

.experience::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: 
        conic-gradient(from 0deg at 50% 50%, 
            rgba(102, 126, 234, 0.05) 0deg, 
            transparent 60deg, 
            rgba(245, 87, 108, 0.03) 120deg, 
            transparent 180deg, 
            rgba(240, 147, 251, 0.05) 240deg, 
            transparent 300deg, 
            rgba(79, 172, 254, 0.03) 360deg);
    animation: rotate 30s linear infinite;
}

/* Floating particles effect for experience */
.experience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(83, 52, 131, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(251, 191, 36, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(83, 52, 131, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
    opacity: 0.6;
}

.experience .section-title {
    text-align: center;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
    background: linear-gradient(45deg, #ffffff, #e94560, #533483, #fbbf24, #ffffff);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

.experience .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #e94560, #533483, #fbbf24, transparent);
    border-radius: 2px;
    animation: expandWidth 2.5s ease-out forwards;
}

.timeline {
    max-width: 1200px;
    margin: 4rem auto 0;
    position: relative;
    z-index: 2;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, 
        #667eea 0%, 
        #f093fb 25%, 
        #f5576c 50%, 
        #4facfe 75%, 
        #667eea 100%);
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.5);
    animation: timelineGlow 3s ease-in-out infinite alternate;
}

@keyframes timelineGlow {
    0% { box-shadow: 0 0 20px rgba(102, 126, 234, 0.5); }
    100% { box-shadow: 0 0 30px rgba(240, 147, 251, 0.8); }
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    width: 50%;
    opacity: 0;
    transform: translateY(50px);
    animation: slideInUp 0.8s ease-out forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.3s; }
.timeline-item:nth-child(3) { animation-delay: 0.5s; }
.timeline-item:nth-child(4) { animation-delay: 0.7s; }
.timeline-item:nth-child(5) { animation-delay: 0.9s; }

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

.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 3rem;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 3rem;
}

.timeline-content:hover::before {
    opacity: 1;
}

.timeline-content:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 35px 100px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(102, 126, 234, 0.4);
}

.timeline-date {
    color: #fbbf24;
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(251, 191, 36, 0.15);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(251, 191, 36, 0.3);
    display: inline-block;
    transition: all 0.3s ease;
}

.timeline-content:hover .timeline-date {
    background: rgba(251, 191, 36, 0.25);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(251, 191, 36, 0.3);
}

.timeline-title {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    color: white;
    letter-spacing: -0.5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.timeline-content:hover .timeline-title {
    color: #fbbf24;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
}

.timeline-company {
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin-bottom: 1.5rem;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.timeline-content:hover .timeline-company {
    color: rgba(255, 255, 255, 1);
}

.timeline-description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    font-size: 0.95rem;
    font-weight: 400;
    transition: all 0.3s ease;
}

.timeline-description ul {
    margin-top: 1rem;
    padding-left: 1.2rem;
}

.timeline-description li {
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
    position: relative;
    transition: all 0.3s ease;
}

.timeline-description li::before {
    content: '▸';
    color: #fbbf24;
    font-weight: bold;
    position: absolute;
    left: -1.2rem;
    transition: all 0.3s ease;
}

.timeline-content:hover .timeline-description li::before {
    transform: scale(1.2);
    color: #ffffff;
}

.timeline-dot {
    position: absolute;
    width: 25px;
    height: 25px;
    background: linear-gradient(45deg, #667eea, #f093fb, #f5576c);
    border-radius: 50%;
    top: 2.5rem;
    border: 4px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 0 0 4px rgba(102, 126, 234, 0.3),
        0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    z-index: 3;
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -12.5px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -12.5px;
}

.timeline-content:hover + .timeline-dot,
.timeline-content:hover ~ .timeline-dot {
    transform: scale(1.3);
    box-shadow: 
        0 0 0 6px rgba(102, 126, 234, 0.4),
        0 15px 40px rgba(0, 0, 0, 0.4);
    background: linear-gradient(45deg, #fbbf24, #f093fb, #f5576c);
}

/* Responsive design for timeline */
@media (max-width: 768px) {
    .timeline:before {
        left: 30px;
    }
    
    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 4rem !important;
        padding-right: 1rem !important;
        text-align: left !important;
    }
    
    .timeline-dot {
        left: 17.5px !important;
        right: auto !important;
    }
    
    .timeline-content {
        padding: 2rem;
        border-radius: 20px;
    }
    
    .experience .section-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
}

/* Projects Section - Redesigned */
.projects {
    padding: 120px 0;
    background: linear-gradient(135deg, 
        #0f0f23 0%, 
        #1a1a2e 25%, 
        #16213e 50%, 
        #0f3460 75%, 
        #533483 100%);
    color: white;
    overflow: hidden;
}

.projects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(83, 52, 131, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(251, 191, 36, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(83, 52, 131, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
    opacity: 0.6;
}

.projects::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: 
        conic-gradient(from 0deg at 50% 50%, 
            rgba(233, 69, 96, 0.05) 0deg, 
            transparent 60deg, 
            rgba(83, 52, 131, 0.03) 120deg, 
            transparent 180deg, 
            rgba(233, 69, 96, 0.05) 240deg, 
            transparent 300deg, 
            rgba(83, 52, 131, 0.03) 360deg);
    animation: rotate 30s linear infinite;
}

/* Floating particles effect */
.projects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(83, 52, 131, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(251, 191, 36, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(83, 52, 131, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
    opacity: 0.6;
}

@keyframes sparkle {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-100px); }
}

.projects .section-title {
    text-align: center;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
    background: linear-gradient(45deg, #ffffff, #e94560, #533483, #fbbf24, #ffffff);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

.projects .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #e94560, #533483, #fbbf24, transparent);
    border-radius: 2px;
    animation: expandWidth 2.5s ease-out forwards;
}

.projects .section-subtitle {
    text-align: center;
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 5rem;
    font-weight: 400;
    position: relative;
    z-index: 2;
    letter-spacing: 1px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

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

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

.project-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transform: translateY(0);
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(233, 69, 96, 0.1) 0%, 
        rgba(83, 52, 131, 0.1) 50%, 
        rgba(15, 52, 96, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 30px;
}

.project-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        #e94560, #533483, #0f3460, #fbbf24, #e94560);
    border-radius: 30px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
    background-size: 400% 400%;
    animation: borderGradient 3s ease infinite;
}

@keyframes borderGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

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

.project-card:hover::after {
    opacity: 0.8;
}

.project-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: 
        0 40px 120px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(233, 69, 96, 0.3);
}

.project-category {
    color: #e94560;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: rgba(233, 69, 96, 0.15);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    border: 1px solid rgba(233, 69, 96, 0.3);
    display: inline-block;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.project-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(233, 69, 96, 0.2), transparent);
    transition: left 0.6s ease;
}

.project-card:hover .project-category::before {
    left: 100%;
}

.project-card:hover .project-category {
    background: rgba(233, 69, 96, 0.25);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(233, 69, 96, 0.3);
}

.project-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.3;
    transition: all 0.3s ease;
}

.project-card:hover .project-title {
    color: #fbbf24;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
}

.project-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 1.05rem;
    font-weight: 400;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.project-description a {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: #fbbf24;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 1rem 2rem;
    background: rgba(251, 191, 36, 0.1);
    border: 2px solid rgba(251, 191, 36, 0.3);
    border-radius: 30px;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.project-description a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.2), transparent);
    transition: left 0.6s ease;
}

.project-description a:hover::before {
    left: 100%;
}

.project-description a:hover {
    background: rgba(251, 191, 36, 0.2);
    border-color: rgba(251, 191, 36, 0.6);
    transform: translateY(-3px);
    box-shadow: 
        0 15px 35px rgba(251, 191, 36, 0.3),
        0 0 20px rgba(251, 191, 36, 0.2);
    color: #ffffff;
}

.project-description a::after {
    content: '↗';
    font-size: 1.2rem;
    font-weight: 800;
    transition: all 0.3s ease;
}

.project-description a:hover::after {
    transform: translate(3px, -3px) rotate(15deg);
}

/* Floating animation for cards */
.project-card:nth-child(odd) {
    animation: float 6s ease-in-out infinite;
}

.project-card:nth-child(even) {
    animation: float 6s ease-in-out infinite reverse;
}

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

/* Enhanced hover effects */
.project-card:hover .project-category {
    animation: pulse 1s ease-in-out infinite alternate;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .project-card {
        padding: 2rem;
        border-radius: 25px;
    }
    
    .projects .section-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
}

/* Enhanced Testimonials Section */
.testimonials {
    padding: 120px 0;
    background: linear-gradient(135deg, 
        #0f0f23 0%, 
        #1a1a2e 25%, 
        #16213e 50%, 
        #0f3460 75%, 
        #533483 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(83, 52, 131, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(251, 191, 36, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(83, 52, 131, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
    opacity: 0.6;
}

.testimonials::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: 
        conic-gradient(from 0deg at 50% 50%, 
            rgba(102, 126, 234, 0.05) 0deg, 
            transparent 60deg, 
            rgba(245, 87, 108, 0.03) 120deg, 
            transparent 180deg, 
            rgba(240, 147, 251, 0.05) 240deg, 
            transparent 300deg, 
            rgba(79, 172, 254, 0.03) 360deg);
    animation: rotate 30s linear infinite;
}

/* Enhanced floating particles effect */
.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(102, 126, 234, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(245, 87, 108, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(240, 147, 251, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(79, 172, 254, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(102, 126, 234, 0.3), transparent),
        radial-gradient(1px 1px at 200px 50px, rgba(251, 191, 36, 0.3), transparent),
        radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(245, 87, 108, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(240, 147, 251, 0.06) 0%, transparent 50%);
    background-repeat: repeat, no-repeat, no-repeat, no-repeat;
    background-size: 250px 120px, cover, cover, cover;
    animation: 
        sparkle 25s linear infinite,
        pulse 6s ease-in-out infinite alternate;
    opacity: 0.7;
}

.testimonials .section-title {
    text-align: center;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
    background: linear-gradient(45deg, #ffffff, #e94560, #533483, #fbbf24, #ffffff);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

.testimonials .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #e94560, #533483, #fbbf24, transparent);
    border-radius: 2px;
    animation: expandWidth 2.5s ease-out forwards;
}

.testimonials-carousel {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    margin-top: 4rem;
}

.carousel-container {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 450px;
    overflow: hidden;
    transform: translateY(50px);
    animation: slideInUp 0.8s ease-out forwards;
    margin-right: 3rem;
}

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }
.testimonial-card:nth-child(4) { animation-delay: 0.4s; }
.testimonial-card:nth-child(5) { animation-delay: 0.5s; }
.testimonial-card:nth-child(6) { animation-delay: 0.6s; }
.testimonial-card:nth-child(7) { animation-delay: 0.7s; }
.testimonial-card:nth-child(8) { animation-delay: 0.8s; }
.testimonial-card:nth-child(9) { animation-delay: 0.9s; }
.testimonial-card:nth-child(10) { animation-delay: 1.0s; }
.testimonial-card:nth-child(11) { animation-delay: 1.1s; }
.testimonial-card:nth-child(12) { animation-delay: 1.2s; }
.testimonial-card:nth-child(13) { animation-delay: 1.3s; }
.testimonial-card:nth-child(14) { animation-delay: 1.4s; }

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

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(233, 69, 96, 0.1) 0%, 
        rgba(83, 52, 131, 0.1) 50%, 
        rgba(15, 52, 96, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 30px;
}

.testimonial-card::after {
    content: '"';
    font-size: 6rem;
    color: rgba(251, 191, 36, 0.2);
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: 'Georgia', serif;
    transition: all 0.3s ease;
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-card:hover::after {
    color: rgba(251, 191, 36, 0.4);
    transform: scale(1.1);
}

.testimonial-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 40px 120px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(233, 69, 96, 0.4);
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 2rem;
    color: #ffffff;
    transition: color 0.3s ease;
}

.carousel-arrow:hover {
    color: #fbbf24;
}

.carousel-prev {
    left: -50px;
}

.carousel-next {
    right: -50px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: #fbbf24;
}

.dot:hover {
    background: #fbbf24;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .carousel-container {
        width: 90%;
    }
    
    .testimonial-card {
        margin-right: 2rem;
    }
}

@media (max-width: 576px) {
    .carousel-container {
        width: 100%;
    }
    
    .testimonial-card {
        margin-right: 1rem;
    }
}

.testimonial-quote {
    /* font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-weight: 400;
    font-style: italic;
    flex: 1;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease; */
}

.testimonial-quote.collapsed {
    /* max-height: 120px;
    overflow: hidden; */
}

.testimonial-quote.collapsed::after {
    /* content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(transparent, rgba(255, 255, 255, 0.1));
    pointer-events: none;
    border-radius: 0 0 30px 30px; */
}

.read-more-btn {
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    align-self: flex-start;
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.3);
    position: relative; 
}

.read-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.read-more-btn:hover::before {
    left: 100%;
}

.read-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(251, 191, 36, 0.4);
    background: linear-gradient(45deg, #f59e0b, #d97706);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.author-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    overflow: hidden;
}

.testimonial-card:hover .author-avatar {
    transform: scale(1.1);
    border-color: rgba(251, 191, 36, 0.5);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.testimonial-card:hover .author-avatar img {
    transform: scale(1.1);
}

.author-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.4rem;
    letter-spacing: -0.3px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.testimonial-card:hover .author-info h4 {
    color: #fbbf24;
    text-shadow: 0 0 15px rgba(251, 191, 36, 0.5);
}

.author-position {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    transition: all 0.3s ease;
}

.testimonial-card:hover .author-position {
    color: rgba(255, 255, 255, 1);
}

.author-company {
    font-size: 0.8rem;
    color: #fbbf24;
    font-weight: 600;
    margin-top: 0.2rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover .author-company {
    color: #ffffff;
}

/* Enhanced floating animation for cards */
.testimonial-card:nth-child(odd) {
    animation: float 8s ease-in-out infinite;
}

.testimonial-card:nth-child(even) {
    animation: float 8s ease-in-out infinite reverse;
}

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

/* Enhanced responsive design for testimonials */
@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testimonial-card {
        padding: 2rem;
        border-radius: 25px;
        height: auto;
        min-height: 400px;
    }
    
    .testimonials .section-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .author-avatar {
        width: 60px;
        height: 60px;
    }
}

.contactus-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.contactus-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.contactus-item:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 
        0 40px 120px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(233, 69, 96, 0.3);
}

.contactus-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    background: linear-gradient(45deg, #e94560, #533483);
    -webkit-background-clip: text; 
    background-clip: text;
    transition: all 0.4s ease;
}

.contactus-item:hover .contactus-icon {
    transform: scale(1.2) rotate(10deg);
    text-shadow: 0 0 20px rgba(233, 69, 96, 0.5);
}

.contactus-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fbbf24;
}

.contactus-item p {
    font-size: .7rem;
    color: rgba(255, 255, 255, 0.9);
    word-break: break-all;
}

.contactus-item a {
    color: #fbbf24;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contactus-item a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

/* Enhanced Footer */
.footer {
    background: #0f0f23;
    color: rgba(255, 255, 255, 0.8);
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, transparent 20%);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    background: linear-gradient(45deg, #e94560, #533483);
    border-color: rgba(233, 69, 96, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.footer p {
    font-size: 0.9rem;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 968px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .profile-section {
        order: -1;
    }

    .nav-menu {
        display: none;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

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

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

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

    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 2rem !important;
        padding-right: 0 !important;
        text-align: left !important;
    }

    .timeline:before {
        left: 10px;
    }

    .timeline-item .timeline-dot {
        left: 0 !important;
        right: auto !important;
    }

    .section-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }

    .section-subtitle {
        font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    }
}

@media (max-width: 768px) {
    .about {
        padding: 80px 0;
    }

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

    .about-text {
        padding: 2rem;
    }

    .profile-card {
        padding: 2rem 1.5rem;
    }

    .profile-img {
        width: 150px;
        height: 150px;
        font-size: 3rem;
    }

    .stat-card {
        padding: 2rem 1.5rem;
    }

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

    .about-grid {
        gap: 2rem;
    }

    .skills-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contactus-info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .skills-preview {
        justify-content: center;
    }

    .about-text p {
        font-size: 1rem;
    }

    .profile-card h3 {
        font-size: 1.5rem;
    }

    .profile-role {
        font-size: 1rem;
    }

    .cta-buttons-container {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 250px;
    }

    .section-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }

    .about-text {
        padding: 1.5rem;
    }

    .profile-card {
        padding: 1.5rem;
    }

    .stat-card {
        padding: 1.5rem;
    }

    .skill-category {
        padding: 2rem 1.5rem;
    }

    .project-card {
        padding: 2rem 1.5rem;
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    .contactus-item {
        padding: 2rem 1.5rem;
    }
}

.projects > .container,
.experience > .container,
.testimonials > .container {
    position: relative;
    z-index: 2;
}

@media (max-width: 1200px) {
    .contactus-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .contactus-info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Additional Mobile Improvements */
@media (max-width: 768px) {
    /* Improve touch targets */
    .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .btn {
        min-height: 44px;
        touch-action: manipulation;
    }

    /* Better spacing for mobile */
    .hero {
        margin-top: 70px;
        min-height: 90vh;
    }

    .about, .skills, .experience, .projects, .testimonials, .contact {
        padding: 80px 0;
    }

    /* Improve card layouts */
    .project-card, .testimonial-card, .skill-category {
        margin-bottom: 1.5rem;
    }

    /* Better text readability */
    .hero-description, .about-text p, .timeline-description {
        font-size: .9rem;
        line-height: 1.6;
    }

    /* Improve contact grid */
    .contactus-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    /* Better timeline on mobile */
    .timeline-content {
        padding: 1.5rem;
        margin-left: 1rem;
    }

    .timeline:before {
        left: 15px;
    }

    .timeline-dot {
        left: 7.5px !important;
    }
}

@media (max-width: 480px) {
    /* Even better mobile experience */
    .container {
        padding: 0 10px;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .about-text, .profile-card, .stat-card, .skill-category, 
    .project-card, .testimonial-card, .contactus-item {
        padding: 1.5rem;
    }

    .timeline-content {
        padding: 1.2rem;
        margin-left: 0.5rem;
    }

    .timeline:before {
        left: 10px;
    }

    .timeline-dot {
        left: 2.5px !important;
    }

    /* Better button sizing */
    .btn {
        width: 100%;
        max-width: 280px;
        margin: -16px auto
    }

    /* Improve social links */
    .social-links {
        gap: 1rem;
    }

    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

/* Landscape orientation improvements */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: 2rem 0;
    }

    .hero-content h1 {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-subtitle {
        font-size: clamp(0.9rem, 4vw, 1.2rem);
    }

    .hero-description {
        font-size: clamp(0.8rem, 3vw, 1rem);
    }

    .cta-buttons-container {
        position: relative;
        bottom: auto;
        margin-top: 2rem;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hamburger-menu span {
        height: 2px;
    }
}

.about .section-title {
    text-align: center;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 2;
    background: linear-gradient(45deg, #ffffff, #e94560, #533483, #fbbf24, #ffffff);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

.about .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #e94560, #533483, #fbbf24, transparent);
    border-radius: 2px;
    animation: expandWidth 2.5s ease-out forwards;
}

.skills .section-title {
    text-align: center;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 4rem;
    color: white;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
    background: linear-gradient(45deg, #ffffff, #e94560, #533483, #fbbf24, #ffffff);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

.skills .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #e94560, #533483, #fbbf24, transparent);
    border-radius: 2px;
    animation: expandWidth 2.5s ease-out forwards;
}

/* Enhanced Contact Section */
.contact {
    padding: 120px 0;
    background: linear-gradient(135deg, 
        #0f0f23 0%, 
        #1a1a2e 25%, 
        #16213e 50%, 
        #0f3460 75%, 
        #533483 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(83, 52, 131, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(251, 191, 36, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(83, 52, 131, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
    opacity: 0.6;
}

.contact .section-title {
    text-align: center;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 4rem;
    color: white;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
    background: linear-gradient(45deg, #ffffff, #e94560, #533483, #fbbf24, #ffffff);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

.contact .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #e94560, #533483, #fbbf24, transparent);
    border-radius: 2px;
    animation: expandWidth 2.5s ease-out forwards;
}

.hero-content h1 {
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.5);
    background: linear-gradient(45deg, #ff6b6b, #f9d74c, #ff6b6b);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
    position: relative;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-weight: 400;
    position: relative;
    z-index: 2;
    letter-spacing: 1px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.hero-button {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    border: 2px solid #fbbf24;
    background: transparent;
    color: #fbbf24;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.hero-button:hover {
    background: #fbbf24;
    color: #1f2937;
    transform: scale(1.05);
}

.hero-button:hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.hero-button:hover::before {
    transform: translateX(0);
}

.hero-button:hover::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.hero-button:hover::after {
    transform: translateX(0);
}

.hero-button:active {
    transform: scale(0.95);
}

.hero-button.outline {
    background: transparent;
    border: 2px solid #fbbf24;
    color: #fbbf24;
}

.hero-button.outline:hover {
    background: #fbbf24;
    color: #1f2937;
}

.hero-button.outline:hover::before,
.hero-button.outline:hover::after {
    background: #fbbf24;
}

.hero-button.outline:active {
    background: #1f2937;
    color: #fbbf24;
    border-color: #fbbf24;
}

.hero-button.outline:active::before,
.hero-button.outline:active::after {
    background: #1f2937;
}

.hero-button.cta {
    background: #fbbf24;
    color: #1f2937;
    border: 2px solid #fbbf24;
}

.hero-button.cta:hover {
    background: transparent;
    color: #fbbf24;
}

.hero-button.cta:hover::before,
.hero-button.cta:hover::after {
    background: #fbbf24;
}

.hero-button.cta:active {
    background: #1f2937;
    color: #fbbf24;
    border-color: #fbbf24;
}

.hero-button.cta:active::before,
.hero-button.cta:active::after {
    background: #1f2937;
}

.hero-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.hero-social a {
    font-size: 1.5rem;
    color: #fbbf24;
    transition: color 0.3s ease;
}

.hero-social a:hover {
    color: #ffffff;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.2rem;
    color: #fbbf24;
    animation: scrollAnimation 2s infinite;
}

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

.hero-scroll i {
    font-size: 1.5rem;
}

.hero-scroll span {
    display: block;
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

.hero-scroll:hover {
    color: #ffffff;
}

.hero-scroll:hover i {
    animation: bounce 0.5s infinite;
}

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

.hero-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    max-width: 600px;
    z-index: 1;
    opacity: 0.8;
    animation: float 6s ease-in-out infinite;
}

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

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4c247d 0%, #a23b72 100%);
    opacity: 0.8;
    z-index: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(233, 69, 96, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(83, 52, 131, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(15, 52, 96, 0.08) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite alternate;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: 
        conic-gradient(from 0deg at 50% 50%, 
            rgba(233, 69, 96, 0.1) 0deg, 
            transparent 60deg, 
            rgba(83, 52, 131, 0.05) 120deg, 
            transparent 180deg, 
            rgba(233, 69, 96, 0.1) 240deg, 
            transparent 300deg, 
            rgba(83, 52, 131, 0.05) 360deg);
    animation: rotate 20s linear infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* About Section */
.about {
    padding: 120px 0;
    background: linear-gradient(135deg, 
        #0f0f23 0%, 
        #1a1a2e 25%, 
        #16213e 50%, 
        #0f3460 75%, 
        #533483 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(83, 52, 131, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(251, 191, 36, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(83, 52, 131, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
    opacity: 0.6;
}

.about .section-title {
    text-align: center;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 4rem;
    color: white;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
    background: linear-gradient(45deg, #ffffff, #e94560, #533483, #fbbf24, #ffffff);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

.about .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #e94560, #533483, #fbbf24, transparent);
    border-radius: 2px;
    animation: expandWidth 2.5s ease-out forwards;
}

.about-text {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px);
    padding: 2.5rem;
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.profile-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(30px);
    padding: 3rem 2.5rem;
    border-radius: 30px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-align: center;
    border: 3px solid rgba(255, 255, 255, 0.2);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 400px;
}

.profile-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 5px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.profile-card h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fbbf24;
}

.profile-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.profile-card .social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.profile-card .social-links a {
    font-size: 1.2rem;
    color: #fbbf24;
    transition: color 0.3s ease;
}

.profile-card .social-links a:hover {
    color: #ffffff;
}

.stat-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(25px);
    padding: 3rem 2rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.18);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card i {
    font-size: 2.5rem;
    color: #fbbf24;
    margin-bottom: 1rem;
}

.stat-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.stat-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Skills Section */
.skills {
    padding: 120px 0;
    background: linear-gradient(135deg, 
        #0f0f23 0%, 
        #1a1a2e 25%, 
        #16213e 50%, 
        #0f3460 75%, 
        #533483 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.skills::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(83, 52, 131, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(251, 191, 36, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(83, 52, 131, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
    opacity: 0.6;
}

.skills .section-title {
    text-align: center;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 4rem;
    color: white;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
    background: linear-gradient(45deg, #ffffff, #e94560, #533483, #fbbf24, #ffffff);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

.skills .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #e94560, #533483, #fbbf24, transparent);
    border-radius: 2px;
    animation: expandWidth 2.5s ease-out forwards;
}

.skill-category {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.skill-category h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fbbf24;
}

.skill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.skill-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.85rem;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.skill-item:hover {
    background: #fbbf24;
    color: #1f2937;
    border-color: #fbbf24;
}

/* Experience Section */
.experience {
    padding: 120px 0;
    background: linear-gradient(135deg, 
        #0f0f23 0%, 
        #1a1a2e 25%, 
        #16213e 50%, 
        #0f3460 75%, 
        #533483 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.experience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(83, 52, 131, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(251, 191, 36, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(83, 52, 131, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
    opacity: 0.6;
}

.experience .section-title {
    text-align: center;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 4rem;
    color: white;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
    background: linear-gradient(45deg, #ffffff, #e94560, #533483, #fbbf24, #ffffff);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

.experience .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #e94560, #533483, #fbbf24, transparent);
    border-radius: 2px;
    animation: expandWidth 2.5s ease-out forwards;
}

.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

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

.timeline-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #fbbf24;
    border: 2px solid #1f2937;
    z-index: 2;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.timeline-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #fbbf24;
}

.timeline-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.timeline-content .timeline-date {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.timeline-content .timeline-location {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.timeline-content .timeline-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Projects Section */
.projects {
    padding: 120px 0;
    background: linear-gradient(135deg, 
        #0f0f23 0%, 
        #1a1a2e 25%, 
        #16213e 50%, 
        #0f3460 75%, 
        #533483 100%);
    color: white;
    overflow: hidden;
}

.projects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(83, 52, 131, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(251, 191, 36, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(83, 52, 131, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
    opacity: 0.6;
}

.projects .section-title {
    text-align: center;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 4rem;
    color: white;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
    background: linear-gradient(45deg, #ffffff, #e94560, #533483, #fbbf24, #ffffff);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

.projects .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #e94560, #533483, #fbbf24, transparent);
    border-radius: 2px;
    animation: expandWidth 2.5s ease-out forwards;
}

.project-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transform: translateY(0);
}

.project-card:hover {
    transform: translateY(-15px);
    box-shadow: 
        0 40px 120px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.project-card img {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.project-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fbbf24;
}

.project-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.project-card .project-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.project-card .project-links a {
    font-size: 1.2rem;
    color: #fbbf24;
    transition: color 0.3s ease;
}

.project-card .project-links a:hover {
    color: #ffffff;
}

/* Testimonials Section */
.testimonials {
    padding: 120px 0;
    background: linear-gradient(135deg, 
        #0f0f23 0%, 
        #1a1a2e 25%, 
        #16213e 50%, 
        #0f3460 75%, 
        #533483 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(83, 52, 131, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(251, 191, 36, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(83, 52, 131, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
    opacity: 0.6;
}

.testimonials .section-title {
    text-align: center;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 4rem;
    color: white;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
    background: linear-gradient(45deg, #ffffff, #e94560, #533483, #fbbf24, #ffffff);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

.testimonials .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #e94560, #533483, #fbbf24, transparent);
    border-radius: 2px;
    animation: expandWidth 2.5s ease-out forwards;
}

.carousel-container {
    position: relative;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 450px;
    overflow: hidden;
    transform: translateY(50px);
    animation: slideInUp 0.8s ease-out forwards;
}

.testimonial-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 40px 120px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.testimonial-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.testimonial-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fbbf24;
}

.testimonial-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.testimonial-card .testimonial-author {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: #fbbf24;
    cursor: pointer;
    transition: color 0.3s ease;
}

.carousel-prev {
    left: 2rem;
}

.carousel-next {
    right: 2rem;
}

.carousel-prev:hover,
.carousel-next:hover {
    color: #ffffff;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: #fbbf24;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: linear-gradient(135deg, 
        #0f0f23 0%, 
        #1a1a2e 25%, 
        #16213e 50%, 
        #0f3460 75%, 
        #533483 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(83, 52, 131, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(251, 191, 36, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(83, 52, 131, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
    opacity: 0.6;
}

.contact .section-title {
    text-align: center;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 4rem;
    color: white;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
    background: linear-gradient(45deg, #ffffff, #e94560, #533483, #fbbf24, #ffffff);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Amr Ebied - Full Stack .NET Developer</title>
<link rel="icon" href="amr_ebied_logo.svg" type="image/svg+xml">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap" rel="stylesheet">
<style>
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold-primary: #fbbf24;
    --gold-secondary: #f59e0b;
    --gold-dark: #d97706;
    --dark-primary: #1f2937;
    --dark-secondary: #111827;
    --gold-gradient: linear-gradient(45deg, #fbbf24, #f59e0b, #d97706);
    --dark-gradient: linear-gradient(135deg, #1f2937, #111827);
}

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

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

 
/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    width: 30px;
    height: 25px;
    justify-content: space-between;
}

.hamburger-menu span {
    display: block;
    height: 3px;
    width: 100%;
    background: #333;
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 1000;
        display: flex; /* Ensure menu is display flex */
    }

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

    .nav-menu li {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-menu li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu li:nth-child(2) { transition-delay: 0.2s; }
    .nav-menu li:nth-child(3) { transition-delay: 0.3s; }
    .nav-menu li:nth-child(4) { transition-delay: 0.4s; }
    .nav-menu li:nth-child(5) { transition-delay: 0.5s; }
    .nav-menu li:nth-child(6) { transition-delay: 0.6s; }

    .nav-link {
        font-size: 1.2rem;
        font-weight: 600;
        padding: 1rem 2rem;
        border-radius: 10px;
        transition: all 0.3s ease;
    }

    .nav-link:hover {
        background: var(--gold-gradient);
        color: white;
        transform: scale(1.05);
    }
}

/* Hero Section - Redesigned */
/* Hero Section - Redesigned */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, 
        #1a1a2e 0%, 
        #16213e 25%, 
        #0f3460 50%, 
        #533483 75%, 
        #e94560 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    margin-top: 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(233, 69, 96, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(83, 52, 131, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(15, 52, 96, 0.08) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite alternate;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: 
        conic-gradient(from 0deg at 50% 50%, 
            rgba(233, 69, 96, 0.1) 0deg, 
            transparent 60deg, 
            rgba(83, 52, 131, 0.05) 120deg, 
            transparent 180deg, 
            rgba(233, 69, 96, 0.1) 240deg, 
            transparent 300deg, 
            rgba(83, 52, 131, 0.05) 360deg);
    animation: rotate 20s linear infinite;
}

@keyframes pulse {
    0% { opacity: 0.6; }
    100% { opacity: 1; }
}

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

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 900;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.5);
    background: linear-gradient(45deg, #ffffff, #e94560, #533483, #ffffff);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
    position: relative;
}

.hero-content h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #e94560, transparent);
    border-radius: 2px;
    animation: expandWidth 2s ease-out forwards;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes expandWidth {
    from { width: 0; }
    to { width: 150px; }
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 600;
    color: #DEB887;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
    margin-bottom: 1.5rem;
}

.hero-subtitle::before {
    content: '👨‍💻';
    display: block;
    font-size: 2rem;
    margin-bottom: 1rem;
    animation: bounce 2s ease-in-out infinite;
}

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

.hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-description::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 3rem;
    color: #e94560;
    font-family: 'Georgia', serif;
    opacity: 0.6;
}

.cta-buttons-container {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1.5rem;
    z-index: 2;
}

.btn {
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(45deg, #e94560, #533483);
    color: white;
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.4);
    border: 2px solid rgba(233, 69, 96, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(45deg, #d63384, #6f42c1);
    border-color: rgba(233, 69, 96, 0.6);
    box-shadow: 0 15px 35px rgba(233, 69, 96, 0.5);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.2);
}

/* Floating elements for visual interest */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(233, 69, 96, 0.6);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

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

.floating-element:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

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

.floating-element:nth-child(4) {
    top: 40%;
    right: 30%;
    animation-delay: 1s;
}

.floating-element:nth-child(5) {
    bottom: 60%;
    left: 60%;
    animation-delay: 3s;
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: clamp(2.5rem, 10vw, 4rem);
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.4rem);
    }

    .hero-description {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
        padding: 1.5rem;
    }

    .cta-buttons-container {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn {
        width: 280px;
        justify-content: center;
    }
}

/* About Section - Redesigned */
.about {
    
    background: linear-gradient(135deg, 
        #0f0f23 0%, 
        #1a1a2e 25%, 
        #16213e 50%, 
        #0f3460 75%, 
        #533483 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(83, 52, 131, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(251, 191, 36, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(83, 52, 131, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
    opacity: 0.6;
}

/* Skills Section */
.skills {
    padding: 120px 0;
    background: linear-gradient(135deg, 
        #0f0f23 0%, 
        #1a1a2e 25%, 
        #16213e 50%, 
        #0f3460 75%, 
        #533483 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.skills::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(83, 52, 131, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(251, 191, 36, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(83, 52, 131, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
    opacity: 0.6;
}

/* Experience Section - Updated to match contact section style */
.experience {
  
    background: linear-gradient(135deg, 
        #0f0f23 0%, 
        #1a1a2e 25%, 
        #16213e 50%, 
        #0f3460 75%, 
        #533483 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.experience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(83, 52, 131, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(251, 191, 36, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(83, 52, 131, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
    opacity: 0.6;
}

/* Projects Section - Updated to match contact section style */
.projects {
    padding: 120px 0;
    background: linear-gradient(135deg, 
        #0f0f23 0%, 
        #1a1a2e 25%, 
        #16213e 50%, 
        #0f3460 75%, 
        #533483 100%);
    color: white;
    overflow: hidden;
}

.projects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(83, 52, 131, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(251, 191, 36, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(83, 52, 131, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
    opacity: 0.6;
}

/* Testimonials Section - Updated to match contact section style */
.testimonials {
    padding: 120px 0;
    background: linear-gradient(135deg, 
        #0f0f23 0%, 
        #1a1a2e 25%, 
        #16213e 50%, 
        #0f3460 75%, 
        #533483 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(83, 52, 131, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(251, 191, 36, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(83, 52, 131, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
    opacity: 0.6;
}

/* Update section titles to match contact section style */
.section-title {
    text-align: center;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
    background: linear-gradient(45deg, #ffffff, #e94560, #533483, #fbbf24, #ffffff);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #e94560, #533483, #fbbf24, transparent);
    border-radius: 2px;
    animation: expandWidth 2.5s ease-out forwards;
}

.section-subtitle {
    text-align: center;
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 4rem;
    font-weight: 400;
    position: relative;
    z-index: 2;
    letter-spacing: 1px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* Update all containers to have proper z-index */
.about > .container,
.skills > .container,
.experience > .container,
.projects > .container,
.testimonials > .container,
.contact > .container {
    position: relative;
    z-index: 2;
}

/* Update about text styling to match contact section */
.about-text {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px);
    padding: 2.5rem;
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Update profile card styling to match contact section */
.profile-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(30px);
    padding: 3rem 2.5rem;
    border-radius: 30px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-align: center;
    border: 3px solid rgba(255, 255, 255, 0.2);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 400px;
}

/* Update stat cards styling to match contact section */
.stat-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(25px);
    padding: 3rem 2rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.18);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Update skill categories styling to match contact section */
.skill-category {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Update timeline content styling to match contact section */
.timeline-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

/* Update project cards styling to match contact section */
.project-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transform: translateY(0);
}

/* Update testimonial cards styling to match contact section */
.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 450px;
    overflow: hidden;
    transform: translateY(50px);
    animation: slideInUp 0.8s ease-out forwards;
}

/* Update contact info styling to match contact section */
.contact-info {
    background: rgba(255, 255, 255, 0.08);
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    position: relative;
    z-index: 2;
}

/* Update skills preview styling to match contact section */
.skills-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.skill-tag {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.85rem;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Update contact items styling to match contact section */
.contactus-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

/* Update contact icon styling to match contact section */
.contactus-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    background: linear-gradient(45deg, #e94560, #533483);
    -webkit-background-clip: text; 
    background-clip: text;
    transition: all 0.4s ease;
}

/* Update contact item headings to match contact section */
.contactus-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fbbf24;
}

/* Update contact item text to match contact section */
.contactus-item p {
    font-size: .7rem;
    color: rgba(255, 255, 255, 0.9);
    word-break: break-all;
}

/* Update contact item links to match contact section */
.contactus-item a {
    color: #fbbf24;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contactus-item a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

/* Floating elements for visual interest */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(233, 69, 96, 0.6);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

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

.floating-element:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

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

.floating-element:nth-child(4) {
    top: 40%;
    right: 30%;
    animation-delay: 1s;
}

.floating-element:nth-child(5) {
    bottom: 60%;
    left: 60%;
    animation-delay: 3s;
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: clamp(2.5rem, 10vw, 4rem);
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.4rem);
    }

    .hero-description {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
        padding: 1.5rem;
    }

    .cta-buttons-container {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        bottom: 30px;
    }

    .btn {
        width: 280px;
        justify-content: center;
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: clamp(2rem, 12vw, 3rem);
    }

    .hero-subtitle {
        font-size: clamp(0.9rem, 5vw, 1.2rem);
    }

    .hero-description {
        font-size: clamp(0.8rem, 4vw, 1rem);
        padding: 1rem;
    }

    .cta-buttons-container {
        bottom: -32px;
    }

    .btn {
        width: 250px;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

.about-container {
    position: relative;
    z-index: 2;
}

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

.about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s;
}

.about-text:hover::before {
    left: 100%;
}

.about-text:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.25);
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.about-text p:last-child {
    margin-bottom: 0;
}

.highlight-text {
         color: #F5F5DC;
         font-weight: 600;
         text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
         background: linear-gradient(45deg, #DEB887, #CD853F);
         -webkit-background-clip: text; 
   }

.profile-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.profile-card::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, 
        #8B7355, #A0522D, #8B4513, #654321, 
        #DEB887, #CD853F, #D2691E, #8B4513);
    border-radius: 30px;
    z-index: -1;
    animation: borderGlow 4s ease-in-out infinite alternate;
    background-size: 400% 400%;
}

@keyframes borderGlow {
    0% { 
        opacity: 0.6;
        background-position: 0% 50%;
    }
    50% {
        opacity: 0.8;
        background-position: 100% 50%;
    }
    100% { 
        opacity: 0.6;
        background-position: 0% 50%;
    }
}

.profile-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 
        0 40px 120px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.35);
}

.profile-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, 
        #8B7355 0%, #A0522D 50%, #8B4513 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    margin: 0 auto 2rem;
    font-weight: 800;
    border: 6px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.15);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.profile-img::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, 
        transparent, rgba(255, 255, 255, 0.08), transparent, 
        rgba(255, 255, 255, 0.03), transparent);
    animation: rotate 8s linear infinite;
}

.profile-img:hover {
    transform: scale(1.08) rotate(5deg);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.5),
        inset 0 2px 0 rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.45);
}

.profile-card h3 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 2;
}

.profile-role {
    color: #DEB887;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 2;
}

.profile-location {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.contact-info {
    background: rgba(255, 255, 255, 0.08);
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    position: relative;
    z-index: 2;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

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

.contact-item a {
    color: #DEB887;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.contact-item a:hover {
    color: #CD853F;
    text-shadow: 0 0 10px rgba(205, 133, 63, 0.5);
}

.contact-icon {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
    filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.3));
}

/* Skills Tags */
.skills-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.skill-tag {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.85rem;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.skill-tag:hover {
    background: rgba(205, 133, 63, 0.25);
    border-color: rgba(205, 133, 63, 0.5);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(205, 133, 63, 0.3);
}

/* Stats Grid - Enhanced */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(25px);
    padding: 3rem 2rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.18);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 
        0 35px 100px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(139, 115, 85, 0.5);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.4));
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #DEB887;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
    background: linear-gradient(45deg, #DEB887, #CD853F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.stat-description {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.85rem;
    margin-top: 0.5rem;
    font-weight: 400;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in-delay-1 { animation-delay: 0.2s; }
.fade-in-delay-2 { animation-delay: 0.4s; }
.fade-in-delay-3 { animation-delay: 0.6s; }

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

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

.skill-category {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.skill-category:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 
        0 40px 120px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(233, 69, 96, 0.3);
}

.skill-category h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    color: #fbbf24;
    text-shadow: 0 0 15px rgba(251, 191, 36, 0.4);
    border-bottom: 2px solid rgba(251, 191, 36, 0.2);
    padding-bottom: 1rem;
}

.skill-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.skill-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.skill-list li:hover {
    background: rgba(251, 191, 36, 0.1);
    padding-left: 1rem;
    border-radius: 10px;
}

.skill-list li:last-child {
    border-bottom: none;
}

.skill-list li::before {
    content: '✨';
    color: #fbbf24;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.skill-list li:hover::before {
    transform: scale(1.2) rotate(15deg);
}

/* Experience Section - Redesigned */
.experience {
    padding: 120px 0;
    background: linear-gradient(135deg, 
        #0f0f23 0%, 
        #1a1a2e 25%, 
        #16213e 50%, 
        #0f3460 75%, 
        #533483 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.experience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(83, 52, 131, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(251, 191, 36, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(83, 52, 131, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
    opacity: 0.6;
}

.experience::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: 
        conic-gradient(from 0deg at 50% 50%, 
            rgba(102, 126, 234, 0.05) 0deg, 
            transparent 60deg, 
            rgba(245, 87, 108, 0.03) 120deg, 
            transparent 180deg, 
            rgba(240, 147, 251, 0.05) 240deg, 
            transparent 300deg, 
            rgba(79, 172, 254, 0.03) 360deg);
    animation: rotate 30s linear infinite;
}

/* Floating particles effect for experience */
.experience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(83, 52, 131, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(251, 191, 36, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(83, 52, 131, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
    opacity: 0.6;
}

.experience .section-title {
    text-align: center;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
    background: linear-gradient(45deg, #ffffff, #e94560, #533483, #fbbf24, #ffffff);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

.experience .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #e94560, #533483, #fbbf24, transparent);
    border-radius: 2px;
    animation: expandWidth 2.5s ease-out forwards;
}

.timeline {
    max-width: 1200px;
    margin: 4rem auto 0;
    position: relative;
    z-index: 2;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, 
        #667eea 0%, 
        #f093fb 25%, 
        #f5576c 50%, 
        #4facfe 75%, 
        #667eea 100%);
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.5);
    animation: timelineGlow 3s ease-in-out infinite alternate;
}

@keyframes timelineGlow {
    0% { box-shadow: 0 0 20px rgba(102, 126, 234, 0.5); }
    100% { box-shadow: 0 0 30px rgba(240, 147, 251, 0.8); }
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    width: 50%;
    opacity: 0;
    transform: translateY(50px);
    animation: slideInUp 0.8s ease-out forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.3s; }
.timeline-item:nth-child(3) { animation-delay: 0.5s; }
.timeline-item:nth-child(4) { animation-delay: 0.7s; }
.timeline-item:nth-child(5) { animation-delay: 0.9s; }

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

.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 3rem;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 3rem;
}

.timeline-content:hover::before {
    opacity: 1;
}

.timeline-content:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 35px 100px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(102, 126, 234, 0.4);
}

.timeline-date {
    color: #fbbf24;
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(251, 191, 36, 0.15);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(251, 191, 36, 0.3);
    display: inline-block;
    transition: all 0.3s ease;
}

.timeline-content:hover .timeline-date {
    background: rgba(251, 191, 36, 0.25);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(251, 191, 36, 0.3);
}

.timeline-title {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    color: white;
    letter-spacing: -0.5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.timeline-content:hover .timeline-title {
    color: #fbbf24;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
}

.timeline-company {
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin-bottom: 1.5rem;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.timeline-content:hover .timeline-company {
    color: rgba(255, 255, 255, 1);
}

.timeline-description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    font-size: 0.95rem;
    font-weight: 400;
    transition: all 0.3s ease;
}

.timeline-description ul {
    margin-top: 1rem;
    padding-left: 1.2rem;
}

.timeline-description li {
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
    position: relative;
    transition: all 0.3s ease;
}

.timeline-description li::before {
    content: '▸';
    color: #fbbf24;
    font-weight: bold;
    position: absolute;
    left: -1.2rem;
    transition: all 0.3s ease;
}

.timeline-content:hover .timeline-description li::before {
    transform: scale(1.2);
    color: #ffffff;
}

.timeline-dot {
    position: absolute;
    width: 25px;
    height: 25px;
    background: linear-gradient(45deg, #667eea, #f093fb, #f5576c);
    border-radius: 50%;
    top: 2.5rem;
    border: 4px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 0 0 4px rgba(102, 126, 234, 0.3),
        0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    z-index: 3;
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -12.5px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -12.5px;
}

.timeline-content:hover + .timeline-dot,
.timeline-content:hover ~ .timeline-dot {
    transform: scale(1.3);
    box-shadow: 
        0 0 0 6px rgba(102, 126, 234, 0.4),
        0 15px 40px rgba(0, 0, 0, 0.4);
    background: linear-gradient(45deg, #fbbf24, #f093fb, #f5576c);
}

/* Responsive design for timeline */
@media (max-width: 768px) {
    .timeline:before {
        left: 30px;
    }
    
    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 4rem !important;
        padding-right: 1rem !important;
        text-align: left !important;
    }
    
    .timeline-dot {
        left: 17.5px !important;
        right: auto !important;
    }
    
    .timeline-content {
        padding: 2rem;
        border-radius: 20px;
    }
    
    .experience .section-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
}

/* Projects Section - Redesigned */
.projects {
    padding: 120px 0;
    background: linear-gradient(135deg, 
        #0f0f23 0%, 
        #1a1a2e 25%, 
        #16213e 50%, 
        #0f3460 75%, 
        #533483 100%);
    color: white;
    overflow: hidden;
}

.projects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(83, 52, 131, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(251, 191, 36, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(83, 52, 131, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
    opacity: 0.6;
}

.projects::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: 
        conic-gradient(from 0deg at 50% 50%, 
            rgba(233, 69, 96, 0.05) 0deg, 
            transparent 60deg, 
            rgba(83, 52, 131, 0.03) 120deg, 
            transparent 180deg, 
            rgba(233, 69, 96, 0.05) 240deg, 
            transparent 300deg, 
            rgba(83, 52, 131, 0.03) 360deg);
    animation: rotate 30s linear infinite;
}

/* Floating particles effect */
.projects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(83, 52, 131, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(251, 191, 36, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(83, 52, 131, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
    opacity: 0.6;
}

@keyframes sparkle {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-100px); }
}

.projects .section-title {
    text-align: center;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
    background: linear-gradient(45deg, #ffffff, #e94560, #533483, #fbbf24, #ffffff);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

.projects .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #e94560, #533483, #fbbf24, transparent);
    border-radius: 2px;
    animation: expandWidth 2.5s ease-out forwards;
}

.projects .section-subtitle {
    text-align: center;
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 5rem;
    font-weight: 400;
    position: relative;
    z-index: 2;
    letter-spacing: 1px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

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

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

.project-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transform: translateY(0);
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(233, 69, 96, 0.1) 0%, 
        rgba(83, 52, 131, 0.1) 50%, 
        rgba(15, 52, 96, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 30px;
}

.project-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        #e94560, #533483, #0f3460, #fbbf24, #e94560);
    border-radius: 30px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
    background-size: 400% 400%;
    animation: borderGradient 3s ease infinite;
}

@keyframes borderGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

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

.project-card:hover::after {
    opacity: 0.8;
}

.project-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: 
        0 40px 120px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(233, 69, 96, 0.3);
}

.project-category {
    color: #e94560;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: rgba(233, 69, 96, 0.15);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    border: 1px solid rgba(233, 69, 96, 0.3);
    display: inline-block;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.project-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(233, 69, 96, 0.2), transparent);
    transition: left 0.6s ease;
}

.project-card:hover .project-category::before {
    left: 100%;
}

.project-card:hover .project-category {
    background: rgba(233, 69, 96, 0.25);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(233, 69, 96, 0.3);
}

.project-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.3;
    transition: all 0.3s ease;
}

.project-card:hover .project-title {
    color: #fbbf24;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
}

.project-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 1.05rem;
    font-weight: 400;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.project-description a {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: #fbbf24;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 1rem 2rem;
    background: rgba(251, 191, 36, 0.1);
    border: 2px solid rgba(251, 191, 36, 0.3);
    border-radius: 30px;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.project-description a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.2), transparent);
    transition: left 0.6s ease;
}

.project-description a:hover::before {
    left: 100%;
}

.project-description a:hover {
    background: rgba(251, 191, 36, 0.2);
    border-color: rgba(251, 191, 36, 0.6);
    transform: translateY(-3px);
    box-shadow: 
        0 15px 35px rgba(251, 191, 36, 0.3),
        0 0 20px rgba(251, 191, 36, 0.2);
    color: #ffffff;
}

.project-description a::after {
    content: '↗';
    font-size: 1.2rem;
    font-weight: 800;
    transition: all 0.3s ease;
}

.project-description a:hover::after {
    transform: translate(3px, -3px) rotate(15deg);
}

/* Floating animation for cards */
.project-card:nth-child(odd) {
    animation: float 6s ease-in-out infinite;
}

.project-card:nth-child(even) {
    animation: float 6s ease-in-out infinite reverse;
}

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

/* Enhanced hover effects */
.project-card:hover .project-category {
    animation: pulse 1s ease-in-out infinite alternate;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .project-card {
        padding: 2rem;
        border-radius: 25px;
    }
    
    .projects .section-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
}

/* Enhanced Testimonials Section */
.testimonials {
    padding: 120px 0;
    background: linear-gradient(135deg, 
        #0f0f23 0%, 
        #1a1a2e 25%, 
        #16213e 50%, 
        #0f3460 75%, 
        #533483 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(83, 52, 131, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(251, 191, 36, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(83, 52, 131, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
    opacity: 0.6;
}

.testimonials::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: 
        conic-gradient(from 0deg at 50% 50%, 
            rgba(102, 126, 234, 0.05) 0deg, 
            transparent 60deg, 
            rgba(245, 87, 108, 0.03) 120deg, 
            transparent 180deg, 
            rgba(240, 147, 251, 0.05) 240deg, 
            transparent 300deg, 
            rgba(79, 172, 254, 0.03) 360deg);
    animation: rotate 30s linear infinite;
}

/* Enhanced floating particles effect */
.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(102, 126, 234, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(245, 87, 108, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(240, 147, 251, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(79, 172, 254, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(102, 126, 234, 0.3), transparent),
        radial-gradient(1px 1px at 200px 50px, rgba(251, 191, 36, 0.3), transparent),
        radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(245, 87, 108, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(240, 147, 251, 0.06) 0%, transparent 50%);
    background-repeat: repeat, no-repeat, no-repeat, no-repeat;
    background-size: 250px 120px, cover, cover, cover;
    animation: 
        sparkle 25s linear infinite,
        pulse 6s ease-in-out infinite alternate;
    opacity: 0.7;
}

.testimonials .section-title {
    text-align: center;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
    background: linear-gradient(45deg, #ffffff, #e94560, #533483, #fbbf24, #ffffff);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

.testimonials .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #e94560, #533483, #fbbf24, transparent);
    border-radius: 2px;
    animation: expandWidth 2.5s ease-out forwards;
}

.testimonials-carousel {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    margin-top: 4rem;
}

.carousel-container {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 450px;
    overflow: hidden;
    transform: translateY(50px);
    animation: slideInUp 0.8s ease-out forwards;
    margin-right: 3rem;
}

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }
.testimonial-card:nth-child(4) { animation-delay: 0.4s; }
.testimonial-card:nth-child(5) { animation-delay: 0.5s; }
.testimonial-card:nth-child(6) { animation-delay: 0.6s; }
.testimonial-card:nth-child(7) { animation-delay: 0.7s; }
.testimonial-card:nth-child(8) { animation-delay: 0.8s; }
.testimonial-card:nth-child(9) { animation-delay: 0.9s; }
.testimonial-card:nth-child(10) { animation-delay: 1.0s; }
.testimonial-card:nth-child(11) { animation-delay: 1.1s; }
.testimonial-card:nth-child(12) { animation-delay: 1.2s; }
.testimonial-card:nth-child(13) { animation-delay: 1.3s; }
.testimonial-card:nth-child(14) { animation-delay: 1.4s; }

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

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(233, 69, 96, 0.1) 0%, 
        rgba(83, 52, 131, 0.1) 50%, 
        rgba(15, 52, 96, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 30px;
}

.testimonial-card::after {
    content: '"';
    font-size: 6rem;
    color: rgba(251, 191, 36, 0.2);
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: 'Georgia', serif;
    transition: all 0.3s ease;
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-card:hover::after {
    color: rgba(251, 191, 36, 0.4);
    transform: scale(1.1);
}

.testimonial-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 40px 120px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(233, 69, 96, 0.4);
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 2rem;
    color: #ffffff;
    transition: color 0.3s ease;
}

.carousel-arrow:hover {
    color: #fbbf24;
}

.carousel-prev {
    left: -50px;
}

.carousel-next {
    right: -50px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: #fbbf24;
}

.dot:hover {
    background: #fbbf24;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .carousel-container {
        width: 90%;
    }
    
    .testimonial-card {
        margin-right: 2rem;
    }
}

@media (max-width: 576px) {
    .carousel-container {
        width: 100%;
    }
    
    .testimonial-card {
        margin-right: 1rem;
    }
}

.testimonial-quote {
    /* font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-weight: 400;
    font-style: italic;
    flex: 1;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease; */
}

.testimonial-quote.collapsed {
    /* max-height: 120px;
    overflow: hidden; */
}

.testimonial-quote.collapsed::after {
    /* content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(transparent, rgba(255, 255, 255, 0.1));
    pointer-events: none;
    border-radius: 0 0 30px 30px; */
}

.read-more-btn {
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    align-self: flex-start;
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.3);
    position: relative; 
}

.read-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.read-more-btn:hover::before {
    left: 100%;
}

.read-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(251, 191, 36, 0.4);
    background: linear-gradient(45deg, #f59e0b, #d97706);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.author-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    overflow: hidden;
}

.testimonial-card:hover .author-avatar {
    transform: scale(1.1);
    border-color: rgba(251, 191, 36, 0.5);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.testimonial-card:hover .author-avatar img {
    transform: scale(1.1);
}

.author-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.4rem;
    letter-spacing: -0.3px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.testimonial-card:hover .author-info h4 {
    color: #fbbf24;
    text-shadow: 0 0 15px rgba(251, 191, 36, 0.5);
}

.author-position {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    transition: all 0.3s ease;
}

.testimonial-card:hover .author-position {
    color: rgba(255, 255, 255, 1);
}

.author-company {
    font-size: 0.8rem;
    color: #fbbf24;
    font-weight: 600;
    margin-top: 0.2rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover .author-company {
    color: #ffffff;
}

/* Enhanced floating animation for cards */
.testimonial-card:nth-child(odd) {
    animation: float 8s ease-in-out infinite;
}

.testimonial-card:nth-child(even) {
    animation: float 8s ease-in-out infinite reverse;
}

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

/* Enhanced responsive design for testimonials */
@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testimonial-card {
        padding: 2rem;
        border-radius: 25px;
        height: auto;
        min-height: 400px;
    }
    
    .testimonials .section-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .author-avatar {
        width: 60px;
        height: 60px;
    }
}

.contactus-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.contactus-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.contactus-item:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 
        0 40px 120px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(233, 69, 96, 0.3);
}

.contactus-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    background: linear-gradient(45deg, #e94560, #533483);
    -webkit-background-clip: text; 
    background-clip: text;
    transition: all 0.4s ease;
}

.contactus-item:hover .contactus-icon {
    transform: scale(1.2) rotate(10deg);
    text-shadow: 0 0 20px rgba(233, 69, 96, 0.5);
}

.contactus-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fbbf24;
}

.contactus-item p {
    font-size: .7rem;
    color: rgba(255, 255, 255, 0.9);
    word-break: break-all;
}

.contactus-item a {
    color: #fbbf24;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contactus-item a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

/* Enhanced Footer */
.footer {
    background: #0f0f23;
    color: rgba(255, 255, 255, 0.8);
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, transparent 20%);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    background: linear-gradient(45deg, #e94560, #533483);
    border-color: rgba(233, 69, 96, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.footer p {
    font-size: 0.9rem;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 968px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .profile-section {
        order: -1;
    }

    .nav-menu {
        display: none;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

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

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

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

    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 2rem !important;
        padding-right: 0 !important;
        text-align: left !important;
    }

    .timeline:before {
        left: 10px;
    }

    .timeline-item .timeline-dot {
        left: 0 !important;
        right: auto !important;
    }

    .section-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }

    .section-subtitle {
        font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    }
}

@media (max-width: 768px) {
    .about {
        padding: 80px 0;
    }

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

    .about-text {
        padding: 2rem;
    }

    .profile-card {
        padding: 2rem 1.5rem;
    }

    .profile-img {
        width: 150px;
        height: 150px;
        font-size: 3rem;
    }

    .stat-card {
        padding: 2rem 1.5rem;
    }

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

    .about-grid {
        gap: 2rem;
    }

    .skills-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contactus-info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .skills-preview {
        justify-content: center;
    }

    .about-text p {
        font-size: 1rem;
    }

    .profile-card h3 {
        font-size: 1.5rem;
    }

    .profile-role {
        font-size: 1rem;
    }

    .cta-buttons-container {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 250px;
    }

    .section-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }

    .about-text {
        padding: 1.5rem;
    }

    .profile-card {
        padding: 1.5rem;
    }

    .stat-card {
        padding: 1.5rem;
    }

    .skill-category {
        padding: 2rem 1.5rem;
    }

    .project-card {
        padding: 2rem 1.5rem;
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    .contactus-item {
        padding: 2rem 1.5rem;
    }
}

.projects > .container,
.experience > .container,
.testimonials > .container {
    position: relative;
    z-index: 2;
}

@media (max-width: 1200px) {
    .contactus-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .contactus-info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Additional Mobile Improvements */
@media (max-width: 768px) {
    /* Improve touch targets */
    .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .btn {
        min-height: 44px;
        touch-action: manipulation;
    }

    /* Better spacing for mobile */
    .hero {
        margin-top: 70px;
        min-height: 90vh;
    }

    .about, .skills, .experience, .projects, .testimonials, .contact {
        padding: 80px 0;
    }

    /* Improve card layouts */
    .project-card, .testimonial-card, .skill-category {
        margin-bottom: 1.5rem;
    }

    /* Better text readability */
    .hero-description, .about-text p, .timeline-description {
        font-size: .9rem;
        line-height: 1.6;
    }

    /* Improve contact grid */
    .contactus-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    /* Better timeline on mobile */
    .timeline-content {
        padding: 1.5rem;
        margin-left: 1rem;
    }

    .timeline:before {
        left: 15px;
    }

    .timeline-dot {
        left: 7.5px !important;
    }
}

@media (max-width: 480px) {
    /* Even better mobile experience */
    .container {
        padding: 0 10px;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .about-text, .profile-card, .stat-card, .skill-category, 
    .project-card, .testimonial-card, .contactus-item {
        padding: 1.5rem;
    }

    .timeline-content {
        padding: 1.2rem;
        margin-left: 0.5rem;
    }

    .timeline:before {
        left: 10px;
    }

    .timeline-dot {
        left: 2.5px !important;
    }

    /* Better button sizing */
    .btn {
        width: 100%;
        max-width: 280px;
        margin: -16px auto
    }

    /* Improve social links */
    .social-links {
        gap: 1rem;
    }

    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

/* Landscape orientation improvements */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: 2rem 0;
    }

    .hero-content h1 {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-subtitle {
        font-size: clamp(0.9rem, 4vw, 1.2rem);
    }

    .hero-description {
        font-size: clamp(0.8rem, 3vw, 1rem);
    }

    .cta-buttons-container {
        position: relative;
        bottom: auto;
        margin-top: 2rem;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hamburger-menu span {
        height: 2px;
    }
}

.about .section-title {
    text-align: center;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 2;
    background: linear-gradient(45deg, #ffffff, #e94560, #533483, #fbbf24, #ffffff);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

.about .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #e94560, #533483, #fbbf24, transparent);
    border-radius: 2px;
    animation: expandWidth 2.5s ease-out forwards;
}

.skills .section-title {
    text-align: center;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 4rem;
    color: white;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
    background: linear-gradient(45deg, #ffffff, #e94560, #533483, #fbbf24, #ffffff);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

.skills .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #e94560, #533483, #fbbf24, transparent);
    border-radius: 2px;
    animation: expandWidth 2.5s ease-out forwards;
}

/* Enhanced Contact Section */
.contact {
    padding: 120px 0;
    background: linear-gradient(135deg, 
        #0f0f23 0%, 
        #1a1a2e 25%, 
        #16213e 50%, 
        #0f3460 75%, 
        #533483 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(83, 52, 131, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(251, 191, 36, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(83, 52, 131, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
    opacity: 0.6;
}

.contact .section-title {
    text-align: center;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 4rem;
    color: white;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
    background: linear-gradient(45deg, #ffffff, #e94560, #533483, #fbbf24, #ffffff);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

.contact .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #e94560, #533483, #fbbf24, transparent);
    border-radius: 2px;
    animation: expandWidth 2.5s ease-out forwards;
}

.hero-content h1 {
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.5);
    background: linear-gradient(45deg, #ff6b6b, #f9d74c, #ff6b6b);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
    position: relative;
}

.hero-subtitle {
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Amr Ebied - Full Stack .NET Developer</title>
<link rel="icon" href="amr_ebied_logo.svg" type="image/svg+xml">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap" rel="stylesheet">
<style>
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold-primary: #fbbf24;
    --gold-secondary: #f59e0b;
    --gold-dark: #d97706;
    --dark-primary: #1f2937;
    --dark-secondary: #111827;
    --gold-gradient: linear-gradient(45deg, #fbbf24, #f59e0b, #d97706);
    --dark-gradient: linear-gradient(135deg, #1f2937, #111827);
}

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

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

 

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    width: 30px;
    height: 25px;
    justify-content: space-between;
}

.hamburger-menu span {
    display: block;
    height: 3px;
    width: 100%;
    background: #333;
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 1000;
        display: flex; /* Ensure menu is display flex */
    }

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

    .nav-menu li {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-menu li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu li:nth-child(2) { transition-delay: 0.2s; }
    .nav-menu li:nth-child(3) { transition-delay: 0.3s; }
    .nav-menu li:nth-child(4) { transition-delay: 0.4s; }
    .nav-menu li:nth-child(5) { transition-delay: 0.5s; }
    .nav-menu li:nth-child(6) { transition-delay: 0.6s; }

    .nav-link {
        font-size: 1.2rem;
        font-weight: 600;
        padding: 1rem 2rem;
        border-radius: 10px;
        transition: all 0.3s ease;
    }

    .nav-link:hover {
        background: var(--gold-gradient);
        color: white;
        transform: scale(1.05);
    }
}

/* Hero Section - Redesigned */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #4c247d 0%, #a23b72 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    margin-top: 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(233, 69, 96, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(83, 52, 131, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(15, 52, 96, 0.08) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite alternate;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: 
        conic-gradient(from 0deg at 50% 50%, 
            rgba(233, 69, 96, 0.1) 0deg, 
            transparent 60deg, 
            rgba(83, 52, 131, 0.05) 120deg, 
            transparent 180deg, 
            rgba(233, 69, 96, 0.1) 240deg, 
            transparent 300deg, 
            rgba(83, 52, 131, 0.05) 360deg);
    animation: rotate 20s linear infinite;
}

/* About Section - Redesigned */
.about {
     
    background: linear-gradient(135deg, 
        #0f0f23 0%, 
        #1a1a2e 25%, 
        #16213e 50%, 
        #0f3460 75%, 
        #533483 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(83, 52, 131, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(251, 191, 36, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(83, 52, 131, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
    opacity: 0.6;
}

/* Skills Section */
.skills {
    padding: 120px 0;
    background: linear-gradient(135deg, 
        #0f0f23 0%, 
        #1a1a2e 25%, 
        #16213e 50%, 
        #0f3460 75%, 
        #533483 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.skills::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(83, 52, 131, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(251, 191, 36, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(83, 52, 131, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
    opacity: 0.6;
}

/* Experience Section - Updated to match contact section style */
.experience {
    padding: 120px 0;
    background: linear-gradient(135deg, 
        #0f0f23 0%, 
        #1a1a2e 25%, 
        #16213e 50%, 
        #0f3460 75%, 
        #533483 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.experience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(83, 52, 131, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(251, 191, 36, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(83, 52, 131, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
    opacity: 0.6;
}

/* Projects Section - Updated to match contact section style */
.projects {
    padding: 120px 0;
    background: linear-gradient(135deg, 
        #0f0f23 0%, 
        #1a1a2e 25%, 
        #16213e 50%, 
        #0f3460 75%, 
        #533483 100%);
    color: white;
    overflow: hidden;
}

.projects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(83, 52, 131, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(251, 191, 36, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(83, 52, 131, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
    opacity: 0.6;
}

/* Testimonials Section - Updated to match contact section style */
.testimonials {
    padding: 120px 0;
    background: linear-gradient(135deg, 
        #0f0f23 0%, 
        #1a1a2e 25%, 
        #16213e 50%, 
        #0f3460 75%, 
        #533483 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(83, 52, 131, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(251, 191, 36, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(83, 52, 131, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
    opacity: 0.6;
}

/* Update section titles to match contact section style */
.section-title {
    text-align: center;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
    background: linear-gradient(45deg, #ffffff, #e94560, #533483, #fbbf24, #ffffff);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #e94560, #533483, #fbbf24, transparent);
    border-radius: 2px;
    animation: expandWidth 2.5s ease-out forwards;
}

.section-subtitle {
    text-align: center;
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 4rem;
    font-weight: 400;
    position: relative;
    z-index: 2;
    letter-spacing: 1px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* Update all containers to have proper z-index */
.about > .container,
.skills > .container,
.experience > .container,
.projects > .container,
.testimonials > .container,
.contact > .container {
    position: relative;
    z-index: 2;
}

/* Update about text styling to match contact section */
.about-text {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px);
    padding: 2.5rem;
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Update profile card styling to match contact section */
.profile-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(30px);
    padding: 3rem 2.5rem;
    border-radius: 30px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-align: center;
    border: 3px solid rgba(255, 255, 255, 0.2);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 400px;
}

/* Update stat cards styling to match contact section */
.stat-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(25px);
    padding: 3rem 2rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.18);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Update skill categories styling to match contact section */
.skill-category {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Update timeline content styling to match contact section */
.timeline-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

/* Update project cards styling to match contact section */
.project-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transform: translateY(0);
}

/* Update testimonial cards styling to match contact section */
.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 450px;
    overflow: hidden;
    transform: translateY(50px);
    animation: slideInUp 0.8s ease-out forwards;
}

/* Update contact info styling to match contact section */
.contact-info {
    background: rgba(255, 255, 255, 0.08);
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    position: relative;
    z-index: 2;
}

/* Update skills preview styling to match contact section */
.skills-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.skill-tag {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.85rem;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Update contact items styling to match contact section */
.contactus-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

/* Update contact icon styling to match contact section */
.contactus-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    background: linear-gradient(45deg, #e94560, #533483);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.4s ease;
}

/* Update contact item headings to match contact section */
.contactus-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fbbf24;
}

/* Update contact item text to match contact section */
.contactus-item p {
    font-size: .7rem;
    color: rgba(255, 255, 255, 0.9);
    word-break: break-all;
}

/* Update contact item links to match contact section */
.contactus-item a {
    color: #fbbf24;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contactus-item a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

/* Floating elements for visual interest */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(233, 69, 96, 0.6);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

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

.floating-element:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

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

.floating-element:nth-child(4) {
    top: 40%;
    right: 30%;
    animation-delay: 1s;
}

.floating-element:nth-child(5) {
    bottom: 60%;
    left: 60%;
    animation-delay: 3s;
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: clamp(2.5rem, 10vw, 4rem);
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.4rem);
    }

    .hero-description {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
        padding: 1.5rem;
    }

    .cta-buttons-container {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        bottom: 30px;
    }

    .btn {
        width: 280px;
        justify-content: center;
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: clamp(2rem, 12vw, 3rem);
    }

    .hero-subtitle {
        font-size: clamp(0.9rem, 5vw, 1.2rem);
    }

    .hero-description {
        font-size: clamp(0.8rem, 4vw, 1rem);
        padding: 1rem;
    }

    .cta-buttons-container {
        bottom: -32px;
    }

    .btn {
        width: 250px;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

.about-container {
    position: relative;
    z-index: 2;
}

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

.about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s;
}

.about-text:hover::before {
    left: 100%;
}

.about-text:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.25);
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.about-text p:last-child {
    margin-bottom: 0;
}

.highlight-text {
         color: #F5F5DC;
         font-weight: 600;
         text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
         background: linear-gradient(45deg, #DEB887, #CD853F);
         -webkit-background-clip: text; 
   }

.profile-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.profile-card::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, 
        #8B7355, #A0522D, #8B4513, #654321, 
        #DEB887, #CD853F, #D2691E, #8B4513);
    border-radius: 30px;
    z-index: -1;
    animation: borderGlow 4s ease-in-out infinite alternate;
    background-size: 400% 400%;
}

@keyframes borderGlow {
    0% { 
        opacity: 0.6;
        background-position: 0% 50%;
    }
    50% {
        opacity: 0.8;
        background-position: 100% 50%;
    }
    100% { 
        opacity: 0.6;
        background-position: 0% 50%;
    }
}

.profile-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 
        0 40px 120px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.35);
}

.profile-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, 
        #8B7355 0%, #A0522D 50%, #8B4513 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    margin: 0 auto 2rem;
    font-weight: 800;
    border: 6px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.15);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.profile-img::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, 
        transparent, rgba(255, 255, 255, 0.08), transparent, 
        rgba(255, 255, 255, 0.03), transparent);
    animation: rotate 8s linear infinite;
}

.profile-img:hover {
    transform: scale(1.08) rotate(5deg);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.5),
        inset 0 2px 0 rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.45);
}

.profile-card h3 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 2;
}

.profile-role {
    color: #DEB887;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 2;
}

.profile-location {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.contact-info {
    background: rgba(255, 255, 255, 0.08);
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    position: relative;
    z-index: 2;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

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

.contact-item a {
    color: #DEB887;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.contact-item a:hover {
    color: #CD853F;
    text-shadow: 0 0 10px rgba(205, 133, 63, 0.5);
}

.contact-icon {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
    filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.3));
}

/* Skills Tags */
.skills-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.skill-tag {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.85rem;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.skill-tag:hover {
    background: rgba(205, 133, 63, 0.25);
    border-color: rgba(205, 133, 63, 0.5);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(205, 133, 63, 0.3);
}

/* Stats Grid - Enhanced */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(25px);
    padding: 3rem 2rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.18);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 
        0 35px 100px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(139, 115, 85, 0.5);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.4));
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #DEB887;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
    background: linear-gradient(45deg, #DEB887, #CD853F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.stat-description {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.85rem;
    margin-top: 0.5rem;
    font-weight: 400;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in-delay-1 { animation-delay: 0.2s; }
.fade-in-delay-2 { animation-delay: 0.4s; }
.fade-in-delay-3 { animation-delay: 0.6s; }

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

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

.skill-category {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.skill-category:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 
        0 40px 120px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(233, 69, 96, 0.3);
}

.skill-category h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    color: #fbbf24;
    text-shadow: 0 0 15px rgba(251, 191, 36, 0.4);
    border-bottom: 2px solid rgba(251, 191, 36, 0.2);
    padding-bottom: 1rem;
}

.skill-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.skill-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.skill-list li:hover {
    background: rgba(251, 191, 36, 0.1);
    padding-left: 1rem;
    border-radius: 10px;
}

.skill-list li:last-child {
    border-bottom: none;
}

.skill-list li::before {
    content: '✨';
    color: #fbbf24;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.skill-list li:hover::before {
    transform: scale(1.2) rotate(15deg);
}

/* Experience Section - Redesigned */
.experience {
    padding: 120px 0;
    background: linear-gradient(135deg, 
        #0f0f23 0%, 
        #1a1a2e 25%, 
        #16213e 50%, 
        #0f3460 75%, 
        #533483 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.experience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(83, 52, 131, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(251, 191, 36, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(83, 52, 131, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
    opacity: 0.6;
}

.experience::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: 
        conic-gradient(from 0deg at 50% 50%, 
            rgba(102, 126, 234, 0.05) 0deg, 
            transparent 60deg, 
            rgba(245, 87, 108, 0.03) 120deg, 
            transparent 180deg, 
            rgba(240, 147, 251, 0.05) 240deg, 
            transparent 300deg, 
            rgba(79, 172, 254, 0.03) 360deg);
    animation: rotate 30s linear infinite;
}

/* Floating particles effect for experience */
.experience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(83, 52, 131, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(251, 191, 36, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(83, 52, 131, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
    opacity: 0.6;
}

.experience .section-title {
    text-align: center;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
    background: linear-gradient(45deg, #ffffff, #e94560, #533483, #fbbf24, #ffffff);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

.experience .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #e94560, #533483, #fbbf24, transparent);
    border-radius: 2px;
    animation: expandWidth 2.5s ease-out forwards;
}

.timeline {
    max-width: 1200px;
    margin: 4rem auto 0;
    position: relative;
    z-index: 2;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, 
        #667eea 0%, 
        #f093fb 25%, 
        #f5576c 50%, 
        #4facfe 75%, 
        #667eea 100%);
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.5);
    animation: timelineGlow 3s ease-in-out infinite alternate;
}

@keyframes timelineGlow {
    0% { box-shadow: 0 0 20px rgba(102, 126, 234, 0.5); }
    100% { box-shadow: 0 0 30px rgba(240, 147, 251, 0.8); }
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    width: 50%;
    opacity: 0;
    transform: translateY(50px);
    animation: slideInUp 0.8s ease-out forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.3s; }
.timeline-item:nth-child(3) { animation-delay: 0.5s; }
.timeline-item:nth-child(4) { animation-delay: 0.7s; }
.timeline-item:nth-child(5) { animation-delay: 0.9s; }

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

.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 3rem;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 3rem;
}

.timeline-content:hover::before {
    opacity: 1;
}

.timeline-content:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 35px 100px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(102, 126, 234, 0.4);
}

.timeline-date {
    color: #fbbf24;
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(251, 191, 36, 0.15);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(251, 191, 36, 0.3);
    display: inline-block;
    transition: all 0.3s ease;
}

.timeline-content:hover .timeline-date {
    background: rgba(251, 191, 36, 0.25);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(251, 191, 36, 0.3);
}

.timeline-title {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    color: white;
    letter-spacing: -0.5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.timeline-content:hover .timeline-title {
    color: #fbbf24;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
}

.timeline-company {
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin-bottom: 1.5rem;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.timeline-content:hover .timeline-company {
    color: rgba(255, 255, 255, 1);
}

.timeline-description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    font-size: 0.95rem;
    font-weight: 400;
    transition: all 0.3s ease;
}

.timeline-description ul {
    margin-top: 1rem;
    padding-left: 1.2rem;
}

.timeline-description li {
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
    position: relative;
    transition: all 0.3s ease;
}

.timeline-description li::before {
    content: '▸';
    color: #fbbf24;
    font-weight: bold;
    position: absolute;
    left: -1.2rem;
    transition: all 0.3s ease;
}

.timeline-content:hover .timeline-description li::before {
    transform: scale(1.2);
    color: #ffffff;
}

.timeline-dot {
    position: absolute;
    width: 25px;
    height: 25px;
    background: linear-gradient(45deg, #667eea, #f093fb, #f5576c);
    border-radius: 50%;
    top: 2.5rem;
    border: 4px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 0 0 4px rgba(102, 126, 234, 0.3),
        0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    z-index: 3;
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -12.5px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -12.5px;
}

.timeline-content:hover + .timeline-dot,
.timeline-content:hover ~ .timeline-dot {
    transform: scale(1.3);
    box-shadow: 
        0 0 0 6px rgba(102, 126, 234, 0.4),
        0 15px 40px rgba(0, 0, 0, 0.4);
    background: linear-gradient(45deg, #fbbf24, #f093fb, #f5576c);
}

/* Responsive design for timeline */
@media (max-width: 768px) {
    .timeline:before {
        left: 30px;
    }
    
    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 4rem !important;
        padding-right: 1rem !important;
        text-align: left !important;
    }
    
    .timeline-dot {
        left: 17.5px !important;
        right: auto !important;
    }
    
    .timeline-content {
        padding: 2rem;
        border-radius: 20px;
    }
    
    .experience .section-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
}

/* Projects Section - Redesigned */
.projects {
    padding: 120px 0;
    background: linear-gradient(135deg, 
        #0f0f23 0%, 
        #1a1a2e 25%, 
        #16213e 50%, 
        #0f3460 75%, 
        #533483 100%);
    color: white;
    overflow: hidden;
}

.projects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(83, 52, 131, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(251, 191, 36, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(83, 52, 131, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
    opacity: 0.6;
}

.projects::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: 
        conic-gradient(from 0deg at 50% 50%, 
            rgba(233, 69, 96, 0.05) 0deg, 
            transparent 60deg, 
            rgba(83, 52, 131, 0.03) 120deg, 
            transparent 180deg, 
            rgba(233, 69, 96, 0.05) 240deg, 
            transparent 300deg, 
            rgba(83, 52, 131, 0.03) 360deg);
    animation: rotate 30s linear infinite;
}

/* Floating particles effect */
.projects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(83, 52, 131, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(251, 191, 36, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(83, 52, 131, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
    opacity: 0.6;
}

@keyframes sparkle {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-100px); }
}

.projects .section-title {
    text-align: center;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
    background: linear-gradient(45deg, #ffffff, #e94560, #533483, #fbbf24, #ffffff);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

.projects .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #e94560, #533483, #fbbf24, transparent);
    border-radius: 2px;
    animation: expandWidth 2.5s ease-out forwards;
}

.projects .section-subtitle {
    text-align: center;
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 5rem;
    font-weight: 400;
    position: relative;
    z-index: 2;
    letter-spacing: 1px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

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

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

.project-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transform: translateY(0);
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(233, 69, 96, 0.1) 0%, 
        rgba(83, 52, 131, 0.1) 50%, 
        rgba(15, 52, 96, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 30px;
}

.project-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        #e94560, #533483, #0f3460, #fbbf24, #e94560);
    border-radius: 30px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
    background-size: 400% 400%;
    animation: borderGradient 3s ease infinite;
}

@keyframes borderGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

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

.project-card:hover::after {
    opacity: 0.8;
}

.project-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: 
        0 40px 120px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(233, 69, 96, 0.3);
}

.project-category {
    color: #e94560;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: rgba(233, 69, 96, 0.15);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    border: 1px solid rgba(233, 69, 96, 0.3);
    display: inline-block;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.project-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(233, 69, 96, 0.2), transparent);
    transition: left 0.6s ease;
}

.project-card:hover .project-category::before {
    left: 100%;
}

.project-card:hover .project-category {
    background: rgba(233, 69, 96, 0.25);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(233, 69, 96, 0.3);
}

.project-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.3;
    transition: all 0.3s ease;
}

.project-card:hover .project-title {
    color: #fbbf24;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
}

.project-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 1.05rem;
    font-weight: 400;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.project-description a {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: #fbbf24;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 1rem 2rem;
    background: rgba(251, 191, 36, 0.1);
    border: 2px solid rgba(251, 191, 36, 0.3);
    border-radius: 30px;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.project-description a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.2), transparent);
    transition: left 0.6s ease;
}

.project-description a:hover::before {
    left: 100%;
}

.project-description a:hover {
    background: rgba(251, 191, 36, 0.2);
    border-color: rgba(251, 191, 36, 0.6);
    transform: translateY(-3px);
    box-shadow: 
        0 15px 35px rgba(251, 191, 36, 0.3),
        0 0 20px rgba(251, 191, 36, 0.2);
    color: #ffffff;
}

.project-description a::after {
    content: '↗';
    font-size: 1.2rem;
    font-weight: 800;
    transition: all 0.3s ease;
}

.project-description a:hover::after {
    transform: translate(3px, -3px) rotate(15deg);
}

/* Floating animation for cards */
.project-card:nth-child(odd) {
    animation: float 6s ease-in-out infinite;
}

.project-card:nth-child(even) {
    animation: float 6s ease-in-out infinite reverse;
}

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

/* Enhanced hover effects */
.project-card:hover .project-category {
    animation: pulse 1s ease-in-out infinite alternate;
}

/* Responsive adjustments */
<!DOCTYPE html>
<html lang="en">
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Amr Ebied - Full Stack .NET Developer</title>
<link rel="icon" href="amr_ebied_logo.svg" type="image/svg+xml">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap" rel="stylesheet">
<style>
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold-primary: #fbbf24;
    --gold-secondary: #f59e0b;
    --gold-dark: #d97706;
    --dark-primary: #1f2937;
    --dark-secondary: #111827;
    --gold-gradient: linear-gradient(45deg, #fbbf24, #f59e0b, #d97706);
    --dark-gradient: linear-gradient(135deg, #1f2937, #111827);
}

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

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

 
/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    width: 30px;
    height: 25px;
    justify-content: space-between;
}

.hamburger-menu span {
    display: block;
    height: 3px;
    width: 100%;
    background: #333;
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 1000;
        display: flex; /* Ensure menu is display flex */
    }

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

    .nav-menu li {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-menu li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu li:nth-child(2) { transition-delay: 0.2s; }
    .nav-menu li:nth-child(3) { transition-delay: 0.3s; }
    .nav-menu li:nth-child(4) { transition-delay: 0.4s; }
    .nav-menu li:nth-child(5) { transition-delay: 0.5s; }
    .nav-menu li:nth-child(6) { transition-delay: 0.6s; }

    .nav-link {
        font-size: 1.2rem;
        font-weight: 600;
        padding: 1rem 2rem;
        border-radius: 10px;
        transition: all 0.3s ease;
    }

    .nav-link:hover {
        background: var(--gold-gradient);
        color: white;
        transform: scale(1.05);
    }
}

/* Hero Section - Redesigned */
/* Hero Section - Redesigned */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, 
        #1a1a2e 0%, 
        #16213e 25%, 
        #0f3460 50%, 
        #533483 75%, 
        #e94560 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    margin-top: 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(233, 69, 96, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(83, 52, 131, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(15, 52, 96, 0.08) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite alternate;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: 
        conic-gradient(from 0deg at 50% 50%, 
            rgba(233, 69, 96, 0.1) 0deg, 
            transparent 60deg, 
            rgba(83, 52, 131, 0.05) 120deg, 
            transparent 180deg, 
            rgba(233, 69, 96, 0.1) 240deg, 
            transparent 300deg, 
            rgba(83, 52, 131, 0.05) 360deg);
    animation: rotate 20s linear infinite;
}

@keyframes pulse {
    0% { opacity: 0.6; }
    100% { opacity: 1; }
}

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

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 900;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.5);
    background: linear-gradient(45deg, #ffffff, #e94560, #533483, #ffffff);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
    position: relative;
}

.hero-content h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #e94560, transparent);
    border-radius: 2px;
    animation: expandWidth 2s ease-out forwards;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes expandWidth {
    from { width: 0; }
    to { width: 150px; }
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 600;
    color: #DEB887;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
    margin-bottom: 1.5rem;
}

.hero-subtitle::before {
    content: '👨‍💻';
    display: block;
    font-size: 2rem;
    margin-bottom: 1rem;
    animation: bounce 2s ease-in-out infinite;
}

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

.hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-description::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 3rem;
    color: #e94560;
    font-family: 'Georgia', serif;
    opacity: 0.6;
}

.cta-buttons-container {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1.5rem;
    z-index: 2;
}

.btn {
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(45deg, #e94560, #533483);
    color: white;
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.4);
    border: 2px solid rgba(233, 69, 96, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(45deg, #d63384, #6f42c1);
    border-color: rgba(233, 69, 96, 0.6);
    box-shadow: 0 15px 35px rgba(233, 69, 96, 0.5);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.2);
}

/* Floating elements for visual interest */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(233, 69, 96, 0.6);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

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

.floating-element:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

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

.floating-element:nth-child(4) {
    top: 40%;
    right: 30%;
    animation-delay: 1s;
}

.floating-element:nth-child(5) {
    bottom: 60%;
    left: 60%;
    animation-delay: 3s;
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: clamp(2.5rem, 10vw, 4rem);
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.4rem);
    }

    .hero-description {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
        padding: 1.5rem;
    }

    .cta-buttons-container {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn {
        width: 280px;
        justify-content: center;
    }
}

/* About Section - Redesigned */
.about {
    
    background: linear-gradient(135deg, 
        #0f0f23 0%, 
        #1a1a2e 25%, 
        #16213e 50%, 
        #0f3460 75%, 
        #533483 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(83, 52, 131, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(251, 191, 36, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(83, 52, 131, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
    opacity: 0.6;
}

/* Skills Section */
.skills {
    padding: 120px 0;
    background: linear-gradient(135deg, 
        #0f0f23 0%, 
        #1a1a2e 25%, 
        #16213e 50%, 
        #0f3460 75%, 
        #533483 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.skills::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(83, 52, 131, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(251, 191, 36, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(83, 52, 131, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
    opacity: 0.6;
}

/* Experience Section - Updated to match contact section style */
.experience {
  
    background: linear-gradient(135deg, 
        #0f0f23 0%, 
        #1a1a2e 25%, 
        #16213e 50%, 
        #0f3460 75%, 
        #533483 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.experience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(83, 52, 131, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(251, 191, 36, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(83, 52, 131, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
    opacity: 0.6;
}

/* Projects Section - Updated to match contact section style */
.projects {
    padding: 120px 0;
    background: linear-gradient(135deg, 
        #0f0f23 0%, 
        #1a1a2e 25%, 
        #16213e 50%, 
        #0f3460 75%, 
        #533483 100%);
    color: white;
    overflow: hidden;
}

.projects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(83, 52, 131, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(251, 191, 36, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(83, 52, 131, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
    opacity: 0.6;
}

/* Testimonials Section - Updated to match contact section style */
.testimonials {
    padding: 120px 0;
    background: linear-gradient(135deg, 
        #0f0f23 0%, 
        #1a1a2e 25%, 
        #16213e 50%, 
        #0f3460 75%, 
        #533483 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(83, 52, 131, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(251, 191, 36, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(83, 52, 131, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
    opacity: 0.6;
}

/* Update section titles to match contact section style */
.section-title {
    text-align: center;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
    background: linear-gradient(45deg, #ffffff, #e94560, #533483, #fbbf24, #ffffff);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #e94560, #533483, #fbbf24, transparent);
    border-radius: 2px;
    animation: expandWidth 2.5s ease-out forwards;
}

.section-subtitle {
    text-align: center;
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 4rem;
    font-weight: 400;
    position: relative;
    z-index: 2;
    letter-spacing: 1px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* Update all containers to have proper z-index */
.about > .container,
.skills > .container,
.experience > .container,
.projects > .container,
.testimonials > .container,
.contact > .container {
    position: relative;
    z-index: 2;
}

/* Update about text styling to match contact section */
.about-text {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px);
    padding: 2.5rem;
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Update profile card styling to match contact section */
.profile-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(30px);
    padding: 3rem 2.5rem;
    border-radius: 30px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-align: center;
    border: 3px solid rgba(255, 255, 255, 0.2);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 400px;
}

/* Update stat cards styling to match contact section */
.stat-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(25px);
    padding: 3rem 2rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.18);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Update skill categories styling to match contact section */
.skill-category {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Update timeline content styling to match contact section */
.timeline-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

/* Update project cards styling to match contact section */
.project-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transform: translateY(0);
}

/* Update testimonial cards styling to match contact section */
.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 450px;
    overflow: hidden;
    transform: translateY(50px);
    animation: slideInUp 0.8s ease-out forwards;
}

/* Update contact info styling to match contact section */
.contact-info {
    background: rgba(255, 255, 255, 0.08);
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    position: relative;
    z-index: 2;
}

/* Update skills preview styling to match contact section */
.skills-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.skill-tag {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.85rem;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Update contact items styling to match contact section */
.contactus-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

/* Update contact icon styling to match contact section */
.contactus-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    background: linear-gradient(45deg, #e94560, #533483);
    -webkit-background-clip: text; 
    background-clip: text;
    transition: all 0.4s ease;
}

/* Update contact item headings to match contact section */
.contactus-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fbbf24;
}

/* Update contact item text to match contact section */
.contactus-item p {
    font-size: .7rem;
    color: rgba(255, 255, 255, 0.9);
    word-break: break-all;
}

/* Update contact item links to match contact section */
.contactus-item a {
    color: #fbbf24;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contactus-item a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

/* Floating elements for visual interest */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(233, 69, 96, 0.6);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

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

.floating-element:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

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

.floating-element:nth-child(4) {
    top: 40%;
    right: 30%;
    animation-delay: 1s;
}

.floating-element:nth-child(5) {
    bottom: 60%;
    left: 60%;
    animation-delay: 3s;
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: clamp(2.5rem, 10vw, 4rem);
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.4rem);
    }

    .hero-description {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
        padding: 1.5rem;
    }

    .cta-buttons-container {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        bottom: 30px;
    }

    .btn {
        width: 280px;
        justify-content: center;
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: clamp(2rem, 12vw, 3rem);
    }

    .hero-subtitle {
        font-size: clamp(0.9rem, 5vw, 1.2rem);
    }

    .hero-description {
        font-size: clamp(0.8rem, 4vw, 1rem);
        padding: 1rem;
    }

    .cta-buttons-container {
        bottom: -32px;
    }

    .btn {
        width: 250px;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

.about-container {
    position: relative;
    z-index: 2;
}

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

.about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s;
}

.about-text:hover::before {
    left: 100%;
}

.about-text:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.25);
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.about-text p:last-child {
    margin-bottom: 0;
}

.highlight-text {
         color: #F5F5DC;
         font-weight: 600;
         text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
         background: linear-gradient(45deg, #DEB887, #CD853F);
         -webkit-background-clip: text; 
   }

.profile-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.profile-card::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, 
        #8B7355, #A0522D, #8B4513, #654321, 
        #DEB887, #CD853F, #D2691E, #8B4513);
    border-radius: 30px;
    z-index: -1;
    animation: borderGlow 4s ease-in-out infinite alternate;
    background-size: 400% 400%;
}

@keyframes borderGlow {
    0% { 
        opacity: 0.6;
        background-position: 0% 50%;
    }
    50% {
        opacity: 0.8;
        background-position: 100% 50%;
    }
    100% { 
        opacity: 0.6;
        background-position: 0% 50%;
    }
}

.profile-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 
        0 40px 120px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.35);
}

.profile-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, 
        #8B7355 0%, #A0522D 50%, #8B4513 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    margin: 0 auto 2rem;
    font-weight: 800;
    border: 6px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.15);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.profile-img::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, 
        transparent, rgba(255, 255, 255, 0.08), transparent, 
        rgba(255, 255, 255, 0.03), transparent);
    animation: rotate 8s linear infinite;
}

.profile-img:hover {
    transform: scale(1.08) rotate(5deg);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.5),
        inset 0 2px 0 rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.45);
}

.profile-card h3 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 2;
}

.profile-role {
    color: #DEB887;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 2;
}

.profile-location {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.contact-info {
    background: rgba(255, 255, 255, 0.08);
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    position: relative;
    z-index: 2;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

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

.contact-item a {
    color: #DEB887;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.contact-item a:hover {
    color: #CD853F;
    text-shadow: 0 0 10px rgba(205, 133, 63, 0.5);
}

.contact-icon {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
    filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.3));
}

/* Skills Tags */
.skills-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.skill-tag {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.85rem;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.skill-tag:hover {
    background: rgba(205, 133, 63, 0.25);
    border-color: rgba(205, 133, 63, 0.5);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(205, 133, 63, 0.3);
}

/* Stats Grid - Enhanced */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(25px);
    padding: 3rem 2rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.18);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 
        0 35px 100px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(139, 115, 85, 0.5);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.4));
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #DEB887;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
    background: linear-gradient(45deg, #DEB887, #CD853F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.stat-description {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.85rem;
    margin-top: 0.5rem;
    font-weight: 400;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in-delay-1 { animation-delay: 0.2s; }
.fade-in-delay-2 { animation-delay: 0.4s; }
.fade-in-delay-3 { animation-delay: 0.6s; }

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

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

.skill-category {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.skill-category:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 
        0 40px 120px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(233, 69, 96, 0.3);
}

.skill-category h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    color: #fbbf24;
    text-shadow: 0 0 15px rgba(251, 191, 36, 0.4);
    border-bottom: 2px solid rgba(251, 191, 36, 0.2);
    padding-bottom: 1rem;
}

.skill-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.skill-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.skill-list li:hover {
    background: rgba(251, 191, 36, 0.1);
    padding-left: 1rem;
    border-radius: 10px;
}

.skill-list li:last-child {
    border-bottom: none;
}

.skill-list li::before {
    content: '✨';
    color: #fbbf24;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.skill-list li:hover::before {
    transform: scale(1.2) rotate(15deg);
}

/* Experience Section - Redesigned */
.experience {
    padding: 120px 0;
    background: linear-gradient(135deg, 
        #0f0f23 0%, 
        #1a1a2e 25%, 
        #16213e 50%, 
        #0f3460 75%, 
        #533483 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.experience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(83, 52, 131, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(251, 191, 36, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(83, 52, 131, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
    opacity: 0.6;
}

.experience::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: 
        conic-gradient(from 0deg at 50% 50%, 
            rgba(102, 126, 234, 0.05) 0deg, 
            transparent 60deg, 
            rgba(245, 87, 108, 0.03) 120deg, 
            transparent 180deg, 
            rgba(240, 147, 251, 0.05) 240deg, 
            transparent 300deg, 
            rgba(79, 172, 254, 0.03) 360deg);
    animation: rotate 30s linear infinite;
}

/* Floating particles effect for experience */
.experience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(83, 52, 131, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(251, 191, 36, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(83, 52, 131, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
    opacity: 0.6;
}

.experience .section-title {
    text-align: center;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
    background: linear-gradient(45deg, #ffffff, #e94560, #533483, #fbbf24, #ffffff);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

.experience .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #e94560, #533483, #fbbf24, transparent);
    border-radius: 2px;
    animation: expandWidth 2.5s ease-out forwards;
}

.timeline {
    max-width: 1200px;
    margin: 4rem auto 0;
    position: relative;
    z-index: 2;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, 
        #667eea 0%, 
        #f093fb 25%, 
        #f5576c 50%, 
        #4facfe 75%, 
        #667eea 100%);
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.5);
    animation: timelineGlow 3s ease-in-out infinite alternate;
}

@keyframes timelineGlow {
    0% { box-shadow: 0 0 20px rgba(102, 126, 234, 0.5); }
    100% { box-shadow: 0 0 30px rgba(240, 147, 251, 0.8); }
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    width: 50%;
    opacity: 0;
    transform: translateY(50px);
    animation: slideInUp 0.8s ease-out forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.3s; }
.timeline-item:nth-child(3) { animation-delay: 0.5s; }
.timeline-item:nth-child(4) { animation-delay: 0.7s; }
.timeline-item:nth-child(5) { animation-delay: 0.9s; }

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

.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 3rem;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 3rem;
}

.timeline-content:hover::before {
    opacity: 1;
}

.timeline-content:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 35px 100px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(102, 126, 234, 0.4);
}

.timeline-date {
    color: #fbbf24;
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(251, 191, 36, 0.15);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(251, 191, 36, 0.3);
    display: inline-block;
    transition: all 0.3s ease;
}

.timeline-content:hover .timeline-date {
    background: rgba(251, 191, 36, 0.25);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(251, 191, 36, 0.3);
}

.timeline-title {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    color: white;
    letter-spacing: -0.5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.timeline-content:hover .timeline-title {
    color: #fbbf24;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
}

.timeline-company {
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin-bottom: 1.5rem;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.timeline-content:hover .timeline-company {
    color: rgba(255, 255, 255, 1);
}

.timeline-description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    font-size: 0.95rem;
    font-weight: 400;
    transition: all 0.3s ease;
}

.timeline-description ul {
    margin-top: 1rem;
    padding-left: 1.2rem;
}

.timeline-description li {
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
    position: relative;
    transition: all 0.3s ease;
}

.timeline-description li::before {
    content: '▸';
    color: #fbbf24;
    font-weight: bold;
    position: absolute;
    left: -1.2rem;
    transition: all 0.3s ease;
}

.timeline-content:hover .timeline-description li::before {
    transform: scale(1.2);
    color: #ffffff;
}

.timeline-dot {
    position: absolute;
    width: 25px;
    height: 25px;
    background: linear-gradient(45deg, #667eea, #f093fb, #f5576c);
    border-radius: 50%;
    top: 2.5rem;
    border: 4px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 0 0 4px rgba(102, 126, 234, 0.3),
        0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    z-index: 3;
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -12.5px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -12.5px;
}

.timeline-content:hover + .timeline-dot,
.timeline-content:hover ~ .timeline-dot {
    transform: scale(1.3);
    box-shadow: 
        0 0 0 6px rgba(102, 126, 234, 0.4),
        0 15px 40px rgba(0, 0, 0, 0.4);
    background: linear-gradient(45deg, #fbbf24, #f093fb, #f5576c);
}

/* Responsive design for timeline */
@media (max-width: 768px) {
    .timeline:before {
        left: 30px;
    }
    
    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 4rem !important;
        padding-right: 1rem !important;
        text-align: left !important;
    }
    
    .timeline-dot {
        left: 17.5px !important;
        right: auto !important;
    }
    
    .timeline-content {
        padding: 2rem;
        border-radius: 20px;
    }
    
    .experience .section-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
}

/* Projects Section - Redesigned */
.projects {
    padding: 120px 0;
    background: linear-gradient(135deg, 
        #0f0f23 0%, 
        #1a1a2e 25%, 
        #16213e 50%, 
        #0f3460 75%, 
        #533483 100%);
    color: white;
    overflow: hidden;
}

.projects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(83, 52, 131, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(251, 191, 36, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(83, 52, 131, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
    opacity: 0.6;
}

.projects::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: 
        conic-gradient(from 0deg at 50% 50%, 
            rgba(233, 69, 96, 0.05) 0deg, 
            transparent 60deg, 
            rgba(83, 52, 131, 0.03) 120deg, 
            transparent 180deg, 
            rgba(233, 69, 96, 0.05) 240deg, 
            transparent 300deg, 
            rgba(83, 52, 131, 0.03) 360deg);
    animation: rotate 30s linear infinite;
}

/* Floating particles effect */
.projects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(83, 52, 131, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(251, 191, 36, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(83, 52, 131, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
    opacity: 0.6;
}

@keyframes sparkle {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-100px); }
}

.projects .section-title {
    text-align: center;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
    background: linear-gradient(45deg, #ffffff, #e94560, #533483, #fbbf24, #ffffff);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

.projects .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #e94560, #533483, #fbbf24, transparent);
    border-radius: 2px;
    animation: expandWidth 2.5s ease-out forwards;
}

.projects .section-subtitle {
    text-align: center;
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 5rem;
    font-weight: 400;
    position: relative;
    z-index: 2;
    letter-spacing: 1px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

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

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

.project-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transform: translateY(0);
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(233, 69, 96, 0.1) 0%, 
        rgba(83, 52, 131, 0.1) 50%, 
        rgba(15, 52, 96, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 30px;
}

.project-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        #e94560, #533483, #0f3460, #fbbf24, #e94560);
    border-radius: 30px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
    background-size: 400% 400%;
    animation: borderGradient 3s ease infinite;
}

@keyframes borderGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

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

.project-card:hover::after {
    opacity: 0.8;
}

.project-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: 
        0 40px 120px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(233, 69, 96, 0.3);
}

.project-category {
    color: #e94560;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: rgba(233, 69, 96, 0.15);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    border: 1px solid rgba(233, 69, 96, 0.3);
    display: inline-block;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.project-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(233, 69, 96, 0.2), transparent);
    transition: left 0.6s ease;
}

.project-card:hover .project-category::before {
    left: 100%;
}

.project-card:hover .project-category {
    background: rgba(233, 69, 96, 0.25);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(233, 69, 96, 0.3);
}

.project-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.3;
    transition: all 0.3s ease;
}

.project-card:hover .project-title {
    color: #fbbf24;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
}

.project-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 1.05rem;
    font-weight: 400;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.project-description a {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: #fbbf24;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 1rem 2rem;
    background: rgba(251, 191, 36, 0.1);
    border: 2px solid rgba(251, 191, 36, 0.3);
    border-radius: 30px;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.project-description a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.2), transparent);
    transition: left 0.6s ease;
}

.project-description a:hover::before {
    left: 100%;
}

.project-description a:hover {
    background: rgba(251, 191, 36, 0.2);
    border-color: rgba(251, 191, 36, 0.6);
    transform: translateY(-3px);
    box-shadow: 
        0 15px 35px rgba(251, 191, 36, 0.3),
        0 0 20px rgba(251, 191, 36, 0.2);
    color: #ffffff;
}

.project-description a::after {
    content: '↗';
    font-size: 1.2rem;
    font-weight: 800;
    transition: all 0.3s ease;
}

.project-description a:hover::after {
    transform: translate(3px, -3px) rotate(15deg);
}

/* Floating animation for cards */
.project-card:nth-child(odd) {
    animation: float 6s ease-in-out infinite;
}

.project-card:nth-child(even) {
    animation: float 6s ease-in-out infinite reverse;
}

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

/* Enhanced hover effects */
.project-card:hover .project-category {
    animation: pulse 1s ease-in-out infinite alternate;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .project-card {
        padding: 2rem;
        border-radius: 25px;
    }
    
    .projects .section-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
}

/* Enhanced Testimonials Section */
.testimonials {
    padding: 120px 0;
    background: linear-gradient(135deg, 
        #0f0f23 0%, 
        #1a1a2e 25%, 
        #16213e 50%, 
        #0f3460 75%, 
        #533483 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(83, 52, 131, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(251, 191, 36, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(83, 52, 131, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
    opacity: 0.6;
}

.testimonials::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: 
        conic-gradient(from 0deg at 50% 50%, 
            rgba(102, 126, 234, 0.05) 0deg, 
            transparent 60deg, 
            rgba(245, 87, 108, 0.03) 120deg, 
            transparent 180deg, 
            rgba(240, 147, 251, 0.05) 240deg, 
            transparent 300deg, 
            rgba(79, 172, 254, 0.03) 360deg);
    animation: rotate 30s linear infinite;
}

/* Enhanced floating particles effect */
.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(102, 126, 234, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(245, 87, 108, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(240, 147, 251, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(79, 172, 254, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(102, 126, 234, 0.3), transparent),
        radial-gradient(1px 1px at 200px 50px, rgba(251, 191, 36, 0.3), transparent),
        radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(245, 87, 108, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(240, 147, 251, 0.06) 0%, transparent 50%);
    background-repeat: repeat, no-repeat, no-repeat, no-repeat;
    background-size: 250px 120px, cover, cover, cover;
    animation: 
        sparkle 25s linear infinite,
        pulse 6s ease-in-out infinite alternate;
    opacity: 0.7;
}

.testimonials .section-title {
    text-align: center;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
    background: linear-gradient(45deg, #ffffff, #e94560, #533483, #fbbf24, #ffffff);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

.testimonials .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #e94560, #533483, #fbbf24, transparent);
    border-radius: 2px;
    animation: expandWidth 2.5s ease-out forwards;
}

.testimonials-carousel {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    margin-top: 4rem;
}

.carousel-container {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 450px;
    overflow: hidden;
    transform: translateY(50px);
    animation: slideInUp 0.8s ease-out forwards;
    margin-right: 3rem;
}

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }
.testimonial-card:nth-child(4) { animation-delay: 0.4s; }
.testimonial-card:nth-child(5) { animation-delay: 0.5s; }
.testimonial-card:nth-child(6) { animation-delay: 0.6s; }
.testimonial-card:nth-child(7) { animation-delay: 0.7s; }
.testimonial-card:nth-child(8) { animation-delay: 0.8s; }
.testimonial-card:nth-child(9) { animation-delay: 0.9s; }
.testimonial-card:nth-child(10) { animation-delay: 1.0s; }
.testimonial-card:nth-child(11) { animation-delay: 1.1s; }
.testimonial-card:nth-child(12) { animation-delay: 1.2s; }
.testimonial-card:nth-child(13) { animation-delay: 1.3s; }
.testimonial-card:nth-child(14) { animation-delay: 1.4s; }

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

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(233, 69, 96, 0.1) 0%, 
        rgba(83, 52, 131, 0.1) 50%, 
        rgba(15, 52, 96, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 30px;
}

.testimonial-card::after {
    content: '"';
    font-size: 6rem;
    color: rgba(251, 191, 36, 0.2);
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: 'Georgia', serif;
    transition: all 0.3s ease;
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-card:hover::after {
    color: rgba(251, 191, 36, 0.4);
    transform: scale(1.1);
}

.testimonial-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 40px 120px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(233, 69, 96, 0.4);
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 2rem;
    color: #ffffff;
    transition: color 0.3s ease;
}

.carousel-arrow:hover {
    color: #fbbf24;
}

.carousel-prev {
    left: -50px;
}

.carousel-next {
    right: -50px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: #fbbf24;
}

.dot:hover {
    background: #fbbf24;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .carousel-container {
        width: 90%;
    }
    
    .testimonial-card {
        margin-right: 2rem;
    }
}

@media (max-width: 576px) {
    .carousel-container {
        width: 100%;
    }
    
    .testimonial-card {
        margin-right: 1rem;
    }
}

.testimonial-quote {
    /* font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-weight: 400;
    font-style: italic;
    flex: 1;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease; */
}

.testimonial-quote.collapsed {
    /* max-height: 120px;
    overflow: hidden; */
}

.testimonial-quote.collapsed::after {
    /* content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(transparent, rgba(255, 255, 255, 0.1));
    pointer-events: none;
    border-radius: 0 0 30px 30px; */
}

.read-more-btn {
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    align-self: flex-start;
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.3);
    position: relative; 
}

.read-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.read-more-btn:hover::before {
    left: 100%;
}

.read-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(251, 191, 36, 0.4);
    background: linear-gradient(45deg, #f59e0b, #d97706);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.author-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    overflow: hidden;
}

.testimonial-card:hover .author-avatar {
    transform: scale(1.1);
    border-color: rgba(251, 191, 36, 0.5);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.testimonial-card:hover .author-avatar img {
    transform: scale(1.1);
}

.author-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.4rem;
    letter-spacing: -0.3px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.testimonial-card:hover .author-info h4 {
    color: #fbbf24;
    text-shadow: 0 0 15px rgba(251, 191, 36, 0.5);
}

.author-position {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    transition: all 0.3s ease;
}

.testimonial-card:hover .author-position {
    color: rgba(255, 255, 255, 1);
}

.author-company {
    font-size: 0.8rem;
    color: #fbbf24;
    font-weight: 600;
    margin-top: 0.2rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover .author-company {
    color: #ffffff;
}

/* Enhanced floating animation for cards */
.testimonial-card:nth-child(odd) {
    animation: float 8s ease-in-out infinite;
}

.testimonial-card:nth-child(even) {
    animation: float 8s ease-in-out infinite reverse;
}

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

/* Enhanced responsive design for testimonials */
@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testimonial-card {
        padding: 2rem;
        border-radius: 25px;
        height: auto;
        min-height: 400px;
    }
    
    .testimonials .section-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .author-avatar {
        width: 60px;
        height: 60px;
    }
}

.contactus-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.contactus-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.contactus-item:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 
        0 40px 120px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(233, 69, 96, 0.3);
}

.contactus-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    background: linear-gradient(45deg, #e94560, #533483);
    -webkit-background-clip: text; 
    background-clip: text;
    transition: all 0.4s ease;
}

.contactus-item:hover .contactus-icon {
    transform: scale(1.2) rotate(10deg);
    text-shadow: 0 0 20px rgba(233, 69, 96, 0.5);
}

.contactus-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fbbf24;
}

.contactus-item p {
    font-size: .7rem;
    color: rgba(255, 255, 255, 0.9);
    word-break: break-all;
}

.contactus-item a {
    color: #fbbf24;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contactus-item a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

/* Enhanced Footer */
.footer {
    background: #0f0f23;
    color: rgba(255, 255, 255, 0.8);
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, transparent 20%);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    background: linear-gradient(45deg, #e94560, #533483);
    border-color: rgba(233, 69, 96, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.footer p {
    font-size: 0.9rem;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 968px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .profile-section {
        order: -1;
    }

    .nav-menu {
        display: none;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

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

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

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

    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 2rem !important;
        padding-right: 0 !important;
        text-align: left !important;
    }

    .timeline:before {
        left: 10px;
    }

    .timeline-item .timeline-dot {
        left: 0 !important;
        right: auto !important;
    }

    .section-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }

    .section-subtitle {
        font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    }
}

@media (max-width: 768px) {
    .about {
        padding: 80px 0;
    }

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

    .about-text {
        padding: 2rem;
    }

    .profile-card {
        padding: 2rem 1.5rem;
    }

    .profile-img {
        width: 150px;
        height: 150px;
        font-size: 3rem;
    }

    .stat-card {
        padding: 2rem 1.5rem;
    }

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

    .about-grid {
        gap: 2rem;
    }

    .skills-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contactus-info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .skills-preview {
        justify-content: center;
    }

    .about-text p {
        font-size: 1rem;
    }

    .profile-card h3 {
        font-size: 1.5rem;
    }

    .profile-role {
        font-size: 1rem;
    }

    .cta-buttons-container {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 250px;
    }

    .section-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }

    .about-text {
        padding: 1.5rem;
    }

    .profile-card {
        padding: 1.5rem;
    }

    .stat-card {
        padding: 1.5rem;
    }

    .skill-category {
        padding: 2rem 1.5rem;
    }

    .project-card {
        padding: 2rem 1.5rem;
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    .contactus-item {
        padding: 2rem 1.5rem;
    }
}

.projects > .container,
.experience > .container,
.testimonials > .container {
    position: relative;
    z-index: 2;
}

@media (max-width: 1200px) {
    .contactus-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .contactus-info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Additional Mobile Improvements */
@media (max-width: 768px) {
    /* Improve touch targets */
    .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .btn {
        min-height: 44px;
        touch-action: manipulation;
    }

    /* Better spacing for mobile */
    .hero {
        margin-top: 70px;
        min-height: 90vh;
    }

    .about, .skills, .experience, .projects, .testimonials, .contact {
        padding: 80px 0;
    }

    /* Improve card layouts */
    .project-card, .testimonial-card, .skill-category {
        margin-bottom: 1.5rem;
    }

    /* Better text readability */
    .hero-description, .about-text p, .timeline-description {
        font-size: .9rem;
        line-height: 1.6;
    }

    /* Improve contact grid */
    .contactus-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    /* Better timeline on mobile */
    .timeline-content {
        padding: 1.5rem;
        margin-left: 1rem;
    }

    .timeline:before {
        left: 15px;
    }

    .timeline-dot {
        left: 7.5px !important;
    }
}

@media (max-width: 480px) {
    /* Even better mobile experience */
    .container {
        padding: 0 10px;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .about-text, .profile-card, .stat-card, .skill-category, 
    .project-card, .testimonial-card, .contactus-item {
        padding: 1.5rem;
    }

    .timeline-content {
        padding: 1.2rem;
        margin-left: 0.5rem;
    }

    .timeline:before {
        left: 10px;
    }

    .timeline-dot {
        left: 2.5px !important;
    }

    /* Better button sizing */
    .btn {
        width: 100%;
        max-width: 280px;
        margin: -16px auto
    }

    /* Improve social links */
    .social-links {
        gap: 1rem;
    }

    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

/* Landscape orientation improvements */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: 2rem 0;
    }

    .hero-content h1 {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-subtitle {
        font-size: clamp(0.9rem, 4vw, 1.2rem);
    }

    .hero-description {
        font-size: clamp(0.8rem, 3vw, 1rem);
    }

    .cta-buttons-container {
        position: relative;
        bottom: auto;
        margin-top: 2rem;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hamburger-menu span {
        height: 2px;
    }
}

.about .section-title {
    text-align: center;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 2;
    background: linear-gradient(45deg, #ffffff, #e94560, #533483, #fbbf24, #ffffff);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

.about .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #e94560, #533483, #fbbf24, transparent);
    border-radius: 2px;
    animation: expandWidth 2.5s ease-out forwards;
}

.skills .section-title {
    text-align: center;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 4rem;
    color: white;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
    background: linear-gradient(45deg, #ffffff, #e94560, #533483, #fbbf24, #ffffff);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

.skills .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #e94560, #533483, #fbbf24, transparent);
    border-radius: 2px;
    animation: expandWidth 2.5s ease-out forwards;
}

/* Enhanced Contact Section */
.contact {
    padding: 120px 0;
    background: linear-gradient(135deg, 
        #0f0f23 0%, 
        #1a1a2e 25%, 
        #16213e 50%, 
        #0f3460 75%, 
        #533483 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(83, 52, 131, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(251, 191, 36, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(83, 52, 131, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
    opacity: 0.6;
}

.contact .section-title {
    text-align: center;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 4rem;
    color: white;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
    background: linear-gradient(45deg, #ffffff, #e94560, #533483, #fbbf24, #ffffff);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

.contact .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #e94560, #533483, #fbbf24, transparent);
    border-radius: 2px;
    animation: expandWidth 2.5s ease-out forwards;
}

.hero-content h1 {
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.5);
    background: linear-gradient(45deg, #ff6b6b, #f9d74c, #ff6b6b);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
    position: relative;
}

.hero-subtitle {
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Amr Ebied - Full Stack .NET Developer</title>
<link rel="icon" href="amr_ebied_logo.svg" type="image/svg+xml">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap" rel="stylesheet">
<style>
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold-primary: #fbbf24;
    --gold-secondary: #f59e0b;
    --gold-dark: #d97706;
    --dark-primary: #1f2937;
    --dark-secondary: #111827;
    --gold-gradient: linear-gradient(45deg, #fbbf24, #f59e0b, #d97706);
    --dark-gradient: linear-gradient(135deg, #1f2937, #111827);
}

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

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

 

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    width: 30px;
    height: 25px;
    justify-content: space-between;
}

.hamburger-menu span {
    display: block;
    height: 3px;
    width: 100%;
    background: #333;
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 1000;
        display: flex; /* Ensure menu is display flex */
    }

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

    .nav-menu li {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-menu li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu li:nth-child(2) { transition-delay: 0.2s; }
    .nav-menu li:nth-child(3) { transition-delay: 0.3s; }
    .nav-menu li:nth-child(4) { transition-delay: 0.4s; }
    .nav-menu li:nth-child(5) { transition-delay: 0.5s; }
    .nav-menu li:nth-child(6) { transition-delay: 0.6s; }

    .nav-link {
        font-size: 1.2rem;
        font-weight: 600;
        padding: 1rem 2rem;
        border-radius: 10px;
        transition: all 0.3s ease;
    }

    .nav-link:hover {
        background: var(--gold-gradient);
        color: white;
        transform: scale(1.05);
    }
}

/* Hero Section - Redesigned */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #4c247d 0%, #a23b72 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    margin-top: 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(233, 69, 96, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(83, 52, 131, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(15, 52, 96, 0.08) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite alternate;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: 
        conic-gradient(from 0deg at 50% 50%, 
            rgba(233, 69, 96, 0.1) 0deg, 
            transparent 60deg, 
            rgba(83, 52, 131, 0.05) 120deg, 
            transparent 180deg, 
            rgba(233, 69, 96, 0.1) 240deg, 
            transparent 300deg, 
            rgba(83, 52, 131, 0.05) 360deg);
    animation: rotate 20s linear infinite;
}

/* About Section - Redesigned */
.about {
     
    background: linear-gradient(135deg, 
        #0f0f23 0%, 
        #1a1a2e 25%, 
        #16213e 50%, 
        #0f3460 75%, 
        #533483 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(83, 52, 131, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(251, 191, 36, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(83, 52, 131, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
    opacity: 0.6;
}

/* Skills Section */
.skills {
    padding: 120px 0;
    background: linear-gradient(135deg, 
        #0f0f23 0%, 
        #1a1a2e 25%, 
        #16213e 50%, 
        #0f3460 75%, 
        #533483 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.skills::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(83, 52, 131, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(251, 191, 36, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(83, 52, 131, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
    opacity: 0.6;
}

/* Experience Section - Updated to match contact section style */
.experience {
    padding: 120px 0;
    background: linear-gradient(135deg, 
        #0f0f23 0%, 
        #1a1a2e 25%, 
        #16213e 50%, 
        #0f3460 75%, 
        #533483 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.experience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(83, 52, 131, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(251, 191, 36, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(83, 52, 131, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
    opacity: 0.6;
}

/* Projects Section - Updated to match contact section style */
.projects {
    padding: 120px 0;
    background: linear-gradient(135deg, 
        #0f0f23 0%, 
        #1a1a2e 25%, 
        #16213e 50%, 
        #0f3460 75%, 
        #533483 100%);
    color: white;
    overflow: hidden;
}

.projects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(83, 52, 131, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(251, 191, 36, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(83, 52, 131, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
    opacity: 0.6;
}

/* Testimonials Section - Updated to match contact section style */
.testimonials {
    padding: 120px 0;
    background: linear-gradient(135deg, 
        #0f0f23 0%, 
        #1a1a2e 25%, 
        #16213e 50%, 
        #0f3460 75%, 
        #533483 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(83, 52, 131, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(251, 191, 36, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(83, 52, 131, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
    opacity: 0.6;
}

/* Update section titles to match contact section style */
.section-title {
    text-align: center;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
    background: linear-gradient(45deg, #ffffff, #e94560, #533483, #fbbf24, #ffffff);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #e94560, #533483, #fbbf24, transparent);
    border-radius: 2px;
    animation: expandWidth 2.5s ease-out forwards;
}

.section-subtitle {
    text-align: center;
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 4rem;
    font-weight: 400;
    position: relative;
    z-index: 2;
    letter-spacing: 1px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* Update all containers to have proper z-index */
.about > .container,
.skills > .container,
.experience > .container,
.projects > .container,
.testimonials > .container,
.contact > .container {
    position: relative;
    z-index: 2;
}

/* Update about text styling to match contact section */
.about-text {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px);
    padding: 2.5rem;
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Update profile card styling to match contact section */
.profile-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(30px);
    padding: 3rem 2.5rem;
    border-radius: 30px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-align: center;
    border: 3px solid rgba(255, 255, 255, 0.2);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 400px;
}

/* Update stat cards styling to match contact section */
.stat-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(25px);
    padding: 3rem 2rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.18);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Update skill categories styling to match contact section */
.skill-category {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Update timeline content styling to match contact section */
.timeline-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

/* Update project cards styling to match contact section */
.project-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transform: translateY(0);
}

/* Update testimonial cards styling to match contact section */
.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 450px;
    overflow: hidden;
    transform: translateY(50px);
    animation: slideInUp 0.8s ease-out forwards;
}

/* Update contact info styling to match contact section */
.contact-info {
    background: rgba(255, 255, 255, 0.08);
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    position: relative;
    z-index: 2;
}

/* Update skills preview styling to match contact section */
.skills-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.skill-tag {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.85rem;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Update contact items styling to match contact section */
.contactus-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

/* Update contact icon styling to match contact section */
.contactus-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    background: linear-gradient(45deg, #e94560, #533483);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.4s ease;
}

/* Update contact item headings to match contact section */
.contactus-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fbbf24;
}

/* Update contact item text to match contact section */
.contactus-item p {
    font-size: .7rem;
    color: rgba(255, 255, 255, 0.9);
    word-break: break-all;
}

/* Update contact item links to match contact section */
.contactus-item a {
    color: #fbbf24;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contactus-item a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

/* Floating elements for visual interest */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(233, 69, 96, 0.6);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

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

.floating-element:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

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

.floating-element:nth-child(4) {
    top: 40%;
    right: 30%;
    animation-delay: 1s;
}

.floating-element:nth-child(5) {
    bottom: 60%;
    left: 60%;
    animation-delay: 3s;
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: clamp(2.5rem, 10vw, 4rem);
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.4rem);
    }

    .hero-description {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
        padding: 1.5rem;
    }

    .cta-buttons-container {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        bottom: 30px;
    }

    .btn {
        width: 280px;
        justify-content: center;
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: clamp(2rem, 12vw, 3rem);
    }

    .hero-subtitle {
        font-size: clamp(0.9rem, 5vw, 1.2rem);
    }

    .hero-description {
        font-size: clamp(0.8rem, 4vw, 1rem);
        padding: 1rem;
    }

    .cta-buttons-container {
        bottom: -32px;
    }

    .btn {
        width: 250px;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

.about-container {
    position: relative;
    z-index: 2;
}

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

.about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s;
}

.about-text:hover::before {
    left: 100%;
}

.about-text:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.25);
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.about-text p:last-child {
    margin-bottom: 0;
}

.highlight-text {
         color: #F5F5DC;
         font-weight: 600;
         text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
         background: linear-gradient(45deg, #DEB887, #CD853F);
         -webkit-background-clip: text; 
   }

.profile-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.profile-card::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, 
        #8B7355, #A0522D, #8B4513, #654321, 
        #DEB887, #CD853F, #D2691E, #8B4513);
    border-radius: 30px;
    z-index: -1;
    animation: borderGlow 4s ease-in-out infinite alternate;
    background-size: 400% 400%;
}

@keyframes borderGlow {
    0% { 
        opacity: 0.6;
        background-position: 0% 50%;
    }
    50% {
        opacity: 0.8;
        background-position: 100% 50%;
    }
    100% { 
        opacity: 0.6;
        background-position: 0% 50%;
    }
}

.profile-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 
        0 40px 120px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.35);
}

.profile-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, 
        #8B7355 0%, #A0522D 50%, #8B4513 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    margin: 0 auto 2rem;
    font-weight: 800;
    border: 6px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.15);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.profile-img::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, 
        transparent, rgba(255, 255, 255, 0.08), transparent, 
        rgba(255, 255, 255, 0.03), transparent);
    animation: rotate 8s linear infinite;
}

.profile-img:hover {
    transform: scale(1.08) rotate(5deg);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.5),
        inset 0 2px 0 rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.45);
}

.profile-card h3 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 2;
}

.profile-role {
    color: #DEB887;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 2;
}

.profile-location {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.contact-info {
    background: rgba(255, 255, 255, 0.08);
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    position: relative;
    z-index: 2;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

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

.contact-item a {
    color: #DEB887;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.contact-item a:hover {
    color: #CD853F;
    text-shadow: 0 0 10px rgba(205, 133, 63, 0.5);
}

.contact-icon {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
    filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.3));
}

/* Skills Tags */
.skills-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.skill-tag {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.85rem;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.skill-tag:hover {
    background: rgba(205, 133, 63, 0.25);
    border-color: rgba(205, 133, 63, 0.5);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(205, 133, 63, 0.3);
}

/* Stats Grid - Enhanced */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(25px);
    padding: 3rem 2rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.18);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 
        0 35px 100px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(139, 115, 85, 0.5);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.4));
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #DEB887;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
    background: linear-gradient(45deg, #DEB887, #CD853F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.stat-description {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.85rem;
    margin-top: 0.5rem;
    font-weight: 400;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in-delay-1 { animation-delay: 0.2s; }
.fade-in-delay-2 { animation-delay: 0.4s; }
.fade-in-delay-3 { animation-delay: 0.6s; }

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

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

.skill-category {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.skill-category:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 
        0 40px 120px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(233, 69, 96, 0.3);
}

.skill-category h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    color: #fbbf24;
    text-shadow: 0 0 15px rgba(251, 191, 36, 0.4);
    border-bottom: 2px solid rgba(251, 191, 36, 0.2);
    padding-bottom: 1rem;
}

.skill-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.skill-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.skill-list li:hover {
    background: rgba(251, 191, 36, 0.1);
    padding-left: 1rem;
    border-radius: 10px;
}

.skill-list li:last-child {
    border-bottom: none;
}

.skill-list li::before {
    content: '✨';
    color: #fbbf24;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.skill-list li:hover::before {
    transform: scale(1.2) rotate(15deg);
}

/* Experience Section - Redesigned */
.experience {
    padding: 120px 0;
    background: linear-gradient(135deg, 
        #0f0f23 0%, 
        #1a1a2e 25%, 
        #16213e 50%, 
        #0f3460 75%, 
        #533483 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.experience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(83, 52, 131, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(251, 191, 36, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(83, 52, 131, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
    opacity: 0.6;
}

.experience::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: 
        conic-gradient(from 0deg at 50% 50%, 
            rgba(102, 126, 234, 0.05) 0deg, 
            transparent 60deg, 
            rgba(245, 87, 108, 0.03) 120deg, 
            transparent 180deg, 
            rgba(240, 147, 251, 0.05) 240deg, 
            transparent 300deg, 
            rgba(79, 172, 254, 0.03) 360deg);
    animation: rotate 30s linear infinite;
}

/* Floating particles effect for experience */
.experience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(83, 52, 131, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(251, 191, 36, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(83, 52, 131, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
    opacity: 0.6;
}

.experience .section-title {
    text-align: center;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
    background: linear-gradient(45deg, #ffffff, #e94560, #533483, #fbbf24, #ffffff);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

.experience .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #e94560, #533483, #fbbf24, transparent);
    border-radius: 2px;
    animation: expandWidth 2.5s ease-out forwards;
}

.timeline {
    max-width: 1200px;
    margin: 4rem auto 0;
    position: relative;
    z-index: 2;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, 
        #667eea 0%, 
        #f093fb 25%, 
        #f5576c 50%, 
        #4facfe 75%, 
        #667eea 100%);
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.5);
    animation: timelineGlow 3s ease-in-out infinite alternate;
}

@keyframes timelineGlow {
    0% { box-shadow: 0 0 20px rgba(102, 126, 234, 0.5); }
    100% { box-shadow: 0 0 30px rgba(240, 147, 251, 0.8); }
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    width: 50%;
    opacity: 0;
    transform: translateY(50px);
    animation: slideInUp 0.8s ease-out forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.3s; }
.timeline-item:nth-child(3) { animation-delay: 0.5s; }
.timeline-item:nth-child(4) { animation-delay: 0.7s; }
.timeline-item:nth-child(5) { animation-delay: 0.9s; }

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

.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 3rem;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 3rem;
}

.timeline-content:hover::before {
    opacity: 1;
}

.timeline-content:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 35px 100px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(102, 126, 234, 0.4);
}

.timeline-date {
    color: #fbbf24;
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(251, 191, 36, 0.15);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(251, 191, 36, 0.3);
    display: inline-block;
    transition: all 0.3s ease;
}

.timeline-content:hover .timeline-date {
    background: rgba(251, 191, 36, 0.25);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(251, 191, 36, 0.3);
}

.timeline-title {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    color: white;
    letter-spacing: -0.5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.timeline-content:hover .timeline-title {
    color: #fbbf24;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
}

.timeline-company {
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin-bottom: 1.5rem;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.timeline-content:hover .timeline-company {
    color: rgba(255, 255, 255, 1);
}

.timeline-description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    font-size: 0.95rem;
    font-weight: 400;
    transition: all 0.3s ease;
}

.timeline-description ul {
    margin-top: 1rem;
    padding-left: 1.2rem;
}

.timeline-description li {
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
    position: relative;
    transition: all 0.3s ease;
}

.timeline-description li::before {
    content: '▸';
    color: #fbbf24;
    font-weight: bold;
    position: absolute;
    left: -1.2rem;
    transition: all 0.3s ease;
}

.timeline-content:hover .timeline-description li::before {
    transform: scale(1.2);
    color: #ffffff;
}

.timeline-dot {
    position: absolute;
    width: 25px;
    height: 25px;
    background: linear-gradient(45deg, #667eea, #f093fb, #f5576c);
    border-radius: 50%;
    top: 2.5rem;
    border: 4px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 0 0 4px rgba(102, 126, 234, 0.3),
        0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    z-index: 3;
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -12.5px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -12.5px;
}

.timeline-content:hover + .timeline-dot,
.timeline-content:hover ~ .timeline-dot {
    transform: scale(1.3);
    box-shadow: 
        0 0 0 6px rgba(102, 126, 234, 0.4),
        0 15px 40px rgba(0, 0, 0, 0.4);
    background: linear-gradient(45deg, #fbbf24, #f093fb, #f5576c);
}

/* Responsive design for timeline */
@media (max-width: 768px) {
    .timeline:before {
        left: 30px;
    }
    
    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 4rem !important;
        padding-right: 1rem !important;
        text-align: left !important;
    }
    
    .timeline-dot {
        left: 17.5px !important;
        right: auto !important;
    }
    
    .timeline-content {
        padding: 2rem;
        border-radius: 20px;
    }
    
    .experience .section-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
}

/* Projects Section - Redesigned */
.projects {
    padding: 120px 0;
    background: linear-gradient(135deg, 
        #0f0f23 0%, 
        #1a1a2e 25%, 
        #16213e 50%, 
        #0f3460 75%, 
        #533483 100%);
    color: white;
    overflow: hidden;
}

.projects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(83, 52, 131, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(251, 191, 36, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(83, 52, 131, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
    opacity: 0.6;
}

.projects::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: 
        conic-gradient(from 0deg at 50% 50%, 
            rgba(233, 69, 96, 0.05) 0deg, 
            transparent 60deg, 
            rgba(83, 52, 131, 0.03) 120deg, 
            transparent 180deg, 
            rgba(233, 69, 96, 0.05) 240deg, 
            transparent 300deg, 
            rgba(83, 52, 131, 0.03) 360deg);
    animation: rotate 30s linear infinite;
}

/* Floating particles effect */
.projects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(83, 52, 131, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(251, 191, 36, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(83, 52, 131, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
    opacity: 0.6;
}

@keyframes sparkle {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-100px); }
}

.projects .section-title {
    text-align: center;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
    background: linear-gradient(45deg, #ffffff, #e94560, #533483, #fbbf24, #ffffff);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

.projects .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #e94560, #533483, #fbbf24, transparent);
    border-radius: 2px;
    animation: expandWidth 2.5s ease-out forwards;
}

.projects .section-subtitle {
    text-align: center;
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 5rem;
    font-weight: 400;
    position: relative;
    z-index: 2;
    letter-spacing: 1px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

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

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

.project-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transform: translateY(0);
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(233, 69, 96, 0.1) 0%, 
        rgba(83, 52, 131, 0.1) 50%, 
        rgba(15, 52, 96, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 30px;
}

.project-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        #e94560, #533483, #0f3460, #fbbf24, #e94560);
    border-radius: 30px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
    background-size: 400% 400%;
    animation: borderGradient 3s ease infinite;
}

@keyframes borderGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

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

.project-card:hover::after {
    opacity: 0.8;
}

.project-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: 
        0 40px 120px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(233, 69, 96, 0.3);
}

.project-category {
    color: #e94560;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: rgba(233, 69, 96, 0.15);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    border: 1px solid rgba(233, 69, 96, 0.3);
    display: inline-block;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.project-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(233, 69, 96, 0.2), transparent);
    transition: left 0.6s ease;
}

.project-card:hover .project-category::before {
    left: 100%;
}

.project-card:hover .project-category {
    background: rgba(233, 69, 96, 0.25);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(233, 69, 96, 0.3);
}

.project-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.3;
    transition: all 0.3s ease;
}

.project-card:hover .project-title {
    color: #fbbf24;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
}

.project-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 1.05rem;
    font-weight: 400;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.project-description a {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: #fbbf24;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 1rem 2rem;
    background: rgba(251, 191, 36, 0.1);
    border: 2px solid rgba(251, 191, 36, 0.3);
    border-radius: 30px;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.project-description a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.2), transparent);
    transition: left 0.6s ease;
}

.project-description a:hover::before {
    left: 100%;
}

.project-description a:hover {
    background: rgba(251, 191, 36, 0.2);
    border-color: rgba(251, 191, 36, 0.6);
    transform: translateY(-3px);
    box-shadow: 
        0 15px 35px rgba(251, 191, 36, 0.3),
        0 0 20px rgba(251, 191, 36, 0.2);
    color: #ffffff;
}

.project-description a::after {
    content: '↗';
    font-size: 1.2rem;
    font-weight: 800;
    transition: all 0.3s ease;
}

.project-description a:hover::after {
    transform: translate(3px, -3px) rotate(15deg);
}

/* Floating animation for cards */
.project-card:nth-child(odd) {
    animation: float 6s ease-in-out infinite;
}

.project-card:nth-child(even) {
    animation: float 6s ease-in-out infinite reverse;
}

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

/* Enhanced hover effects */
.project-card:hover .project-category {
    animation: pulse 1s ease-in-out infinite alternate;
}

/* Responsive adjustments */
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Amr Ebied - Full Stack .NET Developer</title>
<link rel="icon" href="amr_ebied_logo.svg" type="image/svg+xml">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap" rel="stylesheet">
<style>
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold-primary: #fbbf24;
    --gold-secondary: #f59e0b;
    --gold-dark: #d97706;
    --dark-primary: #1f2937;
    --dark-secondary: #111827;
    --gold-gradient: linear-gradient(45deg, #fbbf24, #f59e0b, #d97706);
    --dark-gradient: linear-gradient(135deg, #1f2937, #111827);
}

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

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

 
/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    width: 30px;
    height: 25px;
    justify-content: space-between;
}

.hamburger-menu span {
    display: block;
    height: 3px;
    width: 100%;
    background: #333;
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 1000;
        display: flex; /* Ensure menu is display flex */
    }

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

    .nav-menu li {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-menu li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu li:nth-child(2) { transition-delay: 0.2s; }
    .nav-menu li:nth-child(3) { transition-delay: 0.3s; }
    .nav-menu li:nth-child(4) { transition-delay: 0.4s; }
    .nav-menu li:nth-child(5) { transition-delay: 0.5s; }
    .nav-menu li:nth-child(6) { transition-delay: 0.6s; }

    .nav-link {
        font-size: 1.2rem;
        font-weight: 600;
        padding: 1rem 2rem;
        border-radius: 10px;
        transition: all 0.3s ease;
    }

    .nav-link:hover {
        background: var(--gold-gradient);
        color: white;
        transform: scale(1.05);
    }
}

/* Hero Section - Redesigned */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 25%, #0f3460 50%, #533483 75%, #e94560 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    margin-top: 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(233, 69, 96, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(83, 52, 131, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(15, 52, 96, 0.08) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite alternate;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: 
        conic-gradient(from 0deg at 50% 50%, 
            rgba(233, 69, 96, 0.1) 0deg, 
            transparent 60deg, 
            rgba(83, 52, 131, 0.05) 120deg, 
            transparent 180deg, 
            rgba(233, 69, 96, 0.1) 240deg, 
            transparent 300deg, 
            rgba(83, 52, 131, 0.05) 360deg);
    animation: rotate 20s linear infinite;
}

/* About Section - Redesigned */
.about {
     
    background: linear-gradient(135deg, 
        #0f0f23 0%, 
        #1a1a2e 25%, 
        #16213e 50%, 
        #0f3460 75%, 
        #533483 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(83, 52, 131, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(251, 191, 36, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(83, 52, 131, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
    opacity: 0.6;
}

/* Skills Section */
.skills {
  
    background: linear-gradient(135deg, 
        #0f0f23 0%, 
        #1a1a2e 25%, 
        #16213e 50%, 
        #0f3460 75%, 
        #533483 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.skills::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(83, 52, 131, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(251, 191, 36, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(83, 52, 131, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
    opacity: 0.6;
}

/* Experience Section - Updated to match contact section style */
.experience {
    
    background: linear-gradient(135deg, 
        #0f0f23 0%, 
        #1a1a2e 25%, 
        #16213e 50%, 
        #0f3460 75%, 
        #533483 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.experience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(83, 52, 131, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(251, 191, 36, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(83, 52, 131, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
    opacity: 0.6;
}

/* Projects Section - Updated to match contact section style */
.projects {
    
    background: linear-gradient(135deg, 
        #0f0f23 0%, 
        #1a1a2e 25%, 
        #16213e 50%, 
        #0f3460 75%, 
        #533483 100%);
    color: white;
    overflow: hidden;
}

.projects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(83, 52, 131, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(251, 191, 36, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(83, 52, 131, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
    opacity: 0.6;
}

/* Testimonials Section - Updated to match contact section style */
.testimonials {
    
    background: linear-gradient(135deg, 
        #0f0f23 0%, 
        #1a1a2e 25%, 
        #16213e 50%, 
        #0f3460 75%, 
        #533483 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(83, 52, 131, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(251, 191, 36, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(83, 52, 131, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
    opacity: 0.6;
}

/* Update section titles to match contact section style */
.section-title {
    text-align: center;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
    background: linear-gradient(45deg, #ffffff, #e94560, #533483, #fbbf24, #ffffff);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #e94560, #533483, #fbbf24, transparent);
    border-radius: 2px;
    animation: expandWidth 2.5s ease-out forwards;
}

.section-subtitle {
    text-align: center;
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 4rem;
    font-weight: 400;
    position: relative;
    z-index: 2;
    letter-spacing: 1px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* Update all containers to have proper z-index */
.about > .container,
.skills > .container,
.experience > .container,
.projects > .container,
.testimonials > .container,
.contact > .container {
    position: relative;
    z-index: 2;
}

/* Update about text styling to match contact section */
.about-text {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px);
    padding: 2.5rem;
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Update profile card styling to match contact section */
.profile-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(30px);
    padding: 3rem 2.5rem;
    border-radius: 30px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-align: center;
    border: 3px solid rgba(255, 255, 255, 0.2);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 400px;
}

/* Update stat cards styling to match contact section */
.stat-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(25px);
    padding: 3rem 2rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.18);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Update skill categories styling to match contact section */
.skill-category {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Update timeline content styling to match contact section */
.timeline-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

/* Update project cards styling to match contact section */
.project-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transform: translateY(0);
}

/* Update testimonial cards styling to match contact section */
.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 450px;
    overflow: hidden;
    transform: translateY(50px);
    animation: slideInUp 0.8s ease-out forwards;
}

/* Update contact info styling to match contact section */
.contact-info {
    background: rgba(255, 255, 255, 0.08);
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    position: relative;
    z-index: 2;
}

/* Update skills preview styling to match contact section */
.skills-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.skill-tag {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.85rem;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Update contact items styling to match contact section */
.contactus-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

/* Update contact icon styling to match contact section */
.contactus-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    background: linear-gradient(45deg, #e94560, #533483);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.4s ease;
}

/* Update contact item headings to match contact section */
.contactus-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fbbf24;
}

/* Update contact item text to match contact section */
.contactus-item p {
    font-size: .7rem;
    color: rgba(255, 255, 255, 0.9);
    word-break: break-all;
}

/* Update contact item links to match contact section */
.contactus-item a {
    color: #fbbf24;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contactus-item a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

/* Floating elements for visual interest */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(233, 69, 96, 0.6);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

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

.floating-element:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

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

.floating-element:nth-child(4) {
    top: 40%;
    right: 30%;
    animation-delay: 1s;
}

.floating-element:nth-child(5) {
    bottom: 60%;
    left: 60%;
    animation-delay: 3s;
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: clamp(2.5rem, 10vw, 4rem);
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.4rem);
    }

    .hero-description {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
        padding: 1.5rem;
    }

    .cta-buttons-container {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        bottom: 30px;
    }

    .btn {
        width: 280px;
        justify-content: center;
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: clamp(2rem, 12vw, 3rem);
    }

    .hero-subtitle {
        font-size: clamp(0.9rem, 5vw, 1.2rem);
    }

    .hero-description {
        font-size: clamp(0.8rem, 4vw, 1rem);
        padding: 1rem;
    }

    .cta-buttons-container {
        bottom: -32px;
    }

    .btn {
        width: 250px;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

.about-container {
    position: relative;
    z-index: 2;
}

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

.about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s;
}

.about-text:hover::before {
    left: 100%;
}

.about-text:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.25);
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.about-text p:last-child {
    margin-bottom: 0;
}

.highlight-text {
         color: #F5F5DC;
         font-weight: 600;
         text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
         background: linear-gradient(45deg, #DEB887, #CD853F);
         -webkit-background-clip: text; 
   }

.profile-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.profile-card::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, 
        #8B7355, #A0522D, #8B4513, #654321, 
        #DEB887, #CD853F, #D2691E, #8B4513);
    border-radius: 30px;
    z-index: -1;
    animation: borderGlow 4s ease-in-out infinite alternate;
    background-size: 400% 400%;
}

@keyframes borderGlow {
    0% { 
        opacity: 0.6;
        background-position: 0% 50%;
    }
    50% {
        opacity: 0.8;
        background-position: 100% 50%;
    }
    100% { 
        opacity: 0.6;
        background-position: 0% 50%;
    }
}

.profile-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 
        0 40px 120px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.35);
}

.profile-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, 
        #8B7355 0%, #A0522D 50%, #8B4513 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    margin: 0 auto 2rem;
    font-weight: 800;
    border: 6px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.15);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.profile-img::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, 
        transparent, rgba(255, 255, 255, 0.08), transparent, 
        rgba(255, 255, 255, 0.03), transparent);
    animation: rotate 8s linear infinite;
}

.profile-img:hover {
    transform: scale(1.08) rotate(5deg);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.5),
        inset 0 2px 0 rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.45);
}

.profile-card h3 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 2;
}

.profile-role {
    color: #DEB887;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 2;
}

.profile-location {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.contact-info {
    background: rgba(255, 255, 255, 0.08);
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    position: relative;
    z-index: 2;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

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

.contact-item a {
    color: #DEB887;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.contact-item a:hover {
    color: #CD853F;
    text-shadow: 0 0 10px rgba(205, 133, 63, 0.5);
}

.contact-icon {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
    filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.3));
}

/* Skills Tags */
.skills-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.skill-tag {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.85rem;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.skill-tag:hover {
    background: rgba(205, 133, 63, 0.25);
    border-color: rgba(205, 133, 63, 0.5);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(205, 133, 63, 0.3);
}

/* Stats Grid - Enhanced */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(25px);
    padding: 3rem 2rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.18);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 
        0 35px 100px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(139, 115, 85, 0.5);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.4));
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #DEB887;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
    background: linear-gradient(45deg, #DEB887, #CD853F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.stat-description {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.85rem;
    margin-top: 0.5rem;
    font-weight: 400;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in-delay-1 { animation-delay: 0.2s; }
.fade-in-delay-2 { animation-delay: 0.4s; }
.fade-in-delay-3 { animation-delay: 0.6s; }

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

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

.skill-category {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.skill-category:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 
        0 40px 120px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(233, 69, 96, 0.3);
}

.skill-category h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    color: #fbbf24;
    text-shadow: 0 0 15px rgba(251, 191, 36, 0.4);
    border-bottom: 2px solid rgba(251, 191, 36, 0.2);
    padding-bottom: 1rem;
}

.skill-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.skill-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.skill-list li:hover {
    background: rgba(251, 191, 36, 0.1);
    padding-left: 1rem;
    border-radius: 10px;
}

.skill-list li:last-child {
    border-bottom: none;
}

.skill-list li::before {
    content: '✨';
    color: #fbbf24;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.skill-list li:hover::before {
    transform: scale(1.2) rotate(15deg);
}

/* Experience Section - Redesigned */
.experience {
   
    background: linear-gradient(135deg, 
        #0f0f23 0%, 
        #1a1a2e 25%, 
        #16213e 50%, 
        #0f3460 75%, 
        #533483 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.experience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(83, 52, 131, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(251, 191, 36, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(83, 52, 131, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
    opacity: 0.6;
}

.experience::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: 
        conic-gradient(from 0deg at 50% 50%, 
            rgba(102, 126, 234, 0.05) 0deg, 
            transparent 60deg, 
            rgba(245, 87, 108, 0.03) 120deg, 
            transparent 180deg, 
            rgba(240, 147, 251, 0.05) 240deg, 
            transparent 300deg, 
            rgba(79, 172, 254, 0.03) 360deg);
    animation: rotate 30s linear infinite;
}

/* Floating particles effect for experience */
.experience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(83, 52, 131, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(251, 191, 36, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(83, 52, 131, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
    opacity: 0.6;
}

.experience .section-title {
    text-align: center;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
    background: linear-gradient(45deg, #ffffff, #e94560, #533483, #fbbf24, #ffffff);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

.experience .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #e94560, #533483, #fbbf24, transparent);
    border-radius: 2px;
    animation: expandWidth 2.5s ease-out forwards;
}

.timeline {
    max-width: 1200px;
    margin: 4rem auto 0;
    position: relative;
    z-index: 2;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, 
        #667eea 0%, 
        #f093fb 25%, 
        #f5576c 50%, 
        #4facfe 75%, 
        #667eea 100%);
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.5);
    animation: timelineGlow 3s ease-in-out infinite alternate;
}

@keyframes timelineGlow {
    0% { box-shadow: 0 0 20px rgba(102, 126, 234, 0.5); }
    100% { box-shadow: 0 0 30px rgba(240, 147, 251, 0.8); }
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    width: 50%;
    opacity: 0;
    transform: translateY(50px);
    animation: slideInUp 0.8s ease-out forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.3s; }
.timeline-item:nth-child(3) { animation-delay: 0.5s; }
.timeline-item:nth-child(4) { animation-delay: 0.7s; }
.timeline-item:nth-child(5) { animation-delay: 0.9s; }

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

.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 3rem;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 3rem;
}

.timeline-content:hover::before {
    opacity: 1;
}

.timeline-content:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 35px 100px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(102, 126, 234, 0.4);
}

.timeline-date {
    color: #fbbf24;
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(251, 191, 36, 0.15);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(251, 191, 36, 0.3);
    display: inline-block;
    transition: all 0.3s ease;
}

.timeline-content:hover .timeline-date {
    background: rgba(251, 191, 36, 0.25);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(251, 191, 36, 0.3);
}

.timeline-title {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    color: white;
    letter-spacing: -0.5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.timeline-content:hover .timeline-title {
    color: #fbbf24;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
}

.timeline-company {
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin-bottom: 1.5rem;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.timeline-content:hover .timeline-company {
    color: rgba(255, 255, 255, 1);
}

.timeline-description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    font-size: 0.95rem;
    font-weight: 400;
    transition: all 0.3s ease;
}

.timeline-description ul {
    margin-top: 1rem;
    padding-left: 1.2rem;
}

.timeline-description li {
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
    position: relative;
    transition: all 0.3s ease;
}

.timeline-description li::before {
    content: '▸';
    color: #fbbf24;
    font-weight: bold;
    position: absolute;
    left: -1.2rem;
    transition: all 0.3s ease;
}

.timeline-content:hover .timeline-description li::before {
    transform: scale(1.2);
    color: #ffffff;
}

.timeline-dot {
    position: absolute;
    width: 25px;
    height: 25px;
    background: linear-gradient(45deg, #667eea, #f093fb, #f5576c);
    border-radius: 50%;
    top: 2.5rem;
    border: 4px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 0 0 4px rgba(102, 126, 234, 0.3),
        0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    z-index: 3;
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -12.5px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -12.5px;
}

.timeline-content:hover + .timeline-dot,
.timeline-content:hover ~ .timeline-dot {
    transform: scale(1.3);
    box-shadow: 
        0 0 0 6px rgba(102, 126, 234, 0.4),
        0 15px 40px rgba(0, 0, 0, 0.4);
    background: linear-gradient(45deg, #fbbf24, #f093fb, #f5576c);
}

/* Responsive design for timeline */
@media (max-width: 768px) {
    .timeline:before {
        left: 30px;
    }
    
    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 4rem !important;
        padding-right: 1rem !important;
        text-align: left !important;
    }
    
    .timeline-dot {
        left: 17.5px !important;
        right: auto !important;
    }
    
    .timeline-content {
        padding: 2rem;
        border-radius: 20px;
    }
    
    .experience .section-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
}

/* Projects Section - Redesigned */
.projects {
     
    background: linear-gradient(135deg, 
        #0f0f23 0%, 
        #1a1a2e 25%, 
        #16213e 50%, 
        #0f3460 75%, 
        #533483 100%);
    color: white;
    overflow: hidden;
}

.projects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(83, 52, 131, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(251, 191, 36, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(83, 52, 131, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
    opacity: 0.6;
}

.projects::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: 
        conic-gradient(from 0deg at 50% 50%, 
            rgba(233, 69, 96, 0.05) 0deg, 
            transparent 60deg, 
            rgba(83, 52, 131, 0.03) 120deg, 
            transparent 180deg, 
            rgba(233, 69, 96, 0.05) 240deg, 
            transparent 300deg, 
            rgba(83, 52, 131, 0.03) 360deg);
    animation: rotate 30s linear infinite;
}

/* Floating particles effect */
.projects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(83, 52, 131, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(251, 191, 36, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(83, 52, 131, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
    opacity: 0.6;
}

@keyframes sparkle {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-100px); }
}

.projects .section-title {
    text-align: center;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
    background: linear-gradient(45deg, #ffffff, #e94560, #533483, #fbbf24, #ffffff);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

.projects .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #e94560, #533483, #fbbf24, transparent);
    border-radius: 2px;
    animation: expandWidth 2.5s ease-out forwards;
}

.projects .section-subtitle {
    text-align: center;
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 5rem;
    font-weight: 400;
    position: relative;
    z-index: 2;
    letter-spacing: 1px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

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

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

.project-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transform: translateY(0);
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(233, 69, 96, 0.1) 0%, 
        rgba(83, 52, 131, 0.1) 50%, 
        rgba(15, 52, 96, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 30px;
}

.project-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        #e94560, #533483, #0f3460, #fbbf24, #e94560);
    border-radius: 30px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
    background-size: 400% 400%;
    animation: borderGradient 3s ease infinite;
}

@keyframes borderGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

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

.project-card:hover::after {
    opacity: 0.8;
}

.project-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: 
        0 40px 120px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(233, 69, 96, 0.3);
}

.project-category {
    color: #e94560;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: rgba(233, 69, 96, 0.15);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    border: 1px solid rgba(233, 69, 96, 0.3);
    display: inline-block;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.project-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(233, 69, 96, 0.2), transparent);
    transition: left 0.6s ease;
}

.project-card:hover .project-category::before {
    left: 100%;
}

.project-card:hover .project-category {
    background: rgba(233, 69, 96, 0.25);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(233, 69, 96, 0.3);
}

.project-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.3;
    transition: all 0.3s ease;
}

.project-card:hover .project-title {
    color: #fbbf24;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
}

.project-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 1.05rem;
    font-weight: 400;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.project-description a {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: #fbbf24;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 1rem 2rem;
    background: rgba(251, 191, 36, 0.1);
    border: 2px solid rgba(251, 191, 36, 0.3);
    border-radius: 30px;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.project-description a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.2), transparent);
    transition: left 0.6s ease;
}

.project-description a:hover::before {
    left: 100%;
}

.project-description a:hover {
    background: rgba(251, 191, 36, 0.2);
    border-color: rgba(251, 191, 36, 0.6);
    transform: translateY(-3px);
    box-shadow: 
        0 15px 35px rgba(251, 191, 36, 0.3),
        0 0 20px rgba(251, 191, 36, 0.2);
    color: #ffffff;
}

.project-description a::after {
    content: '↗';
    font-size: 1.2rem;
    font-weight: 800;
    transition: all 0.3s ease;
}

.project-description a:hover::after {
    transform: translate(3px, -3px) rotate(15deg);
}

/* Floating animation for cards */
.project-card:nth-child(odd) {
    animation: float 6s ease-in-out infinite;
}

.project-card:nth-child(even) {
    animation: float 6s ease-in-out infinite reverse;
}

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

/* Enhanced hover effects */
.project-card:hover .project-category {
    animation: pulse 1s ease-in-out infinite alternate;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .project-card {
        padding: 2rem;
        border-radius: 25px;
    }
    
    .projects .section-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
}

/* Enhanced Testimonials Section */
.testimonials {
     
    background: linear-gradient(135deg, 
        #0f0f23 0%, 
        #1a1a2e 25%, 
        #16213e 50%, 
        #0f3460 75%, 
        #533483 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(83, 52, 131, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(251, 191, 36, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(83, 52, 131, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
    opacity: 0.6;
}

.testimonials::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: 
        conic-gradient(from 0deg at 50% 50%, 
            rgba(102, 126, 234, 0.05) 0deg, 
            transparent 60deg, 
            rgba(245, 87, 108, 0.03) 120deg, 
            transparent 180deg, 
            rgba(240, 147, 251, 0.05) 240deg, 
            transparent 300deg, 
            rgba(79, 172, 254, 0.03) 360deg);
    animation: rotate 30s linear infinite;
}

/* Enhanced floating particles effect */
.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(102, 126, 234, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(245, 87, 108, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(240, 147, 251, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(79, 172, 254, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(102, 126, 234, 0.3), transparent),
        radial-gradient(1px 1px at 200px 50px, rgba(251, 191, 36, 0.3), transparent),
        radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(245, 87, 108, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(240, 147, 251, 0.06) 0%, transparent 50%);
    background-repeat: repeat, no-repeat, no-repeat, no-repeat;
    background-size: 250px 120px, cover, cover, cover;
    animation: 
        sparkle 25s linear infinite,
        pulse 6s ease-in-out infinite alternate;
    opacity: 0.7;
}

.testimonials .section-title {
    text-align: center;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
    background: linear-gradient(45deg, #ffffff, #e94560, #533483, #fbbf24, #ffffff);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

.testimonials .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #e94560, #533483, #fbbf24, transparent);
    border-radius: 2px;
    animation: expandWidth 2.5s ease-out forwards;
}

.testimonials-carousel {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    margin-top: 4rem;
}

.carousel-container {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 450px;
    overflow: hidden;
    transform: translateY(50px);
    animation: slideInUp 0.8s ease-out forwards;
    margin-right: 3rem;
}

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }
.testimonial-card:nth-child(4) { animation-delay: 0.4s; }
.testimonial-card:nth-child(5) { animation-delay: 0.5s; }
.testimonial-card:nth-child(6) { animation-delay: 0.6s; }
.testimonial-card:nth-child(7) { animation-delay: 0.7s; }
.testimonial-card:nth-child(8) { animation-delay: 0.8s; }
.testimonial-card:nth-child(9) { animation-delay: 0.9s; }
.testimonial-card:nth-child(10) { animation-delay: 1.0s; }
.testimonial-card:nth-child(11) { animation-delay: 1.1s; }
.testimonial-card:nth-child(12) { animation-delay: 1.2s; }
.testimonial-card:nth-child(13) { animation-delay: 1.3s; }
.testimonial-card:nth-child(14) { animation-delay: 1.4s; }

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

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(233, 69, 96, 0.1) 0%, 
        rgba(83, 52, 131, 0.1) 50%, 
        rgba(15, 52, 96, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 30px;
}

.testimonial-card::after {
    content: '"';
    font-size: 6rem;
    color: rgba(251, 191, 36, 0.2);
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: 'Georgia', serif;
    transition: all 0.3s ease;
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-card:hover::after {
    color: rgba(251, 191, 36, 0.4);
    transform: scale(1.1);
}

.testimonial-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 40px 120px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(233, 69, 96, 0.4);
}

.testimonial-quote {
    /* font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-weight: 400;
    font-style: italic;
    flex: 1;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease; */
}

.testimonial-quote.collapsed {
    /* max-height: 120px;
    overflow: hidden; */
}

.testimonial-quote.collapsed::after {
    /* content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(transparent, rgba(255, 255, 255, 0.1));
    pointer-events: none;
    border-radius: 0 0 30px 30px; */
}

.read-more-btn {
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    align-self: flex-start;
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.3);
    position: relative; 
}

.read-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.read-more-btn:hover::before {
    left: 100%;
}

.read-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(251, 191, 36, 0.4);
    background: linear-gradient(45deg, #f59e0b, #d97706);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.author-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    overflow: hidden;
}

.testimonial-card:hover .author-avatar {
    transform: scale(1.1);
    border-color: rgba(251, 191, 36, 0.5);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.testimonial-card:hover .author-avatar img {
    transform: scale(1.1);
}

.author-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.4rem;
    letter-spacing: -0.3px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.testimonial-card:hover .author-info h4 {
    color: #fbbf24;
    text-shadow: 0 0 15px rgba(251, 191, 36, 0.5);
}

.author-position {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    transition: all 0.3s ease;
}

.testimonial-card:hover .author-position {
    color: rgba(255, 255, 255, 1);
}

.author-company {
    font-size: 0.8rem;
    color: #fbbf24;
    font-weight: 600;
    margin-top: 0.2rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover .author-company {
    color: #ffffff;
}

/* Enhanced floating animation for cards */
.testimonial-card:nth-child(odd) {
    animation: float 8s ease-in-out infinite;
}

.testimonial-card:nth-child(even) {
    animation: float 8s ease-in-out infinite reverse;
}

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

/* Enhanced responsive design for testimonials */
@media (max-width: 1024px) {
    .carousel-container {
        width: 90%;
    }
    
    .testimonial-card {
        margin-right: 2rem;
    }
}

@media (max-width: 768px) {
    .carousel-container {
        width: 100%;
    }
    
    .testimonial-card {
        margin-right: 1rem;
    }
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 2rem;
    color: #ffffff;
    transition: color 0.3s ease;
}

.carousel-arrow:hover {
    color: #fbbf24;
}

.carousel-prev {
    left: -50px;
}

.carousel-next {
    right: -50px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: #fbbf24;
}

.dot:hover {
    background: #fbbf24;
}

.contactus-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.contactus-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.contactus-item:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 
        0 40px 120px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(233, 69, 96, 0.3);
}

.contactus-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    background: linear-gradient(45deg, #e94560, #533483);
    -webkit-background-clip: text; 
    background-clip: text;
    transition: all 0.4s ease;
}

.contactus-item:hover .contactus-icon {
    transform: scale(1.2) rotate(10deg);
    text-shadow: 0 0 20px rgba(233, 69, 96, 0.5);
}

.contactus-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fbbf24;
}

.contactus-item p {
    font-size: .7rem;
    color: rgba(255, 255, 255, 0.9);
    word-break: break-all;
}

.contactus-item a {
    color: #fbbf24;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contactus-item a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

/* Enhanced Footer */
.footer {
    background: #0f0f23;
    color: rgba(255, 255, 255, 0.8);
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, transparent 20%);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    background: linear-gradient(45deg, #e94560, #533483);
    border-color: rgba(233, 69, 96, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.footer p {
    font-size: 0.9rem;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 968px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .profile-section {
        order: -1;
    }

    .nav-menu {
        display: none;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

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

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

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

    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 2rem !important;
        padding-right: 0 !important;
        text-align: left !important;
    }

    .timeline:before {
        left: 10px;
    }

    .timeline-item .timeline-dot {
        left: 0 !important;
        right: auto !important;
    }

    .section-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }

    .section-subtitle {
        font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    }
}

@media (max-width: 768px) {
    .about {
        padding: 80px 0;
    }

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

    .about-text {
        padding: 2rem;
    }

    .profile-card {
        padding: 2rem 1.5rem;
    }

    .profile-img {
        width: 150px;
        height: 150px;
        font-size: 3rem;
    }

    .stat-card {
        padding: 2rem 1.5rem;
    }

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

    .about-grid {
        gap: 2rem;
    }

    .skills-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contactus-info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .skills-preview {
        justify-content: center;
    }

    .about-text p {
        font-size: 1rem;
    }

    .profile-card h3 {
        font-size: 1.5rem;
    }

    .profile-role {
        font-size: 1rem;
    }

    .cta-buttons-container {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 250px;
    }

    .section-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }

    .about-text {
        padding: 1.5rem;
    }

    .profile-card {
        padding: 1.5rem;
    }

    .stat-card {
        padding: 1.5rem;
    }

    .skill-category {
        padding: 2rem 1.5rem;
    }

    .project-card {
        padding: 2rem 1.5rem;
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    .contactus-item {
        padding: 2rem 1.5rem;
    }
}

.projects > .container,
.experience > .container,
.testimonials > .container {
    position: relative;
    z-index: 2;
}

@media (max-width: 1200px) {
    .contactus-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .contactus-info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Additional Mobile Improvements */
@media (max-width: 768px) {
    /* Improve touch targets */
    .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .btn {
        min-height: 44px;
        touch-action: manipulation;
    }

    /* Better spacing for mobile */
    .hero {
        margin-top: 70px;
        min-height: 90vh;
    }

    .about, .skills, .experience, .projects, .testimonials, .contact {
        padding: 80px 0;
    }

    /* Improve card layouts */
    .project-card, .testimonial-card, .skill-category {
        margin-bottom: 1.5rem;
    }

    /* Better text readability */
    .hero-description, .about-text p, .timeline-description {
        font-size: .9rem;
        line-height: 1.6;
    }

    /* Improve contact grid */
    .contactus-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    /* Better timeline on mobile */
    .timeline-content {
        padding: 1.5rem;
        margin-left: 1rem;
    }

    .timeline:before {
        left: 15px;
    }

    .timeline-dot {
        left: 7.5px !important;
    }
}

@media (max-width: 480px) {
    /* Even better mobile experience */
    .container {
        padding: 0 10px;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .about-text, .profile-card, .stat-card, .skill-category, 
    .project-card, .testimonial-card, .contactus-item {
        padding: 1.5rem;
    }

    .timeline-content {
        padding: 1.2rem;
        margin-left: 0.5rem;
    }

    .timeline:before {
        left: 10px;
    }

    .timeline-dot {
        left: 2.5px !important;
    }

    /* Better button sizing */
    .btn {
        width: 100%;
        max-width: 280px;
        margin: -16px auto
    }

    /* Improve social links */
    .social-links {
        gap: 1rem;
    }

    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

/* Landscape orientation improvements */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: 2rem 0;
    }

    .hero-content h1 {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-subtitle {
        font-size: clamp(0.9rem, 4vw, 1.2rem);
    }

    .hero-description {
        font-size: clamp(0.8rem, 3vw, 1rem);
    }

    .cta-buttons-container {
        position: relative;
        bottom: auto;
        margin-top: 2rem;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hamburger-menu span {
        height: 2px;
    }
}

.about .section-title {
    text-align: center;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 2;
    background: linear-gradient(45deg, #ffffff, #e94560, #533483, #fbbf24, #ffffff);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

.about .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #e94560, #533483, #fbbf24, transparent);
    border-radius: 2px;
    animation: expandWidth 2.5s ease-out forwards;
}

.skills .section-title {
    text-align: center;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 4rem;
    color: white;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
    background: linear-gradient(45deg, #ffffff, #e94560, #533483, #fbbf24, #ffffff);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

.skills .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #e94560, #533483, #fbbf24, transparent);
    border-radius: 2px;
    animation: expandWidth 2.5s ease-out forwards;
}

/* Enhanced Contact Section */
.contact {
     
    background: linear-gradient(135deg, 
        #0f0f23 0%, 
        #1a1a2e 25%, 
        #16213e 50%, 
        #0f3460 75%, 
        #533483 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(83, 52, 131, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(251, 191, 36, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(233, 69, 96, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(83, 52, 131, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
    opacity: 0.6;
}

.contact .section-title {
    text-align: center;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 4rem;
    color: white;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
    background: linear-gradient(45deg, #ffffff, #e94560, #533483, #fbbf24, #ffffff);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

.contact .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #e94560, #533483, #fbbf24, transparent);
    border-radius: 2px;
    animation: expandWidth 2.5s ease-out forwards;
}

.hero-content h1 {
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 900;
    margin-bottom: 1rem;
    color: #ff6b6b;
    text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.2), 6px 6px 12px rgba(0, 0, 0, 0.5);
    position: relative;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 600;
    color: #f9d74c;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.hero-description::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.2);
    font-family: 'Georgia', serif;
}

.btn-primary {
    background: linear-gradient(45deg, #ff6b6b, #a23b72);
    color: white;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
    border: 2px solid rgba(255, 107, 107, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

/* CTA Buttons Mobile Fix - Override duplicated styles */
@media (max-width: 768px) {
    .cta-buttons-container {
        width: 100% !important;
        padding: 0 20px !important;
        flex-direction: row !important;
        align-items: stretch !important;
        gap: 0 !important;
    }

    .cta-buttons-container .btn {
        width: 100% !important;
        justify-content: center !important;
        display: flex !important;
    }
}

/* Simple Mobile Navigation - Clean and Working */
@media (max-width: 768px) {
    /* Force hide desktop navigation first */
    .navbar .nav-menu {
        display: none !important;
    }
    
    /* Show hamburger menu on mobile */
    .navbar .hamburger-menu {
        display: flex !important;
        z-index: 9999 !important;
    }

    /* Mobile navigation overlay */
    .navbar .nav-menu {
        display: none !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        background: #ffffff !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        z-index: 9998 !important;
        list-style: none !important;
        margin: 0 !important;
        padding: 2rem !important;
        gap: 1.5rem !important;
        overflow: hidden !important;
    }

    /* FORCE show mobile menu when active */
    .navbar .nav-menu.active {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    /* Mobile menu items */
    .navbar .nav-menu li {
        list-style: none !important;
        margin: 0 !important;
        padding: 0 !important;
        width: auto !important;
        display: block !important;
    }

    /* Mobile navigation links */
    .navbar .nav-menu .nav-link {
        display: block !important;
        font-size: 1.5rem !important;
        font-weight: 600 !important;
        color: #333 !important;
        text-decoration: none !important;
        padding: 1rem 2rem !important;
        border-radius: 8px !important;
        background: #f8f9fa !important;
        border: 2px solid #e9ecef !important;
        min-width: 250px !important;
        text-align: center !important;
        transition: all 0.3s ease !important;
        margin: 0.5rem 0 !important;
        box-sizing: border-box !important;
    }

    .navbar .nav-menu .nav-link:hover {
        background: #e94560 !important;
        color: white !important;
        border-color: #e94560 !important;
        transform: scale(1.05) !important;
    }

    /* Close button for mobile menu */
    .nav-menu::before {
        content: "✕" !important;
        position: absolute !important;
        top: 30px !important;
        right: 30px !important;
        font-size: 2rem !important;
        color: #333 !important;
        cursor: pointer !important;
        z-index: 10000 !important;
    }
} 
 