::-webkit-scrollbar{
    width: 0px;
}
body {
     background-color: #000;
     color: #fff;
     font-family: 'Courier New', Courier, monospace;
     text-align: center;
     margin: 0;
     padding: 20px;
 }
 .container {
     max-width: 800px;
     margin: auto;
 }
 .nav {
     margin-bottom: 20px;
 }
 .nav a {
     padding: 5px;
     border: 1px solid #fff;
     color: #fff;
     text-decoration: none;
     margin: 0 15px;
 }
 .nav a:hover {
     text-decoration: underline;
 }
 .section {
     margin-top: 40px;
 }
 .card {
     background-color: #111;
     padding: 20px;
     border-radius: 8px;
     box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
     margin: 20px 0;
 }
 .progress-container {
     background-color: #222;
     border-radius: 8px;
     padding: 10px;
     margin: 10px 0;
 }
 .progress-bar {
     height: 10px;
     background-color: #fff;
     border-radius: 5px;
     width: 80%;
 }
 .footer {
     margin-top: 50px;
     font-size: 14px;
     opacity: 0.7;
 }
 .hire-container {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 20px;
     margin-top: 20px;
 }
 .hire-box {
     background-color: #222;
     padding: 15px;
     border-radius: 8px;
     box-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
     text-align: center;
 }
 .hire-btn {
     background-color: #fff;
     color: #000;
     padding: 10px 15px;
     border: none;
     border-radius: 5px;
     cursor: pointer;
     margin-top: 10px;
     font-weight: bold;
 }
 .hire-btn:hover {
     background-color: #ddd;
 }

 .projects-container {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 20px;
     margin-top: 20px;
 }
 .project-box {
     background-color: #222;
     padding: 15px;
     border-radius: 8px;
     box-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
     text-align: center;
 }

 .testimonials-container {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 20px;
     margin-top: 20px;
 }
 .testimonial-box {
     background-color: #111;
     padding: 20px;
     border-radius: 10px;
     box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
     text-align: center;
     transition: transform 0.3s ease;
 }
 .testimonial-box:hover {
     transform: translateY(-5px);
 }
 .testimonial-box img {
     border-radius: 50%;
     width: 60px;
     height: 60px;
     margin-bottom: 10px;
 }
 .testimonial-role {
     font-size: 0.9em;
     opacity: 0.8;
     margin-bottom: 10px;
 }
 .stars {
     color: gold;
     font-size: 1.2em;
     margin-top: 10px;
 }

 #contactForm {
     background-color: #2b2a2a;
     padding: 20px;
     border-radius: 8px;
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
     max-width: 500px;
     margin: 20px auto;
 }

 #contact-form {
     display: flex;
     flex-direction: column;
     gap: 15px;
 }

 label {
     font-size: 1.1em;
     color: #ffffff;
     font-weight: bold;
 }

 input[type="text"], input[type="email"], textarea {
     padding: 10px;
     font-size: 1em;
     border-radius: 5px;
     border: 1px solid #000000;
     font-size: 20px;
     outline: none;
     transition: border-color 0.3s;
     background-color: rgba(128, 128, 128, 0.356);
     color: rgb(255, 255, 255);
 }

 input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
     border-color: #303030;
 }

 textarea {
     background-color: rgba(128, 128, 128, 0.356);
     color: rgb(255, 255, 255);
     resize: vertical;
     min-height: 100px;
     font-size: 20px;
 }

 button[type="submit"] {
     padding: 12px;
     background-color: #008CBA;
     color: white;
     border: none;
     border-radius: 5px;
     font-size: 1.1em;
     cursor: pointer;
     transition: background-color 0.3s;
 }

 button[type="submit"]:hover {
     background-color: #005f75;
 }


 .social-links {
     margin-top: 20px;
 }
 @media screen and (max-width: 450px) {
    .nav{
        display: flex;
        justify-content: center;
        flex-direction: column;
    }
    .nav a{
        margin: 5px;
    }
    .social-links{
        display: flex;
        justify-content: center;
        flex-direction: column;
    }
    
 }

 .btn {
     margin: 5px;
     padding: 5px 10px;
     text-decoration: none;
     background-color: #00ba197e;
     color: white;
     border-radius: 100px;
 }

 #contactForm {
     display: block;
 }

 #thanksMessage {
     text-align: center;
     color: green;
 }

 /* Fade-in and Fade-out effect */
 .fade {
     transition: opacity 0.5s ease;
 }

 .fade-hidden {
     opacity: 0;
 }

 .fade-visible {
     opacity: 1;
 }