/* Overlay Styles */
.overlay1 {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  background-color: rgba(0, 0, 0, 0.8); /* Black with opacity */
  z-index: 999; /* Sit on top */
  z-index: 10001;
}

/* Overlay Content */
.overlay-content {
  position: relative;
  margin: 5% auto; /* 15% from the top and centered */
  padding: 20px;
  height: 80%;
  width: 80%; /* Could be more or less, depending on screen size */
  background-color: white;
  border-radius: 8px;
  z-index: 10001;
}

/* Close Button */
.close-btn1 {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 30px;
  cursor: pointer;
}
#innerContent {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 60px;
  margin-top: 2rem;
  height: 90%;
  width: 100%;
  overflow-y: auto;
}
#innerContent .achievement-el {
  height: auto;
}
#innerContent .achievement-el span {
  width: 70%;
  display: inline;
  gap: 5px;
}
#innerContent .card {
  /* box-shadow: none; */
  margin: 0;
}
#innerContent {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 2rem;
  align-items: center;
  justify-items: center;
  place-items: center;
  padding: 10px;
  height: 90%;
  width: 100%;
  overflow-y: auto;
}

#innerContent .card {
  display: flex;
  background-color: #f8f9fa;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 0;
  padding: 20px;
  height: 500px;
  justify-content: flex-start;
  transition: box-shadow 0.3s ease;
}

#innerContent .card:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}
#innerContent .achievement-el {
  display: flex;
  justify-content: center;
  height: 280px;
  width: 100%;
  background-color: #f8f9fa;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  transition: box-shadow 0.3s ease;
}

#innerContent .achievement-el img{
  height: 90px;
  width:90px;
  object-fit: contain;
}

#innerContent #request-qoute-form{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 90%;
}
.form-heading{
  margin-top: -3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.form-grp{
  display: flex;
  gap: 20px;
}
.form-heading h1{
  font-size: 38px;
} 
.form-heading p{
  text-align: center;

  text-align: center;
  font-size: 16px;
} 
.red{
  color: crimson;
}
#request-form{
display: flex;
align-items: center;
justify-content: center;
height: 100%;
width: 100%;
padding: 20px;
}
#request-form form{
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.req-form-btn-container{
  display: flex;
  justify-content: flex-end;
}
#request-form textarea.form-control,
#request-form input[type="text"] , #request-form input[type="number"]{
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 16px;
  font-family: Arial, sans-serif;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
}

#request-form textarea.form-control:focus,
#request-form input[type="text"]:focus {
  outline: none;
  border-color: #4a90e2;
  box-shadow: 0 0 5px rgba(74, 144, 226, 0.2);
}
.form-grp {
  display: flex;
  gap: 10px;
  
}
.form-grp input {
  width: calc(50% - 5px);
  margin: 0;
}
.req-form-btn-container {
  text-align: center;
}
.small-placeholder {
  font-size: 1em; /* Font size for the main input text */
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
}
.small-placeholder::placeholder {
  font-size: 0.9em; /* Adjust the size as needed */
  color: #aaa; /* Optional: Change the placeholder color */
}
.req-form-btn-container .button1 {
  background-color: #4a90e2;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.req-form-btn-container .button1:hover {
  background-color: #357abd;
}

@media (min-width: 450px) and (max-width: 1000px) {
  
  #innerContent .achievement-el {
  height: 95%;
  width: 100%;
  margin-left: 20px;
  margin-right: 20px;
}
}


@media (min-width: 450px) and (max-width: 850px) {
  #innerContent .card {
    height: 270px;
    margin-left: 20px;
    margin-right: 20px;
    height: 100%;
  }
 
}


@media (max-width: 450px) {

 #innerContent .card{
  height: 270px;
  margin-left: 20px;
  margin-right: 20px;
  height: 100%;
 }

 .form-heading h1{
  font-size: 26px;
 }

 .form-heading p{
  font-size: 12px;
 }
 .form-grp{
  display: flex;
  flex-direction: column;
 }


}



