
/* Hide scrollbar but still allow scrolling */
html, body {
    overflow: auto; /* Allow scrolling but hide the scrollbar */
    height: 100%;
}

/* Hide scrollbar in WebKit browsers (Chrome, Safari) */
::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar in Firefox */
html {
    scrollbar-width: none;
}
/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    background: #1b1b1b;
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
  }
  
  /* Header Styles */
  header {
    position: sticky;
    top: 0;
    background: #181818;
    padding: 15px 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    text-align: center;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  
  nav ul li a {
    text-decoration: none;
    color: #e0e0e0;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  nav ul li a:hover {
    color: #f5f5f5;
  }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Contact Section */
#contact {
    padding: 80px 20px;
    background: #121212; /* Dark background for a sleek, minimalistic look */
    text-align: center;
    animation: fadeInSection 1s ease-out;
}

#contact h2 {
    font-size: 3.5rem;
    color: #eaeaea; /* Light grey text for the heading */
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

#contact p {
    font-size: 1.2rem;
    color: #bbb; /* Lighter grey for paragraph text */
    margin-bottom: 40px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Contact Form */
.contact-form {
    max-width: 650px;
    margin: 0 auto;
    background: #1a1a1a; /* Dark grey background for the form */
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7); /* Darker shadow for a sleek effect */
    transition: transform 0.3s ease;
}

.contact-form:hover {
    transform: translateY(-10px);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #ccc; /* Grey label text */
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #333; /* Grey border */
    border-radius: 8px;
    background: #1a1a1a; /* Matching dark grey background */
    color: #ccc; /* Light grey text */
    font-size: 1.1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #666; /* Lighter grey border on focus */
    outline: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    background: #333; /* Darker grey for button */
    color: #fff; /* White text */
    padding: 12px 30px;
    font-size: 1.2rem;
    border-radius: 30px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
}

.submit-btn:hover {
    background: #444; /* Slightly lighter grey on hover */
    transform: scale(1.05);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.7);
}

/* Contact Information */
#contact-info {
    margin-top: 50px;
    background: #1a1a1a; /* Dark grey background for the contact info */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7); /* Darker shadow */
}

#contact-info h3 {
    font-size: 2rem;
    color: #ccc; /* Grey heading */
    margin-bottom: 15px;
}

#contact-info ul {
    list-style: none;
    font-size: 1.2rem;
    color: #bbb; /* Grey text for the list items */
}

#contact-info ul li {
    margin-bottom: 10px;
}

#contact-info a {
    color: #bbb; /* Lighter grey for the links */
    text-decoration: none;
}

#contact-info a:hover {
    color: #888; /* Darker grey on hover */
}



/* Footer */
footer {
    background: #181818; /* Dark grey background */
    color: #bbb; /* Grey text color */
    padding: 20px 0;
    text-align: center;
}

footer .social-links {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

footer .social-links li a {
    color: #bbb; /* Grey color for icons */
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

footer .social-links li a:hover {
    color: #888; /* Darker grey color on hover */
}

footer p {
    font-size: 1rem;
    margin-bottom: 10px;
}

/* Animations */
@keyframes fadeInSection {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    footer {
        padding: 15px 0;
    }

    footer .social-links {
        gap: 15px;
    }

    footer .social-links li a {
        font-size: 1.3rem;
    }

    footer p {
        font-size: 0.9rem;
    }
}