/* Main Styles */
:root {
    --primary-color: #64ffda;
    --bg-color: #0a0a0a;
    --text-color: #ffffff;
    --secondary-color: #8892b0;
    --accent-color: #FF4081;
    --card-bg: rgba(255, 255, 255, 0.05);
    --card-hover: rgba(255, 255, 255, 0.08);
    --transition-slow: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    --transition-medium: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    --transition-fast: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

/* Updated CSS with separate icon positioning */
.contact-form-container {
    background: rgba(10, 10, 10, 0.6);
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid rgba(100, 255, 218, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), 0 0 15px rgba(100, 255, 218, 0.1);
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: translateY(0);
    transition: all 0.4s ease;
}

.contact-form-container:hover {
    border-color: var(--primary-color);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(100, 255, 218, 0.15);
    transform: translateY(-5px);
}

.contact-form {
    display: flex !important;
    flex-direction: column;
    gap: 1.8rem;
}

.form-group {
    position: relative;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 15px; /* Space between icon and input */
}

/* Style for form field icons - now positioned as separate elements */
.form-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(100, 255, 218, 0.1);
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    flex-shrink: 0; /* Prevent icon from shrinking */
}

.form-group:hover .form-icon {
    background: rgba(100, 255, 218, 0.2);
    transform: scale(1.1);
}

.input-wrapper {
    position: relative;
    flex-grow: 1; /* Allow input to take remaining space */
}

.form-group label {
    position: absolute;
    left: 15px;
    top: 17px;
    color: var(--secondary-color);
    pointer-events: none;
    transition: all 0.3s ease;
    background: transparent;
    padding: 0 5px;
    font-size: 0.9rem;
    z-index: 1;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(100, 255, 218, 0.2);
    border-radius: 8px;
    color: var(--text-color);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(100, 255, 218, 0.2);
    background: rgba(0, 0, 0, 0.3);
}

/* Move label up when input is focused or has content */
.form-group input:focus ~ label,
.form-group textarea:focus ~ label,
.form-group input:valid ~ label,
.form-group textarea:valid ~ label {
    top: -10px;
    left: 15px;
    font-size: 0.8rem;
    color: var(--primary-color);
    background: rgba(10, 10, 10, 0.8);
    padding: 0 5px;
}

.submit-btn {
    background: linear-gradient(90deg, rgba(100, 255, 218, 0.1), rgba(100, 255, 218, 0.2));
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 12px 30px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
    align-self: flex-start;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--primary-color);
    transition: all 0.3s ease;
    z-index: -1;
}

.submit-btn:hover {
    color: var(--bg-color);
    transform: translateY(-3px);
}

.submit-btn:hover::before {
    width: 100%;
}

