* 
{
margin: 0;
padding: 0;
box-sizing: border-box;
}

body 
{
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: #ffffff;
background-color: #2c3e50;
min-height: 100vh;
}

.container 
{
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}

    
/* Navigation */
.navbar 
{
position: fixed;
top: 0;
width: 100%;
background: rgba(44, 62, 80, 0.95);
backdrop-filter: blur(10px);
z-index: 1000;
padding: 20px 0;
}

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

.logo-initial 
{
width: 40px;
height: 40px;
background: #00ff41;
color: #2c3e50;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: bold;
font-size: 18px;
}

.nav-menu 
{
display: flex;
list-style: none;
gap: 40px;
}

.nav-menu a 
{
color: #ffffff;
text-decoration: none;
font-size: 14px;
font-weight: 400;
letter-spacing: 1px;
transition: color 0.3s ease;
position: relative;
}       

.nav-menu a:hover,
.nav-menu a.active 
{
 color: #00ff41;
}

.nav-menu a.active::after 
{
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 100%;
height: 2px;
background: #00ff41;
 }
        
/* Contact Section */
#contact 
{
padding: 80px 0;
min-height: calc(100vh - 200px);
display: flex;
align-items: center;
}

.section-title 
{
text-align: center;
font-size: 3rem;
margin-bottom: 3rem;
color: white;
text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
position: relative;
}

.section-title::after 
{
content: '';
position: absolute;
bottom: -10px;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 4px;
background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
border-radius: 2px;
}

.contact-content 
{
display: flex;
justify-content: center;
align-items: center;
}

.contact-form 
{
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
padding: 3rem;
border-radius: 20px;
box-shadow: 0 20px 40px rgba(0,0,0,0.1);
width: 100%;
max-width: 600px;
border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.form-group label 
{
display: block;
margin-bottom: 0.5rem;
font-weight: 600;
color: #555;
font-size: 0.95rem;
}

.form-group input,
.form-group textarea 
{
width: 100%;
padding: 12px 16px;
border: 2px solid #e1e5e9;
border-radius: 10px;
font-size: 1rem;
transition: all 0.3s ease;
background: white;
}

.form-group input:focus,
.form-group textarea:focus 
{
outline: none;
border-color: #667eea;
box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
transform: translateY(-2px);
}

.form-group textarea 
{
min-height: 120px;
resize: vertical;
font-family: inherit;
}

.submit-btn 
{
width: 100%;
padding: 15px;
background: linear-gradient(45deg, #667eea, #764ba2);
color: white;
border: none;
border-radius: 10px;
font-size: 1.1rem;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
text-transform: uppercase;
letter-spacing: 1px;
}

.submit-btn:hover 
{
transform: translateY(-3px);
box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.submit-btn:active 
{
transform: translateY(-1px);
}

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

.contact-form 
{
animation: fadeInUp 0.8s ease-out;
}

.section-title 
{
animation: fadeInUp 0.6s ease-out;
}

/* Footer */
footer 
{
background: #1f1f1f;
color: #f1f1f1;
text-align: center;
padding: 2.5rem 0;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
margin: 0;
width: 100%;
}

.footer-content 
{
max-width: 960px;
margin: 0 auto;
padding: 0 1rem;
}

.social-links 
{
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 1.5rem;
margin-bottom: 1.5rem;
}

.social-links a 
{
color: #f1f1f1;
text-decoration: none;
font-size: 1rem;
display: inline-flex;
align-items: center;
gap: 0.5rem;
transition: transform 0.2s ease, color 0.3s ease;
}

.social-links a:hover 
{
color: #61dafb;
transform: scale(1.05);
}

footer p 
{
margin: 0.3rem 0;
font-size: 0.95rem;
opacity: 0.85;
}

footer em 
{
 font-style: italic;
color: #aaa;
}
        
/* Responsive Design */
@media (max-width: 768px) 
{
.nav-container 
{
padding: 0 20px;
}

.nav-menu 
{
gap: 20px;
}

.nav-menu a 
{
font-size: 12px;
}

.hero-content 
{
padding: 0 20px;
}

.hero-title 
{
margin-bottom: 20px;
}
}

@media (max-width: 480px) 
{
.nav-menu 
{
gap: 15px;
}
.nav-menu a 
{
font-size: 11px;
}
}