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



.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;
}

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

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

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

.uploadableImg img {
  max-width: 100%;
  height: auto;
}

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

.rfq-section{
  box-shadow: 2px 4px 7px rgba(0, 0, 0, 0.3);
}

.rfq-section h2 {
  font-size: 2rem;
  color: #90c6f5;
  font-weight: 500;
  text-align: center;
}

.rfq-section { /* Entire Form */
  max-width: 600px;
  margin: 60px auto;
  background-color: #001d4f;
  padding: 30px;
  color: #faebd7;
  border-radius: 8px;
  position: relative;
  z-index: 1;
}

.rfq-section input, /* Fow what ? */
.rfq-section textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 5px;
  border: none;
}

.rfq-section label { /* Fow what ? */
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.rfq-section button { /* Fow what ? */
  padding: 10px 20px;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.rfq-section .btn-light { /* Submit button ? */
  background-color: #90c6f5;
  color: #333;
  font-weight: bold;
  font-size: 1.11rem;
  border: 1.2px solid greenyellow;
}

.rfq-section .btn-light:hover{ /* Submit button */
  background-color: #0bf39a;
  color: #333;
  font-weight: bold;
  border: 1.2px solid #f7f447; /*0bf39a*/
}

.rfq-section .btn-secondary { /* Reset button ? */
  background-color: #174a74;
  color: #fff;
  font-weight: 400;
}

.rfq-section .btn-secondary:hover{ /* Reset button ? */
  background-color: #030011;
  color: #fff;
  font-weight: 400;
  border: 1px solid #360000;
}

/* add some focus*/
.rfq-section input:focus, /* When input field are focused */
.rfq-section textarea:focus{
  outline: 2.2px solid #5b8feb;
  background-color: #f0f0f0;
}


/* ✅ 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*/

/* 📌 COUNTRIES CODE PHONE NUMBER */

/* Dropdown container */
.iti__country-list {
  background-color: #031e46 !important; /* Dark blue background, matches your form */
  color: #f0f0f0 !important; /* Light text for readability */
  max-height: 200px !important; /* Optional: limit height */
  overflow-y: auto !important;
  border-radius: 7px !important;
  box-shadow: 0 4px 8px rgba(0,0,0,0.72);
}

/* Each country option */
.iti__country {
  color: #f0f0f0 !important; /* Light text */
  background-color: transparent !important;
}

/* Hover/focus on country options */
.iti__country:hover,
.iti__country.iti__country--highlight {
  background-color: #f7f447 !important; /* Mouse Selection highlight */
  color: #360000 !important;
}

/* Scrollbar styling (optional for modern browsers) */
.iti__country-list::-webkit-scrollbar {
  width: 8px;
}
.iti__country-list::-webkit-scrollbar-thumb {
  background-color: #639bcc;
  border-radius: 4px;
}

/* Make sure the dial code is also readable on hover */
.iti__country:hover .iti__dial-code,
.iti__country.iti__country--highlight .iti__dial-code {
  color: #5f5858 !important; /* Match the text color on hover */
  font-weight: bold;
}
