.selection {
    width: 100% !important;
}
        /* .overlay {
            background-color: rgba(9, 35, 84, 0.9);
            display:grid;
            justify-content: center;
            align-items: center;
            padding: 30px;
            box-sizing: border-box;
        } */
        .bg{
         background-color: rgba(9, 35, 84, 0.9);
            display:grid;
            justify-content: center;
            align-items: center;
            padding: 30px;
            box-sizing: border-box;
        } 
        
        .booking-form {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            width: 100%;
            max-width: 800px;
            box-sizing: border-box;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .booking-form h2 {
            text-align: center;
            margin-bottom: 25px;
            font-size: 28px;
            color: #0e2452;
        }

        h3 {
            color: #0e2452;
        }

        .form-row {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 15px;
        }

        .form-group {
            flex: 1;
            display: flex;
            flex-direction: column;
            width: 100% !important;
        }

        label {
            font-size: 14px;
            margin-bottom: 5px;
        }

        input,
        select,
        textarea {
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 14px;
        }

        textarea {
            resize: vertical;
            min-height: 60px;
        }

        /* .toggle-container {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 10px;
        }

        .toggle-group {
            display: flex;
            align-items: center;
            gap: 5px;
        } */
.toggle-container {
  display: grid;
  /* grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); */
  grid-template-columns: repeat(3, 1fr); /* 3 items per row */
  gap: 10px 20px; /* row gap 10px, column gap 20px */
  margin-bottom: 15px;
}

/* Each service item */
.toggle-group {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  /* background: rgba(255, 255, 255, 0.05); */
    justify-content: space-between;
  padding: 10px 15px;
  border-radius: 8px;
  transition: 0.3s;
}

.toggle-group:hover {
  background: rgba(255, 255, 255, 0.15);
}
        .toggle-group input[type="checkbox"] {
            width: 18px;
            height: 18px;
        }


        .select2-selection {
            height: 40px !important;
            padding: 5px 10px;
            font-size: 14px;
        }

        .submit-btn {
            background-color: #0e2452;
            border: none;
            padding: 12px 25px;
            color: white;
            border-radius: 20px;
            font-size: 16px;
            cursor: pointer;
            margin-top: 20px;
            display: block;
            margin-left: auto;
            margin-right: auto;
        }
        .submit-btn:hover {
        background: linear-gradient(135deg, #5f84ffff, #2a83f7ff);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    }
        .toggle-label {
    color: white;
    font-weight: bold;

}
input:checked + .slider:before {
  transform: translateX(22px);
}


        /* checkbox */
        /* .switch {
            position: relative;
            display: inline-block;
            width: 50px;
            height: 24px;
        } */
.switch {
  position: relative;
  display: inline-block;
  width: 45px;
  height: 22px;
}
        .switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }

       .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #ccc;
  transition: 0.3s;
  border-radius: 22px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px; width: 18px;
  left: 2px; bottom: 2px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}

        .switch input:checked+.slider {
            background-color: #0057b7;
        }
       

        .switch input:checked+.slider:before {
            transform: translateX(26px);
        }

        .hidden {
            display: none;
        }
         .labl_text{
             color: #ffffff;
            font-weight: bold;
        }

.select2-container .select2-selection--single {
    height: 40px;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100% !important;
}
/* Text normal */
.select2-selection__rendered {
    font-weight: normal;
    color: #999;
}
/* Placeholder ko thoda light grey karne ke liye */
.select2-selection__placeholder {
    color: #999;
}
/* loding progress */
button:disabled {
      background: #999;
      cursor: not-allowed;
    }
/* Loader Spinner */
#loading {
  display: none;
  margin-top: 15px;
  text-align: center;
}

#loading::after {
  content: "";
  width: 30px;
  height: 30px;
  border: 4px solid #fff;
  border-top: 4px solid #007bff;
  border-radius: 50%;
  display: block;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  100% { transform: rotate(360deg); }
}

