/* Base styles with transparent background */
* {
    margin: 0;
    padding: 0;
     box-sizing: border-box;
    font-family: 'Courier New', monospace;
    font-weight: bold;
}

@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&display=swap');

@font-face {
    font-family: 'Azonix';
    src: url('fonts/Azonix.otf') format('opentype');
}

body {
    margin: 0;
    padding: 0;
    color: #000;
    background-color: transparent;
    line-height: 1.6;
    overflow-x: hidden;
    font-family: "Canva Sans", Arial, Helvetica, sans-serif;
}

h1, h2, h3, h4, h5, h6,
.logo,
.title,
.section-title,
.project-title {
    font-family: 'Azonix', sans-serif;
}

.glass {
    background: rgba(255, 255, 255, 0.3);  /* Increased opacity */
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.2);  /* Changed to black border */
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
}

/* Container */
.container {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

/* Header */
header {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    transition: all 0.3s ease;
}

header.scrolled {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 3px;
}

.logo span {
    color: #ffffff;
}

.nav-links {
    display: flex;
}

.nav-links li {
    list-style: none;
    margin-left: 30px;
}

.nav-links a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #000;
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-content {
    max-width: 800px;
}

.subtitle {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 20px;
}

.title {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.description {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 600px;
    color: rgba(0, 0, 0, 0.9);  /* Increased opacity for better visibility */
}

.cta-btn {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    color: #64ffda;
    border: 1px solid #64ffda;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: rgba(100, 255, 218, 0.1);
    transform: translateY(-3px);
}

/* Add parallax effect to images */
.parallax-effect {
    transition: transform 0.5s ease;
    transform-style: preserve-3d;
    will-change: transform;
    overflow: hidden;
    position: relative;
}

.parallax-inner {
    transform: translateZ(0);
    transition: transform 0.5s ease;
}

/* About Section */
.about {
    padding: 150px 0;
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    color: #fff;
    margin-bottom: 80px;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #64ffda;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
    color: rgba(0, 0, 0, 0.9);  /* Increased opacity */
}

.skills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.skill {
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 14px;
}

.about-image {
    flex: 1;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Projects Section */
.projects {
    padding: 150px 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.project {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.project:hover {
    transform: translateY(-10px);
}

.project-content {
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.project-title {
    font-size: 22px;
    margin-bottom: 15px;
}

.project-description {
    margin-bottom: 20px;
    color: rgba(0, 0, 0, 0.9);  /* Increased opacity */
    flex-grow: 1;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.project-tech span {
    font-size: 14px;
    color: #64ffda;
}

.project-links {
    display: flex;
    gap: 15px;
}

.project-links a {
    color: #000;
    font-size: 20px;
}

/* Contact Section */
.contact {
    padding: 150px 0;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-text {
    margin-bottom: 40px;
    color: rgba(0, 0, 0, 0.9);  /* Increased opacity */
}

.contact-email {
    display: inline-block;
    font-size: 24px;
    color: #64ffda;
    margin-bottom: 30px;
    text-decoration: none;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.3);  /* Increased opacity */
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: #64ffda;
    color: #0a192f;
    transform: translateY(-5px);
}

/* Footer */
footer {
    padding: 20px 0;
    text-align: center;
    color: rgba(0, 0, 0, 0.7);  /* Changed to black with opacity */
    font-size: 14px;
}

/* Remove blur from header when scrolled */
header.scrolled {
    background: rgba(197, 104, 104, 0.9);  /* Changed to light background */
}

/* Mobile nav changes */
@media screen and (max-width: 768px) {
    .burger {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        border-radius: 5px;
        right: -100%;
        top: 70px;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-around;
    
        width: 100%;
        transition: right 0.5s ease;
    }

    .nav-links.active {
        right: 0;
        padding: 20px;
    }

    /* Mobile menu animation */
    @keyframes navLinkFade {
        from {
            opacity: 0;
            transform: translateX(50px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    /* Burger menu animation */
    .burger.toggle .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .burger.toggle .line2 {
        opacity: 0;
    }

    .burger.toggle .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .title {
        font-size: 40px;
    }
    
    .description {
        font-size: 18px;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-image {
        order: -1;
        margin-bottom: 30px;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
}



.wrapper {
    position: relative;
}

svg {
    display: block;
    width: 100%;
    height: 100vh;
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
}

.scrollElement {
    position: absolute;
    height: 6000px;
    width: 100%;
    top: 0;
    z-index: 0;
}

/* Container */
.container {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.btn {
    position: fixed;
    bottom: 5%;
    right: 0px;
    transform: translateX(-50%);
    border: 1px solid #fff;
    border-radius: 5px;
    font-size: 0.9rem;
    padding: 0.5rem 0.7em;
    background-color: transparent;
    color: #ffffff;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    -webkit-font-smoothing: antialiased;
    cursor: pointer;
    transition: all .3s;
    z-index: 11;
}

.btn_works {
    left: 100px;
    right: unset;
    text-decoration: none;
}

.btn:hover {
    background: #ffffff;
    color: #1B1734;
}

/* MARK: ---0-490 Mobile */
@media (max-width: 490px) {
    /* Hide scroll text and arrow */
#text,
#arrow {
    display: none;
}

    #info2 {
        transform-origin: 50% 50%;
        transform: translateY(-120px) scale(0.8);
    }
}



/* Contact Section Styles */
.contact-section {
    padding: 150px 0;
    position: relative;
    overflow: hidden;
}

.container {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    color: #fff;
    margin-bottom: 80px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #64ffda, #00bcd4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #000;
    transition: all 0.3s ease;
}

.icon-wrapper:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(100, 255, 218, 0.5);
}

.contact-details h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.contact-details a,
.contact-details span {
    font-family: monospace;
    font-weight: bold;
    font-size: 1rem;
    color: #b3b3b3;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-details a:hover {
    color: #64ffda;
}

/* Contact Form Styles */
.form-group {
    position: relative;
    margin-bottom: 30px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 0;
    font-family: monospace;
    font-weight: bold;
    font-size: 1rem;
    color: #fff;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    outline: none;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-bottom-color: #64ffda;
    box-shadow: 0 1px 0 #64ffda;
}

.form-group label {
    position: absolute;
    top: 15px;
    left: 0;
    font-family: monospace;
    font-weight: bold;
    font-size: 1rem;
    color: #b3b3b3;
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:valid + label,
.form-group textarea:valid + label {
    top: -20px;
    font-size: 0.9rem;
    color: #64ffda;
}

.cta-button {
    background: linear-gradient(135deg, #64ffda, #00bcd4);
    color: #000;
    border: none;
    padding: 15px 30px;
    font-family: monospace;
    font-weight: bold;
    font-size: 1rem;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(100, 255, 218, 0.3);
}

/* Footer Styles */
.footer {
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 0 30px;
    margin-top: 100px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-left h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.footer-left p {
    font-family: monospace;
    font-weight: bold;
    color: #b3b3b3;
    font-size: 1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b3b3b3;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(100, 255, 218, 0.1);
    color: #64ffda;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(100, 255, 218, 0.2);
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.footer-link {
    font-family: monospace;
    font-weight: bold;
    color: #b3b3b3;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-link:hover {
    color: #64ffda;
}

.footer-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: #64ffda;
    transition: width 0.3s ease;
}

.footer-link:hover::after {
    width: 100%;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-family: monospace;
    font-weight: bold;
    color: #b3b3b3;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.footer-bottom i {
    color: #e91e63;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        align-items: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
}


/* Projects Section Styles */
.projects-section {
    padding: 150px 0;
    position: relative;
    overflow: hidden;
}

.container {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.section-subtitle {
    font-family: monospace;
    font-weight: bold;
    text-align: center;
    color: #b3b3b3;
    font-size: 1.1rem;
    margin-bottom: 80px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    padding: 20px 0;
}

.project-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.project-card:hover {
    transform: translateY(-5px); /* Reduced from -10px to -5px */
    box-shadow: 
        0 12px 24px rgba(0, 0, 0, 0.3), /* Reduced shadow spread */
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.project-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-links {
    display: flex;
    gap: 20px;
}

.project-link {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.project-link:hover {
    background: rgba(100, 255, 218, 0.1);
    color: #64ffda;
    transform: scale(1.0);
}

.project-content {
    padding: 30px;
}

.project-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.project-description {
    font-family: monospace;
    font-weight: bold;
    color: #b3b3b3;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-tag {
    font-family: monospace;
    font-weight: bold;
    background: rgba(100, 255, 218, 0.1);
    color: #64ffda;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    border: 1px solid rgba(100, 255, 218, 0.3);
    transition: all 0.3s ease;
}

.tech-tag:hover {
    background: rgba(100, 255, 218, 0.1);
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .project-card {
        margin: 0 10px;
    }
    
    .project-card:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 480px) {
    .projects-section {
        padding: 100px 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .project-content {
        padding: 20px;
    }
}



