/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #121212;
    color: #c0c0c0;
    overflow-x: hidden;
    position: relative;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(18, 18, 18, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
    animation: slideDown 0.8s ease-out;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.nav-logo h2 {
    color: #00ffff;
    font-weight: 700;
    font-size: 1.5rem;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.nav-logo .logo-img {
    height: 40px;
    width: auto;
    filter: brightness(1.2) drop-shadow(0 0 10px rgba(0, 255, 255, 0.3));
    transition: all 0.3s ease;
}

.nav-logo .logo-img:hover {
    filter: brightness(1.4) drop-shadow(0 0 15px rgba(0, 255, 255, 0.5));
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #c0c0c0;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00ffff;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #00ffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Shooting stars */
.shooting-stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.star {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #00ffff;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff, 0 0 30px #00ffff;
    animation: shooting 4s linear infinite;
}

.star::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, #00ffff, transparent);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite alternate;
}

.star:nth-child(1) {
    top: 5%;
    left: 5%;
    animation-delay: 0s;
    animation-duration: 3s;
}

.star:nth-child(2) {
    top: 10%;
    left: 15%;
    animation-delay: 1s;
    animation-duration: 4s;
}

.star:nth-child(3) {
    top: 15%;
    left: 25%;
    animation-delay: 0.5s;
    animation-duration: 3.5s;
}

.star:nth-child(4) {
    top: 20%;
    left: 35%;
    animation-delay: 1.5s;
    animation-duration: 4.5s;
}

.star:nth-child(5) {
    top: 25%;
    left: 45%;
    animation-delay: 2s;
    animation-duration: 3.2s;
}

.star:nth-child(6) {
    top: 30%;
    left: 55%;
    animation-delay: 0.8s;
    animation-duration: 3.8s;
}

.star:nth-child(7) {
    top: 35%;
    left: 65%;
    animation-delay: 1.2s;
    animation-duration: 4.2s;
}

.star:nth-child(8) {
    top: 8%;
    left: 75%;
    animation-delay: 2.5s;
    animation-duration: 3.1s;
}

.star:nth-child(9) {
    top: 12%;
    left: 85%;
    animation-delay: 0.3s;
    animation-duration: 3.9s;
}

.star:nth-child(10) {
    top: 18%;
    left: 95%;
    animation-delay: 1.8s;
    animation-duration: 4.1s;
}



/* Hero container */
.hero-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    padding-top: 6rem;
    position: relative;
    background: linear-gradient(135deg, #121212 0%, #1a1a1a 100%);
    animation: fadeIn 1s ease-out;
}

.hero-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(0, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    max-width: 600px;
    z-index: 2;
    position: relative;
    animation: slideUp 1s ease-out 0.3s both;
}

/* Typography */
.headline {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    animation: glow 3s ease-in-out infinite alternate;
}

.subtext {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 400;
    color: #c0c0c0;
    margin-bottom: 3rem;
    letter-spacing: 0.01em;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* Form styling */
.waitlist-form {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.login-form {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.form-fields {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.input-group {
    width: 100%;
}

/* Form inputs styling */
#name, #email, #hearAbout, #loginEmail, #loginPassword{
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
    outline: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-sizing: border-box;
}

#name::placeholder, #email::placeholder {
    color: rgba(192, 192, 192, 0.7);
}

#name:hover, #email:hover, #hearAbout:hover {
    border-color: rgba(0, 255, 255, 0.5);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

#name:focus, #email:focus, #hearAbout:focus {
    border-color: #00ffff;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

/* Select dropdown specific styling */
#hearAbout {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 1rem center;
    background-repeat: no-repeat;
    background-size: 1rem;
    padding-right: 3rem;
}

#hearAbout option {
    background: #121212;
    color: #ffffff;
}

/* Submit button */
.notify-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #00ffff 0%, #0099cc 100%);
    border: none;
    border-radius: 8px;
    color: #121212;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    min-width: 140px;
}

.notify-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: width 0.6s ease, height 0.6s ease;
    transform: translate(-50%, -50%);
}

.notify-btn:hover::before {
    width: 300px;
    height: 300px;
}

.notify-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.4);
    animation: pulse 1.5s infinite;
}

.notify-btn:active {
    transform: translateY(0);
}

