/* Base Styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #0e0e0e;
    color: #fff;
    cursor: url('cursor.png'), auto; /* Custom cursor */

    /* Advanced Scaling */

    transform-origin: top center;
    width: 100%;  
    height: auto;
    overflow-x: hidden;
}



* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #0a192f;
    color: #ccd6f6;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background-color: #0a192f;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav ul li a {
    color: #8892b0;
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s;
}

.nav ul li a::before {
    content: attr(href);
    color: transparent;
    visibility: hidden;
    height: 0;
    overflow: hidden;
    display: inline-block;
}

.nav ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    background-color: #64ffda;
    height: 2px;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease-out;
}

.nav ul li a:hover::after,
.nav ul li a:focus::after {
    transform: scaleX(1);
    transform-origin: left;
}

.resume-button {
    border: 1px solid #64ffda;
    padding: 8px 20px;
    border-radius: 5px;
    color: #64ffda;
    transition: background-color 0.3s, color 0.3s;
}

.resume-button:hover {
    background-color: #64ffda;
    color: #0a192f;
}
/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 9.5%;
    padding: 26px 50px;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(15px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.9);
}

.navbar ul {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar ul li {
    margin: 0 15px; /* Reduced from 20px to 12px to bring links closer */
}

.navbar ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    position: relative;
    padding: 10px 13px;
    font-size: 13px;   
    transition: color 0.3s ease, transform 0.3s ease;
    bottom: 20%


}

.navbar ul li a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #ff9800;
    transition: all 0.3s ease;
}

.navbar ul li a:hover::before {
    left: 0;
    width: 100%;
}

.navbar ul li a:hover {
    transform: translateY(-5px);
}

/* Hero Section Styles */
.hero-section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 0 40px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: background-position 0.1s;

    /* Initial background with radial gradients */
    background: radial-gradient(circle at 60% 0%, rgba(129, 107, 255, 0.6) 2%, transparent 25%),
                radial-gradient(circle at 100% 100%, rgba(224, 35, 249, 0.6) 20%, transparent 25%),
                radial-gradient(circle at 0% 0%, rgba(41, 228, 175, 0.6) 20%, transparent 25%),
                radial-gradient(circle at 10% 10%, rgba(54, 209, 220, 0.6) 20%, transparent 25%);
    background-size: 200% 200%;
    animation: gradient-move 5s infinite alternate;
}

.hero-content {
    max-width: 800px;
    left: 5%;
    text-align: left;
    position: relative;
    z-index: 2;
}

.hero-image,
.hero-image-bottom-left {
    position: absolute;
    transition: transform 0.3s ease; /* Ensure smooth transition for transform */
}

/* Adjust the size and position of images as needed */
.hero-image {
    right: 120px;
    top: 210px; /* Adjust to move it higher up */
    width: 210px; /*Adjust the width to make it smaller */
    height: auto;
    z-index: 1;
}

.hero-image-bottom-left {
    left: 90px; /* Adjust to move it closer to the left edge */
    bottom: 100px; /* Adjust to move it closer to the bottom edge */
    width: 220px; /* Adjust the width to make it smaller */
    height: auto;
    z-index: 1;
}

/* Hover effects for images */
.hero-image:hover,
.hero-image-bottom-left:hover {
    transform: scale(1.1); /* Slightly enlarge the image */
}

/* Keyframes for image animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Apply the same animation to both images */
.hero-image,
.hero-image-bottom-left {
    animation: fadeInUp 1s ease-out;
    animation-fill-mode: both; /* Ensure the animation state is retained */
}

/* Optional: If you want both images to start animating at the same time */
.hero-image {
    animation-delay: 0s; /* No delay */
}

.hero-image-bottom-left {
    animation-delay: 0s; /* No delay */
}


/* Other existing styles remain unchanged */

.intro-text {
    color: #64ffda;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #e6f1ff;
    margin-bottom: 20px;
}

