.custom-title-boxes{
    font-size: 17px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
}

.custom-subtitle {
    font-size: 16px;
    text-align: center;
    margin-bottom: 30px;
    color: #666;
}
.box-type-row {
    display: flex;
    gap: 42px;
    margin-bottom: 4%;
    justify-content: center;
}

.box-type-option {
    text-align: center;
    box-shadow: 0px 0px 10px #00000014;
    background: #fff;
    position: relative;
}

.box-type-option:hover {
    background-color: #fff !important;
    border: 1px solid #35528d;
    box-shadow: 0px 0px 10px #00000014;
}

.box-type-option img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.box-type-option.selected {
    background-color: #fff!important;
    border: 1px solid #35528d;
    box-shadow: none;
}

/* Button styling */
.select-box-button {
    margin-top: 8px;
    padding: 5px 10px;
    background: #ffff;
    color: black;
    border: none;
    cursor: pointer;
    border: 1px solid #000000;
    width: 80px;
    margin-bottom: 20px;
    margin-right: auto;
    margin-left: auto;
}

/* Hover effect for the button */
.select-box-button:hover {
    background-color: #AFC943;
    color: white;
}

/* Focus effect for the button */
.select-box-button:focus {
    background-color: #35528D;
    color: white;
}

/* Selected state for the button inside .box-type-option */
.box-type-option.selected .select-box-button {
    background-color: #AFC943; /* Set background color to green */
    color: white; /* Change text color to white */
}


/* Setup section layout */
.setup-section {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 30px;
    box-shadow: 0px 0px 20px #96adc5;
    padding: 20px 20px 20px 20px;
}
.entry-content h5{
	color: #35528D;
    font-size: 15px;
}
.entry-content h4 {
 color: #35528D;
 font-size: 15px;
 margin-top: 20px;
}
.left, .right {
    flex: 1;
}

.dimensions {
    display: grid;
    margin-top: 10px;
}

/* Contact form layout */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Thank you message */
.thank-you {
    background-color: #dff0d8;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #3c763d;
    color: #3c763d;
}

/* Optional legacy style */
label.selected {
    background-color: #e0f0ff;
    border-radius: 4px;
    padding: 2px 6px;
}

/* ---- NEW BUTTON-BASED OPTION STYLES ---- */
.option-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.option-button {
    background-color: white;
    color: black;
    border: 1px solid #000000;
    padding: 8px 16px;
    cursor: pointer;
    /* border-radius: 6px; */
    transition: all 0.3s ease;
    width: 119px;
}
.option-button:hover {
    color: white;
}

.option-button.selected {
    background-color: #AFC943;
    color: white;
    border-color: #AFC943;
}
.entry-content h2 {
    color: #35528D;
    font-size: 15px;
    margin-top: 20px;
    text-align: center;
}
.custom-input {
    color:black;
    padding: 1px;
    height: auto;
    border-width: 1px;
    border-style: solid;
    border-color: var(--ast-border-color);
    background: var(--ast-comment-inputs-background);
    box-shadow: none;
    box-sizing: border-box;
    transition: all 0.2s linear;
    text-align: left;
}
.dimensions label {
    display: flex;
    align-items: center;
    text-align: center;
    gap: 8px;
    margin-bottom: 10px;
    background: #35528d;
    padding: 0px 0px 0px 10px;
    color: white;
    border-radius: 6px;
}
.dimensions span {
    min-width: 20px;
    font-weight: 500;
}
/* Optional: Customize container spacing */
.contact-form-section {
    margin-top: 30px;
    margin-bottom: 30px;
}

/* Style for the form labels and inputs */
.contact-form label {
    display: block;
    margin-bottom: 15px;
    font-weight: 500;
    color: #333;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 14px;
    color: black!important;
}
.button-group {
    display: flex;
    gap: 20px; /* space between buttons */
    margin-top: 10px;
    justify-content:center!important;
}
.contact-form button {
    padding: 10px 20px;
    border: none;
    background-color: #35528d;
    color: white;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    width:130px;
}
.contact-form button:hover{
    colour : white;
}
/* Style for the image */
.contact-image {
    max-width: 80%;
    height: auto;
    width: 80%;             /* Stretch it to column width */
    border-radius: 6px;
    margin-top: 20px;
    min-height: 300px;
    object-fit: cover;
}
/* Image box border */
.form-right {
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 65px;
}
/* Optional: Responsive tweak for mobile */
@media (max-width: 768px) {
    .form-left,
    .form-right {
        margin-bottom: 20px;
    }

    .call-now-button {
        display: block;
        width: 100%;
        text-align: center;
    }
}
.entry-content>:last-child, .entry-summary>:last-child, .page-content>:last-child {
    margin-bottom: 0;
    background: #fff;
}
@media (max-width: 425px) {
   
.box-type-row {
    display: flex;
    gap: 42px;
    margin-bottom: 4%;
    flex-direction:column;
}
    /* Setup section layout */
.setup-section {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 30px;
    box-shadow: 0px 0px 20px #96adc5;
    padding: 20px 20px 20px 20px;
    flex-direction:column;
}
}
.box-preview-container {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.box {
    width: 100px;
    height: 100px;
    background-color: lightgray;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid #ccc;
}

button {
    margin-top: 10px;
}

.option-button.active {
    background-color: #007bff;
    color: #fff;
}


  