@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@300;400;500;600;700;800&family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    font-family: 'Poppins', 'Inter', sans-serif;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #667eea 100%);
    background-attachment: fixed;
    color: #ffffff;
    line-height: 1.7;
    overflow-x: hidden;
    font-weight: 400;
    font-size: 16px;
    height: 100%;
}

/* Remove underlines from all links */
a {
    text-decoration: none !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 10px;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 20px 40px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.05);
}

.logo {
    justify-self: start;
}

.nav-menu {
    justify-self: center;
}

.btn-contact {
    justify-self: end;
}

/* Mobile Hamburger Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    justify-self: end;
    z-index: 1001;
    padding: 8px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: linear-gradient(45deg, #ffffff, #f093fb);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.mobile-menu-toggle:hover .hamburger-line {
    background: linear-gradient(45deg, #f093fb, #667eea);
    box-shadow: 0 0 10px rgba(240, 147, 251, 0.5);
}

.mobile-menu-toggle.active {
    background: rgba(240, 147, 251, 0.2);
    border-color: rgba(240, 147, 251, 0.4);
    transform: scale(1.1);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
    background: linear-gradient(45deg, #f093fb, #f5576c);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background: linear-gradient(45deg, #f093fb, #f5576c);
}

header.scrolled {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    padding: 15px 40px;
}

.logo h5 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    background: linear-gradient(45deg, #ffffff, #f093fb, #667eea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.logo span {
    color: #f093fb;
    font-weight: 900;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 30px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-menu ul li a {
    color: #ffffff;
    text-decoration: none !important;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

.nav-menu ul li a:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.btn-contact {
    background: linear-gradient(45deg, #667eea, #764ba2, #f093fb);
    background-size: 200% 200%;
    border: none;
    padding: 16px 28px;
    border-radius: 50px;
    color: white;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    animation: gradientShift 4s ease-in-out infinite;
}

.btn-contact:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.6);
    background-position: 100% 100%;
}

.btn-contact a {
    color: white;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Main/Hero Section */
