@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

body {
    font-family: 'Sarabun', sans-serif;
    /* Replace 'Your Chosen Font' with the actual font name */
    margin: 0;
    padding: 0;
}


nav {
    position: fixed;
    top: 0;
    left: 0;
    height: 90px;
    width: 100%;
    background-color: #FEFEFA;
    z-index: 100;
}

body.dark nav {
    border: 1px solid #393838;

}

nav .nav-bar {
    position: relative;
    height: 100%;
    max-width: 1300px;
    width: 100%;
    background-color: #FEFEFA;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-bar .navLogo {
    display: flex;
    align-items: center;
}

.nav-bar .navLogo img {
    max-height: 100px;
    /* Adjust the max-height according to your design */
    margin-right: 10px;
    /* Add some margin to separate the logo from other elements */
}

nav .nav-bar .sidebarOpen {
    color: #000000;
    font-size: 28px;
    padding: 5px;
    cursor: pointer;
    display: none;
}


.menu .logo-toggle {
    display: none;
}

.nav-bar .nav-links {
    display: flex;
    align-items: center;
}

.nav-bar .nav-links li {
    margin: 0 5px;
    list-style: none;
}

.nav-links li a {
    position: relative;
    font-size: 17px;
    font-weight: 400;
    color: var(--text-color);
    text-decoration: none;
    padding: 10px;
}

.nav-links li a::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    height: 6px;
    width: 6px;
    border-radius: 50%;
    background-color: var(--text-color);
    opacity: 0;
    transition: all 0.3s ease;
}

.nav-links li:hover a::before {
    opacity: 1;
}

.navbar.sticky {
    position: fixed;
    top: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Optional: Add a shadow for depth */
}

.nav-items a,
.appointment-button {
    text-decoration: none;
    color: rgb(6, 6, 6);
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    /* Adjusted the font size for better visibility */
}

.appointment-button {
    padding: 8px 16px;
    /* Adjusted the padding */
    text-align: center;
    margin-top: -10px;
    width: 120%;
    height: 1cm;
    background-color: #4CAF50;
    color: white;
    font-size: 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}


.appointment-button:hover {
    background-color: #45a049;
}

/* Add your existing styles here */

/* Styles for the image below the nav bar */
.image-container {
    position: relative;
    width: 100%;
    height: 700px;
    /* Set your desired height */
    overflow: hidden;
    /* Hide overflow if the image is larger than the container */
}

.image-container img {
    width: 110%;
    height: 100%;
    object-fit: cover;
    -webkit-filter: blur(10px);
    /* Add a blur filter to the image */
    filter: blur(10px);
    /* For compatibility with some browsers */
    /* Maintain aspect ratio and cover the container */
}

/* Styles for the text on the image */
.image-text {
    position: absolute;
    top: 45%;
    left: 5%;
    transform: translate(0%, -50%);
    color: #0000B8;
    font-weight: bold;
    /* Set font weight */
    font-family: 'Arial', sans-serif;
    /* Set font family */
    text-align: left;
    max-width: 70%;
    /* Set max-width for responsiveness */
    margin: 20px;
    /* Set margin */
}

/* Additional styles for individual text elements */
.image-text p {
    margin-bottom: 10px;
    /* Add margin between paragraphs */
}

.image-text .first-para {
    font-size: 45px;
    /* Example: Different font size for the first paragraph */
    font-weight: 650;
    /* Example: Different font weight for the first paragraph */
}

.image-text .second-para {
    font-size: 25px;
}

.image-text .third-para {
    font-size: 25px;
}

.phone-number {
    color: #2582A1;
    /* Set color for the phone number */
}


/* Styles for the container below the image */
.info-container {
    max-width: 100%;
    margin-top: -25px;
    background-color: #e2a53b;
    height: 200px;
    /* Set background color */
    /* Add any other styles you may need */
}


/* Styles for the heading inside the container */
.info-heading {
    text-align: center;
    font-size: 30px;
    /* Set font size */
    font-weight: bold;
    /* Set font weight */
    font-family: 'Helvetica', sans-serif;
    /* Set font family */
    color: #333;
    /* Set text color */
    /* Set margin */
    padding-top: 2%;
    padding-bottom: 1%;
}