/* carpet */
.carpet-booking-hero-section {
	height: auto;
	width: 100%;
	position: relative;
	background: url("../images/contact-hero.webp") no-repeat center center;
	/* padding: 60px 0; */
	z-index: 1;
}
.carpet-booking-hero-section-overlay {
	background-color: rgba(4, 36, 92, 0.9);
	/* #04245c with opacity */
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 2;
}
.carpet-booking-hero-content {
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.carpet-booking-hero-content-title {
	text-align: center;
	font-size: 45px;
	font-weight: bold;
}
.carpet-booking-hero-content p {
	text-align: center;
	font-size: 20px;
	color: white;
}
.carpet-booking-hero-content button {
	background-color: red;
	color: white;
	padding: 8px 30px;
	border-radius: 5px;
	font-weight: bold;
	text-decoration: none;
	transition: 0.3s;
	border: none;
}

/* Responsive  */
@media (max-width: 992px) {
	.carpet-booking-hero-section {
		height: auto;
		background-size: cover;
	}

	.carpet-booking-hero-content-title {
		font-size: 32px;
	}
	.carpet-booking-hero-content {
		padding: 30px 21px;
	}

	.carpet-booking-hero-content p {
		font-size: 18px;
		margin: 10px 0;
		text-align: center;
	}

	.carpet-booking-hero-content button {
		font-size: 16px;
		padding: 10px 25px;
	}
}

@media (max-width: 576px) {
	.carpet-booking-hero-content-title {
		font-size: 20px;
	}

	.carpet-booking-hero-content p {
		font-size: 16px;
	}

	.carpet-booking-hero-content button {
		width: 100%;
		max-width: 280px;
		padding: 10px;
	}
    .disinfection-form h1{
        font-size: 28px;
    }
    .balcony-form h1{
        font-size: 28px;
    }
     .carpet-form h1{
        font-size: 28px;
    }
}
/* Responsive  */
/* -----------------------------------------------------------------  */

/* form  */
.carpet-booking-form {
	width: 100%;
	max-width: 1100px;
	margin: auto;
}
.form-row {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	margin-bottom: 20px;
}
.form-row input,
.form-row textarea {
	flex: 1;
	padding: 12px;
	border-radius: 6px;
	border: none;
	width: 100%;
}
textarea {
	resize: vertical;
	min-height: 120px;
}
.form-row.toggles label {
	display: flex;
	align-items: center;
	gap: 6px;
	color: white;
	font-size: 14px;
	white-space: nowrap;
}
.submit-btn {
	background-color: #ff0201;
	color: white;
	padding: 10px 30px;
	border-radius: 6px;
	border: none;
	font-weight: bold;
	font-size: 16px;
	transition: 0.3s ease;
}
.submit-btn:hover {
	background-color: #c50101;
}
/* Medium mobile (max-width: 768px) */

@media (max-width: 768px) {
	.form-row {
		flex-direction: column;
	}
    .booking-form h2,
    .carpet-booking-hero-content-title {
        font-size: 22px;
    }
    .toggle-container {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
}
/* form  */

/* Dynamic Sofa Size Field Wrapper */
.border-box {
	border: 1px solid #ccc;
	border-radius: 10px;
	padding: 15px 20px;
	margin-bottom: 15px;
	background-color: #f9f9f9;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

/* Label inside each dynamic dropdown block */
.border-box label {
	font-weight: 600;
	color: #333;
	display: block;
	margin-bottom: 8px;
}

/* Dynamic select and input fields */
.border-box select,
.border-box input[type="text"] {
	width: 100%;
	padding: 10px 14px;
	border: 1px solid #ccc;
	border-radius: 8px;
	font-size: 15px;
	background-color: #fff;
	outline: none;
	transition: border 0.2s ease;
}

.border-box select:focus,
.border-box input[type="text"]:focus {
	border-color: #007bff;
}


/* Default large screen */
.booking-form h2,
.carpet-booking-hero-content-title {
    font-size: 28px;
    line-height: 1.3;
}

/* Tablet screen (max-width: 992px) */
@media (max-width: 992px) {
    .booking-form h2,
    .carpet-booking-hero-content-title {
        font-size: 26px;
    }
}


/* Small mobile (max-width: 576px) */
@media (max-width: 576px) {
    .booking-form h2,
    .carpet-booking-hero-content-title {
        font-size: 20px;
    }
}


/* Extra small devices (max-width: 480px) */
@media (max-width: 480px) {
    body {
        font-size: 14px; /* chhoti screen ke liye text chhota */
    }
.toggle-container {
    grid-template-columns: 1fr;
  }
    .booking-form,
    .carpet-booking-form {
        padding: 15px;
        max-width: 100%;
    }

    .booking-form h2,
    .carpet-booking-hero-content-title {
        font-size: 18px;
        line-height: 1.3;
    }

    .form-row {
        flex-direction: column;
        gap: 10px;
    }

    .form-group {
        width: 100% !important;
    }

    input,
    select,
    textarea {
        font-size: 13px;
        padding: 8px;
    }

    .submit-btn {
        width: 100%;
        padding: 10px;
        font-size: 14px;
    }

    .carpet-booking-hero-content p {
        font-size: 14px;
        padding: 0 10px;
    }

    .carpet-booking-hero-content button {
        width: 100%;
        max-width: 250px;
        font-size: 14px;
    }
}

/* Ultra small devices (max-width: 360px) */
@media (max-width: 360px) {
    .booking-form h2,
    .carpet-booking-hero-content-title {
        font-size: 16px;
    }

    .submit-btn {
        font-size: 13px;
        padding: 8px;
    }

    input,
    select,
    textarea {
        font-size: 12px;
        padding: 6px;
    }
}
