
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fff;
  color: #111;
  line-height: 1.6;
}


.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: #fff;
  border-bottom: 1px solid #eee;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
}

.nav-links li a:hover {
  color: #2266ff;
}
.banner {
  background: url('contact-banner.jpg') no-repeat center center;
  background-size: cover;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-text h1 {
  color: white;
  font-size: 48px;
  font-weight: bold;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}


.contact-section {
  display: flex;
  padding: 60px 10%;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.contact-left {
  flex: 1;
  min-width: 250px;
}

.contact-left h2 {
  font-size: 28px;
}

.contact-right {
  flex: 2;
  min-width: 300px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-row.full {
  flex-direction: column;
}

input,
textarea {
  width: 100%;
  padding: 12px;
  background-color: #f2f2f2;
  border: none;
  border-radius: 4px;
  font-size: 14px;
}

textarea {
  resize: vertical;
}

.submit-btn {
  background-color: #00c200;
  color: #fff;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  align-self: flex-end;
  transition: background 0.3s ease;
}

.submit-btn:hover {
  background-color: #009e00;
}


 (max-width: 768px) {
  .contact-section {
    flex-direction: column;
  }

  .form-row {
    flex-direction: column;
  }

  .submit-btn {
    align-self: center;
    width: 100%;
  }
}
.br-img {
  background: url('br-img1.jpg') no-repeat center center;
  background-size: cover;
  width: 100%;
  height: 300px;
}
