/* Modern Minimalist Theme */
:root {
    --primary-color: #64ffda;
    --secondary-color: #8892b0;
    --background-color: #0a192f;
    --text-color: #ccd6f6;
    --heading-color: #e6f1ff;
    --card-bg: rgba(17, 34, 64, 0.7);
    --glass-border: rgba(100, 255, 218, 0.1);
    --gradient-1: linear-gradient(45deg, #64ffda, #0a192f);
    --gradient-2: linear-gradient(135deg, #64ffda, #0a192f);
    --shadow-color: rgba(100, 255, 218, 0.1);
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Main Content */
.main-content {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    padding-top: 80px; /* Add space for fixed navigation */
}

/* Navigation */
.nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(10, 25, 47, 0.85);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.nav-brand a {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 1px;
}

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

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9rem;
    position: relative;
    padding: 5px 0;
    transition: all 0.3s ease;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

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

.nav-link:hover::before,
.nav-link.active::before {
    transform: scaleX(1);
    transform-origin: left;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1002;
    position: relative;
    padding: 10px;
    transition: all 0.3s ease;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

/* Enhanced Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 150px;
    position: relative;
    background: radial-gradient(circle at top right, rgba(100, 255, 218, 0.1), transparent 50%);
}

.hero-content {
    flex: 1;
    max-width: 600px;
    opacity: 1;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards;
    text-align: left;
    padding-right: 50px;
}

.hero h1 {
    font-size: 4.5rem;
    color: var(--heading-color);
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(100, 255, 218, 0.2);
    background: linear-gradient(45deg, var(--heading-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: left;
}

.hero .subtitle {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 40px;
    text-align: left;
}

.hero-description {
    text-align: left;
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 500px;
}

.hero-animation {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
    opacity: 0;
    animation: fadeIn 1s ease forwards 0.5s;
}

.cube {
    width: 300px;
    height: 300px;
    position: relative;
    transform-style: preserve-3d;
    animation: rotate 20s infinite linear;
}

.cube-face {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--card-bg);
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    padding: 20px;
    backface-visibility: visible;
    transition: all 0.3s ease;
}

.cube-face i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.cube-face span {
    color: var(--text-color);
    font-size: 1.2rem;
    font-weight: 500;
}

.cube-face:hover {
    background: rgba(100, 255, 218, 0.1);
    transform: scale(1.05);
}

.front  { transform: translateZ(150px); }
.back   { transform: rotateY(180deg) translateZ(150px); }
.right  { transform: rotateY(90deg) translateZ(150px); }
.left   { transform: rotateY(-90deg) translateZ(150px); }
.top    { transform: rotateX(90deg) translateZ(150px); }
.bottom { transform: rotateX(-90deg) translateZ(150px); }

@keyframes rotate {
    0% { transform: rotateX(0) rotateY(0) rotateZ(0); }
    100% { transform: rotateX(360deg) rotateY(360deg) rotateZ(360deg); }
}

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

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

/* Enhanced Project Cards */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    padding: 20px;
}

.project-card {
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
}

.project-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

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

.project-content {
    padding: 25px;
}

.project-content h3 {
    color: var(--heading-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.project-content p {
    color: var(--secondary-color);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.project-tech {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.project-tech span {
    background: rgba(100, 255, 218, 0.1);
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.project-tech span:hover {
    background: var(--primary-color);
    color: var(--background-color);
}

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

.project-link {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

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

.project-link i {
    font-size: 1rem;
}

/* Enhanced Skills Section */
.skills-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.skill {
    background: var(--card-bg);
    padding: 25px;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.skill:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(100, 255, 218, 0.1);
}

.skill-name {
    color: var(--heading-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.skill-bar {
    height: 6px;
    background: rgba(100, 255, 218, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-top: 15px;
    position: relative;
}

.skill-level {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), #4cd8b2);
    border-radius: 3px;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.skill-level::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 2s infinite;
}

/* Resume Section Enhanced Styles */
.resume {
    position: relative;
    padding: 100px 150px;
    background: var(--background-color);
    overflow: hidden;
}

.resume::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(100, 255, 218, 0.03), transparent 70%);
    pointer-events: none;
}

.resume-content {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 0;
    display: flex;
    gap: 50px;
}

.resume-column {
    flex: 1;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--card-bg);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.resume-column:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(100, 255, 218, 0.1);
}

.resume-column h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    font-weight: 600;
}

.resume-column h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

/* Enhanced Timeline Styles */
.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
    width: 2px;
    background: linear-gradient(to bottom, 
        var(--primary-color) 0%,
        rgba(100, 255, 218, 0.2) 100%);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding: 0 40px 0 60px;
    opacity: 1 !important;;
    transform: translateY(0) !important;;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.timeline-item:hover {
    transform: translateY(-3px);
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--background-color);
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    left: 14px;
    top: 0;
}

.timeline-item:hover::after {
    transform: scale(1.1);
    background: var(--primary-color);
}

.timeline-date {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(100, 255, 218, 0.05);
    padding: 5px 15px;
    border-radius: 20px;
    display: inline-block;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-date {
    background: var(--primary-color);
    color: var(--background-color);
}

.timeline-content {
    background: rgba(17, 34, 64, 0.5);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(100, 255, 218, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(100, 255, 218, 0.03), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.timeline-content:hover::before {
    transform: translateX(100%);
}

.timeline-content:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(100, 255, 218, 0.05);
}

.timeline-content h4 {
    color: white !important;
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
    opacity: 1 !important;
    transform: translateX(0) !important;
}

.timeline-content p {
    color: var(--secondary-color);
    font-size: 1rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.timeline-content ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.timeline-content ul li {
    color: white !important;
    font-size: 0.95rem;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    opacity: 1 !important;
    transform: translateX(0) !important;
    transition: all 0.3s ease;
    line-height: 1.6;
}

.timeline-content ul li:last-child {
    margin-bottom: 0;
}

.timeline-content ul li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Animation for timeline items */
.timeline-item.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.timeline-item.visible .timeline-content ul li {
    opacity: 1;
    transform: translateX(0);
}

.timeline-item.visible .timeline-content ul li:nth-child(1) { transition-delay: 0.1s; }
.timeline-item.visible .timeline-content ul li:nth-child(2) { transition-delay: 0.2s; }
.timeline-item.visible .timeline-content ul li:nth-child(3) { transition-delay: 0.3s; }
.timeline-item.visible .timeline-content ul li:nth-child(4) { transition-delay: 0.4s; }

/* Particle Animation */
.particle {
    position: absolute;
    pointer-events: none;
    z-index: 1000;
}

/* Responsive Design for Resume Section */
@media (max-width: 768px) {
    .resume {
        padding: 60px 20px;
    }

    .resume-content {
        flex-direction: column;
        gap: 30px;
    }

    .resume-column {
        padding: 20px;
    }

    .timeline-item {
        padding: 0 30px 0 50px;
        margin-bottom: 30px;
    }

    .timeline-content {
        padding: 20px;
    }

    .timeline-content h4 {
        font-size: 1.2rem;
    }

    .timeline-content p {
        font-size: 0.95rem;
    }

    .timeline-content ul li {
        font-size: 0.9rem;
    }
}

/* Enhanced Contact Section */
.contact {
    background: linear-gradient(to bottom, var(--background-color), rgba(10, 25, 47, 0.95));
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(100, 255, 218, 0.1), transparent 70%);
    pointer-events: none;
}

.contact h2 {
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
    transform: translateX(-50%);
}

.contact h2::after {
    width: 80px;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--card-bg);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-content:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(100, 255, 218, 0.1);
}

.contact-content p {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: rgba(100, 255, 218, 0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    text-decoration: none;
}

.contact-item:hover {
    transform: translateX(10px);
    background: rgba(100, 255, 218, 0.1);
    border-color: var(--primary-color);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.contact-item:hover i {
    transform: scale(1.2);
}

.contact-item p {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-color);
    text-align: left;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 40px;
}

.social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(100, 255, 218, 0.05);
    color: var(--text-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    text-decoration: none;
}

.social-icon:hover {
    transform: translateY(-5px);
    background: rgba(100, 255, 218, 0.1);
    color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(100, 255, 218, 0.2);
}

@media (max-width: 768px) {
    .contact-content {
        padding: 30px 20px;
        margin: 0 20px;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .contact-item {
        padding: 20px;
    }

    .social-links {
        gap: 15px;
    }

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

/* Custom Cursor */
.cursor, .cursor-follower {
    position: fixed;
    left: 0;
    top: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
}

.cursor-follower {
    width: 20px;
    height: 20px;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    transition: transform 0.4s ease;
    display: block;
}

/* Hide custom cursor on mobile devices */
@media (max-width: 768px) {
    .cursor, .cursor-follower {
        display: none;
    }
    
    * {
        cursor: auto !important;
    }
}

/* Ensure cursor is visible on desktop */
@media (min-width: 769px) {
    * {
        cursor: none !important;
    }
    
    a, button, .project-card, .skill, .timeline-item {
        cursor: none !important;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero {
        padding: 0 50px;
    }
    
    .hero-content {
        padding-right: 30px;
    }
    
    .cube {
        width: 250px;
        height: 250px;
    }
    
    .front  { transform: translateZ(125px); }
    .back   { transform: rotateY(180deg) translateZ(125px); }
    .right  { transform: rotateY(90deg) translateZ(125px); }
    .left   { transform: rotateY(-90deg) translateZ(125px); }
    .top    { transform: rotateX(90deg) translateZ(125px); }
    .bottom { transform: rotateX(-90deg) translateZ(125px); }
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        justify-content: center;
        padding: 0 20px;
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 50px;
    }
    
    .hero-content {
        padding-right: 0;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .hero h1,
    .hero .subtitle,
    .hero-description {
        text-align: center;
    }
    
    .cube {
        width: 200px;
        height: 200px;
    }
    
    .front  { transform: translateZ(100px); }
    .back   { transform: rotateY(180deg) translateZ(100px); }
    .right  { transform: rotateY(90deg) translateZ(100px); }
    .left   { transform: rotateY(-90deg) translateZ(100px); }
    .top    { transform: rotateX(90deg) translateZ(100px); }
    .bottom { transform: rotateX(-90deg) translateZ(100px); }

    .nav-menu {
        padding: 15px 20px;
    }

    .hamburger {
        display: flex;
        z-index: 1002;
    }

    /* Menu Backdrop */
    .nav-menu::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(10, 25, 47, 0.95);
        backdrop-filter: blur(10px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
        pointer-events: none;
    }

    .nav-menu.menu-open::after {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--background-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1001;
        padding: 80px 20px 20px;
        overflow-y: auto;
    }

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

    /* Enhanced Hamburger Animation */
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-20px);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Menu Items Animation */
    .nav-links .nav-link {
        opacity: 0;
        transform: translateX(20px);
        transition: all 0.3s ease;
    }

    .nav-links.active .nav-link {
        opacity: 1;
        transform: translateX(0);
    }

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

    /* Prevent scrolling when menu is open */
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }

    /* Ensure links are clickable */
    .nav-links .nav-link {
        padding: 10px 20px;
        width: 100%;
        text-align: center;
        font-size: 1.2rem;
        position: relative;
        display: block;
    }

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

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

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--background-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loader {
    display: flex;
    gap: 10px;
}

.circle {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary-color);
    animation: bounce 0.5s ease-in-out infinite;
}

.circle:nth-child(2) { animation-delay: 0.1s; }
.circle:nth-child(3) { animation-delay: 0.2s; }

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

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

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.about, .projects, .contact, .resume {
    animation: fadeInUp 1s ease-out;
}

/* About Section */
.about {
    padding: 100px 150px;
}

.about-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    align-items: start;
}

.about-image {
    position: relative;
}

.profile-pic {
    width: 100%;
    border-radius: 10px;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.profile-pic:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(100, 255, 218, 0.2);
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-color);
}

.about-text p:last-of-type {
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .about {
        padding: 60px 20px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-image {
        max-width: 250px;
        margin: 0 auto;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--background-color);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(100, 255, 218, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(100, 255, 218, 0.4);
}

/* Section Styles */
section {
    padding: 100px 150px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

section h2 {
    color: var(--heading-color);
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

@media (max-width: 768px) {
    section {
        padding: 60px 20px;
    }
    
    section h2 {
        font-size: 2rem;
    }
}

/* Footer Styles */
.footer {
    background: var(--background-color);
    border-top: 1px solid var(--glass-border);
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at bottom left, rgba(100, 255, 218, 0.1), transparent 70%);
    pointer-events: none;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
}

.footer-brand h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.footer-brand p {
    color: var(--secondary-color);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 300px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.footer-section h4 {
    color: var(--heading-color);
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-section ul li a i {
    font-size: 1rem;
    color: var(--primary-color);
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 20px 50px 0;
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

.footer-bottom p {
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin: 5px 0;
}

.footer-bottom i {
    color: #ff4d4d;
    animation: heartbeat 1.5s ease infinite;
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        padding: 0 20px;
        gap: 30px;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-section {
        text-align: center;
    }

    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-section ul li a {
        justify-content: center;
    }

    .footer-bottom {
        padding: 20px 20px 0;
    }
}