main {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.hero-image {
    position: relative;
    text-align: center;
    perspective: 1000px;
}

.self-img {
    width: 400px;
    height: 500px;
    object-fit: cover;
    border-radius: 30px;
    border: 3px solid rgba(255, 255, 255, 0.4);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.self-img:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
}

.image-overlay {
    display: none;
}

.hero-image::before {
    display: none;
}

.hero-image:hover::before {
    display: none;
}

.intro {
    text-align: left;
}

.typing-container h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.typing-text {
    background: linear-gradient(45deg, #f093fb, #f5576c, #4facfe, #00f2fe);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
    text-shadow: none;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    25% { background-position: 100% 50%; }
    50% { background-position: 100% 100%; }
    75% { background-position: 0% 100%; }
}

.intro p {
    font-size: 1.4rem;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.98);
    line-height: 1.8;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.social-links {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none !important;
    font-size: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.social-icon.github:hover { background: linear-gradient(45deg, #333, #666); }
.social-icon.instagram:hover { background: linear-gradient(45deg, #e1306c, #fd1d1d, #fcb045); }
.social-icon.whatsapp:hover { background: linear-gradient(45deg, #25d366, #128c7e); }
.social-icon.linkedin:hover { background: linear-gradient(45deg, #0077b5, #00a0dc); }
.social-icon.youtube:hover { background: linear-gradient(45deg, #ff0000, #cc0000); }

.cta-buttons {
    display: flex;
    gap: 20px;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none !important;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(45deg, #667eea, #764ba2, #f093fb);
    background-size: 200% 200%;
    color: white;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    animation: gradientShift 4s ease-in-out infinite;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
    background-position: 100% 100%;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px) scale(1.05);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

/* About Section */
#about {
    padding: 100px 0;
    text-align: center;
}

#about h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 35px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    color: #ffffff;
}

#about span {
    background: linear-gradient(45deg, #f093fb, #f5576c, #4facfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

#about p {
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.98);
    line-height: 1.9;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.achievement-btn {
    margin-bottom: 80px;
    text-align: center;
    display: flex;
    justify-content: center;
}

.skills-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 70px;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.skills-container {
    max-width: 1000px;
    margin: 0 auto;
}

.skills-icons {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 60px;
}

.skill-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.skill-icon:hover {
    transform: translateY(-10px) rotate(5deg);
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.3);
}

.skill-icon.figma { 
    color: #f24e1e; 
    text-shadow: 
        0 0 20px rgba(242, 78, 30, 0.8),
        0 2px 4px rgba(0, 0, 0, 0.5);
}
.skill-icon.wordpress { 
    color: #21759b; 
    text-shadow: 
        0 0 20px rgba(33, 117, 155, 0.8),
        0 2px 4px rgba(0, 0, 0, 0.5);
}
.skill-icon.html { 
    color: #e34f26; 
    text-shadow: 
        0 0 20px rgba(227, 79, 38, 0.8),
        0 2px 4px rgba(0, 0, 0, 0.5);
}
.skill-icon.css { 
    color: #1572b6; 
    text-shadow: 
        0 0 20px rgba(21, 114, 182, 0.8),
        0 2px 4px rgba(0, 0, 0, 0.5);
}
.skill-icon.js { 
    color: #f7df1e; 
    text-shadow: 
        0 0 20px rgba(247, 223, 30, 0.8),
        0 2px 4px rgba(0, 0, 0, 0.5);
}
.skill-icon.laravel { 
    color: #ff2d20; 
    text-shadow: 
        0 0 20px rgba(255, 45, 32, 0.8),
        0 2px 4px rgba(0, 0, 0, 0.5);
}

.skills-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.skill-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.skill-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.5s ease;
}

.skill-card:hover::before {
    left: 100%;
}

.skill-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.skill-percentage {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 15px;
    color: #ffffff;
    text-shadow: 
        0 0 20px rgba(102, 126, 234, 0.8),
        0 2px 4px rgba(0, 0, 0, 0.5);
    background: linear-gradient(45deg, #f093fb, #4facfe, #00f2fe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(240, 147, 251, 0.5));
}

.skill-card h3 {
    font-size: 1.8rem;
    margin-bottom: 18px;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.5),
        0 0 10px rgba(255, 255, 255, 0.2);
}

.skill-card p {
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.8;
    font-weight: 600;
    font-size: 1.2rem;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.5),
        0 1px 2px rgba(0, 0, 0, 0.8);
}

.progress-bar {
    display: none;
}

/* Service Section */
#service {
    padding: 100px 0;
    text-align: center;
}

#service h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 35px;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

#service span {
    background: linear-gradient(45deg, #f093fb, #f5576c, #4facfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

#service p {
    max-width: 600px;
    margin: 0 auto 70px;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 35px 25px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.5s ease;
}

.service-card:hover::before {
    transform: scale(1);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
    position: relative;
    z-index: 2;
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 22px;
    font-weight: 700;
    position: relative;
    z-index: 2;
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.service-card p {
    color: rgba(255, 255, 255, 0.98);
    margin-bottom: 28px;
    line-height: 1.7;
    position: relative;
    z-index: 2;
    font-weight: 600;
    font-size: 1.1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    position: relative;
    z-index: 2;
    margin-top: 10px;
}

.service-features span {
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    color: #ffffff;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.service-features span:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Project Section */
#project {
    padding: 100px 0;
    text-align: center;
}

#project h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 35px;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

#project span {
    background: linear-gradient(45deg, #f093fb, #f5576c, #4facfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

#project p {
    max-width: 600px;
    margin: 0 auto 70px;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.project-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-align: left;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.project-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-actions {
    display: flex;
    gap: 15px;
}

.btn-view, .btn-code {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-view:hover, .btn-code:hover {
    background: linear-gradient(45deg, #667eea, #764ba2);
    transform: scale(1.1);
}

.project-info {
    padding: 30px;
}

.project-category {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 15px;
}

.project-info h3 {
    font-size: 1.6rem;
    margin-bottom: 18px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.project-info p {
    color: rgba(255, 255, 255, 0.98);
    margin-bottom: 22px;
    line-height: 1.7;
    font-weight: 600;
    font-size: 1.1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 10px;
}

.project-tech span {
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #ffffff;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.project-tech span:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.view-all-projects {
    padding-top: 100px;
    text-align: center;
    display: flex;
    justify-content: center;
}

.view-all-projects .btn-primary {
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    background: linear-gradient(45deg, #667eea, #764ba2, #f093fb);
    background-size: 200% 200%;
    animation: gradientShift 4s ease-in-out infinite;
    text-decoration: none !important;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
}

.view-all-projects .btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.3);
    padding: 60px 0 30px;
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.6rem;
    margin-bottom: 22px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 22px;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.contact-item i {
    width: 20px;
    color: #667eea;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none !important;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background: linear-gradient(45deg, #667eea, #764ba2);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Hide mobile contact in desktop */
.mobile-contact {
    display: none;
}

/* Responsive styles for mobile */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .typing-container h2 {
        font-size: 2.8rem;
    }
    
    .skills-icons {
        gap: 40px;
    }
    
    .skill-icon {
        width: 70px;
        height: 70px;
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 20px;
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 0;
    }
    
    .logo {
        justify-self: start;
    }
    
    .mobile-menu-toggle {
        display: flex;
        justify-self: end;
    }
      .nav-menu {
        position: fixed;
        top: 80px;
        left: 20px;
        right: 20px;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(30, 60, 114, 0.95));
        backdrop-filter: blur(30px);
        padding: 30px 20px;
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 
            0 20px 60px rgba(0, 0, 0, 0.5),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
        transform: translateY(-120%) scale(0.8);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        z-index: 999;
    }
    
    .nav-menu.active {
        transform: translateY(0) scale(1);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 15px;
        background: transparent;
        padding: 0;
        border: none;
        border-radius: 0;
    }
      .nav-menu ul li {
        transform: translateX(-50px);
        opacity: 0;
        transition: all 0.3s ease;
    }
    
    .nav-menu.active ul li {
        transform: translateX(0);
        opacity: 1;
    }
    
    .nav-menu.active ul li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active ul li:nth-child(2) { transition-delay: 0.15s; }
    .nav-menu.active ul li:nth-child(3) { transition-delay: 0.2s; }
    .nav-menu.active ul li:nth-child(4) { transition-delay: 0.25s; }
    
    /* Remove keyframes since we're using transitions now */
    
    /* When menu is closing, remove delays and make items disappear quickly */
    .nav-menu:not(.active) ul li {
        transform: translateX(-50px);
        opacity: 0;
        transition: all 0.2s ease;
        transition-delay: 0s !important;
    }

    /* Ensure menu panel itself closes quickly */
    .nav-menu:not(.active) {
        transform: translateY(-120%) scale(0.8);
        opacity: 0;
        visibility: hidden;
        transition: all 0.2s ease !important;
    }

    .nav-menu ul li a {
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 15px;
        padding: 15px 20px;
        font-size: 1.1rem;
        justify-content: center;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
    }
    
    .nav-menu ul li a::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.5s ease;
    }
    
    .nav-menu ul li a:hover::before {
        left: 100%;
    }
      .nav-menu ul li a:hover {
        background: rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.4);
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    }
    
    .mobile-contact {
        display: block;
    }
      .mobile-contact a {
        background: linear-gradient(45deg, #667eea, #764ba2, #f093fb) !important;
        background-size: 200% 200% !important;
        color: white !important;
        font-weight: 700 !important;
        border: 1px solid rgba(240, 147, 251, 0.5) !important;
        animation: gradientShift 4s ease-in-out infinite !important;
        box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4) !important;
    }
    
    .mobile-contact a:hover {
        transform: translateY(-5px) scale(1.05) !important;
        box-shadow: 0 10px 30px rgba(102, 126, 234, 0.6) !important;
        border-color: rgba(240, 147, 251, 0.8) !important;
    }
    
    .btn-contact {
        display: none;
    }
    
    header.scrolled {
        padding: 12px 20px;
    }
    
    .nav-menu ul {
        gap: 15px;
        padding: 12px 20px;
    }
    
    .nav-menu ul li a {
        font-size: 0.9rem;
        padding: 8px 14px;
    }
    
    .btn-contact {
        padding: 14px 22px;
        font-size: 0.95rem;
    }
    
    .hero-content {
        padding: 0 20px;
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .self-img {
        width: 300px;
        height: 350px;
    }
    
    .typing-container h2 {
        font-size: 2.2rem;
    }
    
    .intro p {
        font-size: 1.1rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 14px 25px;
        font-size: 1rem;
    }
    
    #about h2, #service h2, #project h2 {
        font-size: 2.4rem;
    }
    
    .skills-title {
        font-size: 2rem;
    }
    
    .skills-icons {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .skills-cards {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-info {
        align-items: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .typing-container h2 {
        font-size: 1.8rem;
    }
    
    .self-img {
        width: 250px;
        height: 300px;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .skill-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    .service-card, .project-card {
        margin: 0 10px;
    }
    
    .btn-primary, .btn-secondary {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    #about h2, #service h2, #project h2 {
        font-size: 2rem;
    }
}

/* Loading Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Floating Animation */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.floating {
    animation: float 3s ease-in-out infinite;
}

/* Pulse Animation for CTA buttons */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(102, 126, 234, 0); }
    100% { box-shadow: 0 0 0 0 rgba(102, 126, 234, 0); }
}

.btn-primary:hover {
    animation: pulse 1.5s infinite;
}
