body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.top-bar {
  background-color: #29303b;
  color: white;
  padding: 10px 15px;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.top-bar .contact-info span {
  margin-right: 15px;
  display: inline-flex;
  align-items: center;
  font-size: 14px;
}
.top-bar .contact-info span i {
  margin-right: 5px;
}

.navbar {
  background-color: #29303b;
}
.navbar .nav-link {
  color: white;
}
.navbar .nav-link:hover {
  color: #5cb85c;
}

/* Hero Section */
.hero {
  position: relative;
  color: white;
  background: url(../images/banner1.jpg) no-repeat center center / cover;
  min-height: 100vh;
  padding: 30px 0;
  display: flex;
  align-items: center;
}
.hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}
.hero .content {
  position: relative;
  z-index: 2;
}
.hero h1 {
  font-size: 32px;
  font-weight: bold;
}
.hero p {
  font-size: 25px;
  color: white;
}
.hero .contactdetail {
  font-size: 16px;
  word-break: break-word;
}

/* Buttons */
.btn-quotation {
  background-color: #29303b;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
}
.btn-quotation:hover {
  background-color: #4cae4c;
}

/* Form Section */
.form-section {
  background-color: #29303b;
  padding: 25px;
  color: white;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.form-section h1 {
  font-size: 24px;
  margin-bottom: 20px;
}
.btn-submit {
  background-color: #5a7d7c;
  color: white;
  display: block;
  width: 100%;
  border-radius: 30px;
  padding: 12px;
  font-size: 16px;
}
.btn-submit:hover {
  background-color: #a0c1d1;
}
.form-control,
.form-select {
  background: none;
  border-radius: 30px;
  color: white;
  padding: 14px;
  font-size: 15px;
}
.form-control::placeholder {
  color: #bcbcbc;
}
option {
  background: #290179;
  color: white;
}

/* Floating Download Button */
.downloadCon {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: rgba(85,175,200,1);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99;
  cursor: pointer;
}
.downloadCon a img {
  width: 60px;
  border-radius: 50%;
  cursor: pointer;
}

/* Responsive Fixes */
@media (max-width: 992px) {
  .hero {
    padding: 20px 0;
  }
  .hero h1 {
    font-size: 28px;
    text-align: center;
  }
  .hero p,
  .hero .contactdetail {
    font-size: 14px;
    text-align: center;
  }
  .form-section {
    margin-top: 20px;
  }
}
@media (max-width: 576px) {
  .hero h1 {
    font-size: 22px;
  }
  .hero p {
    font-size: 13px;
  }
  .btn-submit {
    font-size: 14px;
    padding: 10px;
  }
}