/* feature section start */
.feature-head{
  font-family: "Playfair Display";
  font-weight: 500;
  font-size: 4rem;
  line-height: 1;
  color: #111827;
  margin-bottom: 40px;
}
.bg-color{
  background-color:#F3F4F6;
}
.feature-desc{
  font-family: "Inter";
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  color: #374151;
  text-transform: capitalize;
}
.img-size{
  width: 80%;
  filter: brightness(1) invert(1);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}
.zoom-hover {
  transition: transform 0.3s ease;
   transform-origin: center center;
   margin-top: 15px;
}
.zoom-hover:hover {
  transform: scale(1.2);
}
/* feature section end */

/* web development section start */
.web-dev-title{
  font-family: "Playfair Display";
    font-weight: 700;
    font-size: 40px;
    line-height: 52px;
    color: #111827;
    margin-top: 15px;
}

.web-dev-subtitle{
  font-family: "Playfair Display";
    font-weight: 500;
    font-size: 34px;
    line-height: 46px;
    color: #000000;
    margin-top: 15px;
}
.web-dev-desc{
  font-family: "inter";
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  margin-top: 20px;

}
li{
  list-style-type: none;
}
.list-icons{
  height: 30px;
  margin-right: 20px;
  margin-bottom: 10px;
}
/* web development section end */


/* contact-page start */
.arraybots-contact{
  background-color: #F3F4F6;


}
.contact-form .form-control {
    display: block;
    width: 100%;
     padding: 10px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;

    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    /* background-color: var(--bs-body-bg);
    background-clip: padding-box; */
    border:none;
    /* border-bottom: var(--bs-border-width) solid var(--bs-border-color); */
    border-bottom: 1px solid #757272;
    background-color: transparent;
    /* border-radius: var(--bs-border-radius); */
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    margin-top: 10px;
}

.form-control:focus {
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    border-color: var(--form-border);
    outline: 0;
    box-shadow: none;
      background-color: transparent;
}

.contact-btn{
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 30px;
  padding-right: 30px;
  border-radius: 30px;
  margin-top: 40px;
  color: var(--text-color-dark);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  font-family: "DM Sans"
}

.contact-btn:hover {
    color: var(--text-color-light);
    background-color: var(--btn-color-blue);
    border-color: var(--btn-color-blue);
}

.contact-card{
  background-color: var(--light-color);
    padding: 30px 5px;
    border-radius: 5px;
    transition: .4s;
    text-align: center;
    min-height: 280px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.contact-detail {
    font-family: "DM Sans";
    font-size: 20px;
    font-weight: 300;
    line-height: 30px;
    color: var(--text-color-dark);
}

/* Icon styling for contact cards */
.contact-icon {
  font-size: 42px;
  color: var(--text-color-blue);
  background-color: var(--primary_light2);
  border-radius: 50%;
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  line-height: 1;
  transition: transform .2s ease, color .2s ease, background-color .2s ease;
}

.contact-card:hover .contact-icon {
  color: var(--text-color-orange);
  background-color: #fff2e6; /* soft orange tint to match brand */
  transform: translateY(-2px);
}

/* Typography for contact details */
.contact-sub-detail {
  font-family: "DM Sans";
  font-size: 16px;
  line-height: 24px;
  color: var(--text-color-dark);
  margin-bottom: 4px;
}
/* contact-page end */
/* website page start */
.web-side-img{
  padding: 0.75rem;
      background-color: var(--light-color);
      border: 0 solid color-mix(in srgb, currentColor 15%, transparent);
      border-radius: var(--border-radius);
      max-width: 100%;
      height: auto;
      box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}
/* website-page end */
