/* Reset margin and padding for all elements */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* Ensure padding and borders are included in the element's total width/height */
}

html, body {
    height: 100%;
}

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url('images/background.png') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}
.hero .main-container{
    background: rgba(0, 0, 0, 0.6);
    padding: 20px 40px;
    border-radius: 10px;
    height: 80vh;
    .main-content {
        overflow-y: auto;
        height: calc(100% - 80px)
    }
     .logo {
        max-width: 300px;
        height: auto;
        margin-bottom: 20px;
    }

}
.tangerine-regular {
    font-family: "Tangerine", cursive;
    font-weight: 400;
    font-style: normal;
  }

  .tangerine-bold {
    font-family: "Tangerine", cursive;
    font-weight: 700;
    font-style: normal;
  }



.hero h1 {
    font-size: 3rem;
    margin: 0 0 10px;
    &.quote {
        font-family:"Tangerine", cursive;
        margin-block-end:100px;
        .first{
            display: block;
            text-align: left;
        }

    }
}

.hero p {
    font-size: 1.5rem;
    margin: 0 0 20px;
}
mr-provider{
    .container{
        display: grid;
        grid-template-columns: 200px minmax(400px, 800px);
        background-color: #333;
        padding: 7px;
        border-radius: 8px;
        width: 615px;
        img{
            object-fit: contain;height: 200px;width:127px;
        }
        .holder{
            .name{
                text-align: left;
                font-size: 20px;

            }
            .details{
                font-size: 16px;
                color:#bbb;
            }
        }


    }
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1.2rem;
    color: #fff;
    background: #6a1b9a;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #9c27b0;
}
/* Custom Scrollbars */
::-webkit-scrollbar {
    width: 12px; /* Set the width of the scrollbar */
    height: 12px; /* Set the height of the horizontal scrollbar */
}

::-webkit-scrollbar-track {
    background: #2e2e2e; /* Dark background to match the dark theme */
    border-radius: 10px; /* Rounded corners for the track */
}

::-webkit-scrollbar-thumb {
    background-color: #6a1b9a; /* Purple color for the thumb */
    border-radius: 10px; /* Rounded corners for the thumb */
    border: 3px solid #2e2e2e; /* Add a border to make the thumb stand out */
}

::-webkit-scrollbar-thumb:hover {
    background-color: #9c27b0; /* Darker purple on hover */
}

::-webkit-scrollbar-button {
    background: transparent; /* Makes scrollbar buttons invisible */
}
/* Navigation Bar */
.navbar {

    position: absolute;
    top: 0px;
    left: calc(50% - 160px);
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.navbar ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    gap: 20px;
}

.navbar li {
    display: inline-block;
}

.navbar a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    text-decoration: none;
    border-radius: 50%;
    background: radial-gradient(circle, #2a2a2a, #1a1a1a); /* Dark gray/black with subtle depth */
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5), 0 4px 6px rgba(0, 0, 0, 0.6); /* Simulates bamboo grooves */
    color: #d3d3d3; /* Light gray for icon contrast */
    font-size: 24px;
    transition: transform 0.2s, background 0.3s, box-shadow 0.3s;
    position: relative;
}

/* Add subtle purple hints */
.navbar a::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(128, 0, 128, 0.1), rgba(128, 0, 128, 0)); /* Subtle purple glow */
    opacity: 0;
    transition: opacity 0.3s;
}

.navbar a:hover::after {
    opacity: 1; /* Enhance purple glow on hover */
}

