@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* Global Styles */
body {
    margin: 0;
    font-family: "Montserrat", serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
    box-sizing: border-box;
    min-height: 100%;
}

html {
    height: 100%;
    scroll-behavior: smooth;
}

.logo_link,
.footer_logo_link {
    text-decoration: none;
}

.logo {
    font-family: "Great Vibes", serif;
    font-size: 2rem;
    color: #fff;
}

/* Background Animation */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* Navigation - Fixed to the Top */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    padding: 15px 0;
    text-align: center;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #5CC0FF;
    font-size: 18px;
    transition: color 0.3s ease-in-out;
}

nav ul li a:hover {
    color: #1A73E8;
}

/* Hero Section */
.hero {
    text-align: center;
    margin-top: 200px;
    z-index: 10;
}

.glow {
    color: #5CC0FF;
    text-shadow: 0 0 10px #5CC0FF, 0 0 20px #5CC0FF;
}


/* Swoosh Effect */
.swoosh-container {
    position: absolute;
    width: 100%;
    bottom: 10px;
    left: 0;
    z-index: -10;
    pointer-events: none;
}

.swoosh {
    width: 100%;
    animation: waveMove 5s infinite alternate ease-in-out;
    pointer-events: none;
}

@keyframes waveMove {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(20px);
    }
}

/* Sections */
section {
    padding: 80px 20px;
    text-align: center;
}

