@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    margin: 20px;
    /*background: linear-gradient(135deg, #f8f9fa, #e9ecef);*/
    background: linear-gradient(135deg, #f8f9fa, #e9ecef00);
    color: #333;
    font-size: 15px;
}
.container {
    max-width: 650px; /* Increased width by 50% */
    margin: 0 auto;
}
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ccc;
}
.header img {
    width: 170px;
    height: auto;
}
.box {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef00);
    padding: 30px;
    border: 1px solid #ccc;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    font-size: 13px;
    display: inline-block;
}

.box.hidden {
    opacity: 0;
    transform: translateY(20px);
}

.box:not(.hidden) {
    opacity: 1;
    transform: translateY(0);
}

.box:hover {
    transform: translateY(-5px);
}
.hidden {
    display: none;
}
label {
    font-weight: 550;
    font-size: 13px;
    display: block;
}
textarea, select {
    width: 94%;
    margin-top: 5px;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

input {
    width: 90%;
    margin-top: 5px;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
button {
    width: 30%;
    margin-top: 5px;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 20px;
    background: linear-gradient(90deg, #da6d42, #84240c);
    color: white;
    cursor: pointer;
    transition: background 0.3s ease;
}
#getaddress_button, #getaddress_button_1{
    width: 25%; 
    margin-top: 5px;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: linear-gradient(90deg, #da6d42, #84240c);
    color: white;
    cursor: pointer;
    transition: background 0.3s ease;
    display: inline-block;
}
#searchAgain, #hide-btn {
    width: 40%;
    margin-top: 5px;
    margin-left: 160px;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: linear-gradient(90deg, #da6d42, #84240c);
    color: white;
    cursor: pointer;
    transition: background 0.3s ease;
}
button:hover {
    background: linear-gradient(90deg, #84240c, #bb3311);
}
button:focus {
    outline: 3px solid #da6d42; /* Add a border to buttons when focused */
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}
button:disabled {
    background: #ccc;
    cursor: not-allowed;
}
.progress-bar-container {
    height: 20px;
    background-color: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}
.progress-bar {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #da6d42, #84240c);
    transition: width 0.5s ease;
}
li {
    color: #6f6f6f;
    font-weight: 400;
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
    line-height:1.1em;
}
h2 {
    color: #84240c;
    font-weight: 600;
}
h3 {
    color:  #da6d42;
    font-weight: 600;
}
h4 {
    color: #000000;
    font-weight: 800;
}
ul {
    padding-left: 20px;
}
ul li {
    margin-bottom: 10px;
}
.footer {
    margin-top: 20px;
    padding: 10px 0;
    border-top: 2px solid #ccc;
    text-align: center;
}
.footer a {
    color: #6f6cd2;
    text-decoration: none;
    margin: 0 10px;
    padding: 5px 10px;
}
.footer a:hover {
   /* background-color: #84240c; /* Background color change on hover */
    color: #84240c; /* Text color change */
}
input[type="checkbox"] {
    appearance: none; /* Removes default browser styling */
    -webkit-appearance: none; /* For Safari */
    width: 15px;
    height: 15px;
    border: 2px solid #0078D7; /* Border color */
    border-radius: 4px; /* Rounded corners */
    outline: none;
    cursor: pointer;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
    position: relative;
}

input[type="checkbox"]:checked {
    background-color: #0078D7; /* Fill color */
    border-color: #005A9E; /* Border color for checked state */
}

input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    top: 3px;
    left: 6px;
    transform: rotate(45deg);
}

input[type="checkbox"]:hover {
    border-color: #005A9E; /* Darker blue on hover */
}

input[type="checkbox"] + label {
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    font-size: 13px;
    color: #000000;
}

.button-container {
    display: flex;
    justify-content: center;
    margin-top: 30px; /* Space above the button */
}

input[type="checkbox"],
label {
    /*display: inline-block;*/
    vertical-align: middle;
}

.error {
    color: red;
    font-size: 16px; /* Slightly larger for better visibility */
    font-weight: bold;
    display: block;
    margin-top: 5px;
}

.hidden {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        width: 90%;
    }

    button {
        width: 50%;
    }
}

.message-container{
    text-align: center;
}
.para {
    font-size: 13px;
    font-weight:550;
}
#getaddress_input, #getaddress_input_1{
    width: 64%;
    margin-top: 5px;
    margin-right: 10px;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    display: inline-block;
}
hr {
  border: none;
  height: 2px;
  background: linear-gradient(to right, #e7cfb4, #feb47b);
  margin: 30px 0;
  border-radius: 2px;
}
.arrow-btn {
    position: relative;
    padding-right: 30px;
  }
  .arrow-btn::after {
    content: "→";
    position: absolute;
    right: 10px;
  }
  .full-address {
    display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  }