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

.logo{
  margin-left: 0;
}

.logo img {
  height: 100vh; /* Adjust height as per your logo size */
}

.tgmenu__navbar-wrap {
  display: flex; /* Ensure flexbox is applied */
  justify-content: flex-start; /* Keep items aligned to the start initially */
  align-items: center; /* Align items vertically */
}

.navigation {
  list-style: none;
  display: flex;
  gap: 20px; /* Space between nav items */
  margin-left: auto; /* This pushes the nav items to the right */
}

.navigation li {
  display: inline-block;
}

.navigation a {
  text-decoration: none;
  color: black;
  padding: 10px;
  font-size: 18px;
}

.navigation a:hover {
  /* background-color: #f0f0f0; */
  border-radius: 5px;
}

.breadcrumb__area {
  position: relative;
  z-index: 1;
}

.breadcrumb__area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(86, 86, 86, 0.4); /* Adjust the alpha value for darkness */
  z-index: -1;
}

.breadcrumb__area.breadcrumb__bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.9); /* Optional for additional darkening */
}

.bottom{
  margin-bottom: 0px;

}

.head{
  color: rgb(13, 9, 65);
}

.headd{
  color: rgb(255, 255, 255);
}

.breadcrumb__bg {
  margin-top: 50px;
  background-size: cover;
  background-position: center;
  /* padding: 16px 50px; */
  position: relative;
  z-index: 1;
}

/* styles.css */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.contact-info {
  flex: 1;
  padding: 20px;
  background-color: #f9f9f9;
  border-right: 1px solid #ddd;
}

.contact-info h1 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.contact-info p {
  margin-bottom: 15px;
  color: #555;
}

.contact-details p {
  margin: 5px 0;
}

.contact-form {
  flex: 1;
  padding: 20px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  margin-bottom: 5px;
  display: block;
  font-weight: bold;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

button {
  background-color: #4b6cff;
  color: #fff;
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background-color: #3a57e6;
}


/* Base styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  gap: 20px;
}

.contact-info, 
.contact-form {
  flex: 1;
  min-width: 300px;
  padding: 20px;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Contact Info */
.contact-info h1 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #333;
}

.contact-info p {
  margin-bottom: 15px;
  color: #555;
  line-height: 1.6;
}

.contact-details p {
  margin: 5px 0;
}

.contact-details strong {
  color: #333;
}

/* Contact Form */
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-group label {
  margin-bottom: 5px;
  display: block;
  font-weight: bold;
  color: #333;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
}

textarea {
  resize: none;
}

button {
  background-color: #4b6cff;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
}

button:hover {
  background-color: #3a57e6;
}

/* Responsive Design */
/* For tablets (landscape and portrait) */
@media (max-width: 1024px) {
  .contact-container {
    gap: 15px;
  }

  .contact-info, 
  .contact-form {
    padding: 15px;
  }

  .contact-info h1 {
    font-size: 1.8rem;
  }

  .form-group input,
  .form-group textarea {
    font-size: 0.9rem;
  }
}

/* For smartphones (small screens) */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    gap: 10px;
  }

  .contact-info, 
  .contact-form {
    margin: 0 auto;
    width: 100%;
  }
}

/* For extra-small screens (e.g., older smartphones) */
@media (max-width: 480px) {
  .contact-info h1 {
    font-size: 1.5rem;
  }

  .contact-info p,
  .contact-details p {
    font-size: 0.9rem;
  }

  button {
    padding: 10px;
    font-size: 0.9rem;
  }
}


