   .grechen-fuemen-regular {
       font-family: "Grechen Fuemen", serif;
       font-weight: bolder;
       font-size: 24px;
       font-style: normal;
   }

   .merienda-title {
       font-family: "Merienda", serif;
       font-optical-sizing: auto;
       font-weight: bold;
       font-style: normal;
       font-size: 48px;
   }

   html {
       scroll-padding-top: 130px;
       /* Adjust this based on your top bar height */
       overflow-x: hidden;
   }

   h2 {
       font-family: "Gloria Hallelujah", serif;
       font-weight: bolder;
       font-style: normal;
       font-size: 3em;
   }

   body {
       font-family: 'Open Sans', sans-serif;
       margin: 0;
       padding: 0;
       background-color: #ffffff;
       color: #333;
       text-align: center;
   }

   .top-bar {
       background: #004080;
       color: #fff;
       text-align: center;
       padding: 15px 0;
       font-weight: bold;
       position: fixed;
       width: 100%;
       top: 0;
       left: 0;
       z-index: 1100;
       display: flex;
       justify-content: center;
       align-items: center;
   }

   .logo {
       width: 365px;
       height: 365px;
       border-radius: 80%;
       /* Ensures the div is circular */
       background: url('../images/logo3.png') no-repeat center center/cover;
       display: flex;
       justify-content: left;
       align-items: left;
       overflow: hidden;
       position: relative;
       margin: 0 auto;
       right: 35%;
       bottom: 39px;
       min-width: 365px;
   }

   .logo img {
       position: relative;
       right: 7px;
       bottom: 17px;
       zoom: 150%;
   }

   .top-bar-content {
       width: 98%;
       display: flex;
       align-items: center;
       gap: 10px;
       margin: 0 auto;
   }

   .top-bar span {
       font-size: 18px;
   }

   .header_class {
       width: 100%;
       text-align: right;
       align-content: right;
   }

   .top-bar button {
       background: grey;
       color: #000;
       border: none;
       padding: 12px 25px;
       font-size: 16px;
       font-weight: bold;
       cursor: pointer;
       border-radius: 5px;
   }

   nav {
       background: #000;
       color: #fff;
       padding: 15px 20px;
       display: flex;
       justify-content: center;
       align-items: center;
       position: relative;
       width: 100%;
       top: 65px;
       left: 0;
       z-index: 1000;
   }

   .nav-logo {
       height: 50px;
       margin-right: 20px;
   }


   nav ul {
       list-style: none;
       margin: 0;
       padding: 0;
       display: flex;
   }

   nav ul li {
       margin: 0 20px;
   }

   nav ul li a {
       color: #fff;
       text-decoration: none;
       font-size: 18px;
       font-weight: bold;
   }

   .menu-toggle {
       display: none;
       font-size: 24px;
       background: none;
       border: none;
       color: #fff;
       cursor: pointer;
       padding: 10px;
   }

   .service-list {
       display: flex;
       flex-direction: column;
       align-items: center;
       padding: 40px;
       text-align: center;
   }

   .service {
       border-radius: 80px;
       display: flex;
       max-height: 600px;
       flex-direction: row;
       align-items: center;
       justify-content: space-between;
       background: #f9f9f9;
       width: 90%;
       /* max-width: 800px;*/
       margin-bottom: 20px;
       text-align: left;
       overflow: hidden;
   }

   .service.reverse {
       flex-direction: row-reverse;
   }

   .service img {
       border-radius: 250px;
       max-width: 530px;
       width: 50%;
       height: 100%;
       object-fit: cover;
       margin: 0;
       padding: 0;
   }

   .service p {
       font-size: 18px;
       font-weight: bold;
       width: 50%;
       margin: 0;
       padding: 20px;
       text-align: center;

   }


   .hero {
       position: relative;
       top: -25px;
       width: 106%;
       height: 500px;
       background: url('../images/cleaning-services-bg.jpg') no-repeat center center/cover;
       display: flex;
       justify-content: center;
       align-items: center;
       margin-top: 90px;
   }

   .hero .overlay {
       position: absolute;
       background: rgba(255, 255, 255, 0.8);
       padding: 20px 40px;
       max-width: 50%;
       bottom: 20px;
       right: 5%;
       /* Adjusted from 20px to 5% for responsiveness */
       text-align: center;
   }

   #contact-form {
       display: flex;
       flex-direction: column;
       align-items: center;
       max-width: 500px;
       margin: auto;
   }

   #contact-form input,
   #contact-form textarea,
   #contact-form button {
       width: 100%;
       max-width: 350px;
       margin-bottom: 10px;
       padding: 10px;
       font-size: 16px;
   }

   #contact-form textarea {
       resize: none;
   }

   #contact-form button {
       background: grey;
       font-weight: bolder;
       color: #000;
       border: none;
       cursor: pointer;
   }


   /* Gallery Styling */
   #gallery {
       padding: 40px;
       background: #f9f9f9;
       text-align: center;
   }

   .gallery-container {
       overflow: hidden;
       width: 100%;
       /*max-width: 1000px;*/
       margin: auto;
       position: relative;
   }

   .gallery-track {
       display: flex;
       gap: 10px;
       width: calc(200px * 10);
       animation: scrollGallery 30s linear infinite;
   }

   .gallery-track img {
       width: 200px;
       height: 150px;
       object-fit: cover;
       border-radius: 5px;
   }

   @keyframes scrollGallery {
       0% {
           transform: translateX(0);
       }

       100% {
           transform: translateX(-100%);
       }
   }


   /*Modal css */

   .modal {
       display: none;
       overflow-y: scroll;
       position: fixed;
       z-index: 1000;
       left: 0;
       top: 0;
       width: 100%;
       height: 100%;
       background-color: rgba(0, 0, 0, 0.6);
   }

   .modal-content {
       background: #fff;
       padding: 20px;
       max-width: 500px;
       margin: 50px auto;
       border-radius: 10px;
       top: 15%;

       position: relative;
   }

   .close {
       position: absolute;
       top: 10px;
       right: 15px;
       font-size: 24px;
       cursor: pointer;
   }

   /*Grid Display*/

   .extras {
       display: grid;
       grid-template-columns: repeat(3, 1fr);
       gap: 10px;
       width: 100%;
       max-width: 500px;
       margin: auto;
   }

   .extra-btn {
       display: flex;
       align-items: center;
       justify-content: center;
       width: 100px;
       /* Fixed square size */
       height: 100px;
       /* Fixed square size */
       font-size: 14px;
       text-align: center;
       border: 1px solid #ccc;
       border-radius: 5px;
       cursor: pointer;
       background: #f0f0f0;
       user-select: none;
       transition: background 0.3s, transform 0.2s;
   }

   /*End Grid Display*/

   .extras .extra-btn {
       background: #f0f0f0;
       padding: 10px;
       margin: 5px;
       cursor: pointer;
       border: 1px solid #ccc;
       border-radius: 5px;
   }

   .extras .extra-btn.selected {
       background-color: grey;
       color: white;
   }

   /*End Modal CSS */

   /*css for booking form */
   .booking {
       display: flex;
       flex-direction: column;
       align-items: center;
       padding: 10px;
       box-sizing: border-box;
   }

   .booking label {
       font-size: 16px;
       margin: 8px 0 4px;
       text-align: left;
       width: 100%;
       max-width: 400px;
   }

   .booking input[type="tel"],
   .booking input[type="email"],
   .booking input[type="text"],
   .booking input[type="number"],
   .booking .extras select,
   .booking select,
   .booking input[type="submit"],
   #close_response {
       width: 100%;
       max-width: 500px;
       padding: 10px;
       margin-bottom: 10px;
       font-size: 16px;
       box-sizing: border-box;
   }

   .booking input[type="submit"],
   #close_response {
       background: #004080;
       font-weight: bolder;
       color: #fff;
       border: none;
       cursor: pointer;
   }

   .booking .extras {
       display: flex;
       flex-wrap: wrap;
       justify-content: center;
       gap: 8px;
       /*max-width: 400px;*/
       width: 100%;
   }

   .booking .extra-btn {
       padding: 10px;
       font-size: 14px;
       border: 1px solid #ccc;
       border-radius: 5px;
       cursor: pointer;
   }

   .booking .extra-btn.selected {
       background-color: grey;
       color: white;
       border-color: grey;
   }

   /* Responsive tweaks */
   @media (max-width: 480px) {

       .booking label,
       .booking input,
       .booking select,
       .booking .extras {
           max-width: 100%;
       }

       .booking .extra-btn {
           flex: 1 1 100%;
       }
   }

   /*end css for booking form */

   /*Calendar container */
   #calendar-container {
       display: none;
       text-align: center;
       margin: 10px 0;
   }

   #calendar-header {
       display: flex;
       justify-content: space-between;
       align-items: center;
       font-size: 18px;
       margin-bottom: 10px;
   }

   .sub_title {
       font-size: 36px;
       font-weight: normal;
   }

   #calendar {
       display: grid;
       grid-template-columns: repeat(7, 1fr);
       gap: 5px;
   }

   .calendar-day {
       padding: 10px;
       cursor: pointer;
       border: 1px solid #ccc;
       text-align: center;
       border-radius: 5px;
   }

   .calendar-day.disabled {
       background: #ddd;
       cursor: not-allowed;
   }

   #availableTimes {
       display: flex;
       flex-wrap: wrap;
       gap: 5px;
       justify-content: center;
   }

   .time-slot {
       padding: 10px;
       border: 1px solid #ccc;
       cursor: pointer;
       border-radius: 5px;
   }

   .time-slot.disabled {
       background: #ddd;
       cursor: not-allowed;
   }

   /*End Calendar Container */

   /*Start Calendar SElect*/
   .selectDateTime {
       display: inline-block;
       border: 2px solid #ccc;
       padding: 8px;
       border-radius: 5px;
       font-size: 16px;
       background-color: white;
       position: relative;
       cursor: text;
       min-width: 250px;
       white-space: nowrap;
       background: #004080;
   }

   #scheduler_input {
       cursor: pointer;
       margin-bottom: 15px;
   }

   #selectDateTime-content {
       display: inline-block;
       outline: none;
       border: none;
       font-size: 16px;
       color: #fff;
       background: transparent;
       min-width: 1px;
       white-space: nowrap;
       font-weight: bold;
   }

   #selectDateTime-content::before {
       color: grey;

   }

   #selectDateTime-content::after {
       content: none;
       color: black;
   }

   /*End Calendar SEelect*/
   /*start Calendar Selected color */
   /* Selected Date */
   .calendar-day.selected {
       background-color: #007bff !important;
       /* Blue */
       color: white;
   }

   /* Hover Effect for Dates */
   .calendar-day:not(.disabled):hover {
       background-color: #5ca4ff;
       /* Light Blue */
       cursor: pointer;
   }

   /* Selected Time Slot */
   .time-slot.selected {
       background-color: #007bff !important;
       /* Blue */
       color: white;
       font-weight: bold;
   }

   /* Hover Effect for Time Slots */
   .time-slot:not(.disabled):hover {
       background-color: #5ca4ff;
       /* Light Blue */
       cursor: pointer;
   }

   /*end calendar selected color*/

   /*Media Screen */

   @media screen and (max-width: 768px) {

       .hero .overlay .sub_title {
           font-size: 12px;
           font-weight: normal;

       }

       .merienda-title {
           font-size: 24px;

       }

       .hero .overlay h1 {
           font-size: 22px;
           line: height 1em;
           margin: 5px 0;

       }

       .hero .overlay {
           position: absolute !important;
           bottom: 0 !important;
           padding: 10px 15px !important;
           max-width: 70% !important;
           width: 70% !important;
           right: 5% !important;
       }

       .top-bar-content {

           width: 85%;

       }

       .logo {
           width: 250px;
           height: 250px;
           min-width: 150px;
           border-radius: 250%;
           /* Ensures the div is circular */
           background: url('../images/logo3.png') no-repeat center center/cover;
           padding: 0px;
           right: 20%;
           bottom: 70px;
       }

       .modal {
           overflow-y: scroll;
       }

       .service,
       .service.reverse {
           flex-direction: column;

       }

       .service {
           width: 100%;
           border-radius: 20px;
       }

       .service p {
           width: 100%;
       }

       .service img {
           width: 100%;
       }

       nav {
           flex-direction: column;
           align-items: flex-start;
           padding: 10px;
       }

       .nav-logo {
           margin-bottom: 10px;
       }

       .menu-toggle {
           display: block;
       }

       nav ul {
           display: none;
           flex-direction: column;
           width: 100%;
           background: #000;
           position: absolute;
           top: 50px;
           left: 0;
           padding: 10px;
       }

       nav ul.active {
           display: flex;
       }

       nav ul li {
           margin: 10px 0;
           text-align: center;
       }
   }

   /*End media Screen*/
   .error_border {
       border: 2px solid red !important;
       background-color: #ffecec;
   }

   .error_border:focus {
       border: 2px solid red !important;
       box-shadow: 0 0 5px rgba(255, 0, 0, 0.5);
   }