@charset "UTF-8";
/* CSS Document */
img,object,embed,video{max-width:100%;border:0}.ie6 img{width:100%}
.video-container{position:relative;padding-bottom:56.25%;padding-top:30px;height:0;overflow:hidden}
.video-container iframe,.video-container object,.video-container embed{position:absolute;top:0;left:0;width:100%;height:100%}
body {
		font:1em Arial, Helvetica, sans-serif;
}
.gridContainer{  max-width: 1500px; /* Set maximum width */ width: 100%; /* Ensures responsiveness */ margin: 0 auto; /* Centers the div */   /* Optional: Adds padding for small screens */background-color:#FFF;flex-direction: row;} 


.contact-form {
    background: #1F6EA6;
    color: #fff;
    padding: 30px;
    margin: 50px auto;
    max-width: 500px;
 }

.contact-form h2 {
    margin-bottom: 20px;
    color: white;
}

.contact-form label {
    display: block;
    margin-top: 15px;
    margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: none;
      margin-bottom: 20px;
    font-size: 1rem;
    font-family: inherit;
    font-weight: 400; /* 👈 Force normal weight */
    line-height: 1.4;
  }

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    font-size: 1rem !important;
    font-family: inherit !important;
    line-height: 1.4;
    font-weight: 400 !important;
}
.contact-form h3{color:white}

.contact-form button {
    background: white;
    color: #1F6EA6;
    font-weight: bold;
    padding: 12px 20px;
    border: none;
    width: 100%;
    cursor: pointer;
}

.contact-form button:hover {
    background: #ddd;
}

.thankyou-message {
    text-align: center;
    margin: 100px auto;
}

.thankyou-message h2 {
    color: #1F6EA6;
}

.back-home {
    display: inline-block;
    margin-top: 20px;
    text-decoration: none;
    background: #1F6EA6;
    color: white;
    padding: 10px 20px;
  }
.back-home:hover {
    background: #155a8a;
}
input[type="radio"] {
    margin-right: 5px;
    display: inline-block;
}
.contact-form .radio-group {
    display: flex;
    align-items: center;
    gap: 30px; /* space between Yes and No options */
    margin-top: 15px;
    margin-bottom: 20px;
}

.contact-form input[type="radio"] {
    appearance: none;
    width: 15px;
    height: 15px;
    border: 2px solid #1F6EA6;
    background-color: white;
    cursor: pointer;
    margin: 0;
    position: relative;
}

.contact-form input[type="radio"]:checked::before {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    width: 10px;
    height: 10px;
    background-color: #1F6EA6;
}
.contact-form .radio-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    font-size: 1rem;
    line-height: 1;
}
.contact-form select,
.contact-form input[type="file"] {
    width: 100%;
    padding: 10px;
    border: none;
     margin-bottom: 20px;
    background-color: white;
    font-family: inherit;
    font-size: 1rem;
}
.custom-upload {
  margin-bottom: 14px;
}

.file-label {
  display: flex;
  align-items: center;
  padding: 8px 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
  width: 100%;
  max-width: 500px;
  position: relative;
  box-sizing: border-box;
}

.file-label input[type="file"] {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.file-button {
  background-color: #1f6ea6;
  color: white;
  padding: 6px 12px;
  font-size: 0.9em;
  border-radius: 4px;
  border: none;
  flex-shrink: 0;
  z-index: 1;
}

.file-name {
  margin-left: 12px;
  color: #000;
  font-size: 0.95em;
  z-index: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 300px;
}
.error-message {
  color: #c00;
  font-size: 0.9em;
  margin-top: 4px;
}

input.error {
  border: 1px solid #c00;
  background-color: #fff3f3;
}
#success-message {
  background-color: #e6ffe6;
  padding: 20px;
  border-radius: 6px;
  margin-top: 20px;
  border: 1px solid #b2d8b2;
}
.info-box {
  border: 2px solid #1f6ea6;
  background-color: #f9fcff;
  padding: 10px;
  margin-bottom: 30px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  font-size: 1rem;
  line-height: 1.6;
}

.info-box strong {
  display: block;
   font-size: 1.1rem;
  color: #1f6ea6;
}

.info-box hr {
  margin: 20px 0;
  border: none;
  border-top: 1px solid #ccc;
}
.error-list {
  background: #ffe5e5;
  border: 1px solid #cc0000;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 5px;
}

.error-list .error {
  color: #b00000;
  font-weight: bold;
  margin: 5px 0;
}