    /* Style for the menu */
    .menu {
        cursor: pointer;       
        display: flex;
        justify-content: center;
        gap: 20px;
        font-family: sans-serif;
        font-size: x-large;
        font-display: white;
        text-decoration: none;
        width: 100%; 
        position: fixed; 
        height: max-content;
        margin-top: 1%;
        z-index: 999;
    }
    
    .menu a {
        color: white;
    }
    .menu a:hover {
        background-color: yellow;
        color: blue;
    }

    .menu-content {
        display: flex;
        justify-content: center;
        position: absolute;
        min-width: 200px;
        padding: 12px 16px;
        z-index: 999;
    }

    .main_heading_text {
        font-size: 50px;
        font-family: 'Roboto';
        color: black;
        text-shadow: 2px 2px 4px #000000;        
        padding-top: 40px;
        padding-left: 40px;
    }
    .main_heading_subtext {
        font-size: 30px;
        font-family: 'Roboto';
        color: white;
        text-shadow: 2px 2px 4px #000000;        
    }
    /* Style for the body */
    .left-main-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: left;
        margin: 10px 10px;
        padding: 20px 20px;
        font-size: 24px;        
        font-family: Arial, sans-serif;
        background-color: white;
        color: black;        
        border-radius: 10px;
        width: 90%;
        opacity: .8;
    }
    .left-main-text ul {
        list-style-type: disc;
        padding-left: 40px;
    }
    .container {
        display: flex;
        height: 100vh;
        opacity: 1;
        list-style-type: disc;
        padding-left: 40px;
    }
    
    .left-pane {
        flex: 1;
        background-color: lightblue;
        opacity: 1;
        background-size: cover;
        background-position: center;
        background-image: url("/img/front-page.jpg");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;  
        top: 2300px             
    }
    
    .right-pane {
        flex: 0 0 25%;
        background-color: white;
        opacity: 1;
        align-content: center;
        background-size: cover;
        background-position: center;
        /* background-image: url("/img/dr_logo.jpg");  */
        background-repeat: no-repeat;
        background-size: auto;
        background-position: center;    
        margin-left: 10px;
        align-self: flex-start;
    }
    .main_heading {
        top: 0px;        
        height: 150px;
        padding-top: 10px;        
        margin-left: 10px;
        margin-top: 10px;
        margin-right: 10px;
        margin-bottom: 10px;
        font-size: 30px;
        font-family: 'Roboto';
        color: white;
        text-shadow: 2px 2px 4px #000000;
        background-color: #d1ad17; 
        border-radius: 10px;
        align-items: center; /* Add this line */
    }

.nav {
    width: 100%;
    border-radius: 10px;
    color: white;
    text-align: center;
    font-size: 12px;
    font-family: Arial, Helvetica, sans-serif;
    margin-left: 10px;
    margin-top: 10px;
    margin-right: 10px;
    margin-bottom: 10px;
}

.main_logo {
    float: left;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    margin-left: 10px;
    margin-right: 10px;
    left: 10px;
    height: 140px;
    border-radius: 10px;
    cursor: pointer;
    }

    .main_logo a {
        display: block;
        width: 100%;
        height: 100%;
        text-decoration: none;
        color: inherit;
    }

ul {
    cursor: pointer;       
    display: flex;
    justify-content: center;
    gap: 20px;
    font-family: sans-serif;
    font-size: x-large;
    font-display: white;
    width: 100%; 
    height: fit-content;
    margin-top: 1%;
    z-index: 999;
    border-radius: 5px;
}

li {
    display: inline-block;
    position: relative;
    border-radius: 5px;
}

a {
    text-decoration: none; /* Add this line to remove the underline for hyperlinks */
}

li:hover {
    background-color: rgb(228, 177, 100);
    box-shadow: 1px 1px 1px 1px #888888;    
    border: 1px solid black; /* Add this line to create a visible box border */    
}

li:hover ul {
    display: block; 
}

ul ul {
    display: none;
    position: absolute;      
}

ul ul li {
    font-size: large;
    width: fit-content;
    white-space: nowrap;
    display: inline-block;
    padding: 10px 5px;
    background-color: lightblue; 
    min-width: 200px;
    box-shadow: 1px 1px 1px 1px #888888;    
    text-decoration: none;
}
ul ul li:hover {
    background-color: rgb(228, 177, 100);
    color: darkblue;
}
.right-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 100px;
    margin-bottom: 100px;
    font-size: 30px;
    font-family: Arial, sans-serif;     
}

.qr_code {
    align-items: center;
    width: 150px;
    position: fixed;
    bottom: 10px;
}
  

/* Style for the footer */
.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #d1ad17;
    color: white;
    text-align: center;
    font-size: 12px;
    font-family: Arial, Helvetica, sans-serif;
    opacity: .5;
}

