/* home page stylee */
/*
body {
    background-color: rgb(255, 255, 255);
    padding-top: 50px;
}
@media (max-width: 1200px) {
  body {
    padding-top: 30px;}
}*/
.homepage-width{
     max-width: 100%;
  padding: 70px 8% 50px 8%;
}
@media (max-width: 1200px) {
  .homepage-width {
  max-width: 100%;
  padding: 50px 5%;}
}
/* end home page stylee */
/* start page title */
.bradcrub1 {
    position: relative;
    width: 100%;
    height: 250px; 
    background-size: cover;
    background-position: center;
}
@media (max-width: 768px) {.bradcrub1 {
    position: relative;
    height: 200px; 
}}
.bradcrub1-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(62, 155, 161, 0.288); 
}
.bradcrub1-content {
    position: absolute; 
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column; 
    justify-content: center; 
    align-items: center;  
    text-align: center;
    padding: 0 20px; 
  }
@media (max-width: 768px) {.bradcrub1-content h1 {
    font-size: 2rem; 
    margin: 0;
} }
@media (max-width: 768px) {.bradcrub1-content p {
    font-size: 0.9rem;
    margin-top: 10px;
}}
/* end page title */

/* start cotact info section */

.contactus-page-container {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      background-color: rgb(255, 255, 255);
      border: solid 1px;
      border-radius: 8px;
      padding: 20px;
      border-color: #008A8A;
    }

    .left-column,
    .right-column {
      flex: 1;
      min-width: 300px;
      background-color: #fff;
      padding: 20px;
    }

    .right-column {
      background-color: #008A8A;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }


    @media (max-width: 768px) {
      .container {
        flex-direction: column;
      }

      .left-column,
      .right-column {
        min-width: 100%;
      }
    }



    /* new */


.contect-infopage2 {
  display: flex;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
}
.contact-infopage2 {
  width: 35%;
  background: linear-gradient(135deg, #1e9494, #80cfcf);
  padding: 40px 40px;
  color: white;
  text-align: center;
}
.contectpage-infoitem2 {
  margin-bottom: 30px;
}
.contactinfo-icone2 {
  width: 45px;
  height: 45px;
  margin-bottom: 15px;

}
.contact-formsection2 {
  width: 65%;
  background-color: #f1f1f1;
  display: flex;
  padding: 40px 50px;
  justify-content: center;
  flex-direction: column
}
/* ✅ Responsive Design */

@media (max-width: 768px) {
    .contect-infopage2 {
    flex-direction: column;
  }
  .contact-infopage2,
  .contact-formsection2 {
    width: 100%;
  }
  .contact-infopage2 {
    padding: 30px 20px;
  }
  .contact-formsection2 {
    padding: 30px 20px;
  }
  .contactinfo-icone2 {
    width: 40px;
    height: 40px;
  }
  .contectpage-infoitem2 {
    margin-bottom: 30px;
  }
  .contact-formsection2 h2 {
    font-size: 22px;
  }
  .contact-infopage2 h2 {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .contactinfo-icone2 {
    width: 35px;
    height: 35px;
  }
  .contact-infopage2, .contact-formsection2 {
    padding: 20px 15px;
  }
  .contectpage-infoitem2 p {
    font-size: 14px;
  }
  .contact-formsection2 h2,
  .contact-infopage2 h2 {
    font-size: 20px;
  }
}



