* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
  }
  
    body {
      margin: 0;
      font-family: 'Inter', sans-serif;
      background-color: #000;
      color: #fff;
      line-height: 1.6;
    }

   /* Navbar styles */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #030303;
  padding: 1rem 3rem;
  margin-top: -10px;
  position: fixed;
  width: 100%;
  z-index: 1000;
  /* background: transparent; */
}

/* Logo section */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  
}

.logo img {
  height: 25px;
  width: auto;
  object-fit: contain;
  border-radius: 4%;
}

/* Navigation links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: #fafdfd;
  transition: color 0.3s ease;
  font-weight: 500;
  font-size: 1rem;
}

.nav-links a:hover {
  color: #ffffff;
}

/* Contact Section */
.contact-section {
  padding: 100px 40px 40px;
  margin-top: 10px;
}

.contact-container {
  max-width: 960px;
  margin: 0 auto;
}

.contact-header h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.contact-header p {
  color: #9caaba;
  font-size: 15px;
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-form input,
.contact-form textarea {
  background: #283039;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px;
  font-size: 16px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9caaba;
}

.contact-form button {
  background-color: #0b79ef;
  color: white;
  font-weight: bold;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background-color: #086cd8;
}

.contact-info h2 {
  font-size: 22px;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.contact-info p {
  margin: 5px 0;
  color: #ccc;
}

.map {
  margin-top: 2rem;
}

/* Footer Styles */
.modern-footer {
  background-color: #000;
  color: #ccc;
  padding: 100px 40px 20px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
  border-bottom: 1px solid #222;
  padding-bottom: 40px;
}

.footer-col {
  flex: 1 1 200px;
  min-width: 150px;
}

.logo-col {
  flex: 2 1 250px;
}

.footer-logo {
  width: 150px;
  margin-bottom: 15px;
}

.footer-col p {
  font-size: 14px;
  color: #aaa;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
}

.footer-col ul li a:hover {
  color: white;
}

.footer-social {
  margin: 15px 0;
}

.footer-social a {
  margin-right: 10px;
  font-size: 16px;
  color: #ccc;
}

.footer-social a:hover {
  color: white;
}

.footer-btn {
  background-color: #ff2b84;
  color: white;
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  margin-top: 10px;
}

.footer-btn:hover {
  background-color: #e61c72;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 13px;
  color: #777;
}

.divider {
      height: 1px;
      background: #222;
      margin: 10px 5;
    }