/* ---------- PAGE BACKGROUND IMAGE ---------- */
body {
  margin:0;
  background-image: url("Rectangle\ 3742\ \(4\).png"); 
  background-color: #000;
  background-size: contain;         
  background-position: top;     
  background-repeat: no-repeat;   
  background-attachment: fixed;    
position: relative;
}
/* ---------- CONTACT HEADER SECTION ---------- */
.slamitcontact-header {
  width: 100%;
  background-color: #D35B30; 
  text-align: center;
  padding: 80px 0; 
  margin-top: 4.5rem !important;    
  margin-bottom: 1rem !important;   
}

.slamitcontact-header h1 {
  /* width: 208px;
  height: 31px; */
  margin: 0 auto 20px auto;
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 550;
  font-size: 40px;
  line-height: 100%;
  /* letter-spacing: 0; */
  text-align: center;
  color: #FFFFFF;
  opacity: 1;
  display: inline-block;
}

.slamitcontact-header p {
  width: 393px;
  max-width: 90%;
  height: auto;
  margin: 0 auto;
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  text-align: center;
  color: #FFFFFF;
  opacity: 1;
}


/* ---------- MAIN CONTAINER ---------- */
.slamitcontact-box {
  width: 994px;
  height: 553px;
  position: relative;
  margin:100px auto;
  border-radius: 20px;
  background: #FFFFFF;
  display: flex;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* ---------- LEFT SIDE PANEL ---------- */
.slamitleft-side {
  width: 473px;
  /* height: 554px; */
  background: #F7F8FC;
  padding: 60px 50px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.slamittitle {
  display: flex;
  flex-direction: column;
  gap: 10px; 
}


.slamitleft-side h2 {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: #000;
  margin-bottom: 2px;
  line-height: 100%;
  padding-bottom: 0;
}

.slamitleft-side p {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #000;
  margin-bottom: 30px;
  margin-top: 0;
  /* line-height: 100%; */
}

/* ---------- INFO ICONS + TEXT ---------- */
.slamititem {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.slamititem img {
  width: 20px;
  height: 20px;
  margin-right: 10px; 
  margin-top: 3px; 
}

/* .slamititem i {
  color: #E55A33;
  font-size: 20px;
  width: 30px;
  margin-top: 3px;
} */

.slamititem span {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: #000;
  line-height: 1.4;
}

/* ---------- FOLLOW US ---------- */
.slamitsocial {
  display: flex;
  align-items: center;
  gap: 15px;
}

.slamitsocial p {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 18px;
  margin: 0; 
}

.slamiticons i {
  font-size: 20px;
  color: #000;
  margin-right: 18px;
  cursor: pointer;
  transition: color 0.3s;
}

.slamiticons i:hover {
  color: #E55A33;
}

/* space b/w img.. */
.slamiticons img {
  width: 20px;
  height: 20px;
  margin-right: 18px; 
  cursor: pointer;
  transition: opacity 0.3s;
}

.slamiticons img:hover {
  opacity: 0.7;
}

/* ---------- RIGHT SIDE FORM ---------- */
.slamitright-side {
  /* width: 521px; */
  background: #FFFFFF;
  padding: 60px 50px;
  box-sizing: border-box;
}

.slamitright-side h2 {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 600;
  font-size: 26px;
  color: #000000;
  margin-bottom: 30px;
}

/* ---------- INPUT FIELDS ---------- */
.slamitright-side input,
.slamitright-side textarea {
  width: 100%;
  background: #F7F8FC;
  border: none; 
  border-radius: 5px;
  padding: 10px;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  opacity: 1;
  margin-bottom: 20px;
  resize: none;
}

/* Make the message box larger */
.slamitright-side textarea {
  height: 120px; 
}

.slamitright-side button {
  width: 427px;
  height: 38px;
  background: #D35B30;
  border: none;
  border-radius: 10px;
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #FFFFFF;
  text-align: center;
  cursor: pointer;
  transition: background 0.3s;
  display: block;
  margin: 0 auto; 
}

.slamitright-side button:hover {
  background: #E55A33;
}

/* ---------- RESPONSIVE DESIGN ---------- */

/* For 1024px and below (Tablets, small laptops) */
@media (max-width: 1024px) {
  .slamitcontact-box {
    width: 90%;
    height: auto;
    flex-direction: column;
    margin: 50px auto;
  }

  .slamitleft-side, .right-side {
    width: 100%;
    padding: 40px 30px;
  }

  .slamitleft-side {
    align-items: flex-start;
  }

  .slamitright-side h2 {
    font-size: 24px;
  }

  .slamitright-side button {
    width: 100%;
  }
}

/* For 768px and below (iPads, small tablets) */
@media (max-width: 768px) {
  .slamitcontact-box {
    width: 95%;
    flex-direction: column;
  }

  .slamitleft-side {
    padding: 30px 25px;
  }

  .slamitright-side {
    padding: 30px 25px;
  }

  .slamitleft-side h2, .right-side h2 {
    font-size: 22px;
  }

  .slamititem span {
    font-size: 14px;
  }

  .slamitsocial p {
    font-size: 16px;
  }

  .slamiticons i {
    font-size: 18px;
    margin-right: 12px;
  }
}

/* For 480px and below (Phones) */
@media (max-width: 480px) {
  .slamitcontact-box {
    margin: 30px auto;
    border-radius: 15px;
  }

  .slamitleft-side, .right-side {
    padding: 25px 20px;
  }

  .slamitleft-side h2, .right-side h2 {
    font-size: 20px;
  }

  .slamititem {
    margin-bottom: 15px;
  }

  .slamititem i {
    font-size: 18px;
    margin-right: 10px;
  }

  .slamititem span {
    font-size: 13px;
  }

  .slamitsocial {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .slamitsocial p {
    font-size: 15px;
  }

  .slamitright-side button {
    height: 40px;
    font-size: 15px;
  }
}