/* Add icon to submit button */
.submit-btn::after {
    content: '→';
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.submit-btn:hover::after {
    transform: translateX(5px);
}

/* Add a glowing border effect on hover */
.form-group input:hover,
.form-group textarea:hover {
    border-color: rgba(100, 255, 218, 0.4);
}

/* Error message styling */
.error-message {
    color: #FF4081;
    font-size: 0.8rem;
    margin-top: 0.5rem;
    display: block;
}

.form-group input.error,
.form-group textarea.error {
    border-color: #FF4081;
}

/* Success message */
.success-message {
    color: var(--primary-color);
    background: rgba(100, 255, 218, 0.1);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    text-align: center;
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Loading spinner */
.loading-spinner {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s ease-in-out infinite;
    margin-right: 8px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Responsive styles */
@media screen and (max-width: 768px) {
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .submit-btn {
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .form-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .form-icon {
        margin-bottom: 5px;
    }
    
    .input-wrapper {
        width: 100%;
    }
}
/* Add this to your style.css file */

/* Tech Icons Styles */
.tech-icons {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    z-index: 2;
}

.tech-icon-container {
    opacity: 0;
    transform: translateX(30px);
    animation: fadeInRight 0.5s ease forwards;
}

.tech-icon-container:nth-child(1) { animation-delay: 0.1s; }
.tech-icon-container:nth-child(2) { animation-delay: 0.2s; }
.tech-icon-container:nth-child(3) { animation-delay: 0.3s; }
.tech-icon-container:nth-child(4) { animation-delay: 0.4s; }
.tech-icon-container:nth-child(5) { animation-delay: 0.5s; }
.tech-icon-container:nth-child(6) { animation-delay: 0.6s; }
.tech-icon-container:nth-child(7) { animation-delay: 0.7s; }
.tech-icon-container:nth-child(8) { animation-delay: 0.8s; }

.tech-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
    transition: var(--transition-medium);
    position: relative;
    cursor: pointer;
}

.tech-icon img {
    width: 30px;
    height: 30px;
    transition: var(--transition-medium);
}

.tech-icon:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(100, 255, 218, 0.3);
}

.tech-icon:hover img {
    transform: scale(1.1);
}

/* Tooltip for tech icons */
.tech-icon::before {
    content: attr(data-tooltip);
    position: absolute;
    right: 60px;
    background-color: var(--primary-color);
    color: var(--bg-color);
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(-10px);
    pointer-events: none;
    transition: all 0.3s ease;
}

.tech-icon::after {
    content: '';
    position: absolute;
    right: 54px;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 6px solid var(--primary-color);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.tech-icon:hover::before,
.tech-icon:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* Add this to your animations.css file */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Floating animation for tech icons */
.tech-icon {
    animation: floatingIcon 3s ease-in-out infinite;
}

.tech-icon-container:nth-child(1) .tech-icon { animation-delay: 0s; }
.tech-icon-container:nth-child(2) .tech-icon { animation-delay: 0.4s; }
.tech-icon-container:nth-child(3) .tech-icon { animation-delay: 0.8s; }
.tech-icon-container:nth-child(4) .tech-icon { animation-delay: 1.2s; }
.tech-icon-container:nth-child(5) .tech-icon { animation-delay: 1.6s; }
.tech-icon-container:nth-child(6) .tech-icon { animation-delay: 2.0s; }
.tech-icon-container:nth-child(7) .tech-icon { animation-delay: 2.4s; }
.tech-icon-container:nth-child(8) .tech-icon { animation-delay: 2.8s; }

@keyframes floatingIcon {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Add responsive styles for tech icons */
@media screen and (max-width: 991px) {
    .tech-icons {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
        margin-top: 2rem;
        justify-content: center;
    }
}

@media screen and (max-width: 575px) {
    .tech-icons {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .tech-icon {
        width: 40px;
        height: 40px;
    }
    
    .tech-icon img {
        width: 24px;
        height: 24px;
    }
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
    line-height: 1.6;
}

canvas {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
}

#content {
    position: relative;
    z-index: 1;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

p {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-medium);
}

a:hover {
    color: var(--accent-color);
}

.section-title {
    font-size: 3rem;
    margin-bottom: 3rem;
    color: var(--text-color);
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Header & Navigation */
header {
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: var(--transition-medium);
    backdrop-filter: blur(10px);
}

header.scrolled {
    background-color: rgba(10, 10, 10, 0.8);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 2px;
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s;
}

.logo:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 2.5rem;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s;
}

.nav-link:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background-color: var(--text-color);
    margin: 3px 0;
    transition: var(--transition-medium);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 10%;
    position: relative;
}

.name-container {
    margin-bottom: 1.5rem;
    position: relative;
}

.glitch-text {
    font-size: 6rem;
    font-weight: 800;
    line-height: 1;
    color: var(--text-color);
    font-family: 'Orbitron', sans-serif;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.glitch-text-item {
    display: block;
    position: relative;
    transform: translateZ(0);
}

.title-text {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 600;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
}

.bio-text {
    max-width: 600px;
    margin-bottom: 3rem;
    font-size: 1.2rem;
    line-height: 1.8;
    min-height: 4.8rem; /* Reserve space for approximately 2-3 lines of text */
    position: relative;
    opacity: 0; /* Start invisible, will be made visible by JS */
}
.bio-text-container {
    position: relative;
    margin-bottom: 3rem;
}
.bio-text.typing {
    animation: none;
    border-right: none;
}
.bio-text {
    color: var(--secondary-color);
}

.typing-cursor {
    display: inline-block;
    width: 2px;
    height: 1.2em;
    background-color: var(--primary-color);
    margin-left: 2px;
    vertical-align: middle;
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    from, to { opacity: 1; }
    50% { opacity: 0; }
}
I
.cta {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 1rem 2.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--primary-color);
    transition: var(--transition-medium);
    z-index: -1;
}

.submit-btn:hover {
    color: var(--bg-color);
}

.submit-btn:hover::before {
    width: 100%;
}

/* Footer */
footer {
    background-color: rgba(10, 10, 10, 0.8);
    padding: 3rem 5rem;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.social-link {
    margin: 0 1rem;
    color: var(--text-color);
    font-size: 1.5rem;
    transition: var(--transition-medium);
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.copyright {
    opacity: 0.7;
    font-size: 0.9rem;
    color: var(--secondary-color);
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--primary-color);
    transition: var(--transition-medium);
    z-index: -1;
}

.cta:hover {
    color: var(--bg-color);
}

.cta:hover::before {
    width: 100%;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.8;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    position: relative;
    margin-bottom: 10px;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

.arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fade 1.5s infinite;
}

.arrow span {
    display: block;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid var(--primary-color);
    border-right: 2px solid var(--primary-color);
    transform: rotate(45deg);
    margin: -5px;
}

@keyframes fade {
    0%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}

/* Common Section Styling */
section {
    padding: 8rem 10%;
    min-height: 100vh;
}

/* Skills Section */
.skills-section {
    position: relative;
}

.skills-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.skill-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 2rem;
    transition: var(--transition-medium);
    border: 1px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.skill-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-medium);
}

.skill-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(100, 255, 218, 0.2);
}

.skill-card:hover::before {
    transform: scaleX(1);
}

.skill-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    position: relative;
    display: inline-block;
}