/* Styles for the form and input elements */
.info-container form {
    display: flex;
    flex-direction: row;
    margin-left: -80px;
    align-items: center;
    margin-top: 15px;
}

.input-container {
    margin-bottom: 10px;
    margin-right: 40px;
    margin-left: 170px;
}

.input-container label {
    margin-bottom: 5px;
    /* Set the margin between the label and input */
    /* Set the margin between the label and input */
    border: 4px solid #000000;
    border-radius: 8px;
    /* Add border-radius for rounded corners */
    /* Set the border size and color */
    padding: 8px;
    /* Add padding for better spacing */
    display: block;
    /* Ensure the label takes the full width */
    color: #333;
    /* Set the font color for the label */
    position: relative;
}

.input-container label::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: -1;
    transition: opacity 0.3s ease;
    pointer-events: none;
}


.input-container input::placeholder {
    color: #1A1110;
    font-weight: bold;
    /* Set the font color for the placeholder text */
}

.input-container input {
    flex: 1;
    /* Add margin between input boxes */
    padding: 12px;
    width: 200%;
    box-sizing: border-box;
    border: 2px solid #333;
    /* Set the border size and color for the input boxes */
    border-radius: 8px;
    /* Add border-radius for rounded corners */
}

.submit-button {
    margin-top: -10px;
    margin-left: 180px;
    flex-direction: row;
    padding: 12px 55px;
    background-color: #2582A1;
    color: white;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.submit-button:hover {
    background-color: #45a049;
}

.doctor-container {
    display: flex;
    width: 80%;
    height: 450px;
    /* Adjusted the height to your desired value */
    margin: 15px auto;
    /* Center the container */
    background-color: #ffffff;
    /* Set background color */
    border-radius: 15px;
    /* Add border radius */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    /* Add box shadow */
    overflow: hidden;
    box-sizing: border-box;
    /* Include padding and border in the total width and height */
}

.left-container {
    flex: 40%;
    overflow: hidden;
}

.doctor-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px 0 0 15px;
    /* Apply border radius to the left side */
}

.right-container {
    flex: 60%;
    padding: 20px;
    box-sizing: border-box;
}

.doctor-heading {
    font-size: 35px;
    font-weight: bold;
    margin-top: 3%;
    color: #333;
}

.doctor-text {
    font-size: 20px;
    color: #555;
    margin-top: 10px;
    line-height: 1.5;
}

.appointment-button1 {
    width: 8cm;
    /* Set button width to 8cm */
    height: 1cm;
    /* Set button height to 1.5cm */
    background-color: #4CAF50;
    color: white;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 20px;
    align-self: flex-start;
    /* Align the button to the left within the right-container */
}

.appointment-button:hover {
    background-color: #45a049;
}

/* Add this section to your existing CSS file or create a new one */

/* Add this section to your existing CSS file or create a new one */

.service-container {
    max-width: 100%;
    padding: 20px;
    box-sizing: border-box;
    /* background-color: #6CB4EE; */
    margin-top: 20px;
    margin-bottom: 20px;
    background-color: #468FEA;
    height: auto;
    /* Adjust the height as needed */
}

.service-heading {
    font-size: 50px;
    text-align: center;
    font-weight: bold;
    color: #fff;
    margin-top: 10px;
    margin-bottom: 20px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 12px;
}

.service-name {
    font-size: 35px;
    font-weight: bold;
    color: #ffffff;
    margin-top: 10px;
    margin-bottom: 30px;
}

.service-description {
    font-size: 20px;
    color: #fff;
    margin-bottom: 5px;
    text-align: left;
    /* Align the text from the beginning */
}

/* Additional styles for the service-item container (adjust as needed) */
.service-item {
    text-align: center;
    border: 3px solid #ccc;
    border-radius: 10px;
    padding: 20px;
    height: 250px;
    /* Adjust the height value according to your preference */
    overflow: hidden;
    /* Hide overflow if the content is larger than the container */
}

