
.about-hero-section {
  position: relative;
  width: 100%;
  height: 60vh; /* Adjust this value to set banner height */
  background: url('images/contact/contact-banner.jpg') center center / cover no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
  max-height:306px;
}
/* Dark overlay to enhance text contrast */
.about-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
  background: rgba(0, 0, 0, 0.5);
}

/* Centered overlay text */
.about-hero-text {
  position: relative;
  width: 374px;
  height:148px;
  left:80px;
  color: #fff;
  font-family: sans-serif;
  font-size: 1rem;
  font-weight: bold;
  z-index: 2;
  padding: 50px;
  background: rgba(0, 0, 0, 0.5);
}
ul.breadcrumb {
  list-style: none;
}
ul.breadcrumb li {
  display: inline;
  font-size: 10px;
}
ul.breadcrumb li+li:before {
  padding: 8px;
  color: white;
  content: "/\00a0";
}
ul.breadcrumb li a {
  color: white;
  text-decoration: none;
}
ul.breadcrumb li a:hover {
  color: orange;
  text-decoration: underline;
}
.about-section {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
  text-align: center;
}


.about-section h1 {
  font-size: 40px;
  font-weight: 700;
  text-align:center;
  color: #0D0D0D;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 10px;
  gap: 50px;
  font-size: 15px;
  font-weight: 700;
  color: #0D0D0D;
}
.about-bold {
  font-weight: 700;
}
.highlight-text {
  font-size: 20px;
  font-weight: 700;
}

.aboutus {
  font-size: 15px;
  font-weight: 500;
}



.about-text {
  max-width: 500px;
  text-align: left;
  margin-left: 20px;
}
.about-section .heading{
  font-size: 30px;
  color:orange;
  font-weight:700;
}

.about-text p {
  font-size: 15px;
  line-height: 1.6;
}


.about-images {
  position: relative;
  width: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.img-top {
  position:relative;
  width: 100%;
  border-radius: 20px;
  z-index: 1;
}
.contact-details{
    display:flex;
    position: absolute;
    z-index: 1;
    top: 137%;
    left: 100px;
}
.box{
    height: 160px;
    width: 270px;
    background: #E9EEF0;
    margin: 0 10px;
    padding: 10px;
}
.title{
    size: 15px;
    color: orange;
    font-weight: 500;
}
.details{
    font-size: 8px;
    font-weight: 600;
}
.contact-container {
  margin:40px auto;
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  width: 600px;
  max-width: 95%;
  text-align: center;
}

.contact-container h2 {
  margin-bottom: 25px;
  font-size: 22px;
  font-weight: bold;
  color: #222;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-row input {
  flex: 1;
}

input, textarea {
  width: 100%;
  padding: 14px;
  border: none;
  background: #f5f5f5;
  border-radius: 4px;
  font-size: 14px;
  outline: none;
  transition: 0.3s ease;
}

input:focus, textarea:focus {
  background: #fff;
  border: 1px solid #ddd;
}

textarea {
  resize: none;
}

button {
  background: #f58220;
  color: #fff;
  padding: 14px 30px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  transition: 0.3s ease;
  margin: 0 auto;
  display: block;
}

button:hover {
  background: #e06e12;
}

.contact-details:focus, .contact-details:focus-visible {
  outline: none;
}

.contact-details *:focus, .contact-details *:focus-visible {
  outline: none;
}
:focus-visible {
  outline: none !important;
}

.hiddenmsg {
  display: none;
}

.success {
  color: green; 
}
.error {
  color: red;
}
.error ul {
    list-style: none;
    
}

.error ul strong {
  color: black;
}

.nolink-decoration {
    text-decoration: none;
    color: black;
}

@media (max-width: 430px) {
  .contact-details{
        display: flex;
        flex-direction: column;
        z-index: 1;
        position: relative;
        left: 10px;
        gap: 5px;
}
.about-hero-text{
      left:40px;
      width:80%;

}

}
@media (max-width: 1024px) {
    .contact-details{
        display: flex;
        z-index: 1;
        position: relative;
        left: 10px;
        gap: 5px;
}

.contact-form {
  display: block;
}
.form-row{
  display:block;
}
.form-row input,textarea {
  margin-bottom:10px;
}

}