/* Hover effect */
.navbar a:hover {
    transform: scale(1.1); /* Slightly enlarge the button */
    background: radial-gradient(circle, #3a3a3a, #2a2a2a); /* Slightly lighter gray for hover */
    box-shadow: inset 0 4px 6px rgba(0, 0, 0, 0.7), 0 6px 8px rgba(0, 0, 0, 0.7); /* Emphasize grooves */
}

/* Focus effect */
.navbar a:focus {
    outline: 2px solid #800080; /* Purple focus ring */
    outline-offset: 2px;
}

/* Active effect */
.navbar a:active {
    transform: scale(0.95); /* Slight press effect */
    box-shadow: inset 0 6px 8px rgba(0, 0, 0, 0.8), 0 3px 4px rgba(0, 0, 0, 0.5);
}

/* Style for telephone links */
a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding:5px;
    background: radial-gradient(circle, #2a2a2a, #1a1a1a); /* Dark gray/black gradient */
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5), 0 4px 6px rgba(0, 0, 0, 0.6); /* Bamboo grooves */
    color: #d3d3d3; /* Light gray for text/icon contrast */
    font-size: 20px;
    transition: transform 0.2s, background 0.3s, box-shadow 0.3s;
    position: relative;
    margin: 10px; /* Add spacing around the button */
}

/* Add subtle purple hints */
a::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(128, 0, 128, 0.1), rgba(128, 0, 128, 0)); /* Subtle purple glow */
    opacity: 0;
    transition: opacity 0.3s;
}

a:hover::after {
    opacity: 1; /* Enhance purple glow on hover */
}

/* Hover effect */
a:hover {
    transform: scale(1.1); /* Slightly enlarge the button */
    background: radial-gradient(circle, #3a3a3a, #2a2a2a); /* Slightly lighter gray on hover */
    box-shadow: inset 0 4px 6px rgba(0, 0, 0, 0.7), 0 6px 8px rgba(0, 0, 0, 0.7); /* Deeper shadow */
}

/* Focus effect */
a:focus {
    outline: 2px solid #800080; /* Purple focus ring */
    outline-offset: 2px;
}

/* Active effect */
a:active {
    transform: scale(0.95); /* Pressed effect */
    box-shadow: inset 0 6px 8px rgba(0, 0, 0, 0.8), 0 3px 4px rgba(0, 0, 0, 0.5);
}
.contact-container{
    display: grid;
    grid-template-columns: 300px 600px;
    .contact{
        display: grid;
        grid-template-columns: 100px auto;
        span{
            align-content: center;
            font-size: xx-large;
        }
    }

}
.googlemaplink{
    display: none;
}
@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr; /* Stack columns */
    }
}


.carousel-container {
    position: relative;
    width: 615px; /* Adjust width as needed */
    margin: 0 auto; /* Center carousel */
    overflow: hidden; /* Hide overflowing items */
}

.carousel {
    display: flex;
    gap: 20px; /* Space between items */
    scroll-behavior: smooth; /* Enable smooth scrolling */
    overflow-x: auto; /* Horizontal scrolling */
    padding: 10px 0; /* Add padding for visual spacing */
}

.carousel::-webkit-scrollbar {
    display: none; /* Hide default scrollbar */
}

.carousel-btn {
    position: absolute;
    bottom:5px;
    /* transform: translateY(-50%); */
    background: radial-gradient(circle at center, #2e2e2e, #1a1a1a);
    border: 3px solid #6a0dad; /* Purple border */
    color: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.5), inset 0px 2px 2px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s, background 0.3s, box-shadow 0.3s;
}

.carousel-btn:hover {
    background: radial-gradient(circle at center, #3b3b3b, #252525);
    box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.7), inset 0px 3px 3px rgba(255, 255, 255, 0.15);
     transform: scale(1.1);
    /* Slight zoom on hover */
}

.prev-btn {
    left: 10px; /* Adjust distance from the left edge */
}

.next-btn {
    right: 10px; /* Adjust distance from the right edge */
}
.carousel-btn:disabled {
    background: #444; /* Dim the background */
    border: 3px solid #666; /* Muted border color */
    color: #888; /* Lighter text color */
    cursor: not-allowed; /* Change cursor */
    box-shadow: none; /* Remove shadows */
    opacity: 0.6; /* Reduce visibility */
}
.sticky-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    display: flex;
    justify-content: space-evenly;
    padding: 10px 0;
    z-index: 1000;
}

.bottom-btn {
    background-color: #444;
    color: white;
    border: none;
    border-radius: 30px;
    padding: 12px 20px;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease;
}

