/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::  CONTACT CSS  ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/

body{
  background-color: #ffffff;
}

.hero-contact {
  background: url(../../IMAGES/imgCONTACT/Upload03.jpg) center center/cover no-repeat;
  background-size: cover;       /* Makes sure image covers entire section */
  background-position: center;  /* Centers the image */
  background-repeat: no-repeat; /* No repeating */
  color: #3b0202;               /* Make sure text is visible */
  padding: 100px 0;             /* Add vertical spacing */
  height: 70vh;
}

.hero-contact h1{
  font-size: 4rem;
  color: #3b0202;
  font-weight: 900;
  font-weight: bold;
  text-shadow: 2px 2px 7px rgba(183, 255, 161, 0.7);
}

.hero-contact h2{
  font-size: 2.5rem;
  color: #3b0202;
  font-weight: 700;
  font-weight: bold;
  text-shadow: 2px 2px 7px rgba(183, 255, 161, 0.7);
}

h1 { /* Hero Title */
  font-size: 3rem;
  color: #3b0202;
  margin-top: 50px;
  margin-bottom: 20px;
  font-weight: 800;
  text-shadow: 2px 2px 7px rgba(0, 0, 0, 0.7);
}

.lead{
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 10px;
  text-align: center;
  font-weight: 800;
}

.uploadableImg { /* Showing Finger */
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
}

.uploadableImg img { /* Showing Finger */
  max-width: 100%;
  height: auto;
}

.return-icon {
  width: 90px;      /* Adjust size — try 30px, 40px, etc. */
  height: auto;     /* Keep correct proportions */
  transition: transform 0.2s ease;
  vertical-align: middle; /* Optional: aligns nicely with text */
}

.return-icon:hover {
  transform: scale(2.5); /* Optional: hover zoom effect */
}

.img-arrow {
  animation: bounce 2s infinite;
  height: 150px;
  width: auto;
}

/* image motion */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-30px);
  }
}


input[type="tel"]:focus {
  outline: 2px solid #084377; /* matching your primary color */
  box-shadow: none;
}



.indicator{ /* For what ? */
  color: #ffffff;
  font-weight: bold;
}


/* ✅ BUTTON STARTS*/
.btn-upload{
  background-color: #084377; 
  padding: 12px 20px;
  margin-bottom: 20px;
  border-radius: 7px;
  color: #fff;
  font-weight: bold;
  font-size: 1.11rem;
  cursor: pointer;
  box-shadow: 0 4 6 rgba(0, 0, 0, 0.75);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-upload:hover{
  background-color: #050e92ad;
  padding: 12px 20px;;
  color: #fff;
  font-weight: bold;
  border: 1px solid #c8f0e1;
  transform: translate(-2px);
}
/* BUTTON ENDS*/



