  /* General Styles */
  body {
    font-family: "Lato", sans-serif;
    margin: 0;
    padding: 0;
    background-color: #121111;
    color: #ffffff;
}
.container {
   
    margin: 20px auto;
    padding: 20px;
    background-color: #605d5d;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
h1 {
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
}
.consultation-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    background-color: #121010;
}
.consultation-card img,
.consultation-card .icon {
    font-size: 40px;
    color: #d4a556;
    margin-right: 15px;
}
.consultation-info {
    flex: 1;
}
.consultation-info h2 {
    font-size: 18px;
    margin: 0 0 5px;
    color: #ffffff;
}
.consultation-info p {
    margin: 0;
    color: #ffffff;
}
.consultation-info small {
    color:#ffffff;
    display: block;
    margin-top: 8px;
}
.book-button {
    background-color: #d4a556;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.book-button:hover {
    background-color: #b08a3d;
}
.design-display {
    margin-top: 15px;
    text-align: center;
}
.design-display img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
/* Modal Styling */
.modal {
    display: none;
    position: fixed;
   
 
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    padding: 300px;
    align-items: center;
    justify-content: center;
    

}

.modal-content {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    width: 100%;
    max-width: 900px;
    overflow: hidden;
    position: relative;
    color: #333;
    padding: 30px;
}

.close-button {
    cursor: pointer;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 15px;
    color: #aaa;
    transition: color 0.3s;
}

.close-button:hover {
    color: #000;
}

/* Layout */
.row {
    display: flex;
    width: 100%;
}



/* Image Section */
.image-section {
    background-color: #f3f3f3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar {
    width: 400px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background-color: #f3f3f3;
    font-weight: bold;
}

.calendar-header span {
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 5px;
}

.calendar-header span:hover {
    background-color: #ddd;
}

.days-of-week {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background-color: #f5f5f5;
    font-size: 12px;
    padding: 5px 0;
}

.day {
    font-weight: bold;
    text-transform: uppercase;
    color: #555;
}

.dates {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    padding: 10px;
    gap: 5px;
}

.date {
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    cursor: pointer;
    border-radius: 50%;
    transition: 0.2s;
}

.date:hover {
    background-color: #ddd;
}

.date.selected {
    background-color: #c69766;
    color: #fff;
    font-weight: bold;
}

.date.disabled {
    color: #ccc;
    pointer-events: none;
    cursor: default;
}

/* Form Section */
.form-section {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.timings {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.timing {
    padding: 8px 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.timing:hover {
    background-color: #c69766;
    color: white;
}

.selected-time-item {
    margin-top: 5px;
    padding: 5px;
    background: #f2f2f2;
    border: 1px solid #ccc;
}

#submit-button {
    background-color: #28a745;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 20px;
}

#submit-button:hover {
    background-color: #218838;
}
.toggle-options {
    display: none;
    position: absolute;
    background-color: #5d5b5b;
    border: 1px solid #ccc;
    padding: 10px;
    z-index: 1000;
    cursor: pointer;
}

.toggle-options:hover {
   
    background-color: #6a6363;
   
}

.toggle-options div {
    padding: 5px 0;
    cursor: pointer;
}
#newsec
{
background:linear-gradient(#343232,rgba(20, 20, 18, 0.8)); 
height: 250px;

}

#newsec h2 span
{
font-family: "milky";
}


#newsec h2
{
padding: 89px;
font-size:60px;
font-family:"Script MT Bold";
}
/* Responsive Styles */

/* General Responsiveness for Container */
@media (max-width: 1199px) {
    .container {
        padding: 15px;
        margin: 15px auto;
    }
    h1 {
        font-size: 24px;
    }
}

@media (max-width: 991px) {
    .container {
        padding: 10px;
    }
    h1 {
        font-size: 22px;
    }
}

@media (max-width: 767px) {
    .container {
        padding: 8px;
    }
    h1 {
        font-size: 20px;
    }
}

/* Consultation Card Responsiveness */
@media (max-width: 991px) {
    .consultation-card {
        flex-direction: column;
        align-items: flex-start;
    }
    .consultation-card img,
    .consultation-card .icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
    .book-button {
        width: 100%;
        text-align: center;
    }
}

/* Modal Responsiveness */
@media (max-width: 1199px) {
    .modal {
        padding: 50px;
    }
   
}

@media (max-width: 991px) {
    .modal {
        padding: 30px;
    }
    
}

@media (max-width: 767px) {
    .modal {
        padding: 20px;
    }
  
}

/* Calendar Responsiveness */
@media (max-width: 767px) {
    .calendar {
        width: 100%;
    }
    .days-of-week {
        grid-template-columns: repeat(7, 1fr);
        font-size: 10px;
    }
    .dates {
        gap: 3px;
    }
    .date {
        height: 30px;
        font-size: 12px;
    }
}

/* Form Section Responsiveness */
@media (max-width: 991px) {
    .form-section {
        padding: 10px;
    }
    .timings {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .timings {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* New Section Responsiveness */
@media (max-width: 1199px) {
    #newsec {
        height: 250px;
        padding: 20px;
    }
    #newsec h2 {
        font-size: 50px;
        padding: 40px;
    }
}

@media (max-width: 991px) {
    #newsec {
        height: 200px;
    }
    #newsec h2 {
        font-size: 40px;
        padding: 30px;
    }
}

@media (max-width: 767px) {
    #newsec {
        height: 150px;
        padding: 20px;
    }
    #newsec h2 {
        font-size: 30px;
    }
}

@media (max-width: 414px) {
    #newsec {
        height: 100px;
        padding: 10px;
    }
    #newsec h2 {
        font-size: 25px;
        padding: 10px;
    }
}

