/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #000;
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
    padding-top: 100px;
}

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

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

@keyframes typewriter {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes scale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

@keyframes pulse {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(255, 77, 77, 0.3);
    }
    50% { 
        box-shadow: 0 0 40px rgba(255, 77, 77, 0.6);
    }
}

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

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

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.show {
    opacity: 1;
}

.animate-fade-up.show {
    animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.animate-fade-left.show {
    animation: fadeInLeft 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.animate-fade-right.show {
    animation: fadeInRight 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.animate-scale.show {
    animation: scale 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* Navigation */
.nav-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    width: 100%;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 20px;
}

.nav-container.scrolled {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 5px 20px rgba(255, 77, 77, 0.1);
}

.logo a {
    color: #ff4d4d;
    text-decoration: none;
    font-size: 2rem;
    font-weight: 700;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.nav-container.scrolled .logo a {
    opacity: 1;
    transform: translateY(0);
}

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

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    position: relative;
}

nav ul li a:hover, nav ul li a.active {
    color: #ff4d4d;
}

nav ul li a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ff4d4d;
}

/* Section Styles */
.section-title {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title span {
    color: #ff4d4d;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 0;
    min-height: calc(100vh - 100px);
    background-image: url('../4yt02kbnrx.png');
    background-size: contain;
    background-position: 110% center;
    background-repeat: no-repeat;
    background-color: transparent;
    opacity: 1;
    position: relative;
}

.hero-content {
    flex: 1;
    max-width: 550px;
    position: relative;
    z-index: 2;
    padding: 2rem;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content h1 span {
    color: #ff4d4d;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.hero-content h2 span {
    color: #ff4d4d;
}

.typewriter-text {
    display: inline-block;
    position: relative;
    min-width: 450px;
    height: 1.2em;
    letter-spacing: 1px;
    overflow: visible;
}

.typewriter-letter {
    opacity: 0;
    display: inline-block;
}

.typewriter-space {
    width: 0.5em;
}

.typewriter-letter.typing {
    animation: typeIn 0.05s ease forwards;
}

.typewriter-letter.deleting {
    animation: typeOut 0.03s ease forwards;
}

@keyframes typeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes typeOut {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(0.8);
    }
}

.typewriter-cursor {
    display: inline-block;
    color: #ff4d4d;
    font-weight: 400;
    margin-left: 2px;
    animation: blink 1s infinite;
    vertical-align: baseline;
    line-height: 1;
}

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

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

/* Advanced Reveal Animations */
.reveal-animation {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

/* Parallax Effect */
.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    will-change: transform;
}

.hero-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 80%;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #ff4d4d;
    color: #ff4d4d;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #ff4d4d;
    color: #000;
}

.btn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    border: 2px solid #ff4d4d;
    border-radius: 50px;
    color: #ff4d4d;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: linear-gradient(45deg, transparent, rgba(255, 77, 77, 0.1), transparent);
    background-size: 200% 200%;
    box-shadow: 0 8px 25px rgba(255, 77, 77, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: shimmer 3s ease-in-out infinite;
}

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

.btn:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(45deg, #ff4d4d, #ff6b6b, #ff4d4d);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -2;
    border-radius: 50px;
}

.btn:hover {
    color: #000;
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 77, 77, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: transparent;
}

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

.btn:hover:after {
    width: 100%;
}

.btn:active {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 25px rgba(255, 77, 77, 0.4);
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* About Section */
.about {
    padding: 4rem 0;
}

.about-content {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.about-text {
    flex: 1;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #e0e0e0;
}

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

.info-card {
    background-color: rgba(26, 26, 26, 0.8);
    border-left: 3px solid #ff4d4d;
    border-radius: 5px;
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

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

.info-card h3 {
    color: #ff4d4d;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.info-card p {
    color: #e0e0e0;
    font-size: 1.1rem;
}

.info-card a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-card a:hover {
    color: #ff4d4d;
}

/* Section Styles */
.section {
    padding: 4rem 0;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-content {
    margin-top: 2rem;
    text-align: center;
}

.placeholder-text {
    font-size: 1.2rem;
    color: #888;
    font-style: italic;
}

/* Services Section */
.services-section {
    background-color: #000;
}

.services-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #e0e0e0;
    margin: -2rem auto 3rem;
    max-width: 800px;
}

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

.service-card {
    background-color: #111;
    border-radius: 5px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid #ff4d4d;
    transform: translateY(20px);
    opacity: 0.9;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 77, 77, 0.3);
    opacity: 1;
    background-color: #151515;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ff4d4d, rgba(255, 77, 77, 0.3), #ff4d4d);
    background-size: 200% 100%;
    animation: gradientMove 3s ease infinite;
}

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

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

.service-icon {
    font-size: 2.5rem;
    color: #ff4d4d;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #e0e0e0;
}

/* Creative Arsenal Section */
.creative-arsenal {
    margin-top: 4rem;
    padding: 3rem 0;
    background-color: #000;
    border-top: 1px solid #222;
}

.arsenal-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #fff;
}

.arsenal-title span {
    color: #ff4d4d;
}

.arsenal-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 3rem;
}

.tools-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 0 auto;
    max-width: 1000px;
}

.tool-card {
    background-color: #111;
    border-radius: 5px;
    padding: 2rem;
    text-align: center;
    border-top: 3px solid #ff4d4d;
    transition: transform 0.3s ease;
}

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

.tool-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #ff4d4d;
}

