@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);
}


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

input {
    width: 95%;
    margin-top: 5px;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
button {
    width: 15%;
    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-container {
            position: relative;
            width: 100%;
            height: 8px;
            background: #ddd;
            border-radius: 5px;
            margin-bottom: 20px;
        }
        .progress-bar {
            height: 10px;
            width: 33%; /* Change dynamically */
            background: green;
            border-radius: 5px;
            transition: width 0.3s ease-in-out;
        }
        .progress-steps {
            display: flex;
            justify-content: space-between;
            margin-top: 10px;
        }
        .step {
            width: 30px;
            height: 30px;
            line-height: 30px;
            text-align: center;
            border-radius: 50%;
            background-color: lightgray;
            color: white;
            font-weight: bold;
        }
        .step.active {
            background-color: green;
        }
li {
    color: #6f6f6f;
    font-weight: 400;
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
    line-height:1.1em;
}
.custom {
    color: #84240c;
    font-weight: 600;
}
.cus {
    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: 69%;
    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 {
    width: 25%;
    position: relative;
    padding-right: 30px;
    border-radius: 25px;
  }
  .arrow-btn::after {
    content: "→";
    position: absolute;
    right: 10px;
  }
  .full-address {
    display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  }
  .form-step { display: none; }
  .form-step.active { display: block; }
  .button-container { margin-top: 20px; }
  .btn-next {
            background-color: #007bff;
            color: white;
        }
        .btn-prev {
            background-color: #6c757d;
            color: white;
        }
.custom-box {
            background: linear-gradient(135deg, #da6d42, #ffc18c);
            height: 450px;
            color: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
        }
        .custom-box h4 {
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        /* Stylish List */
        .custom-list {
           color: #ffffff;
        }
        .custom-list li {
            display: flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.15);
            padding: 10px 15px;
            margin-bottom: 8px;
            border-radius: 8px;
            font-size: 16px;
        }
        .custom-list li i {
            font-size: 18px;
            margin-right: 12px;
            color: #ffcc00;
        }