.hero-title .highlighted-text { 
    background: linear-gradient(90deg, #983eb1, #63c8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 4rem;
}

.hero-subtitle {
    font-size: 1.75rem;
    font-weight: 600;
    color: #8892b0;
    margin-bottom: 20px;
}
.typewriter-text-item {
    font-size: 3.5rem;
}



.hero-button {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid #64ffda;
    border-radius: 5px;
    color: #64ffda;
    font-size: 1rem;
    font-weight: 600;
    transition: background-color 0.3s, color 0.3s;
}

.hero-button:hover {
    background-color: #64ffda;
    color: #0a192f;
}

/* Typewriter Effect */
@keyframes typewriter {
    from { width: 0; }
    to { width: 100%; }
}

.typewriter-text {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
    white-space: nowrap;
    width: 0; /* Start with width 0 for typing effect */
    animation: 
        typewriter 2.5s steps(30, end) 1s forwards; /* Typing effect */
}

/* Optional: If you want to stop animation when it's complete (remove caret and text stays) */
.typewriter-text.complete {
    animation: typewriter 2.5s steps(30, end) 1s forwards;
}


/* Animation keyframes for moving gradients */
@keyframes gradient-move {
    0% {
        background-position: 50% 5%, 100% 0%, 0% 95%, 100% 100%;
    }
    25% {
        background-position: 52% 10%, 100% 0%, 0% 92%, 100% 100%;
    }
    50% {
        background-position: 55% 15%, 100% 0%, 0% 90%, 100% 100%;
    }
    75% {
        background-position: 57% 10%, 100% 0%, 0% 93%, 100% 100%;
    }
    100% {
        background-position: 55% 5%, 100% 0%, 0% 95%, 100% 100%;
    }
}
.scroll-down {
    display: inline-block;
    padding: 9px 16px; /* Reduced padding */
    font-size: 12px; /* Reduced font size */
    font-weight: bold;
    text-transform: uppercase;
    color: #ffffff;
    background: #1a1a1a; /* Dark base color */
    border-radius: 50px; /* Fully rounded button */
    text-align: center;
    text-decoration: none;
    transition: all 0.6s ease; /* Smooth transition */
    box-shadow: 0 0 15px rgba(75, 0, 130, 0.8); /* Dark purple shadow neon glow */
    border: 2px solid transparent;
    margin-top: 12px; /* Moves the button slightly down */
}


.scroll-down:hover {
    background: #2e2e2e; /* Darker base color */
    color: #e0e0e0;
    border-color: #e0e0e0;
    box-shadow: 0 0 25px rgba(75, 0, 130, 1); /* Enhanced neon glow on hover */
    transform: scale(1.05); /* Slightly enlarges the button */
}

.scroll-down:active {
    background: #1a1a1a; /* Dark base color on click */
    color: #ffffff;
    box-shadow: 0 0 15px rgba(75, 0, 130, 0.8); /* Maintains glow on active */
    transform: scale(1); /* Normal size on click */
}



/* Social Media Sidebar */
.social-sidebar {
    position: fixed;
    top: 50%;
    left: 40px; /* Adjusted position to the right */
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 25px;
    z-index: 1000;
}

/* Icon Styles */
.social-icon {
    position: relative;
    display: inline-block;
    font-size: 1.8rem;
    color: #8892b0; /* Default color */
    cursor: pointer;
    transition: color 0.6s ease, transform 0.3s ease; /* Smooth transition for color and scale */

    /* Floating Animation */
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

.social-icon:nth-child(2) {
    animation-delay: 1s;
}

.social-icon:nth-child(3) {
    animation-delay: 2s;
}

.social-icon:nth-child(4) {
    animation-delay: 3s;
}

/* Tooltip Styles */
.social-icon .tooltip {
    position: absolute;
    left: 60px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #0a192f;
    color: #8892b0;
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 0.9rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    white-space: nowrap;
    pointer-events: none;
}

.social-icon:hover .tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(10px) translateY(-50%);
}

/* Hover Effects for Social Icons */
.social-icon:hover {
    transform: scale(1.3); /* Scale effect on hover */
}

/* Hover Colors */
.social-icon.facebook:hover {
    color: #3b5998; /* Facebook color */
}

.social-icon.twitter:hover {
    color: #1da1f2; /* Twitter color */
}

.social-icon.instagram:hover {
    color: #e44092; /* Instagram color */
}

.social-icon.linkedin:hover {
    color: #0077b5; /* LinkedIn color */
}

/* Responsive Design */
@media (max-width: 768px) {
    .social-sidebar {
        left: 20px; /* Adjust for smaller screens */
    }

    .social-icon {
        font-size: 1.5rem;
    }

    .social-icon .tooltip {
        font-size: 0.8rem;
        left: 50px;
    }
}

@media (max-width: 480px) {
    .social-sidebar {
        left: 15px; /* Further adjust for very small screens */
    }

    .social-icon {
        font-size: 1.2rem;
    }

    .social-icon .tooltip {
        font-size: 0.7rem;
        left: 45px;
    }
}


.about-section {
    padding: 125px 0;
    background: #111111; 

    position: relative;
    overflow: hidden;
    text-align: center;
    z-index: 1;
}






    /* 🌟 Next-Level 3D Glassmorphic Hexagons */
    .floating-shape {
        position: absolute;
        width: 250px;
        height: 250px;
        background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
        border-radius: 20px;
        backdrop-filter: blur(50px);
        box-shadow: 
            -15px -15px 40px rgba(255, 255, 255, 0.2),  
            15px 15px 50px rgba(0, 0, 0, 0.4),            
            inset -5px -5px 20px rgba(255, 255, 255, 0.2), 
            inset 5px 5px 20px rgba(0, 0, 0, 0.3);       
        transform: rotate(30deg);
        z-index: -1;
        animation: floatEffect 8s infinite alternate ease-in-out, pulseEffect 3s infinite alternate ease-in-out;
        transition: transform 0.5s ease-in-out, box-shadow 0.3s ease-in-out;
    }

    /* 🌀 3D Depth and Positioning */
    .floating-shape-1 {
        top: 10%;
        left: 5%;
        transform: rotate(30deg) translateZ(0);
    }

    .floating-shape-2 {
        bottom: -20%;
        right: 5%;
        transform: rotate(30deg) translateZ(0);
    }

    .floating-shape-3 {
        top: 10%;
        left: 90%;
        width: 180px;
        height: 180px;
        transform: rotate(30deg) translate(-50%, -50%);
        opacity: 0.5;
    }


    /* 🎭 Floating Motion */
    @keyframes floatEffect {
        0% {
            transform: translateY(-20px) rotate(30deg) scale(1);
        }
        100% {
            transform: translateY(20px) rotate(30deg) scale(1.1);
        }
    }

    /* 💡 Advanced Pulse Glow */
    @keyframes pulseEffect {
        0% {
            box-shadow: 
                -10px -10px 35px rgba(255, 255, 255, 0.25), 
                10px 10px 45px rgba(0, 0, 0, 0.4),
                inset -5px -5px 25px rgba(255, 255, 255, 0.3), 
                inset 5px 5px 25px rgba(0, 0, 0, 0.3);
        }
        100% {
            box-shadow: 
                -5px -5px 25px rgba(255, 255, 255, 0.15), 
                5px 5px 35px rgba(0, 0, 0, 0.3),
                inset -3px -3px 15px rgba(255, 255, 255, 0.2), 
                inset 3px 3px 15px rgba(0, 0, 0, 0.2);
        }
    }

    /* 🎮 Interactive Hover Effect */
    .about-section:hover .floating-shape-1 {
        transform: translate(-30px, 30px) rotate(30deg) scale(1.15);
    }
    .about-section:hover .floating-shape-2 {
        transform: translate(30px, -30px) rotate(30deg) scale(1.15);
    }
    .about-section:hover .floating-shape-3 {
        transform: translate(-50%, -50%) rotate(30deg) scale(1.2);
    }

.about-section h2 {
    font-size: 3.5rem;
    margin-bottom: 40px;
    color: #64ffda; /* Teal color for headings */
    position: relative;
    display: inline-block; /* Allows for more precise hover effects */
    transition: color 0.3s, transform 0.3s; /* Smooth color and transform transitions */
}
.about-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    max-width: 1050px;
    margin: 0 auto;
    position: relative;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    width: 300px; /* Set a fixed width */
    height: 300px; /* Set the same height as width to make it square */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Ensure smooth transitions on hover for the image */
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the square container without distortion */
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    transition: transform 1.2s cubic-bezier(0.25, 0.8, 0.25, 1), /* Smooth and gradual scale/rotate */
                filter 1.2s cubic-bezier(0.25, 0.8, 0.25, 1),   /* Smooth brightness change */
                box-shadow 1.2s cubic-bezier(0.25, 0.8, 0.25, 1); /* Smooth shadow transition */
}

