/* Import Montserrat font */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&display=swap');

body {
    background-color: #0f0f0f;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Navbar */
.navbar {
    background: #000;
    padding: 10px 5px;
    border-radius: 50px;
    display: flex;
    position: sticky;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 5px;
    padding: 0;
    margin: 0;
}

.navbar a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: 0.3s;
}

/* Hover effect */
.navbar li:hover a {
    transform: scale(0.8);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

/* Optional: Add a tooltip effect */
.navbar li::after {
    content: attr(data-title);
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    pointer-events: none;
}

.navbar li:hover::after {
    opacity: 1;
}

/* General Styles */
body {
    background-color: #111;
    color: #ccc;
    margin: 0;
    padding: 0;
    text-align: center;
}

/* Ensure spacing below navbar */
main {
    padding-top: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Contact Button */
.contact-btn {
    background: none;
    border: 1px solid #444;
    color: #ccc;
    padding: 5px 10px;
    width: 100px;
    border-radius: 50px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-btn:hover {
    background: #333;
}

/* Contact Section */
.contact-section {
    text-align: center;
    max-width: 700px;
    width: 100%;
    margin: auto;
}

h1 {
    color: #fff;
    font-size: 3rem;
    font-weight: normal;
    margin: 10px 0;
}

h2 {
    font-size: 1.5rem;
    color: #777;
    margin-bottom: 10px;
}

/* Contact Cards */
.contact-info {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.card {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 12px;
    width: 300px;
    text-align: left;
    color: #ddd;
}

.card h3 {
    color: #aaa;
    font-size: 1rem;
    margin-bottom: 5px;
}

.card p {
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Change Link Color */
.card a {
    color: #4da6ff; /* Light Blue */
    text-decoration: none;
}

.card a:hover {
    text-decoration: underline;
}

/* Form Section */
.form-container {
    background: #1a1a1a;
    padding: 60px;
    border-radius: 12px;
    width: 100%;
    max-width: 500px;
    margin: 80px auto 0;
    text-align: left;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 5px;
    color: #ddd;
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    background: #2a2a2a;
    border: 1px solid #444;
    border-radius: 5px;
    color: #ddd;
    font-size: 0.9rem;
}

textarea {
    min-height: 100px;
}

button {
    width: 100%;
    background: #4da6ff;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 20px;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: #3a8cd0;
}

footer {
    background-color: #111;
    color: white;
    padding: 20px;
    text-align: center;
  }
  .footer-container {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    max-width: 1000px;
    margin: auto;
    border-top: 1px solid white;

  }
  .footer-section h4 {
    font-weight: bold;
  }
  .footer-section ul {
    a {
        color: white; /* Change this to any color you want */
        text-decoration: none; /* Removes the underline */
    }
    
    a:hover {
        color: gray; /* Change this to the hover color you prefer */
    }
    
    list-style: none;
    padding: 0;
  }
  .footer-section ul li {
    margin: 5px 0;
    font-weight: 800;
    text-align: left;
  }
  .footer-section ul li a {
    color: white;
    text-decoration: none;
  }
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    max-width: 1000px;
    margin: auto;
    border-top: 1px solid white;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      text-align: center;
    }
    .footer-bottom {
      flex-direction: column;
      text-align: center;
    }
  }