.bottom-btn:hover {
    background-color: #6a0dad; /* Purple color on hover */
}

/*clinic sense overrides*/
.patient-cal-gift-button{
    a{
        display: unset !important;
        width:  unset !important;
        height: unset !important;
        cursor: pointer;
    }
  div{
    background: unset !important;
   &::after{
    content: 'Gift Certificates';
    line-height: 40px;
   }
  }
}
.patient-cal-book-now-button{
    a{
        display: unset !important;
        width:  unset !important;
        height: unset !important;
        cursor: pointer;
    }
    div{
        background: unset !important;
       &::after{
        content: 'Book Appointment';
        line-height: 40px;
       }
      }
}
/*services carousel*/
.services-carousel-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    /* margin-top: 40px;  */
    /* Adjust for spacing */
    max-width: 800px;
    height: 100%;
    .carousel {
        display: flex;
        overflow-x: auto; /* Allow horizontal scrolling */
        scroll-behavior: smooth; /* Smooth scrolling */
        width: 100%; /* Make sure the carousel takes up the full width */
        padding: 10px 0;
        gap: 20px;
    }
}


.services-grid {
    /* display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px; */
    display:flex;
    flex-direction: row;
    transition: transform 0.3s ease;
    height: 100%;
}

.service-card {
    background-color: #333;
    color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 300px;
    margin-inline: 16px;
    /* height: 390px; */
    height: 100%;
}

.service-icon {
    font-size: 40px; /* Icon size */
    margin-bottom: 15px;
    color: #6a0dad; /* Purple icon color */
}

.service-card h3 {
    margin: 15px 0 10px;
    font-size: 20px;
}

.service-card p {
    font-size: 16px;
    color: #bbb;
    overflow:auto;
    max-height: 500px;
}

/* Media Query for small screens (mobile) */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr; /* Stack the services on smaller screens */
    }
}
.review-card {
    flex: 0 0 100%;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: #333;
    border-radius: 8px;
    text-align: center;
  }

  .review-card h3 {
    margin: 0;
    font-size: 18px;
    color: white;
  }

  .review-card p {
    font-size: 16px;
    color:#bbb;
  }

  .review-card .rating {
    margin: 10px 0;
    color: gold;
    font-size: 20px;
  }

  @media (max-width: 600px) {
    .logo{
        margin-bottom: unset !important;
    }
    .hero .main-container{
        /* width: 380px; */
        width: 100%;
        padding:unset !important;
    }
    .main-content{
        /* height: unset !important; */
        height: calc(100% - 131px) !important;

    }
    .sticky-bottom-bar{
        display: grid;
        grid-template-columns: auto;
        width: 100%;
        height: 185px;
    }
    .sticky-bottom-bar a{
        margin-top:5px;
        margin-bottom:5px;

    }
    .quote{
        margin-block-end:0px !important;
    }
    .quote .first{
        text-align: center !important;
        font-size: 2rem !important;
    }
    .quote .offset{
        font-size: 2rem !important;
    }
    .carousel-container{
        width:300px;
    }
    .review-card{
        max-height: 220px;
        overflow: hidden;
    }
    .review-card p{
        height: 100px;
        overflow: scroll;
    }
    .navbar{
        left: calc(50% - 190px);
        margin-top:0px;

    }
    .carousel-btn{
        display: none;
    }
    .services-carousel-container{
        margin-top: unset !important;
        height: 100%;
    }
    .services-carousel-container .carousel{
        padding:0px !important;
        height: 100%;
        width: unset;
    }
    .services-grid{
        display:grid;
        grid-template-columns: auto;
        height: 100%;
        overflow-x:hidden;
        overflow-y: auto;
        gap: 10px;
    }
    .service-card{
        margin-block: 5px;
        min-height: unset;

    }
    .service-card p {
        font-size: 16px;
        color: #bbb;
        overflow: visible;
        max-height: unset;
    }
    mr-provider .container{
        display: grid;
        grid-template-columns: auto;
        width:unset;
        margin-block-end: 10px;
    }
    mr-about-us .carousel{
        display:block !important;
    }
}