.notify-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    animation: none;
}

/* Button pulse animation */
@keyframes pulse {
    0% {
        box-shadow: 0 10px 30px rgba(0, 255, 255, 0.4);
    }
    50% {
        box-shadow: 0 10px 40px rgba(0, 255, 255, 0.6);
    }
    100% {
        box-shadow: 0 10px 30px rgba(0, 255, 255, 0.4);
    }
}

/* Feedback message */
.feedback-message {
    font-size: 1rem;
    font-weight: 500;
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
    min-height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feedback-message.show {
    opacity: 1;
    transform: translateY(0);
}

.feedback-message.success {
    background: rgba(0, 255, 0, 0.1);
    color: #00ff00;
    border: 1px solid rgba(0, 255, 0, 0.3);
}

.feedback-message.error {
    background: rgba(255, 0, 0, 0.1);
    color: #ff6b6b;
    border: 1px solid rgba(255, 0, 0, 0.3);
}

/* Responsive design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(18, 18, 18, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        backdrop-filter: blur(10px);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .hero-container {
        padding: 1rem;
        padding-top: 6rem;
    }
    
        .form-fields {
        gap: 1rem;
    }

    .notify-btn {
        width: 100%;
    }
    
    /* Remove underline animation for mobile navbar */
    .nav-link::after {
        display: none;
    }
}

/* Loading state */
.loading {
    position: relative;
    color: transparent;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid #121212;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* New animations */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    }
    to {
        text-shadow: 0 0 30px rgba(0, 255, 255, 0.6), 0 0 40px rgba(0, 255, 255, 0.3);
    }
}



@keyframes shooting {
    0% {
        transform: translateX(-100px) translateY(-100px) rotate(45deg) scaleX(0.5);
        opacity: 0;
        box-shadow: 0 0 0 #00ffff;
    }
    10% {
        opacity: 1;
        box-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff, 0 0 30px #00ffff;
    }
    20% {
        transform: translateX(200px) translateY(200px) rotate(45deg) scaleX(3);
        opacity: 1;
        box-shadow: 0 0 15px #00ffff, 0 0 25px #00ffff, 0 0 35px #00ffff;
    }
    40% {
        transform: translateX(500px) translateY(500px) rotate(45deg) scaleX(3);
        opacity: 0.8;
        box-shadow: 0 0 20px #00ffff, 0 0 30px #00ffff, 0 0 40px #00ffff;
    }
    60% {
        transform: translateX(800px) translateY(800px) rotate(45deg) scaleX(2);
        opacity: 0.5;
        box-shadow: 0 0 15px #00ffff, 0 0 25px #00ffff, 0 0 35px #00ffff;
    }
    80% {
        transform: translateX(1100px) translateY(1100px) rotate(45deg) scaleX(1);
        opacity: 0.2;
        box-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff, 0 0 30px #00ffff;
    }
    100% {
        transform: translateX(1400px) translateY(1400px) rotate(45deg) scaleX(0.5);
        opacity: 0;
        box-shadow: 0 0 0 #00ffff;
    }
}

/* Page-specific styles */
.page-container {
    min-height: 100vh;
    padding: 2rem;
    padding-top: 6rem;
    position: relative;
    background: linear-gradient(135deg, #121212 0%, #1a1a1a 100%);
    animation: fadeIn 1s ease-out;
}

.page-content {
    max-width: 1200px;
    margin: 0 auto;
    z-index: 2;
    position: relative;
}

.page-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: slideUp 1s ease-out 0.3s both;
}

.page-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    animation: glow 3s ease-in-out infinite alternate;
}

.page-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: #c0c0c0;
    opacity: 0.9;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.content-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out both;
}

.content-card:nth-child(2) {
    animation-delay: 0.1s;
}

.content-card:nth-child(3) {
    animation-delay: 0.2s;
}

.content-card:nth-child(4) {
    animation-delay: 0.3s;
}

.content-card:nth-child(5) {
    animation-delay: 0.4s;
}

.content-card:nth-child(6) {
    animation-delay: 0.5s;
}

.content-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.content-card h3 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.content-card p {
    color: #c0c0c0;
    line-height: 1.6;
    opacity: 0.9;
}

