:root {
    --primary-color: #FF3A44;
    --secondary-color: #353535;
    --accent-color: #4285F4;
    --dark-color: #1A1B23;
    --light-color: #FFFFFF;
    --light-gray: #F5F5F5;
    --gradient-text: linear-gradient(90deg, #FF3A44 0%, #FF8C42 50%, #FFA35C 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--dark-color);
    color: var(--light-color);
    min-height: 100vh;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
}

header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 2rem;
}

.logo-container {
    display: flex;
    align-items: center;
}
.logo {
    height: 70px;
    width: auto;
    border-radius: 12px;
    padding: 6px;
}

.logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(0,0,0,0.4));
}

nav {
    padding: 0;
    margin: 0;
    width: auto;
}

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

@keyframes logo-pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
    50% { transform: scale(1.03); box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

.menuItems {
    list-style: none;
    display: flex;
    gap: 3rem;
}

.menuItems li a {
    color: var(--light-color);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.menuItems li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--light-color);
    transition: width 0.3s ease;
}

.menuItems li a:hover::after {
    width: 100%;
}

.menuItems li a:hover {
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
}

.main-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem 1rem;
    position: relative;
    z-index: 1;
}

.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: var(--primary-color);
    border-radius: 50%;
    opacity: 0.4; /* Increased opacity */
    pointer-events: none;
    animation: float-up 25s infinite linear; /* Longer animation duration */
    box-shadow: 0 0 5px 1px rgba(255, 58, 68, 0.3); /* Added glow */
}

@keyframes float-up {
    0% { transform: translateY(100vh) translateX(0); opacity: 0; }
    5% { opacity: 0.4; }
    90% { opacity: 0.4; }
    100% { transform: translateY(-100vh) translateX(30px); opacity: 0; } /* Higher rise */
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
    text-align: center;
    filter: drop-shadow(0 0 8px rgba(255, 58, 68, 0.3));
}

.contact-container {
    width: 100%;
    max-width: 600px;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--dark-color);
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-control:focus {
    outline: none;
    box-shadow: 0 5px 20px rgba(255, 58, 68, 0.2);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    background: var(--primary-color);
    color: var(--light-color);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 58, 68, 0.3);
}

@media (max-width: 768px) {
    .contact-container {
        padding: 1.5rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .menuItems li a {
        font-size: 16px;
    }
}