.tool-card p {
    font-size: 0.95rem;
    color: #e0e0e0;
}

.arsenal-footer {
    text-align: center;
    font-style: italic;
    margin-top: 3rem;
    color: #e0e0e0;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .tools-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .arsenal-title {
        font-size: 2.2rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Page Loading Animation */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s ease-out, visibility 0.6s ease-out;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-icon {
    width: 80px;
    height: 80px;
    border: 3px solid rgba(255, 77, 77, 0.3);
    border-radius: 50%;
    border-top-color: #ff4d4d;
    animation: spin 1s ease-in-out infinite;
    position: relative;
}

.loader-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 3px solid transparent;
    border-radius: 50%;
    border-bottom-color: rgba(255, 77, 77, 0.7);
    animation: spin 1.5s ease-in-out infinite;
}

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

/* Skills Section */
.skills-section {
    padding: 5rem 0;
}

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

.skill-card {
    background-color: #111;
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-align: center;
    opacity: 0.8;
    transform: scale(0.95);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.skill-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 30px rgba(255, 77, 77, 0.3);
    opacity: 1;
}

.skill-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 77, 77, 0.1) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

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

.skill-icon {
    font-size: 2.5rem;
    color: #ff4d4d;
    margin-bottom: 1rem;
}

.skill-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.skill-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.skill-level {
    height: 6px;
    background-color: #333;
    border-radius: 3px;
    margin: 1rem 0;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background-color: #ff4d4d;
    border-radius: 3px;
}

.skill-card p {
    font-size: 0.95rem;
    color: #e0e0e0;
    line-height: 1.6;
}

/* Experience Section */
.experience-section {
    padding: 5rem 0;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 3rem auto 0;
    padding: 0 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 2px;
    background-color: #333;
    top: 0;
    bottom: 0;
    left: 30px;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 2.5rem;
}

.timeline-dot {
    position: absolute;
    width: 16px;
    height: 16px;
    background-color: #ff4d4d;
    border-radius: 50%;
    left: 23px;
    top: 0;
    transform: translateX(-50%);
    border: 2px solid #222;
}

.timeline-content {
    background-color: #111;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 3px solid #ff4d4d;
}

.timeline-content h3 {
    color: #ff4d4d;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.timeline-content h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.timeline-place {
    color: #aaa;
    font-style: italic;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.timeline-content p {
    color: #e0e0e0;
    line-height: 1.6;
}

/* Portfolio Section */
.portfolio-section {
    padding: 5rem 0;
    background-color: #000;
}

.portfolio-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #e0e0e0;
    margin: -2rem auto 3rem;
    max-width: 800px;
}

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

.portfolio-item {
    background-color: #111;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: translateY(30px);
    opacity: 0;
}

.portfolio-item.show {
    transform: translateY(0);
    opacity: 1;
}