.about-image:hover img {
    transform: scale(1.05) rotate(2deg);
    filter: brightness(1.1);
}

/* Ensure smooth transition for the container's shadow on hover */
.about-image {
    transition: box-shadow 1.2s cubic-bezier(0.25, 0.8, 0.25, 1); /* Apply smoother shadow transition */
}



/* AOS: Make sure hover doesn't conflict with AOS */
[data-aos] {
    transition: transform 0.6s ease, opacity 0.6s ease; /* Define AOS transitions */
}

[data-aos]:hover {
    opacity: 1 !important; /* Ensure opacity is handled during hover */
    transform: none !important; /* Don't let AOS transform override hover transform */
}


/* About text box styling */
.about-text {
    flex: 2;
    color: #e6f1ff; /* Lighter text for readability */
    font-size: 1.2rem;
    line-height: 1.8;
    backdrop-filter: blur(15px); /* Increased blur for a glass effect */
    padding: 20px;
    border-radius: 15px;
    background: rgba(20, 30, 50, 0.8); /* Darker transparent background */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7); /* Shadow for depth */
    
    display: flex;
    flex-direction: column;
}



/* Prevent internal elements from being transformed separately */
.about-text * {
    transition: none; /* Prevent any children elements from being affected by hover transform */
}



/* Additional transitions for hover states */
.about-text:hover,
.about-image:hover {
    transition: all 0.3s ease !important; /* Force hover transitions to apply correctly */
}

/* Prevent AOS from interfering with the hover lift effect */
[data-aos]:hover {
    transform: translateY(-5px) !important; /* Apply the hover effect even when AOS is active */
    opacity: 1 !important; /* Ensure opacity is handled during hover */
}


