

.divcol{
    display: flex;
    flex-direction: column;
    text-align: left;
}
.divcol h1{
    margin: 0;
}
.overlay {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  transition: bottom 0.5s ease-in-out;
}

.overlay.open {
  bottom: 0;
}

.overlay-background {
  background: linear-gradient(to bottom, #30A3C2, #30a3c2);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
}

.overlay-content {
  padding: 100px;
  background: #30a3c2;
  color: #fff;
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 33px;

}

.contact-slide {
  background: #ffffff1a;
  backdrop-filter: blur(10px);
  border-radius: 10px;
}

.contact-inner {
    display: flex;
    flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.overlay-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 28px;
  background: #ffffff3b;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  text-align: center;
  line-height: 36px;
  cursor: pointer;
  color: white;
  z-index: 999;
}
.overlay-close i {
    line-height:1.3;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 55%;
}

.contact-form h2 {
  margin-bottom: 10px;
  font-size: 24px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ffffff66;
  border-radius: 6px;
  background: transparent;
  color: #fff;
  font-size: 16px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #e0e0e0;
}

.submit-btn {
  padding: 12px;
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.3s ease;
  width: 27%;
}

.submit-btn:hover {
  background-color: #ffffff33;
}


.contact-address h3 {
  font-size: 18px;
  font-weight: bold;
  color: white; padding-right: 50px;
}

.contact-address p{
    margin: 0;
    text-align: left;
}


/* Optional: Responsive for small screens */
@media (max-width: 768px) {
  .contact-inner {
      flex-direction: column;
  }
  .line{
      display:none;
  }

  .contact-address {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid #ffffff50;
    padding-top: 20px;
    margin-top: 20px;
    width:100%;
  }
  .contact-address h3{
      text-align:left;
  }

  .overlay-content {
    padding: 20px;
    gap:15px;
    overflow:scroll;
  }
  .contact-form{
      width:100%;
      gap:0;
  }
  .submit-btn{
      width:70%;
  }
}

input:-webkit-autofill {
  background-color: transparent !important;
  -webkit-box-shadow: 0 0 0 1000px white inset !important; /* 👈 force white bg */
  -webkit-text-fill-color: #000 !important; /* optional: text color */
  transition: background-color 5000s ease-in-out 0s; /* prevent flash */
}