.skill-card ul {
    list-style-type: none;
}

.skill-card ul li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

.skill-card ul li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Projects Section */
.projects-section {
    position: relative;
}

.projects-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
}

.project-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-medium);
    border: 1px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(100, 255, 218, 0.2);
}

.project-header {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.project-icon {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.project-links a {
    margin-left: 1rem;
    color: var(--text-color);
    font-size: 1.2rem;
    transition: var(--transition-fast);
}

.project-links a:hover {
    color: var(--primary-color);
}

.project-content {
    padding: 1.5rem;
    flex: 1;
}

.project-title {
    color: var(--text-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    transition: var(--transition-fast);
}

.project-card:hover .project-title {
    color: var(--primary-color);
}

.project-role {
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
    font-weight: 500;
}

.project-description {
    margin-bottom: 1.5rem;
}

.project-description ul {
    list-style-type: none;
    padding-left: 0;
}

.project-description li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

.project-description li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.tech {
    background-color: rgba(100, 255, 218, 0.1);
    color: var(--primary-color);
    padding: 0.4rem 0.8rem;
    border-radius: 30px;
    font-size: 0.8rem;
    margin-right: 0.8rem;
    margin-bottom: 0.8rem;
    transition: var(--transition-fast);
}

.tech:hover {
    background-color: rgba(100, 255, 218, 0.2);
    transform: translateY(-2px);
}

/* Experience Section */
.experience-section {
    position: relative;
}

.experience-timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.experience-timeline::after {
    content: '';
    position: absolute;
    width: 3px;
    background-color: var(--primary-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1.5px;
}

.timeline-container {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-container::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: var(--bg-color);
    border: 4px solid var(--primary-color);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
    transition: var(--transition-medium);
}

.timeline-container:hover::after {
    background-color: var(--primary-color);
}

.left {
    left: 0;
}

.right {
    left: 50%;
}

.left::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    right: 30px;
    border: medium solid var(--primary-color);
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent rgba(100, 255, 218, 0.1);
}

.right::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    left: 30px;
    border: medium solid var(--primary-color);
    border-width: 10px 10px 10px 0;
    border-color: transparent rgba(100, 255, 218, 0.1) transparent transparent;
}

.right::after {
    left: -10px;
}

.timeline-content {
    padding: 2rem;
    background-color: var(--card-bg);
    position: relative;
    border-radius: 12px;
    transition: var(--transition-medium);
    border: 1px solid transparent;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(100, 255, 218, 0.2);
}

.timeline-content h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.timeline-content .date {
    opacity: 0.7;
    margin-bottom: 1rem;
    display: block;
    font-style: italic;
}

.timeline-content p {
    color: var(--secondary-color);
}

/* Contact Section */
.contact-section {
    position: relative;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    padding: 2rem;
}

.contact-info p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.contact-item .icon {
    font-size: 2rem;
    color: var(--primary-color);
}

.contact-item .text h3 {
    margin-bottom: 0.3rem;
    color: var(--text-color);
}

.contact-item .text a {
    color: var(--secondary-color);
}

.contact-form-container {
    background-color: var(--card-bg);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-medium);
}

.contact-form-container:hover {
    border-color: rgba(100, 255, 218, 0.2);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group label {
    position: absolute;
    top: 15px;
    left: 20px;
    background-color: transparent;
    transition: var(--transition-medium);
    pointer-events: none;
    color: var(--secondary-color);
}

.form-group input:focus ~ label,
.form-group textarea:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
    top: -10px;
    left: 10px;
    background-color: var(--bg-color);
    padding: 0 10px;
    font-size: 0.8rem;
    color: var(--primary-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background-color: transparent;
    color: var(--text-color);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition-medium);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(100, 255, 218, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: transparent;
}

.submit-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 1rem 2rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-medium);
    margin-top: 1rem;
    align-self: flex-start;
    position: relative;
    overflow: hidden;
    z-index: 1;}