.portfolio-item:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 50px rgba(255, 77, 77, 0.4);
    z-index: 2;
}

.portfolio-item:nth-child(1) { transition-delay: 0.1s; }
.portfolio-item:nth-child(2) { transition-delay: 0.2s; }
.portfolio-item:nth-child(3) { transition-delay: 0.3s; }
.portfolio-item:nth-child(4) { transition-delay: 0.4s; }

.portfolio-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.portfolio-content {
    padding: 1.5rem;
}

.portfolio-content h3 {
    font-size: 1.5rem;
    color: #ff4d4d;
    margin-bottom: 1rem;
}

.portfolio-content p {
    font-size: 1rem;
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.portfolio-btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border: 2px solid #ff4d4d;
    border-radius: 50px;
    color: #ff4d4d;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: rgba(25, 25, 25, 0.5);
    box-shadow: 0 5px 15px rgba(255, 77, 77, 0.2);
}

.portfolio-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(45deg, #ff4d4d, #ff6b6b);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
    border-radius: 50px;
}

.portfolio-btn:hover {
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 77, 77, 0.4);
}

.portfolio-btn:hover:before {
    width: 100%;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
}

.contact-container {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

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

.contact-card {
    background-color: #111;
    border-radius: 8px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 3px solid #ff4d4d;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 77, 77, 0.15);
}

.contact-icon {
    font-size: 2rem;
    color: #ff4d4d;
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #fff;
}

.contact-card p {
    font-size: 1rem;
    color: #e0e0e0;
}

.contact-card a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: #ff4d4d;
}

.contact-form {
    flex: 1;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background-color: #111;
    border: 1px solid #333;
    border-radius: 5px;
    color: #fff;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff4d4d;
}

.form-group textarea {
    resize: vertical;
}

.send-btn {
    display: inline-block;
    width: 100%;
    padding: 1.2rem;
    background-color: rgba(20, 20, 20, 0.7);
    border: 2px solid #ff4d4d;
    border-radius: 8px;
    color: #ff4d4d;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.send-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(45deg, #ff4d4d, #ff6b6b, #ff4d4d);
    background-size: 200% 100%;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

.send-btn:hover {
    color: #000;
    border-color: transparent;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 77, 77, 0.3);
}

.send-btn:hover:before {
    width: 100%;
}

.send-btn:active {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(255, 77, 77, 0.2);
}

/* Footer */
.footer {
    padding: 2rem 0;
    background-color: #0a0a0a;
    border-top: 1px solid #222;
    animation: fadeInUp 1s ease-out;
}

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

.footer-logo h2 {
    color: #ff4d4d;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    color: #e0e0e0;
    font-size: 0.9rem;
}

.footer-navigation {
    display: flex;
    gap: 3rem;
}

.footer-column h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: #ff4d4d;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ff4d4d;
}

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

.footer-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #ff4d4d;
    color: #ff4d4d;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-icon:hover {
    background-color: #ff4d4d;
    color: #000;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #222;
    margin-top: 2rem;
    color: #888;
    font-size: 0.9rem;
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: relative;
    z-index: 1001;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #ff4d4d;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

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

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        z-index: 1000;
    }
    
    nav ul.active {
        right: 0;
    }
    
    nav ul li {
        margin: 1rem 0;
    }
    
    nav ul li a {
        font-size: 1.5rem;
        padding: 1rem;
        border-radius: 10px;
        transition: all 0.3s ease;
    }
    
    nav ul li a:hover {
        background-color: rgba(255, 77, 77, 0.1);
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        background-position: center center;
        justify-content: center;
        align-items: center;
        background-size: cover;
        padding: 1rem 0;
    }
    
    .hero-content {
        margin: 0 auto;
        width: 90%;
        max-width: none;
        padding: 1.5rem;
    }

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

    .hero-content h2 {
        font-size: 1.8rem;
    }

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

    .social-icons {
        justify-content: center;
        margin: 1.5rem 0;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
    }
    
    .about-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .skills-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .portfolio-item {
        min-width: unset;
    }
    
    .contact-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-navigation {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .typewriter-text {
        min-width: 350px;
    }
}