/* Mission Section */
.mission-section {
    text-align: center;
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: 12px;
    padding: 3rem;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.mission-section h2 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.mission-section p {
    color: #c0c0c0;
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
}

/* Stats Section */
.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.stat-item h3 {
    color: #00ffff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #c0c0c0;
    font-size: 1rem;
    opacity: 0.9;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.team-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out both;
}

.team-card:nth-child(2) {
    animation-delay: 0.1s;
}

.team-card:nth-child(3) {
    animation-delay: 0.2s;
}

.team-card:nth-child(4) {
    animation-delay: 0.3s;
}

.team-card:nth-child(5) {
    animation-delay: 0.4s;
}

.team-card:nth-child(6) {
    animation-delay: 0.5s;
}

.team-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
}

.team-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem auto;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(0, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.team-photo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-photo:hover::before {
    opacity: 1;
}

.team-photo:hover {
    border-color: rgba(0, 255, 255, 0.6);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
    transform: scale(1.05);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.team-photo:hover img {
    transform: scale(1.1);
}

.team-card h3 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.team-role {
    color: #00ffff;
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-bio {
    color: #c0c0c0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.team-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.skill-tag {
    background: rgba(0, 255, 255, 0.1);
    color: #00ffff;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(0, 255, 255, 0.3);
}

/* Team Social Links */
.team-social {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
}

.linkedin-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: rgba(0, 119, 181, 0.1);
    border: 1px solid rgba(0, 119, 181, 0.3);
    border-radius: 25px;
    color: #0077b5;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.linkedin-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 119, 181, 0.2), transparent);
    transition: left 0.5s ease;
}

.linkedin-link:hover::before {
    left: 100%;
}

.linkedin-link:hover {
    background: rgba(0, 119, 181, 0.2);
    border-color: rgba(0, 119, 181, 0.6);
    color: #00a0dc;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 119, 181, 0.3);
}

.linkedin-link svg {
    transition: transform 0.3s ease;
}

.linkedin-link:hover svg {
    transform: scale(1.1);
}

/* Join Team Section */
.join-team-section {
    text-align: center;
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: 12px;
    padding: 3rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.join-team-section h2 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.join-team-section p {
    color: #c0c0c0;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.join-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #00ffff 0%, #0099cc 100%);
    color: #121212;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.join-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.4);
} 

/* Login button styling */
.login-btn {
    background: linear-gradient(135deg, #00ffff, #0080ff) !important;
    color: #121212 !important;
    padding: 10px 20px !important;
    border-radius: 25px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(0, 255, 255, 0.3) !important;
}

.login-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(0, 255, 255, 0.5) !important;
    background: linear-gradient(135deg, #0080ff, #00ffff) !important;
}

/* Contact page styling */
.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.contact-info h2 {
    color: #00ffff;
    margin-bottom: 20px;
    font-size: 2.2rem;
}

.contact-info p {
    color: #e0e0e0;
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 255, 0.1);
}

.contact-icon {
    font-size: 2rem;
    min-width: 60px;
    text-align: center;
}

.contact-item h3 {
    color: #00ffff;
    margin: 0 0 5px 0;
}

.contact-item p {
    color: #e0e0e0;
    margin: 0;
}

.contact-form {
    background: rgba(255, 255, 255, 0.02);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 255, 0.1);
}

.contact-form h2 {
    color: #00ffff;
    margin-bottom: 30px;
    text-align: center;
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 10px;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00ffff;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888;
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: #1a1a1a;
    color: #ffffff;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #00ffff, #0080ff);
    color: #121212;
    border: none;
    border-radius: 25px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 255, 255, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 255, 255, 0.5);
    background: linear-gradient(135deg, #0080ff, #00ffff);
}

/* Team section styling adjustments */
.team-section {
    margin: 80px 0;
}

.team-section .page-header {
    text-align: center;
    margin-bottom: 60px;
}

.team-section .section-title {
    font-size: 2.5rem;
    color: #00ffff;
    margin-bottom: 15px;
}

.team-section .section-subtitle {
    font-size: 1.2rem;
    color: #e0e0e0;
}

/* Responsive design for contact page */
@media (max-width: 768px) {
    .contact-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .navbar .login-btn {
        padding: 8px 16px !important;
        font-size: 14px !important;
    }
} 