


     select {
    -webkit-appearance: auto !important;
    appearance: auto !important;
     }
     
      div#slide1 {
    padding: 20px;
}
div#slide2 {
    padding: 20px;
}
       
    .form-slider {
        display: flex;
        width: 100%; /* Double the width to fit both slides */
        transition: transform 0.5s ease-in-out;
    }

    .form-slide {
        width: 100%; /* Each slide takes 50% of the width */
        flex-shrink: 0;
    }

    .contact-form-container {
        overflow: hidden; /* Hide content outside the container during transition */
    }

   .preview-button {
    background-color: #fff !important;
    color: #000 !important;
    border: solid #eee 1px !important;
    margin-top: 0px !important;
    padding: 0px 25px !important;
    cursor: pointer;
    font-size: 14px !important;
    text-transform: unset !important;
}

    .preview-button:hover {
        background-color: #11194D !important;
        color: #fff !important;
    }
       
        
        .country-checkbox-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr); /* 3 columns for larger screens */
            gap: 10px;
        }

        /* For smaller devices (tablets and phones) */
        @media (max-width: 768px) {
            .country-checkbox-container {
                grid-template-columns: repeat(2, 1fr); /* 2 columns for tablets and phones */
            }
        }

        /* Styling the checkbox container */
        .country-checkbox-container input {
            margin-right: 5px;
        }

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
    .success {
        font-size: 14px;
        color: green;
        margin-top: 5px;
    }
    .error {
        font-size: 14px;
        color: red;
        margin-top: 5px;
    }
    
h3 {
  padding-bottom: 15px;
}

img {
  width: 100%;
  margin: 0 auto;
  display: block;
  padding-bottom: 25px;
}


.contact-form-container {
  width: 100%; 
  max-width:600px;
  margin: 0 auto;
  border-radius: 10px;
  transition: transform 0.4s ease-in-out;
}



.heading {
  font-size: 26px;
  text-align: center;
  margin-bottom: 25px;
  color: #333;
  text-transform: uppercase;
}

.form-group {
  position: relative;
  margin-bottom: 15px;
}

.package-option {
    display: grid;
    grid-template-columns: 1fr 2fr 4fr; /* Default for larger screens */
    align-items: center;
    margin-bottom: 10px;
}

.form-control {
    width: 100%;
    padding: 10px !important;
    border: 1px solid #ccc !important;
    border-radius: 8px !important;
    background: #fff;
    font-size: 14px;
    transition: all 0.3s ease-in-out;
}

.form-control:focus {
  border-color: #3498db;
  box-shadow: 0 0 10px rgba(52, 152, 219, 0.2);
}

.form-control:hover {
  border-color: #2980b9;
}

.form-group label {
    position: absolute;
    top: 8px;
    left: 12px;
    background-color: #fff;
    padding: 0 5px;
    color: #999;
    font-weight: 400;
    transition: 0.3s ease-in-out;
    pointer-events: none;
}



.btn-submit {
  width: 100%;
  padding: 5px !important;
  border: none;
  border-radius: 8px !important;
  background-color: #11194d !important;
  color: white;
  font-size: 18px !important;
  cursor: pointer;
  margin: 15px 0px 0px !important;
  transition: background-color 0.3s, transform 0.3s;
}

.btn-submit:hover {
  background-color: #ff9100 !important;
  transform: translateY(-5px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}

.error-message, .success-message {
  text-align: center;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .contact-form-container {
    width: 100%; /* Full width */
    max-width: none; /* Remove max-width constraint for mobile */
    margin: 0; /* Remove margin for mobile */
    border-radius: 0; /* Remove border radius to fill the screen */
  }
  .form-group label {
  position: absolute;
  top: 18px;
  }
  .form-group {
    margin-bottom: 15px; /* Maintain a small margin */
  }
  
  .form-control {
    font-size: 14px; /* Adjust font size for mobile */
    padding: 16px; /* Increase padding for better touch area */
  }
  
  .btn-submit {
    font-size: 16px;
  }
  .package-option {
        grid-template-columns: 2fr 2fr 3fr; /* Adjusted for mobile devices */
    }
}

input[type="radio"] {
    float: right !important;
    margin-right: 20px;
}
.text-bold {
  font-weight: 600;
  font-size: 16px;
}

.text-center {
  font-weight: 700;
  font-size: 16px;
  text-align: center;
}



input[type="checkbox"] {
    margin-left: 10px;
}

#timeSlotContainer {
    margin-top: 20px;
}

.time-slot-header {
    padding-left: 10px;
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 20px;
}

.time-slot-list {
    display: flex;
    justify-content: left;
    gap: 10px;
    flex-wrap: wrap;
}

.time-slot-box {
    padding: 5px 10px;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s ease;
}

.time-slot-box:hover {
    background-color: #e0e0e0;
}

/* Time Slot Styles */
.time-slot-container {
  display: none;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 20px;
}


.time-slot-box:hover,
.time-slot-box.active {
  background-color: #FF9100;
  color: white;
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(0, 123, 255, 0.5);
}

/* Thank You Message and Table */


.thank-you-details h4 {
    color: #12194e;
    font-size: 28px;
    text-align: center;
    margin-bottom: 20px;
}

/* Table styling */
.thank-you-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.thank-you-table td {
    padding: 12px;
    border: 1px solid #ccc;
    text-align: left;
    font-size: 16px;
    color: #333;
}

.thank-you-table td:first-child {
    font-weight: bold;
    width: 30%;
}

.thank-you-table td:last-child {
    font-weight: normal;
    color: #4caf50; /* You can adjust color for values */
}

/* Responsive Design for Table */
@media (max-width: 768px) {
    .thank-you-table td {
        font-size: 14px;
        padding: 8px;
    }

    .thank-you-details h4 {
        font-size: 24px;
    }
}