.google_logo {
    width: 200px;
}
.carousel__slide {
    position: absolute;
    opacity: 0.5;
    transition: all 0.5s ease;
}
.carousel__slide.current-slide {
    opacity: 1;
    z-index: 1;
}
.carousel__button {
    position: absolute;
    top: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    cursor: pointer;
    padding: 10px;
    font-size: 2em;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.carousel__button--left {
    left: 10px;
}

.carousel__button--right {
    right: 10px;
}

.carousel__image {
    width: 500px;
}
.carousel__track {
    position: relative;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal__content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #000; /* This adds the frame */
    padding: 10px; /* This adds some space between the image and the frame */
}


.modal__close-button {
    position: absolute;
    top: -10px; /* This positions the button at the top right corner of the frame */
    right: -10px;
    background-color: #fff; /* This makes the button background white */
    border: 2px solid #000; /* This adds a border to the button */
    border-radius: 50%; /* This makes the button circular */
    font-size: 1.5em;
    cursor: pointer;
}
#modal__image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
@keyframes zoomIn {
    0% {
        transform: scale(0.1);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: scale(1);
    }
}

.left-main-text {
    animation: zoomIn 1s ease-out;
}
.homeurl {
    -webkit-tap-highlight-color: transparent;
    -webkit-text-size-adjust: 100%;
    --wp-admin-theme-color: #007cba;
    --wp-admin-theme-color-darker-10: #006ba1;
    --wp-admin-theme-color-darker-20: #005a87;
    font-family: 'Source Sans Pro', Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.428571429;
    word-wrap: break-word;
    hyphens: auto;
    text-align: left;
    box-sizing: border-box;
    background: 0 0;    
    color: #0a2b48;
    text-decoration: none;
    transition: all .3s ease-out;  
}

.website-address home_icn lklkl {
    -webkit-tap-highlight-color: transparent;
    -webkit-text-size-adjust: 100%;
    --wp-admin-theme-color: #007cba;
    --wp-admin-theme-color-darker-10: #006ba1;
    --wp-admin-theme-color-darker-20: #005a87;
    line-height: 1.428571429;
    word-wrap: break-word;
    hyphens: auto;
    text-align: left;
    box-sizing: border-box;
    color: #4e4e4e!important;
    font-family: Roboto-Regular;
    font-size: 16px;
    text-shadow: none!important;
    font-weight: 100;
    float: left;
    margin-left: 35px;
    position: relative;
}

.website-address-container general {
-webkit-tap-highlight-color: transparent;
-webkit-text-size-adjust: 100%;
--wp-admin-theme-color: #007cba;
--wp-admin-theme-color-darker-10: #006ba1;
--wp-admin-theme-color-darker-20: #005a87;
font-family: 'Source Sans Pro', Helvetica, sans-serif;
font-size: 16px;
line-height: 1.428571429;
word-wrap: break-word;
hyphens: auto;
text-align: left;
color: #535353;
box-sizing: border-box;
float: left;
width: 100%;
margin: 5px 0;
}

.website-address wsite_icn aa {
    -webkit-tap-highlight-color: transparent;
    -webkit-text-size-adjust: 100%;
    --wp-admin-theme-color: #007cba;
    --wp-admin-theme-color-darker-10: #006ba1;
    --wp-admin-theme-color-darker-20: #005a87;
    font-family: 'Source Sans Pro', Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.428571429;
    word-wrap: break-word;
    hyphens: auto;
    text-align: left;
    color: #535353;
    box-sizing: border-box;
    float: left;
    margin-left: 35px;
    position: relative;
}

.business-hours-title{
    -webkit-tap-highlight-color: transparent;
    -webkit-text-size-adjust: 100%;
    --wp-admin-theme-color: #007cba;
    --wp-admin-theme-color-darker-10: #006ba1;
    --wp-admin-theme-color-darker-20: #005a87;
    font-family: 'Source Sans Pro', Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.428571429;
    word-wrap: break-word;
    hyphens: auto;
    text-align: left;
    color: #535353;
    box-sizing: border-box;
    float: left;
    margin-left: 35px;
    position: relative;
}

.website-address {
    -webkit-tap-highlight-color: transparent;
    -webkit-text-size-adjust: 100%;
    --wp-admin-theme-color: #007cba;
    --wp-admin-theme-color-darker-10: #006ba1;
    --wp-admin-theme-color-darker-20: #005a87;
    font-family: 'Source Sans Pro', Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.428571429;
    word-wrap: break-word;
    hyphens: auto;
    text-align: left;
    color: #535353;
    box-sizing: border-box;
    float: left;
    margin-left: 35px;
    position: relative;
}
.contact_point {
    -webkit-tap-highlight-color: transparent;
    -webkit-text-size-adjust: 100%;
    --wp-admin-theme-color: #007cba;
    --wp-admin-theme-color-darker-10: #006ba1;
    --wp-admin-theme-color-darker-20: #005a87;
    font-family: 'Source Sans Pro', Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.428571429;
    word-wrap: break-word;
    hyphens: auto;
    text-align: left;
    color: #535353;
    box-sizing: border-box;
}
.carousel-nav {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 1;
  }
  .prev-btn, .next-btn {
    background-color: #333;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
  }
  
  .prev-btn:hover, .next-btn:hover {
    background-color: #444;
  }

  .carousel-container {
    position: relative;
    overflow-x: auto; /* Add horizontal scrolling */
  }
  
  .carousel__image {
    display: inline-block; /* Make images inline-block elements */
    width: 150px; /* Set initial image width to 150px */
    opacity: 0.5; /* Start with low opacity for all images */
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out; /* Add transitions for opacity and scale */
  }
  
  .carousel__image.active {
    opacity: 1; /* Set active image to full opacity */
    transform: scale(1.2); /* Scale the active image to 120% of its original size */
  }
  