/* *{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    body{
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 100vh;
        font-family: 'Courier New', Courier, monospace;
        background: #000000;
    }
    .container{
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: auto;
    }

    .container .eyes{
        position: relative;
        width: 100px;
        height: 100px;
        display: block;
        background-color: #fff;
        margin: 0 20px;
        border-radius: 50%;
        box-shadow: 0 5px 45px rgba(0, 0, 0, 0.2), inset 0 0 25px #fff, inset 0 0 25px #767574;
    }

    .container .eyes::before{
        content: "";
        position: absolute;
        top: 50%;
        left: 35px;
        transform: translate(-50%,-50%);
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: #000;
        border: 5px solid rgb(9, 0, 132);
        box-sizing: border-box;
    }

    
} */



body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #000000;
    color: #333;
}

body::-webkit-scrollbar {
    display: none; 
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(90deg, #0078ff, #0056cc);
    color: white;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 1px;
    color: #ffdb58;
    text-transform: uppercase;
    transition: color 0.3s ease-in-out;
}

.logo:hover {
    color: white;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    padding: 0.5rem 0;
    transition: color 0.3s ease-in-out;
}

.nav-links a:hover {
    color: #ffdb58;
}

/* Underline Effect on Hover */
.nav-links a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffdb58;
    transition: width 0.3s ease-in-out;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Responsive Navbar */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links a {
        font-size: 1.2rem;
    }
}


/* Section Styles */
.section {
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #0078ff;
    animation: fadeInUp 1s ease-in-out;
}

.section-description {
    font-size: 1.2rem;
    color: #fff;
    animation: fadeInUp 1.2s ease-in-out;
}

/* Flexbox layout for centering content */
.content-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center; /* Vertically center */
    justify-content: center; /* Horizontally center */
    gap: 2rem; /* Spacing between image and text */
    max-width: 1200px;
    margin: 0 auto; /* Center container in the section */
    text-align: center; /* Align text inside the container */
}

/* Image column */
.image-column {
    flex: 1 1 40%; /* 40% width for the image */
    display: flex;
    justify-content: center; /* Center image horizontally */
    align-items: center; /* Center image vertically */
}

.about-image {
    max-width: 100%;
    height: 250px;
    width: 250px;
    border-radius: 50%; /* Rounded corners for the image */
    animation: fadeInUp 1.5s ease-in-out;
}

/* Text column */
.text-column {
    flex: 1 1 40%; /* 40% width for the text */
    display: flex;
    flex-direction: column;
    align-items: center; /* Center text horizontally */
    justify-content: center; /* Center text vertically */
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-container {
        flex-direction: column; /* Stack columns vertically */
    }

    .text-column, .image-column {
        flex: 1 1 100%;
    }
}

/* Animation for running text */
.running-text {
    /* overflow: hidden; */
    white-space: nowrap;
    position: relative;
}

.running-text span {
    display: inline-block;
    position: absolute;
    animation: marquee 10s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}


.projects .project-cards {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    perspective: 1500px;
}

.card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 250px;
    height: 350px;
}

.card:hover {
    transform:   scale(1.10) rotateY(5deg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}


/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-in-out;
}

.contact-form input,
.contact-form textarea,
.contact-form button {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
}

.contact-form button {
    background: #0078ff;
    color: white;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

.contact-form button:hover {
    background: #0056cc;
}

button {
    background: linear-gradient(90deg, #0078ff, #00c6ff);
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1.2rem;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

button:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}


.social-icons {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.icon {
    font-size: 2rem;
    color: #333;
    text-decoration: none;
    transition: transform 0.3s ease, color 0.3s ease;
}

.icon:hover {
    transform: translateY(-5px);
}

.icon.instagram:hover {
    color: #e1306c; 
}

.icon.facebook:hover {
    color: #1877f2; 
}

.icon.linkedin:hover {
    color: #0a66c2; 
}


/* Footer */
.footer {
    background: none;
    color: white;
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
