*{
    margin: 0;
    padding: 0;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #222;
    
    width: 100vw;
    height: 60px;
    padding: 0 20px;
    box-sizing: border-box;
}

.Name {
    font-size: 24px;
    font-weight: bold;
    color: #ddd;;
}

.nav-buttons {
    display: flex;
    gap: 20px;
}

.nav-buttons button {
    background: none;
    border: none;
    font-size: 16px;
    color: #ddd;
    cursor: pointer;
    padding: 10px 15px;
    transition: color 0.3s ease;
}

.nav-buttons button:hover {
    color: #007bff;
}
/* Contact Section */
.contact-section {
    padding: 60px 20px;
    text-align: center;
    background: #f8f9fa;
  }
  
  .contact-section h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #222;
  }
  
  .contact-section p {
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
  }
  
  /* Flex Layout */
  .contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    max-width: 1000px;
    margin: auto;
  }
  
  /* Contact Info */
  .contact-info {
    flex: 1;
    min-width: 250px;
    text-align: left;
  }
  
  .contact-info h4 {
    margin: 10px 0;
    color: #28a745;
  }
  
  .contact-info p {
    margin-bottom: 20px;
    color: #333;
  }
  
  /* Contact Form */
  .contact-form {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    outline: none;
    font-size: 14px;
  }
  
  .contact-form input:focus,
  .contact-form textarea:focus {
    border-color: #28a745;
    box-shadow: 0 0 5px rgba(40,167,69,0.3);
  }
  
  .contact-form button {
    background: #28a745;
    color: white;
    border: none;
    padding: 14px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .contact-form button:hover {
    background: #218838;
  }
  


























.footer {
    background-color: #222;
    color: #ddd;
    padding: 40px 20px 20px;
   
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: auto;
}

.footer-left h3 {
    color: #fff;
    margin-bottom: 10px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #007bff;
}

.footer-social {
    display: flex;
    gap: 15px;
    font-size: 20px;
}

.footer-social a {
    color: #ddd;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: #007bff;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid #444;
    padding-top: 15px;
    font-size: 14px;
    color: #aaa;
}