.skill-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.project-cards {
    /* display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 20px; */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.project-card {
    display: flex;
    align-items: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 40px rgba(92, 192, 255, 0.15);
    padding: 20px;
    border-radius: 20px;
    transition: 0.3s ease-in-out;
    height: auto;
    width: 900px;
    max-width: 90%;
    overflow: hidden;
    margin: 50px;
}

.project-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.project-image img {
    width: 90%;
    height: auto;
    max-height: 500px;
    transition: transform 0.4s ease-in-out;
}

/* Project Info */
.project-info {
    flex: 1;
    text-align: left;
    padding: 0 20px 20px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: flex-start;
}

/* Title */
.project-title {
    font-size: 2rem;
    color: #5CC0FF;
    text-shadow: 0 0 15px rgba(92, 192, 255, 0.5);
}

/* Description */
.project-description {
    font-size: 1.1rem;
    color: #ddd;
    margin: 10px 0 20px;
    line-height: 1.6;
}

/* Tech Stack */
.tech-stack {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.tech-stack span {
    background: rgba(92, 192, 255, 0.2);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #5CC0FF;
    text-shadow: 0 0 10px rgba(92, 192, 255, 0.8);
    transition: transform 0.2s ease-in-out;
}

.tech-stack span:hover {
    transform: scale(1.1);
}

/* Buttons */
.project-buttons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.btn {
    display: inline-block;
    padding: 10px 16px;
    font-size: 16px;
    background: #222;
    color: #5CC0FF;
    border: 1px solid #5CC0FF;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
}

.btn:hover {
    background: #5CC0FF;
    color: #000;
    transform: scale(1.05);
}

.btn.primary {
    /* background: #5CC0FF; */
    background: linear-gradient(135deg, #5CC0FF, #1A73E8);
    color: #000;
}

.btn.primary:hover {
    background: linear-gradient(135deg, #1A73E8, #5CC0FF);
    color: #fff;
    transform: scale(1.08);
}

/* Responsive */
@media (max-width: 768px) {
    .project-card {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }

    .project-image img {
        width: 100%;
        max-height: 300px;
    }

    .project-info {
        padding: 10px;
    }
}

.skill-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    font-size: 18px;
    transition: 0.3s ease-in-out;
}

.skill-card:hover,
.project-card:hover {
    box-shadow: 0 0 15px #5CC0FF;
    /* rgba(92, 192, 255, 0.3); */
    transform: scale(1.02);
}

/* Contact Form */
form {
    display: flex;
    flex-direction: column;
    max-width: 400px;
    margin: 0 auto;
    gap: 15px;
}

input,
textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: 10px;
    border: 2px solid rgba(92, 192, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 16px;
    outline: none;
    box-shadow: inset 0 0 10px rgba(92, 192, 255, 0.2);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    margin: 10px 0;
}

button {
    all: unset;
    cursor: pointer;
}

.contact-section {
    margin-top: 100px;
    padding: 60px 20px;
    background: linear-gradient(145deg, rgba(14, 14, 14, 0.8), rgba(20, 20, 30, 0.9));
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(92, 192, 255, 0.2);
    max-width: 600px;
    margin: 0 auto;
}

.contact-section h2 {
    font-size: 2.4rem;
    margin-bottom: 30px;
    text-shadow: 0 0 20px #5CC0FF;
}

input::placeholder,
textarea::placeholder {
    color: #c7d2e0;
}

input:focus,
textarea:focus {
    border-color: #5CC0FF;
    box-shadow: 0 0 15px rgba(92, 192, 255, 0.5);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

.cta-button {
    padding: 14px 20px;
    font-size: 16px;
    background: linear-gradient(135deg, #5CC0FF, #1A73E8);
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(92, 192, 255, 0.4);
    z-index: 11;
}

.cta-button:hover {
    background: linear-gradient(135deg, #1A73E8, #5CC0FF);
    transform: scale(1.07);
    box-shadow: 0 0 20px rgba(92, 192, 255, 0.7);
}

.contact-button {
    width: 100%;
}

/* Particle Canvas */
#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* .project-card::before,
.project-card::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    pointer-events: none;
    z-index: 1;
}

.project-card::before {
    border-top: 2px solid transparent;
    border-left: 2px solid transparent;
    border-image: linear-gradient(90deg, transparent, #5CC0FF, transparent);
    border-image-slice: 1;
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    animation: edgeTraceOne 4s linear infinite;
}

.project-card::after {
    border-bottom: 2px solid transparent;
    border-right: 2px solid transparent;
    border-image: linear-gradient(90deg, transparent, #5CC0FF, transparent);
    border-image-slice: 1;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    animation: edgeTraceTwo 4s linear infinite;
}

.project-card:hover::before {
    animation-play-state: running;
}

.project-card:hover::after {
    animation-play-state: running;
}

@keyframes edgeTraceOne {
    0% {
        width: 0;
        height: 0;
    }

    50% {
        width: 100%;
        height: 0;
    }

    100% {
        width: 100%;
        height: 100%;
    }
}

@keyframes edgeTraceTwo {
    0% {
        width: 0;
        height: 0;
    }

    50% {
        width: 100%;
        height: 0;
    }

    100% {
        width: 100%;
        height: 100%;
    }
} */






















/* Footer Styles */
footer {
    margin-top: auto;
    margin: 100px 0 0 0;
    padding: 30px 0;
    background: linear-gradient(145deg, rgba(10, 10, 20, 0.9), rgba(0, 0, 0, 0.95));
    border-top: 2px solid rgba(92, 192, 255, 0.4);
    box-shadow: 0 -10px 30px rgba(92, 192, 255, 0.1);
    color: #c7d2e0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer_logo_link {
    font-family: "Great Vibes", cursive;
    font-size: 2rem;
    color: #5CC0FF;
    text-shadow: 0 0 15px #5CC0FF;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #5CC0FF;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.footer-links a:hover {
    color: #1A73E8;
    text-shadow: 0 0 10px #5CC0FF;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icons a {
    color: #5CC0FF;
    font-size: 20px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
    color: #1A73E8;
    transform: scale(1.2);
}

.footer-bottom {
    margin-top: 20px;
    font-size: 12px;
    color: #8a9db1;
}




.about-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 80px 20px;
    max-width: 1200px;
    margin: 200px auto;
    background: linear-gradient(145deg, rgba(14, 14, 20, 0.9), rgba(20, 20, 30, 0.95));
    border-radius: 20px;
    box-shadow: 0 0 50px rgba(92, 192, 255, 0.2);
}

.about-image {
    flex: 1;
    max-width: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(92, 192, 255, 0.4);

}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    filter: brightness(0.95) contrast(1.05);
}

.about-content {
    flex: 2;
    color: #c7d2e0;
    text-align: left;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #5CC0FF;
    text-shadow: 0 0 20px #5CC0FF;
}

.about-content p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.education-job-timeline {
    border-left: 3px solid #5CC0FF;
    padding-left: 20px;
    margin-top: 20px;
}

.education-job-timeline div {
    margin-bottom: 20px;
    position: relative;
}

.education-job-timeline div::before {
    content: "";
    position: absolute;
    left: -12px;
    top: 6px;
    width: 14px;
    height: 14px;
    background-color: #5CC0FF;
    border-radius: 50%;
    box-shadow: 0 0 15px #5CC0FF;
}

.education-job-timeline h4 {
    font-size: 1.2rem;
    color: #1A73E8;
    margin-bottom: 8px;
}

.education-job-timeline p {
    font-size: 0.9rem;
    color: #c7d2e0;
    margin: 0 0 8px;
}

.education-job-timeline ul {
    list-style: disc;
    padding-left: 20px;
    margin-top: 5px;
    color: #c7d2e0;
}

.education-job-timeline li {
    font-size: 0.9rem;
    margin-bottom: 6px;
}

@media (max-width: 768px) {
    .about-section {
        flex-direction: column;
        text-align: center;
    }

    .about-content {
        text-align: center;
    }

    .education-job-timeline {
        padding-left: 15px;
    }
}





