/* lets talk section */

/* left side */
.leftsideheading h2 {
  font-family: "Urbanist", sans-serif;
  font-weight: 400;
  font-size: clamp(20px, 6vw, 80px); /* Adjusts dynamically */
  max-width: 360px;
  color: rgba(7, 20, 86, 1);
  text-align: start;
  left: 0;
}

.leftsideparagraph p {
  font-family: "Popppins", sans-serif;
  color: rgba(152, 151, 151, 1);
  font-size: clamp(14px, 1.8vw, 20px); /* Adjusts dynamically */
  font-weight: 200;
  max-width: 100%;
  text-align: start;
  left: 0;
  max-width: 90%;
}

.leftsocialmediaicons {
  display: flex;
  flex-direction: column;
  margin-top: auto; /* Pushes it to the bottom */
  padding-top: 40px; /* Adjust as needed */
}

.leftsocialmediaicons .d-flex {
  justify-content: flex-start; /* Align icons properly */
}

/* rightside */

/* removing the border radius */
.custom-input {
  background: transparent;
  border: 1px solid rgba(17, 16, 16, 0.5); /* Light border */
  color:black;
  border-radius: 0 !important; /* Removes rounded corners */
  padding: 10px;
}

/* label styling */

.custom-heading {
  font-family: "Jost", sans-serif;
  color: rgba(7, 20, 86, 1);
}
.nameinput,
.phonenumber,
.mailid,
.country,
.service,
.message {
  position: relative;
}

.custom-input {
  width: 100%;
  padding: 14px 10px 6px;
  border: 1px solid black;
  outline: none;
  font-size: 16px;
}

.custom-label {
  position: absolute;
  font-family: "Jost", sans-serif;
  color: rgba(7, 20, 86, 1);
  top: -10px;
  left: 15px;
  background: white;
  padding: 0 5px;
}

.form-control::placeholder {
  color: rgba(203, 203, 203, 1); /* Change as needed */
  opacity: 1;
}

.LetsTalkButton button {
    transition: transform 0.3s ease-in-out; /* Smooth button animation */
  }
  
  .custom-buttonright {
    font-family: "Jost", sans-serif;
    font-size: clamp(14px, 2vw, 24px); /* Responsive font size */
    border-radius: 0 !important;
    color: white;
    background: rgba(7, 20, 86, 1);
    transition: background 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center; /* Ensures alignment */
    gap: 5px; /* Adds space between text and arrow */
  }
  
  .custom-buttonright:hover {
    background: rgba(7, 20, 86, 0.9) !important; /* Adjusted hover color */
    color: white !important; /* Ensure text color stays white */
  }
  
  /* ✅ Moves the arrow when button is hovered */
  .custom-buttonright:hover i {
    transform: translateX(5px); /* Moves the arrow to the right */
    transition: transform 0.3s ease-in-out; /* Ensures smooth movement */
  }
  
  .leftsocialmediaicons .social a i {
    color: rgba(7, 20, 86, 1) !important; /* Force blue color */
}

.social{
  padding-top: 15%;
}


/* conatct us styles */
.maincontactheading h2{
  font-family: "Urbanist", sans-serif;
  font-weight: 400;
  font-size: clamp(20px, 6vw, 50px); /* Adjusts dynamically */
  color: rgba(7, 20, 86, 1);
}

.infotext,.address{
  
  font-family: "Poppins", sans-serif;
  color: rgba(152, 151, 151, 1);
  font-size: 14px;
}

.contactlogo{
  width: 18px;
}

.contactlink a{
  text-decoration: none;
  color: rgba(152, 151, 151, 1);
} 



/* country listing */
.custom-dropdown-list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid #ccc;
  margin-top: 5px;
  padding: 0;
  max-height: 250px;
  overflow-y: auto;
  z-index: 999;
  display: none;
}

.custom-dropdown-list li {
  list-style: none;
  padding: 12px 20px;
  cursor: pointer;
  font-weight: 500;
  color: #666;
  transition: 0.2s ease-in-out;
  position: relative;
}

.custom-dropdown-list li:hover {
  background-color: #f1f1f1;
  color: #000;
}

.custom-dropdown-list li.active {
  color: #1a237e;
  font-weight: 600;
  background-color: #f9f9f9;
}

.custom-dropdown-list li.active::after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 20px;
  right: 20px;
  height: 2px;
  background-color: #1a237e;
  border-radius: 4px;
}
