.bannerbg{
    display: block;
    width: 100%;
    position: relative;
    background: url(../images/threeddesign.webp) no-repeat center;
    padding: 100px 0;
    text-align: center;
    background-size: cover;
}
.bannerbg::after{
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.85);
}
.bannerbg .container{
    position: relative;
    z-index: 1;
}
.bannertitle{
    display: block;
    font-size: 2.5rem;
    line-height: 1.2;
    color: #fff;
    font-weight: 600;
    font-family: 'Roboto Condensed', Arial, Helvetica, sans-serif;
}

.widthsmall{
    width: 767px;
    max-width: 100%;
    margin:0 auto;
}
.formsection{
    display: block;
    position: relative;
    padding: 60px 0;
    background:#F2F6F9;
    font-family: 'Roboto Condensed', Arial, Helvetica, sans-serif;
}
.formsection .container {
  max-width: 40rem;
  margin: 0 auto;
  padding: 2rem;
  border-radius: 0.5rem;
  background:#fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.formtitle {
  font-size: 1.875rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.0rem;
}

.formsection label {
  font-size: 1.125rem;
  font-weight: 500;
  color: #374151;
  display: block;
  margin-bottom: 0.2rem;
}

.formsection input[type="text"],
.formsection input[type="tel"],
.formsection input[type="email"],
.formsection input[type="date"],
.formsection select,
.formsection textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  font-size: 1rem;
  color: #4b5563;
  outline: none;
  transition: border-color 0.2s ease;
  line-height: 1;
}

.formsection input[type="text"]:focus,
.formsection input[type="tel"]:focus,
.formsection input[type="email"]:focus,
.formsection select:focus,
.formsection textarea:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.4);
}

.formsection textarea {
  resize: vertical;
}

.formsection button {
  width: 100%;
  background-color: #3298AB;
  color: white;
  font-weight: 600;
  padding: 1rem;
  border-radius: 0.375rem;
  cursor: pointer;
  border: none;
  font-size:1.2rem;
  line-height:1.3;
  transition: background-color 0.3s ease;
}

.formsection button:hover {
  background-color: #414141;
}

.datebg {
    position: relative;
    display: block;
}
.datebg::after {
    content: '\f073';
    position: absolute;
    top: 5px;
    right: 15px;
    font-size: 1.5rem;
    line-height: 1.5;
    font-family: 'FontAwesome';
    color: #4F84D1;
}
.error {
    color: red !important;
    font-size: 0.85rem !important;
}