.experts-heading {
    text-align: center;
    background-color: #F0F8FF;
    /* Choose your desired background color */
    color: #0000FF;
    /* Choose your desired text color */
    padding: 2px;
    /* Adjust padding as needed */
    font-size: 24px;
    /* Adjust font size as needed */
    font-family: 'Arial', sans-serif;
    /* Choose your desired font family */
    font-weight: bold;
    /* Adjust font weight as needed */
    margin-bottom: -10px;
}

.doctors-profile-container {
    position: relative;
    height: 9.5in;
    width: 100%;
    background-color: #e2a53b;
    display: grid;
    justify-content: center;
    grid-template-columns: repeat(4, 3in);
    /* 4 columns with 3 inches width each */
    grid-gap: 1cm;
    /* 1cm gap between each box */
    box-sizing: border-box;
    padding-top: 10px;
    align-items: start;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.profile-box {
    height: 4.2in;
    width: 100%;
    /* Each box takes the full width of its column */
    background-color: #fff;
    box-sizing: border-box;
    border: 1px solid #333;
    margin: 0.5cm 0.5cm 0 0.5cm;
    /* Maintain the same gap between each profile box */
    /* Adjust the margin for top, right, bottom, left */
    border-radius: 10px;
    margin-top: 12px;
    /* Add space between heading and profile boxes */
    display: flex;
    /* Use flexbox to create a horizontal layout */
    flex-direction: column;
}

/* Add a specific margin for the bottom of the first four boxes */
.profile-box:nth-child(-n+4) {
    margin-bottom: -2cm;
}

.doctor-image-section {
    height: 70%;
    overflow: hidden;
}

.doctor-image-section img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    border-radius: 10px;
}

.about-doctor-content {
    height: 30%;
    padding: 10px;
    display: flex;
    flex-direction: column;
}

.about-doctor-content i {
    margin-right: 10px;
    font-size: 17px;
    /* Adjust the icon size */
}

.doctor-name {
    font-size: 17px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    margin-bottom: -0.5rem;
    color: #007b9c;
    /* Adjust the color as needed */
}

.qualification {
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    margin-bottom: -0.5rem;
    color: #17a2bb;
    /* Adjust the color as needed */
}

.designation {
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    margin-bottom: -0.5rem;
    color: #007bff;
    /* Adjust the color as needed */
}

.book-appointment-button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px;
    /* Adjust margin as needed */
    /* Adjust margin as needed */
}

.book-appointment-btn {
    padding: 10px 20px;
    /* Adjust padding as needed */
    font-size: 16px;
    /* Adjust font size as needed */
    border-radius: 5px;
    /* Adjust border radius as needed */
    border: 2px solid #3498db;
    /* Adjust border color as needed */
    background-color: #3498db;
    /* Adjust background color as needed */
    color: #fff;
    /* Adjust text color as needed */
    cursor: pointer;
}

.contact-us-button {
    display: none;
}

/* Additional styling for above-container and below-container if needed */

.testimonial-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Align items vertically in the center */
    width: 100%;
    height: 450px;
    background-color: #468FEA;
}

.testimonial-top-container {
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #468FEA;
    /* Set background color for the top container */
}

.testimonial-heading {
    margin-top: 80px;
    font-size: 50px;
    color: #ffffff;
    /* Set the font size for the heading */
    font-weight: bold;
    /* Set the font weight for the heading */
    /* Add any other styles you may need for the heading */
}

.testimonial-bottom-container {
    height: 350px;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    /* Add any other styles you may need for the bottom container */
}

.testimonial-box {
    /* flex: 1; Distribute available space equally among testimonial boxes */
    margin: 10px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    text-align: center;
    border: 2px solid #FFFFFF;
    /* Add a 2px solid border with a specific color */
}

.testimonial-box {
    width: 8cm;
    height: 5.2cm;
    /* Apply a desired background color to each box */
    /* Add a rounded border to each box using your preferred radius measurement */
    /* Implement a box shadow effect for depth and visual separation */
    /* Add any other styles you may need for each box */
}

.testimonial-text {
    font-size: 18px;
    color: #FFFFFF;
    margin: 0;
    text-align: justify;
    /* Set the font size and color for the testimonial text */
}