/* Global Styles */
.projects-section {
    background: #0a0a0a;
    padding: 50px 10%;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.projects-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 50px;
    background: linear-gradient(90deg, #7b2ff7, #ff3cac);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.projects-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.project-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: nowrap;
}

.project-image {
    flex: 1;
    max-width: 430px;
    height: 540px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(123, 47, 247, 0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    left: 65%;
    position: relative;
}

.project-image iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
}

.project-image:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 50px rgba(123, 47, 247, 0.5);
}

.project-info {
    flex: 1.5;
    text-align: left;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 
        0 3px 8px rgba(255, 255, 255, 0.05),   /* Very subtle light shadow */
        0 5px 15px rgba(123, 47, 247, 0.1),    /* Very subtle purple shadow */
        0 8px 20px rgba(123, 47, 247, 0.15);   /* Subtle stronger shadow */
    backdrop-filter: blur(15px);
    transition: transform 0.3s ease, box-shadow 0.5s ease-in-out; /* Smooth hover effect */
    top: -200px;
    position: relative;
    margin-top: -300px;
}

.project-info:hover {
    box-shadow: 
        0 5px 15px rgba(255, 255, 255, 0.1), 
        0 8px 20px rgba(123, 47, 247, 0.2), 
        0 12px 25px rgba(123, 47, 247, 0.25);  /* Slight increase on hover for smooth transition */
    transform: translateY(-5px);
}

.project-text-container h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #ff3cac;
    margin-bottom: 10px;
}

.project-text-container p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    
}

.project-link {
    display: inline-block;
    font-size: 1.1rem;
    padding: 12px 24px;
    color: #fff;
    background: linear-gradient(90deg, #7b2ff7, #ff3cac);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.project-link:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(123, 47, 247, 0.4);
}




    
/* Testimonials Section */
.testimonials-section {
    padding: 90px 0;
    background: linear-gradient(135deg, #121212, #2b2d42);
    text-align: center;
    color: #f0f0f0;
}

.testimonials-title {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 40px;
    position: relative;
    transition: color 0.3s ease, transform 0.3s ease;
}

.testimonials-title:hover {
    color: #e6f1ff;
    transform: translateY(-5px);
}

.testimonials-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%; /* Start from the center */
    transform: translateX(-50%); /* Center the line */
    width: 10%; /* Initial width */
    height: 3px;
    background-color: #64ffda;
    transition: width 0.4s ease, transform 0.4s ease;
}

.testimonials-title:hover::after {
    width: 20%; /* Expanded width on hover */
    transform: translateX(-50%); /* Keep it centered */
}

/* Testimonials Grid */
.testimonials-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0 2vw;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Testimonial Card */
.testimonial-card {
    padding: 15px;
    background: rgba(12, 2, 28, 0.95); /* Darker, richer background color with deeper blue-purple tones */
    border-radius: 15px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5); /* Increased shadow intensity */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    max-width: 230px; /* Reduced width */
    margin: 0 auto;
}

/* Hover Effect */
.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5), 
                0 0 15px rgba(40, 40, 90, 0.7), 
                0 0 25px rgba(78, 46, 160, 0.726); /* Enhanced dark blue and dark purple glow */
}



/* Testimonial Text */
.testimonial-text {
    font-size: 1rem;
    line-height: 1.5;
    color: #a0c4ff; /* Softer, lighter blue text color */
    margin-bottom: 15px;
}

/* Testimonial Author */
.testimonial-author {
    font-size: 0.9rem;
    font-weight: bold;
    color: #64ffda;
}



/* Skills & Tools Section */
.skills-section {
    position: relative;
    padding: 60px 20px;
    background: radial-gradient(circle, #07013b, #0a0a0a); 
    color: #ffffff;
    text-align: center;
}

.skills-section h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    font-weight: bold;
    color: #ffffff;
}

.skills-content {
    max-width: 800px;
    margin: 0 auto;
}

.skills-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    font-size: 1.2em;
    line-height: 1.8em;
}

.skills-list li {
    margin-bottom: 15px;
}

.skills-list li strong {
    color: #42a5f5;
}

/* Skills Logos Styling */
.skills-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 20px 0;
}

.skills-logos img {
    width: 50px;
    height: auto;
    transition: transform 0.3s ease;
}

.skills-logos img:hover {
    transform: scale(1.1);
}

/* 3D Hand Image Styling */
.hand-image {
    position: absolute;
    width: 160px;
    transform: rotate(15deg);
    transition: transform 0.3s ease;
}

.hand-image:hover {
    transform: scale(1.1) rotate(10deg);
}

/* Top-right hand image positioning */
.hand-image.top-right {
    top: 10%;
    right: 10%;
}

/* Bottom-left hand image positioning */
.hand-image.bottom-left {
    bottom: 10%;
    left: 10%;
    transform: rotate(-15deg);
    transition: transform 0.3s ease;
}

