* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Navbar Styles */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #333;
  padding: 1rem 2rem;
  position: fixed; /* Make the navbar stick to the top */
  top: 0;
  width: 85% !important;
  z-index: 1000; /* Ensure the navbar stays above other content */
  box-sizing: border-box; /* Include padding and border in the element's total width and height */
}

.navbar-left,
.navbar-right {
  display: flex;
  gap: 1.5rem; /* Space between links */
}

.navbar-link {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 1rem;
  letter-spacing: 0.1rem;
  font-weight: 200;
}
.navbar-link:hover {
opacity: 70%;
}

h1{
  font-family: Montserrat;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  color: white;
  margin: 0px !important;
}


/* body styling */

body {
  padding-top: 2rem !important; /* Add padding to body to account for fixed navbar */
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 10vh;
  background-color: #333;
}

.contact-container {
  padding: 30px;
  border-radius: 10px;
  text-align: left;
  max-width: 400px;
  width: 100%;
}

.contact-link, .no{
  display: flex;
  align-items: left;
  justify-content: left;
  margin: 20px 0;
  text-decoration: none;
  color: #c0c0c0;
  letter-spacing: 0.5px;
  font-size: 14px;
}

.contact-link:hover {
opacity: 70%;
cursor: pointer;
}

.contact-link img, .no img {
  width: 16px; /* Even smaller icons for smaller screens */
  height: 16px;
  margin-right: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {

  .navbar {
    padding: 1rem;
  }

  h1{
    font-size: 1.6rem;
  }

  .navbar-link {
    font-size: 0.9rem;
  }

  .contact-link {
      font-size: 12px; /* Smaller font size for links on small screens */
  }

  .contact-link img {
      width: 18px; /* Even smaller icons for smaller screens */
      height: 18px;
  }

  .contact-container {
      padding: 20px; /* Reduce padding for smaller screens */
  }
}

@media (max-width: 480px) {

  .navbar {
    padding: 0.5rem;
  }

  .contact-link {
      font-size: 12px; /* Smaller font size for very small screens */
  }

  .contact-link img {
      width: 14px; /* Even smaller icons for very small screens */
      height: 14px;
  }

  h1{
    font-size: 1.2rem;
  }

  .navbar-left,
  .navbar-right {
    gap: 1rem;
  }

  .navbar-link {
    font-size: 0.8rem;
  }
}


.cont{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Footer Styles */
.footer {
  background-color: #333; /* Dark background */
  padding: 1rem 0; /* Padding for spacing */
  text-align: center; /* Center-align the text */
  font-family: 'Arial', sans-serif; /* Clean font */
  top: 95%;
  position: absolute;
}

.footer-text {
  font-size: 10px; /* Adjust font size */
  color: #949494; /* Light text color */
}