/* Testimonial-Slider will be Hidden With these Code */

.testimonial-slider {
    display: none;
}

/* Your FAQ styles */

#faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-heading {
    text-align: center;
    font-size: 40px;
    font-family: 'Open Sans', sans-serif;
    font-weight: bold;
    margin-top: 40px;
    margin-bottom: 45px;
}

.faq-item {
    cursor: pointer;
    position: relative;
    margin-top: -20px;
}

.faq-question {
    padding: 10px;
    background-color: #f0f0f0;
    font-size: 20px;
    font-family: 'Open Sans', sans-serif;
}

.faq-answer {
    padding: 10px;
    font-family: 'Open Sans', sans-serif;
    margin-bottom: 20px;
}

.plus-symbol {
    position: absolute;
    top: 15%;
    right: 15px;
    cursor: pointer;
    font-size: 24px;
    pointer-events: none;
    transition: color 0.3s ease;
}


/* Footer Page CSS */


#footer-container {
    height: 3.5in;
    width: 100%;
    display: flex;
    margin-bottom: 5px;
    border-radius: 5px;
    background-color: #3B3C36;
}


/* Add any other styles as needed for individual containers */

.footer-column {
    flex: 1;
    padding: 20px;
    /* Adjust padding as needed */
}

/* Apply specific widths to the three columns */
.footer-column1 {
    width: 35%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}


.clinic-image {
    width: 25%;
    height: auto;
    margin-bottom: 5px;
}

.footer-column p {
    font-size: 18px;
    color: #fff;
    margin-top: 8px;
    line-height: 2;
}

.footer-column strong {
    font-weight: 300;
}

.footer-column2 {
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: left;
}

.column-heading {
    color: #00B9E8;
    font-size: 30px;
    margin-top: 15px;
    margin-bottom: 6px;
    margin-right: 10%;
    text-decoration: underline;
    /* Add underline to the heading */

}

.service-list {
    list-style-type: none;
    padding: 0;
}

.serviceName {
    cursor: pointer;
    padding: 2px 16px;
    color: #fff;
    font-size: 18px;
    margin-bottom: 8px;
    line-height: 1.5;
    /* Remove border */
    align-items: center;
}

.footer-column3 {
    width: 35%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: -10px;

}

/* Add this section for the new styles */
.footer-column3 {
    width: 35%;
}

.address-heading {
    font-size: 30px;
    margin-top: 15px;
    font-weight: bold;
    color: #00B9E8;
    text-decoration: underline;
}

.address-text {
    font-size: 18px;
    color: #e40000;
    line-height: 1.5;
    margin-bottom: 15px;
}

.view-maps-link {
    font-size: 20px;
    color: #3498db;
    text-decoration: underline;
    cursor: pointer;
    display: block;
}

.mobile-footer-container {
    display: none;
    /* Hide mobile container on desktop */
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup {
    position: fixed;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 400px;
    height: 90vh;
    max-height: 500px;
    overflow-y: auto;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    margin: 0 auto;
    /* Optional: Center the form horizontally */
    overflow: hidden;
}

.popup::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('Images/Contact-Form.jpg') center/cover;
    filter: blur(8px);
    opacity: 0.9;
    /* Adjust the blur intensity as needed */
    z-index: -1;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 40px;
}

/* h2 {
    font-size: 30px;
    text-align: center;
    margin-bottom: 10px;
    color: #FEFEFA;
} */

.input-group {
    margin-bottom: 10px;
    margin-top: 25px;
}

label {
    display: block;
    margin-bottom: 10px;
    color: #FEFEFA;

    /* Set label text color */
}

input,
textarea {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.7);
    /* Set input background color and opacity */
}

.custom-button {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    font-size: 20px;
    border: none;
    background-color: #2582A1;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
}

.custom-button:hover {
    background-color: #2980b9;
}

/* Whats App Styles */

.whatsapp-btn-container {
    position: fixed;
    right: 30px;
    opacity: 1;
    bottom: 50px;
    padding: 24px;
    animation: fade-up 1000ms forwards;
    animation-delay: 3000ms;
}