.hand-image.bottom-left:hover {
    transform: scale(1.1) rotate(-10deg);
}


/* Code Snippets Section Styling */
.snippets-section {

    background: radial-gradient(circle, #04010f, #0a0a0a); 
    color: #ffffff;
    padding: 60px 10%;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.snippets-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 30px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #6e45e2, #88d3ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.snippets-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.snippet {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    text-align: left;
    position: relative;
    
}

.snippet:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(255, 255, 255, 0.2);
}

.snippet h3 {
    font-size: 1.6rem;
    color: #64ffda;
    margin-bottom: 10px;
}

.snippet p {
    font-size: 1rem;
    color: #b0b0b0;
    margin-bottom: 15px;
}

pre {
    background: #131313;
    padding: 15px;
    border-radius: 8px;
    overflow-x: auto;
    position: relative;
}

code {
    font-family: 'Fira Code', monospace;
    font-size: 0.95rem;
    color: #f8f8f2;
}

.code .comment {
    color: #6272a4;
}

.code .keyword {
    color: #ff79c6;
}

.code .string {
    color: #f1fa8c;
}

.snippet::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff416c, #ff4b2b);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
/* Advanced Pricing Section CSS */

.pricing-section {
    background: radial-gradient(circle, #260a64, #070116);  
    padding: 80px 5%;
    color: #fff;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(90deg, #b710ff, #0077ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease-in-out;
    position: relative;
    overflow: hidden;
}

/* First row with 3 cards */
.pricing-card:nth-child(-n+3) {
    flex: 1 1 calc(33.333% - 30px); /* 3 cards per row */
}

/* Second row with 4 cards */
.pricing-card:nth-child(n+4) {
    flex: 1 1 calc(25% - 30px); /* 4 cards per row */
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 20px 40px rgba(59, 9, 141, 0.4);
    background: rgba(255, 255, 255, 0.1);
}

.card-header h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #d1aaff;
}

