/* Hero Banner */
.hero-banner {
  height: 400px;
  overflow: hidden;
  position: relative;
}

.hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.banner-content {
  position: absolute;
  bottom: 50px;
  color: white;
}

.banner-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}

.breadcrumb-item a {
  color: white;
  text-decoration: none;
}

.breadcrumb-item.active {
  color: var(--primary-color);
}

.breadcrumb-item + .breadcrumb-item::before {
  color: white;
}

.page-title h1 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #333;
  margin: 0;
}

/* Company Info Section */
.company-name {
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.info-table {
  margin-top: 20px;
}

.info-row {
  display: flex;
  margin-bottom: 10px;
}

.info-label {
  min-width: 100px;
  font-weight: 500;
}

.info-value {
  color: #666;
}

.team-image {
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* Map Section */
.map-section {
  padding: 0;
  margin: 0;
}

.map-container {
  width: 100%;
  height: 450px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Contact Form Section */
.contact-form-section {
  padding: 50px 0;
  background-color: #fff;
}

.contact-image {
  height: 100%;
  overflow: hidden;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-form {
  background-color: #f8f9fa;
  padding: 30px;
  height: 100%;
}

.form-title {
  color: #f7941d;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 30px;
  text-align: center;
}

.form-label {
  font-weight: 500;
  color: #333;
}

.form-label::after {
  content: " *";
  color: red;
}

.form-control {
  border: 1px solid #ddd;
  padding: 10px 15px;
  border-radius: 0;
  background-color: white;
}

.form-control::placeholder {
  color: #aaa;
}

.form-control:focus {
  border-color: #f7941d;
  box-shadow: none;
}

.btn-primary {
  background-color: #f7941d;
  border-color: #f7941d;
  padding: 10px 30px;
  font-weight: 500;
  border-radius: 0;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #e58315;
  border-color: #e58315;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .hero-banner {
    height: 300px;
}

.banner-content h1 {
    font-size: 2rem;
}
  .contact-image {
      height: 400px;
      margin-bottom: 30px;
  }
}

@media (max-width: 768px) {

  .hero-banner {
      height: 250px;
  }

  .banner-content h1 {
      font-size: 1.8rem;
  }

  .contact-form {
      padding: 20px;
  }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  body {
      padding-top: 80px;
  }

  .navbar-brand img {
      height: 40px;
  }

  .company-name {
      font-size: 1.3rem;
  }

  .team-image {
      margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .info-row {
      flex-direction: column;
  }

  .info-label {
      margin-bottom: 5px;
  }
}