@keyframes fade-up {
    100% {
        bottom: 50px;
        opacity: 1;

    }
}

.whatsapp-btn-container .whatsapp-btn {
    font-size: 70px;
    color: #25d366;
    display: inline-block;
    transition: all 400ms;

}

.whatsapp-btn-container .whatsapp-btn:hover {
    transform: scale(1.5);

}

.whatsapp-btn-container span {
    position: absolute;
    top: -10px;
    left: -50px;
    font-size: 25px;
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    color: #007bff;
    transform: rotateZ(20deg) translateX(10px);
    opacity: 0;
    transition: all 400ms;
}

.whatsapp-btn-container .whatsapp-btn:hover+span {
    transform: rotateZ(0deg) translateX(0px);
    opacity: 1;
}

/* Copy-Right-Section*/

.footer-container {
    height: 1cm;
    width: 100%;
    padding: 20px 0;
    background-color: #3498db;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.footer-text {
    font-size: 20px;
    color: #FFFFFF; /* Dark gray text color */
    margin: 0;
}


/* Add any additional styling for your form elements here */

/* Add any other styles as needed for individual containers */

/* Media query for mobile view */
/* Media query for screens with a maximum width of 600 pixels (mobile view) */


@media only screen and (max-width: 600px) {

    nav .nav-bar .sidebarOpen {
        display: block;
    }

    .menu {
        position: fixed;
        height: 100%;
        width: 250px;
        left: -100%;
        top: 0;
        padding: 20px;
        background-color: #1B1B1B;
        z-index: 100;
        transition: all 0.4s ease;
    }

    nav.active .menu {
        left: -0%;
    }

    nav.active .nav-bar .navLogo a {
        opacity: 0;
        transition: all 0.3s ease;
    }

    .menu .logo-toggle {
        display: block;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .logo-toggle .siderbarClose {
        color: #FFFFFF;
        font-size: 30px;
        cursor: pointer;
    }

    .nav-bar .nav-links {
        flex-direction: column;
        align-items: center;
        padding-top: 30px;
        margin-top: 5px;
        margin-right: 50px;
    }

    .nav-links li a {
        display: block;
        margin-top: 10px;
        color: #FFFFFF;
    }

    .nav-links li button {
        margin-top: 30px;
    }


    .nav-bar .navLogo {
        margin-right: 220px;
    }

    .nav-items a,
    .appointment-button {
        text-decoration: none;
        color: rgb(6, 6, 6);
        text-align: center;
        font-weight: bold;
        font-size: 18px;
        /* Adjusted the font size for better visibility */
    }

    .appointment-button {
        padding: 8px 16px;
        /* Adjusted the padding */
        text-align: center;
        margin-left: -20px;
        margin-top: -10px;
        width: 130%;
        height: 1cm;
        background-color: #2582A1;
        color: white;
        font-size: 15px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
    }

    /* Home- Container */

    .image-container {
        margin: auto;
        width: 100%;
        max-height: 400px;
        /* Set the maximum height as per your design */
        overflow: hidden;
        /* Hide overflow content if the image is larger */
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    }

    .image-container img {
        width: 100%;
        height: 100%;
        /* Make sure the image takes the full width of its container */
    }

    /* Maintain the aspect ratio of the image */

    .image-text {
        position: absolute;
        font-size: 16px;
        /* Adjust the base font size for better readability */
        line-height: 1.5;
        max-width: 300px;
        margin-top: 25px;
        text-align: left;
        top: 50%;
        /* Center the text vertically */
        transform: translateY(-50%);
        /* Adjust for vertical centering */
    }

    .image-text .first-para {
        font-size: 24px;
        /* Increase font size for the main heading */
        font-weight: 600;
        margin-bottom: 8px;
        /* Add some spacing between paragraphs */
    }

    .image-text .second-para {
        font-size: 18px;
        /* Adjust font size for the second paragraph */
        font-weight: 400;
        /* You can adjust the weight as needed */
        margin-bottom: 8px;
        /* Add some spacing between paragraphs */
    }

    .image-text .third-para {
        font-size: 14px;
        /* Adjust font size for the third paragraph */
        margin-bottom: 8px;
        /* Add some spacing between paragraphs */
    }

    .phone-number {
        font-size: 14px;
        /* Adjust font size for the phone number */
        color: #000000;
    }


    /* Information - Container */


    .info-container {
        height: 100%;
        padding: 20px;
        margin-top: -2px;
        border-radius: 5px;
        border: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* Center content horizontally */
    }

    .info-heading {
        font-size: 12px;
        font-weight: 700;
        margin-bottom: 15px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        display: inline-block;
    }

    .input-container {
        margin-bottom: 5px;
        width: 60%;
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    .info-container form {
        display: flex;
        flex-direction: column;
        margin-left: -120px;
        align-items: center;
        margin-top: 15px;
    }

    .input-container input {
        padding: 12px;
        width: 100%;
        /* Set the width of the input field to 100% */
        box-sizing: border-box;
        border: 2px solid #333;
        border-radius: 8px;
        margin-bottom: 20px;
        /* Add margin between input fields */
    }

    .submit-button {
        background-color: #4CAF50;
        color: white;
        padding: 12px 20px;
        margin-left: 120px;
        border: none;
        cursor: pointer;
        font-size: 16px;
        border-radius: 8px;

    }

    /* About Apollo */

    .left-container {
        display: none;
    }

    .doctor-container {
        width: 100%;
        height: 10%;
    }

    .doctor-heading {
        text-align: center;
        border: none;
        /* Remove border */
        margin-bottom: 10px;
        /* Optional: Adjust margin for spacing */
    }

    .doctor-text {
        line-height: 1.6;
        font-size: 14px;
        padding-right: 30px;
        font-style: normal;
        font-family: 'Poppins', sans-serif;
        text-align: justify;
        margin-left: 30px;
        font-weight: 300;
    }

    /* Contact Form Hiding in Mobile view */

    .overlay {
        display: none;
    }

    /* .service-container-CSS */

    .service-heading {
        text-align: center;
        font-size: 30px;
        font-weight: 300;
        border: none;
        /* Remove border */
        margin-bottom: 10px;
        /* Optional: Adjust margin for spacing */
    }

    .service-container {
        padding: 50px;
        width: 100%;
    }

    .service-item {
        padding: 30px;
        max-width: 52%;
        max-height: 70%;
        border-radius: 8px;
        margin-bottom: -50px;
    }

    .service-name {
        margin-top: -20px;
        color: #000000;
        margin-bottom: 10px;
        font-size: 20px;
        font-weight: 400;
    }

    .service-description {
        font-size: 14px;
        padding-left: -2px;
    }

    .doctors-profile-container {
        grid-template-columns: 1fr;
        display: block;
        height: 5.5in;
        padding: 20px;
        overflow: hidden;
        position: relative;
        border-radius: 10px;
    }

    .profile-box {
        width: 100%;
        margin: 0 0 1cm 0;
        position: relative;
        /* Adjust the height as needed */
    }

    .profile-box:nth-child(-n+4) {
        margin-bottom: 10px;
        /* Adjust this value or remove it */
    }

    .about-doctor-content {
        height: 25%;
    }

    .doctor-image-section {
        height: 75%;
    }

    .slick-slider {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
    }

    .slick-list {
        overflow: hidden;
    }

    .slick-prev,
    .slick-next {
        z-index: 1;
    }

    #sameer-mahendra-profile,
    #raminder-mahendra-profile,
    #vithesh-kumar-profile,
    #sai-kumar-profile,
    #sudeep-profile,
    #ranjitha-profile,
    #neha-gupta-profile,
    #ishwarya-yamini-profile {
        display: flex;
        justify-content: space-around;
        height: 65vh;
    }

    /* < !-- Book an .appointment-button --> */

    .book-appointment-button {
        display: none;
    }

    /* Contact Us Button */

    .contact-us-button {
        display: block;
        /* Show the button on screens below 600 pixels */
        text-align: center;
        margin-top: 20px;
    }

    .contact-us-btn {
        padding: 10px 20px;
        background-color: #ff6600;
        color: #fff;
        border: none;
        border-radius: 5px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        text-decoration: none;
    }

    .testimonial-container {
        display: none;
    }

    .testimonial-slider {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 91%;
        height: 4in;
        /* Adjust the height as needed for mobile view */
        margin-top: 20px;
        margin-left: 10px;
        background-color: #007b9c;
        border-radius: 10px;
    }

    .testimonial-heading-mobile {
        font-size: 25px;
        text-align: justify;
        line-height: 30px;
        font-weight: 300;
        letter-spacing: -.5px;
        color: #FFFFFF;
        opacity: .8;
    }

    .testimonial-box-mobile {
        max-width: 100%;
        /* Ensure the testimonial boxes don't exceed the width of the viewport */
    }

    .testimonial-bottom-container-mobile {
        display: flex;
        flex-direction: column;
        margin-top: -10px;
        align-items: center;
        width: 100%;
        /* Adjust other styles as needed for the bottom container */
    }

    #testimonial-Box-1 {
        display: block;
        /* Show the first testimonial box on mobile screens */
    }

    #testimonial-Box-2,
    #testimonial-Box-3,
    #testimonial-Box-4 {
        display: none;
        /* Hide other testimonial boxes on mobile screens */
    }

    .testimonial-text-mobile {
        padding: 5% 10%;
        text-align: justify;
        line-height: 1.6em;
        color: white;
        font-family: "Open Sans", sans-serif;
    }


    /* FAQ-Container CSS */

    #faq-container {
        width: 100%;
        max-width: 100%;
        /* You can adjust this based on your design */
        height: auto;
        /* Let the content determine the height */
        overflow: hidden;
        /* Optional: Adjust overflow property based on your design */

    }

    .faq-heading {
        font-size: 20px;
        /* Adjust font size as needed for mobile */
        margin-bottom: 30px;
        /* Adjust margin as needed for mobile */
    }

    .faq-item {
        margin-bottom: 8px;
        /* Adjust margin as needed for mobile */
    }

    .faq-question {
        font-size: 11px;
        /* Adjust font size as needed for mobile */
        padding: 8px;
        /* Adjust padding as needed for mobile */
        width: 100%;
        /* Adjust the width as needed for mobile */
        border-radius: 5px;

    }

    .plus-symbol {
        font-size: 16px;
        /* Adjust font size as needed for mobile */
    }

    .faq-answer {
        font-size: 10px;
        /* Adjust font size as needed for mobile */
        padding: 8px;
        /* Adjust padding as needed for mobile */
    }

    /* Footer-Container CSS */

    .code-container {
        display: none;
        /* Hide code container on mobile */
    }

    .mobile-footer-container {
        display: block;
        /* Show in mobile view by default */
        background-color: #E5E4E2;
        border-radius: 8px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        /* margin: 10px; */
        text-align: center;
        
    }

    .mobile-footer-container img {
        width: 35%;
        /* Adjust the width as needed */
        max-width: 200px;
        /* Set a maximum width if needed */
        height: auto;
        border-radius: 8px;
        margin: 10px auto;
        /* Center the image */
        display: block;
        /* Make sure it's centered properly */
    }

    .mobile-footer-column1,
    .mobile-footer-column2,
    .mobile-footer-column3 {
        text-align: center;
        margin-bottom: 10px;
    }

    .mobile-clinic-image {
        width: 100%;
        height: auto;
        border-radius: 8px;
    }

    .mobile-column-heading,
    .mobile-address-heading {
        font-weight: bold;
        color: #000000;
        font-size: 1.4em;
        text-decoration: underline;
    }

    .mobile-service-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mobile-serviceName,
    .mobile-address-text {
        font-size: 1em;
        line-height: 1.5em;
        height:  200%;
        color: #111111;
        margin-bottom: 5px;
    }

    .mobile-view-maps-link {
        display: inline-block;
        padding: 8px 16px;
        height:  auto;
        margin-top: 10px;
        margin-bottom: 10px;
        background-color: #3498db;
        color: #fff;
        text-decoration: none;
        border-radius: 5px;
        font-size: 1em;
    }

    .footer-container {
        padding: 10px 0;
    }

    .footer-text {
        font-size: 12px;
    } 

}