.price {
    font-size: 1.4rem;
    font-weight: bold;
    color: #fff;
    background: linear-gradient(90deg, #ff0099, #ff6600);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card-body ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
    position: relative;
}

.card-body ul li {
    font-size: 1rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 25px; /* Adjust padding for the custom bullet position */
}

/* Custom Bullet Points */
.card-body ul li::before {
    content: '✦'; /* Unicode bullet character */
    font-size: 1.2rem;
    position: absolute;
    left: 3%;
    top: 50%;
    transform: translateY(-50%);
    color: #ff6600; /* Orange color for bullet */
}

/* Last list item without a bottom border */
.card-body ul li:last-child {
    border-bottom: none;
}


/* Responsive Design */
@media (max-width: 1024px) {
    .pricing-card {
        flex: 1 1 calc(50% - 30px); /* 2 cards per row */
    }
}

@media (max-width: 768px) {
    .pricing-card {
        flex: 1 1 100%; /* 1 card per row on small screens */
    }
}


/* Footer Styling */
.footer {
    background: #0a0a12;
    color: #c4b8e6;
    padding: 60px 0 20px;
    font-family: 'Poppins', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.footer-branding {
    max-width: 300px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    color: #a37de3;
    text-decoration: none;
}

.footer-branding p {
    font-size: 14px;
    margin-top: 10px;
    color: #a0a0a0;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-column h3 {
    font-size: 18px;
    color: #cfcfea;
    margin-bottom: 15px;
    position: relative;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #a37de3;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #cfcfea;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter h3 {
    font-size: 18px;
    color: #cfcfea;
}

.newsletter p {
    font-size: 14px;
    margin-bottom: 15px;
    color: #a0a0a0;
}

.newsletter form {
    display: flex;
    gap: 10px;
}

.newsletter input {
    padding: 10px;
    width: 220px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(163, 125, 227, 0.8);
    border-radius: 10px;
    font-size: 14px;
    color: #cfcfea;
    outline: none;
}

.newsletter button {
    background: linear-gradient(135deg, #2d154b, #3f1680);
    color: #cfcfea;
    padding: 10px 20px;
    border: none;
    font-size: 14px;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.newsletter button:hover {
    background: linear-gradient(135deg, #3f1680, #5a1fb5);
}

.social-media h3 {
    font-size: 18px;
    color: #cfcfea;
}

.social-icons {
    margin-top: 10px;
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #a37de3;
    font-size: 18px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #cfcfea;
}

.footer-legal {
    text-align: center;
    font-size: 13px;
    margin-top: 30px;
    color: #a0a0a0;
}

/* Footer Styling */
.footer {
    background: #0d0d2b;
    width: 100vw; /* Force full viewport width */
    margin-left: calc(-50vw + 50%); /* Center-align while removing extra gaps */
    color: #c4b8e6;
    padding: 60px 0 20px;
    font-family: 'Poppins', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.footer-branding {
    max-width: 300px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    color: #a37de3;
    text-decoration: none;
}

.footer-branding p {
    font-size: 14px;
    margin-top: 10px;
    color: #a0a0a0;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-column h3 {
    font-size: 18px;
    color: #cfcfea;
    margin-bottom: 15px;
    position: relative;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #a37de3;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #cfcfea;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter h3 {
    font-size: 18px;
    color: #cfcfea;
}

.newsletter p {
    font-size: 14px;
    margin-bottom: 15px;
    color: #a0a0a0;
}

.newsletter form {
    display: flex;
    gap: 10px;
}

.newsletter input {
    padding: 10px;
    width: 220px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(163, 125, 227, 0.8);
    border-radius: 10px;
    font-size: 14px;
    color: #cfcfea;
    outline: none;
}

.newsletter button {
    background: linear-gradient(135deg, #2d154b, #3f1680);
    color: #cfcfea;
    padding: 10px 20px;
    border: none;
    font-size: 14px;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.newsletter button:hover {
    background: linear-gradient(135deg, #3f1680, #5a1fb5);
}

.social-media h3 {
    font-size: 18px;
    color: #cfcfea;
}

.social-icons {
    margin-top: 10px;
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #a37de3;
    font-size: 18px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #cfcfea;
}

.footer-legal {
    text-align: center;
    font-size: 13px;
    margin-top: 30px;
    color: #a0a0a0;
}

.contact-section {
    width: 100vw; /* Force full viewport width */
    margin-left: calc(-50vw + 50%); /* Center-align while removing extra gaps */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    height: auto;
    background: radial-gradient(circle, #0c0331, #080216); 
    padding: 40px;
    flex-wrap: wrap;
    box-sizing: border-box; /* Prevent padding from affecting width */
}


.left-content {
    width: 450px;
}

.left-content h2 {
    color: white;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.left-content p {
    color: #a0a0a0;
    font-size: 16px;
    margin-bottom: 20px;
}

.contact-info p {
    color: white;
    font-size: 14px;
    margin: 5px 0;
}

.working-hours p {
    color: #a0a0a0;
    font-size: 14px;
}

.map-container {
    margin-top: 20px;
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    height: 250px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
}

.social-links {
    margin-top: 15px;
}

.social-icon {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 18px;
    color: white;
    margin-right: 15px;
    text-decoration: none;
    transition: color 0.3s;
}

.social-icon:hover {
    color: #8B5CF6;
}


/* Contact Section Styling */
.contact-container {
    max-width: 430px;
    background: rgba(25, 25, 40, 0.4); /* Increased transparency */
    backdrop-filter: blur(30px) saturate(180%); /* Stronger blur */
    border-radius: 18px;
    padding: 32px;
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.6);
    text-align: center;
    color: #cfcfea;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
}

.contact-container:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 38px rgba(0, 0, 0, 0.8);
}

.contact-container h2 {
    font-size: 24px;
    margin-bottom: 14px;
    color: #a37de3;
    letter-spacing: 0.8px;
}

.contact-container p {
    font-size: 14px;
    margin-bottom: 20px;
    color: #c4b8e6;
}

.input-group {
    position: relative;
    margin-bottom: 20px;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05); /* More transparent background */
    border: 2px solid rgba(163, 125, 227, 0.8);
    border-radius: 10px;
    font-size: 15px;
    color: #cfcfea;
    outline: none;
    transition: border 0.4s ease-in-out, background 0.4s ease-in-out;
}

.input-group input:hover,
.input-group textarea:hover {
    background: rgba(255, 255, 255, 0.1); /* Increased transparency on hover */
}

.input-group label {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    font-size: 13px;
    color: rgba(163, 125, 227, 0.8);
    transition: all 0.4s ease-in-out;
    pointer-events: none;
}

.input-group input:focus ~ label,
.input-group textarea:focus ~ label,
.input-group input:valid ~ label,
.input-group textarea:valid ~ label {
    top: -6px;
    font-size: 11px;
    color: #a37de3;
}

.contact-btn {
    width: 100%;
    padding: 12px;
    border: none;
    background: linear-gradient(135deg, #2d154b, #3f1680);
    color: #cfcfea;
    font-size: 15px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.4s ease-in-out;
    position: relative;
    overflow: hidden;
}

.contact-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: rgba(255, 255, 255, 0.15);
    transition: all 0.6s ease-in-out;
    transform: translate(-50%, -50%) rotate(45deg);
    z-index: 0;
    opacity: 0;
}

.contact-btn:hover::before {
    width: 100%;
    height: 100%;
    opacity: 1;
}

.contact-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 25px rgba(163, 125, 227, 0.7);
}

.contact-btn span {
    position: relative;
    z-index: 1;
}

.bottom-text {
    margin-top: 10px;
    font-size: 13px;
    color: #c4b8e6;
}

.bottom-text a {
    color: #a37de3;
    text-decoration: none;
    transition: color 0.4s;
}

.bottom-text a:hover {
    color: #cfcfea;
}


/* Responsive Styles */
@media (max-width: 600px) {
    .footer p {
        font-size: 0.8rem; /* Adjust font size for smaller screens */
    }

    .social-link {
        font-size: 1.3rem; /* Adjust icon size for smaller screens */
    }
}
/* View More Button Section */
#view-more {
    text-align: center;
    margin: 3rem 0;
    padding: 0 1rem; /* Ensures proper alignment within the container */
}

.btn-view-more {
    display: inline-block;
    padding: 12px 24px; /* Adjusted padding for a more compact button */
    background: linear-gradient(135deg, #1d1d2b, #3a0c78); /* Dark blue and dark purple */
    color: #fff;
    border-radius: 30px;
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: background 0.6s ease, transform 0.6s ease, box-shadow 0.6s ease; /* Smoother and slower transitions */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    border: none; /* Ensure no border issues */
    width: auto; /* Adjusted to fit the text */
    max-width: 300px; /* Decreased width for a more compact button */
    box-sizing: border-box; /* Includes padding in width */
    position: relative; /* Allows for better control of hover effects */
}

.btn-view-more:hover {
    background: linear-gradient(135deg, #1a1a2e, #4a1a72); /* Slightly lighter shades for hover */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    transform: translateY(-6px); /* Slight lift on hover */
}

.btn-view-more:active {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #1d1d2b, #3a0c78);
}

/* For screens smaller than 320px */
@media (max-width: 320px) {
    .contact-section {
        padding: 10px;
    }

    .contact-section h2 {
        font-size: 1.5em;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 8px;
        margin: 8px 0;
    }

    .contact-form textarea {
        height: 120px;
    }

    .btn-primary {
        font-size: 0.9em;
        padding: 8px 16px;
    }
}

/* For screens 320px to 480px */
@media (max-width: 480px) {
    .contact-section {
        padding: 15px;
    }

    .contact-section h2 {
        font-size: 1.8em;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 10px;
        margin: 10px 0;
    }

    .contact-form textarea {
        height: 130px;
    }

    .btn-primary {
        font-size: 1em;
        padding: 10px 18px;
    }
}

/* For screens 481px to 768px */
@media (max-width: 768px) {
    .contact-section {
        padding: 20px;
    }

    .contact-section h2 {
        font-size: 2em;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 12px;
        margin: 12px 0;
    }

    .contact-form textarea {
        height: 150px;
    }

    .btn-primary {
        font-size: 1.1em;
        padding: 12px 20px;
    }
}

/* For screens 769px to 1024px */
@media (max-width: 1024px) {
    .contact-section {
        padding: 20px;
    }

    .contact-section h2 {
        font-size: 2.2em;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 12px;
        margin: 12px 0;
    }

    .contact-form textarea {
        height: 160px;
    }

    .btn-primary {
        font-size: 1.2em;
        padding: 14px 22px;
    }

}
/* Medium screens (tablets, 768px and up) */
@media (max-width: 1024px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 15px 20px; /* Reduced Y padding */
        position: relative;
    }

    .hero-content {
        max-width: 90%;
        margin: 0 auto;
    }

    .hero-title {
        font-size: 3.2rem;
    }

    .typewriter-text-item {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
        margin-bottom: 12px; /* Further reduced bottom margin */
    }

    .scroll-down {
        font-size: 1.3rem;
        padding: 12px 24px;
    }

    .hero-image {
        max-width: 50%;
        position: absolute;
        top: 130px; /* Slightly lower */
        right: 30px;
    }

    .hero-image-bottom-left {
        max-width: 50%; /* Increased size */
        position: absolute;
        bottom: 150px; /* Moved up even more */
        left: 30px;
    }
}

/* Small screens (mobile, 768px and below) */
@media (max-width: 768px) {
    .hero-section {
        padding: 10px 15px; /* Reduced Y padding */
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .typewriter-text-item {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .scroll-down {
        font-size: 1.2rem;
        padding: 10px 20px;
    }

    .hero-image {
        max-width: 45%;
        top: 115px; /* Lowered slightly */
        right: 20px;
    }

    .hero-image-bottom-left {
        max-width: 45%; /* Increased size */
        bottom: 140px; /* Moved up even more */
        left: 20px;
    }
}

/* Extra small screens (below 480px) */
@media (max-width: 480px) {
    .hero-section {
        padding: 8px 10px; /* Reduced Y padding */
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .typewriter-text-item {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .scroll-down {
        font-size: 1.1rem;
        padding: 8px 16px;
    }

    .hero-image {
        max-width: 40%;
        top: 105px; /* Lowered slightly */
        right: 15px;
    }

    .hero-image-bottom-left {
        max-width: 40%; /* Increased size */
        bottom: 130px; /* Moved up even more */
        left: 10px;
    }
}
/* Default styles are assumed to be well-structured for desktops. Below are media queries for responsiveness */

/* Large Tablets (1024px and below) */
@media (max-width: 1024px) {
    .about-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .about-image img {
        width: 80%; /* Adjust image size */
        max-width: 500px;
    }
    .about-text {
        width: 90%; /* Adjust text width */
    }
}

/* Tablets (768px and below) */
@media (max-width: 768px) {
    .about-section h2 {
        font-size: 2rem; /* Reduce heading size */
    }
    .about-image img {
        width: 90%; /* Further reduce image size */
    }
    .about-text p {
        font-size: 1rem; /* Adjust text size for better readability */
    }
    .floating-shape {
        display: none; /* Hide floating shapes for better clarity */
    }
}

/* Mobile Devices (480px and below) */
@media (max-width: 480px) {
    .about-section {
        padding: 40px 20px; /* Adjust padding */
    }
    .about-section h2 {
        font-size: 1.8rem;
    }
    .about-image img {
        width: 100%;
        max-width: 300px;
    }
    .about-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}
    @media (max-width: 480px) {
        .project-container {
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .project-image {
            max-width: 460px; /* Keeps desktop width */
            height: 540px; /* Keeps desktop height */
            position: static;
        }

        .project-info {
            max-width: 600px; /* Keeps desktop width */
            margin-top: 180px;
            text-align: center;
            top: -140px;
            position: relative;

        }
    }
    @media (max-width: 480px) {
        .projects-section {
            padding-bottom: 0px !important; /* Remove bottom padding */
            padding-top: 10px !important; /* Further reduce top padding */
            margin-bottom: 0px !important; /* Ensure no extra margin */
        }
    
        .projects-grid {
            gap: 0px !important;  /* Completely remove gap */
            row-gap: 0px !important; /* Ensure no extra vertical spacing */
            margin-bottom: 0px !important; /* Remove unnecessary margin */
            padding-bottom: 0px !important; /* Remove extra padding if any */
        }
        
    }
    /* Tablet (Screens between 600px and 1024px) */
@media (max-width: 1024px) {
    .pricing-cards {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }
    .pricing-card {
      width: 100%;
    }
    .pricing-card .card-header h3 {
      font-size: 1.3rem;
    }
    .pricing-card .price {
      font-size: 1rem;
    }
  }
  
  /* Mobile (Screens less than 600px) */
  @media (max-width: 600px) {
    .pricing-cards {
      grid-template-columns: 1fr;
      gap: 15px;
    }
    .pricing-card .card-header h3 {
      font-size: 1.2rem;
    }
    .pricing-card .price {
      font-size: 1rem;
    }
    .pricing-card .card-body ul {
      padding-left: 20px;
    }
  }
/* Hamburger Button */
#hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 40px;
    height: 35px;
    cursor: pointer;
    z-index: 1001;
    position: fixed;
    top: 20px;
    left: 20px;
    background: none;
    border: none;
}

/* Hamburger Lines */
#hamburger .line {
    width: 35px;
    height: 4px;
    background-color: #fff;
    border-radius: 5px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Active Hamburger (Transforms into "X") */
#hamburger.active .line:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

#hamburger.active .line:nth-child(2) {
    opacity: 0;
}

#hamburger.active .line:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* Mobile Navbar */
@media (max-width: 768px) {
    #nav-menu {
        position: fixed;
        top: 0;
        left: -80%; /* Smaller width */
        width: 60%; /* Not full-screen */
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-color:   rgba(7, 1, 14, 0.568);
        opacity: 0;
        transition: left 0.3s ease, opacity 0.3s ease;
        z-index: 1000;
    }

    /* Show menu when active */
    #nav-menu.show {
        left: 0;
        opacity: 1;
    }

    /* Navigation links */
    #nav-menu ul {
        list-style: none;
        padding: 0;
        margin: 0;
        text-align: center;
        width: 100%;
    }

    #nav-menu li {
        margin: 15px 0; /* Adjusted spacing */
    }

    #nav-menu li a {
        font-size: 14px; /* Smaller text */
        color: #fff;
        text-decoration: none;
        font-weight: bold;
        text-transform: uppercase;
        transition: color 0.3s ease;
    }

    #nav-menu li a:hover {
        color: #ff9800;
    }
}

/* Show Hamburger ONLY on Mobile */
@media (max-width: 768px) {
    #hamburger {
        display: flex;
    }
}

/* Hide Hamburger on Desktop */
@media (min-width: 769px) {
    #hamburger {
        display: none;
    }
}
@media (max-width: 768px) {
    .code-window-buttons {
        display: none;
    }
}
@media (max-width: 768px) {
    .code-window-buttons {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        overflow: hidden !important;
    }
}
