@font-face {
    font-family: "Futura";
    src: url("futura/FuturaLight.ttf") format("truetype"), url("futura/FuturaLight.woff") format("woff"), url("futura/FuturaLight.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
}

body {
    margin: 0;
    font-family: "Poppins", sans-serif !important;
}

img {
    width: 100%;
}

.container {
    max-width: 1250px;
    margin: 0 auto;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

a {
    text-decoration: none;
    color: #fff;
}

html {
    overflow-x: hidden;
}

.container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0px;
}

/* Top Header Container */
.top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0px;
    font-size: 14px;
    color: #333;
}

.contact-info:nth-child(3) {
    margin-right: -10px;
}

/* Left Side (Welcome Message) */
.header-left {
    font-weight: 600;
    color: #007bff;
}

/* Right Side (Contact Info) */
.header-right {
    display: flex;
    gap: 20px;
}

/* Contact Info Styling */
.contact-info {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Icons Styling */
.contact-info i {
    color: #091e5a;
}

span.welcome-message {
    color: #6b6b6b;
    font-size: 13px;
    font-weight: 500;
}

.header-right span a {
    font-size: 13px;
    color: #6b6b6b;
}

.main-top-header {
    border-bottom: 1px solid #ddd;
}

.navbar.mobile-nav {
    display: none;
}

.logo img {
    width: 30%;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.toggle-btn {
    font-size: 24px;
    cursor: pointer;
}

.sidebar {
    position: fixed;
    top: 0;
    right: -520px;
    width: 380px;
    height: 100vh;
    background: #fff;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease-in-out;
    padding: 20px;
}

.sidebar.active {
    right: 0;
    z-index: 99999;
}

.close-btn {
    font-size: 24px;
    cursor: pointer;
    float: right;
}

.sidebar-content {
    margin-top: 50px;
}

ul.menu li a {
    /* display: inline-block; */
    text-decoration: none;
    color: #000;
}

ul.submenu li {
    margin: 0;
    cursor: pointer;
}

/* ul.menu.sidebar-menu {
        display: block;
    } */
ul.menu.sidebar-menu {
    display: none;
}

/* navbar css */

/* Menu Styling */
.navbar {
    width: 70%;
}

/* Menu Styling */
.menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.menu li {
    position: relative;
    padding: 0;
    margin-left: 40px;
}

/* ul.active_submenu li {
    display: none;
} */
/* Submenu Styling */
.submenu {
    position: absolute;
    top: 34px;
    left: 0;
    background: white;
    width: 270px;
    list-style: none;
    padding: 0;
    margin: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    opacity: 1;
    visibility: hidden;
    transform: translateY(-10px);
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

ul.active_submenu {
    padding-left: 0px !important;
    overflow-y: scroll;
}

.active_submenu {
    display: none;
    position: relative;
    left: -282px;
    background: #ddd;
    top: -36px;
    width: 280px;
    height: 250px;
}

ul.active_submenu li {
    list-style: none;
}

li.active_menu {
    height: 50px;
}

/* Second Level Submenu (Side Dropdown for Products) */
.inner-submenu {
    left: -270px;
    top: 0;
    position: absolute;
    background: white;
    display: block;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-height: 400px;
    overflow-y: auto;
    width: 280px;
}

/* Show inner submenu when hovering over "Products" */
/* .has-submenu:hover>.submenu {
        display: block;
    } */
li.menu-hover:hover .submenu {
    visibility: visible !important;
}

/* Hover effect */
.submenu li a:hover,
.active_menu li a:hover {
    color: #007bff;
}

.submenu li {
    padding: 12px;
    border-bottom: 1px solid #ddd;
    transition: background 0.3s ease-in-out;
}

.submenu li:hover {
    background: #f0f0f0;
}

/* .menu li:hover .submenu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }  */

/* Dropdown Icon */
.menu li i {
    margin-left: 8px;
    transition: transform 0.3s ease-in-out;
}

.menu li:hover i {
    transform: rotate(180deg);
}

.navbar .menu li:after {
    position: absolute;
    content: "";
    width: 100%;
    border-bottom: 4px solid;
    top: 20px;
    left: 0;
    opacity: 0;
}

.navbar .menu li:hover:after {
    opacity: 1;
}

.latest-news {
    text-align: center;
}

.footer-div img {
    width: 50%;
    margin-bottom: 20px;
}

.footer-div p {
    font-size: 15px;
    margin-bottom: 10px;
}

.footer-div a {
    text-decoration: none;
    color: #000;
}

.social-media-twitter,
a {
    color: #000;
}

.social-media-icon a {
    display: inline-block;
    width: 40px;
    height: 40px;
}

.social-media-icon a i {
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-media-icon a:hover {
    background: #081d5c !important;
    color: #ffffff !important;
}

.latest-news span {
    font-size: 12px;
}

.main-footer {
    padding: 83px 45px 82px;
    border-top: 1px solid #ddd;
}

.copyright {
    background: #000;
    color: #fff;
    padding: 20px 50px;
}

.copyright p {
    font-size: 14px;
    margin: 0px;
}

.social-media-icon a {
    border: 1px solid #3a3c3c;
    background: #3a3c3c !important;
    transition: 1.5s !important;
}

ul.submenu li:before {
    content: "+";
    position: relative;
    width: 10px;
    height: 10px;
    font-weight: bold;
    padding-right: 6px;
    color: #000;
    left: -10px;
    top: 2px;
    opacity: 0;
    transition: 0.8s;
}

ul.submenu li:hover:before {
    opacity: 1;
    left: 0;
    margin-right: 4px;
}

ul.submenu li:after {
    border: none !important;
}

.sticky-header {
    position: sticky;
    top: 0px;
    z-index: 999;
    box-shadow: 0px 0px 0px 0px #000;
    transition: 0.8s linear !important;
    padding: 15px 50px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.social-media-twitter {
    margin-top: 40px;
}

/* banner */
/* .main-banner {
    background: url("..//images/home-banner1.jpg") no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 100px 20px;
} */


.main-banner {
    background: linear-gradient(rgb(0 0 0 / 30%), rgb(0 0 0 / 38%)), url(../images/home-banner1.jpg) no-repeat center center / cover;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.hero-content h1 {
    font-size: 38px;
    margin-bottom: 10px;
}

.hero-content span {
    font-weight: bold;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 20px;
}

/* 
    .banner-btn {
        display: inline-flex;
        align-items: center;
        background: #30d6b0;
        color: white;
        padding: 12px 25px;
        font-size: 16px;
        font-weight: bold;
        text-decoration: none;
        border-radius: 5px;
        transition: all 0.3s ease-in-out;
        border: none;
        cursor: pointer;
        position: relative;
    } */

/* .info-section {
    display: flex;
    justify-content: center;
    padding: 50px 20px;
    display: none;
} */

.info-box {
    background: #4f6dcd;
    color: white;
    text-align: center;
    padding: 45px 2%;
    width: 33.3333%;
}

.info-box img {
    width: 50px;
    margin-bottom: 20px;
}

.info-box h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.info-box.background-color {
    background: #435ba1;
}

.info-box.border-left {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.info-box.border-right {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.info-box img {
    width: 69px;
    height: 66px;
    max-width: 100%;
}

/* button.banner-btn:hover i {
        padding-left: 20px;
    }

    button.banner-btn i {
        transition: 0.7s;
    }
    button.banner-btn i {
        padding-left: 10px;
    } */
/* banner */

/* Medical Care css start*/
.medical-care-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 0px;
    background: #fff;
    padding-bottom: 0;
}

.medical-care-content {
    max-width: 50%;
}

.medical-care-content h2 {
    font-size: 50px;
    font-weight: 900;
    color: #222;
}

span.font-size {
    font-weight: 300;
}

.medical-care-content h2 strong {
    font-weight: 700;
}

.medical-care-content p {
    font-size: 16px;
    color: #666;
    margin: 20px 0;
    text-align: justify;
}

.medical-btn {
    display: inline-flex;
    align-items: center;
    background: #081D5C;
    color: white;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
    border: none;
    cursor: pointer;
}

.medical-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease-in-out;
}

/* Hover Effect */
.medical-btn:hover i {
    transform: translateX(5px);
}

.doctor-img {
    width: 585px;
    height: auto;
    border-radius: 8px;
    padding-left: 15px;
}

.hospital-img {
    width: 250px;
    height: auto;
    border-radius: 8px;
}

/* Medical Care css end */

/* surgery-services css start */

.main-surgery-section {
    padding: 114px 0px 70px 0px;
    background: #fafafa;
    display: none;
}

.surgery-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    background: #f8f9fa;
}

.surgery-box {
    display: flex;
    align-items: center;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    cursor: pointer;
}

.surgery-icon {
    width: 60px;
    margin-right: 15px;
    /* Image and text spacing */
    transition: transform 0.3s ease-in-out;
}

.surgery-text {
    flex: 1;
}

.surgery-text h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #222;
}

.surgery-text p {
    font-size: 14px;
    color: #666;
}

/* Hover Effect: Image Moves Up */
.surgery-box:hover .surgery-icon {
    transform: translateY(-10px);
}

.surgery-box:hover {
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.15);
}

/* surgery-services css end */

/* progress-section css start */
.progress-section {
    display: flex;
    align-items: normal;
    background: #fff;
    /* padding: 50px; */
    /* padding-left:0px; */
    padding-top: 90px;
}

.choose-us-main.section-top-Margin {
    margin-top: 55px;
}

.image-container {
    flex: 1;
    max-width: 50%;
    padding-right: 30px;
}

.image-container img {
    width: 100%;
}

.progress-container {
    flex: 1;
    text-align: left;
    padding-left: 30px;
    /* padding-left: 80px; */
    padding-right: 80px;
    padding-right: 30px;
}

.progress-container h2 {
    font-size: 28px;
    color: #222;
    margin-bottom: 15px;
}

.progress-container p {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
}

.progress-bar-container {
    margin-bottom: 15px;
    display: none;
}

.progress-label {
    display: block;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #19c0c9;
    width: 0%;
    transition: width 2s ease-in-out;
}

.progress-container h2 {
    font-size: 60px;
    font-weight: bold;
    text-align: center;
    font-family: futura;
}

.image-container img {
    width: 674px;
}

.padding-remove-section h2 {
    text-align: left;
}

/*  */

.progress-percentage {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.progress-header {
    display: flex;
    text-align: right;
    justify-content: space-between;
}

/* progress-section css end */

/* Best Quality css start */

.image-container.img-width img {
    width: 700px;
}

/* section.progress-section.main-best-quality-section .progress-container {
        text-align: center;
    } */

.padding-remove-section {
    padding: 0;
    display: flex;
    align-items: flex-start;
    padding-bottom: 90px;
}

.padding-remove-section .progress-container {
    margin-top: 60px;
}

.padding-remove-section .image-container.img-width img {
    /* width: 100%; */
    height: 700px;
}

/* Best Quality css end */

/* Medical Researchcss start */
/* .blog-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 40px;
        padding: 50px;
    } */

.blog-post {
    width: 100%;
    background: #fff;
    padding: 20px;
    border-bottom: 1px solid #ddd;
    padding-left: 0px;
}

.blog-post h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.blog-post h2 a {
    text-decoration: none;
    color: #222;
    transition: 0.3s;
}

.blog-post h2 a:hover {
    color: #00aaff;
}

.main-medicak-div {
    background: #fafafa;
    padding: 72px 0px;
    display: none;
}

/* Learn More and Social Icons Flex */
.bottom-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}

/* Learn More Styling */
.learn-more {
    font-weight: bold;
    color: #00aaff;
    text-decoration: none;
    position: relative;
    padding-bottom: 5px;
}

.learn-more::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #00aaff;
    transition: width 0.3s ease-in-out;
}

.learn-more:hover::after {
    width: 100%;
}

.main-medical-care-section {
    display: none;
}

/* Social Icons Styling */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons i {
    font-size: 18px;
    color: #555;
    cursor: pointer;
    transition: 0.3s;
}

.social-icons i:hover {
    color: #00aaff;
}

.blog-post h2 {
    font-weight: 700;
    margin-top: 10px;
}

/* Medical Research css end */

/* logo slider css start  */
.logo-slider {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
    background: #f9f9f9;
    padding: 60px 0;
    display: none;
}

.logos {
    display: flex;
    width: max-content;
    animation: scroll 20s linear infinite;
}

.logos img {
    max-width: 100%;
    margin: 0 15px;
    width: 240px;
}

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

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

    /* सिर्फ आधा slide होगा */
}

/* logo slider css end  */

/* responsive css */

/* header css */
@media (max-width: 768px) {
    .navbar {
        display: none;
    }

    .main-top-header {
        display: block;
        padding: 10px 20px;
    }

    .top-header {
        display: block;
    }

    .header-right {
        display: block;
    }

    .active_submenu {
        display: none;
        position: relative;
        left: -10px;
        background: #ddd;
        top: 14px;
        width: 340px;
        height: 276px;
        z-index: 9999;
    }

    .submenu {
        top: 54px;
    }

    .navbar {
        width: 100%;
    }

    ul.menu {
        display: block;
    }

    .menu li {
        margin: 0;
        padding: 10px;
        border-bottom: 1px solid #ddd;
    }

    .menu li:hover {
        background: #f0f0f0;
    }

    .sidebar-content1 {
        display: none;
    }

    .navbar.mobile-nav {
        display: block;
    }

    .navbar .menu li:hover:after {
        opacity: 0;
    }

    ul.submenu {
        z-index: 999;
        width: 100%;
    }

    .main-banner {
        padding: 0;
    }

    /* .info-section {
        display: block;
    } */

    .choose-us-main {
        display: block;
    }

    .info-box {
        width: 100%;
    }

    .surgery-services {
        display: block;
    }

    .surgery-box {
        margin-bottom: 20px;
    }

    .hero-content p {
        color: #fff;
    }

    section.hero-section {
        padding: 40px 20px 40px;
    }

    .hero-content h1 {
        font-size: 30px;
        color: #fff;
    }

    .sidebar {
        right: -400px;
    }

    .sticky-header {
        top: -1px;
    }

    .info-box.border-left {
        border-top-left-radius: 10px;
        border-bottom-left-radius: 0;
        border-top-right-radius: 10px;
    }

    .info-box.border-right {
        border-top-right-radius: 0px;
        border-bottom-right-radius: 10px;
        border-bottom-left-radius: 10px;
    }

    .medical-care-section {
        display: block;
        padding: 20px 20px;
    }

    .medical-care-content h2 {
        font-size: 35px;
    }

    .medical-care-content {
        max-width: 100%;
        margin-bottom: 50px;
    }

    .doctor-img {
        width: 100%;
        padding-left: 0px;
    }

    .main-surgery-section {
        padding: 70px 0px 70px 0px;
    }

    .image-container img {
        width: 350px;
        margin-bottom: 50px;
        margin: 0 20px 50px;
    }

    .progress-section {
        display: block;
    }

    .progress-container h2 {
        font-size: 35px;
    }

    .progress-container {
        padding: 0px 20px;
        margin-bottom: 50px;
    }



    .main-medicak-div {
        padding: 50px 20px;
    }

    .main-footer {
        padding: 50px 20px 50px;
    }

    footer {
        /* background: #111; */
        color: #fff;
        display: block !important;
        padding: 0px;
    }

    .footer-div {
        width: 100% !important;
    }

    .latest-news {
        width: 100% !important;
    }

    .social-media-twitter {
        width: 100% !important;
        margin: 0px;
    }

    .footer-form {
        width: 100% !important;
        /* margin:0px !important; */
    }

    .header {
        padding: 15px 20px;
    }

    .logo img {
        width: 60%;
    }

    .main-footer h3 {
        margin: 20px 0px;
    }

    .copyright {
        padding: 20px 40px;
    }

    .copyright p {
        margin: 0;
    }

    .latest-news {
        text-align: left;
    }

    .contact-width {
        width: 100% !important;
    }

    footer {
        padding: 0 !important;
    }

    .sidebar-content {
        margin-top: 30px;
    }

    .sidebar-content h3,
    p {
        display: none;
    }

    ul.menu.sidebar-menu {
        display: block;
        /* display: none; */
    }

    /* div#sidebar span, p {
                    display: none !important;
                } */
    .row.about_us_sec {
        display: block;
        width: 100%;
        margin: 0 auto;
    }

    .row.justify-content-center {
        padding-right: 0px;
        padding-left: 20px;
    }

    .col-md-6.i-frame {
        margin-top: 60px;
    }

    iframe {
        width: 100%;
    }

    .LDCJPS h3,
    p {
        display: block;
    }

    /* about us */
    .LDCJPS.about-mobile img {
        padding-top: 40px;
    }

    .LDCJPS.top-padding-sec.about-mobile-section img {
        padding-bottom: 40px;
    }

    .gallery {
        padding: 0px 20px;
    }

    /* services page */
    .LDCJPS.mobile-view img {
        padding-top: 40px;
    }

    .LDCJPS.top-padding-sec.mobile-padding img {
        padding-bottom: 40px;
    }

    .LDCJPS p {
        margin: 0;
    }

    .LDCJPS {
        padding: 50px 20px !important;
    }

    .LDCJPS.top-padding-sec {
        padding-top: 0px !important;
    }

    .LDCJPS.section-top-padding {
        padding-top: 0 !important;
    }

    section.info-section {
        display: none;
    }

    .image-container.img-width img {
        width: 350px;
        margin: 0px 20px;
        height: 400px !important;
        object-fit: cover;
    }

    .choose-us-main {
        display: block !important;
    }

    .choose-us-inner {
        width: 100% !important;
    }
}

/* header css */

/* testimonial css */
.testimonial-section {
    text-align: center;
    padding: 50px 20px;
    background: #f8f9fa;
}

.testimonial-container {
    max-width: 1200px;
    margin: auto;
    padding: 60px 0px;
    border-radius: 10px;
    background: white;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 18px;
    color: #333;
    font-style: italic;
    margin-bottom: 10px;
}

.testimonial-author {
    font-size: 16px;
    font-weight: bold;
    color: #555;
}

/* testimonial css end here */
.choose-us-main {
    display: flex;
}

.choose-us-inner {
    font-size: 21px;
    color: #000;
    margin-bottom: 20px;
    padding: 36px 10px;
    border: 4px solid #000;
    background: #ddd;
    width: 60%;
    border-radius: 8px;
    margin-right: 10px;
}

.paragraph-margin-none p {
    margin: 0;
    cursor: pointer;
    color: #000;
}

.progress-container h3 {
    color: #081d5c;
    font-weight: bold;
    text-decoration: underline;
}

/* about us css start here */
.aboutpage {
    /* background: url("../images/inner-banner.jpg") no-repeat center center/cover; */
    background: linear-gradient(rgb(0 0 0 / 30%), rgb(0 0 0 / 38%)), url(../images/inner-banner.jpg) no-repeat center center / cover;
    color: white;
    text-align: center;
    padding: 100px 20px;
    height: 300px;

    display: flex;
    justify-content: center;
    /* Horizontal center */
    align-items: center;
    /* Vertical center */
}

h4.text-white {
    font-size: 40px;
    font-weight: 600;
}

.LDCJPS {
    padding: 50px 0px;
}

.LDCJPS.top-padding-sec {
    padding-top: 0px;
}

.LDCJPS h2 {
    font-size: 36px;
    font-weight: bold;
}

/* gallery*/

/* Gallery Container */
/* Gallery Container */
.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 images per row */
    gap: 40px;
    /* Gap between images */
    /* padding: 20px; */
    max-width: 1200px;
    /* margin: auto; */
    padding-bottom: 65px;
}

/* Image Wrapper */
.gallery-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 200px;
    /* Fixed height for all images */
}

/* Image Styling */
.gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Ensures full image is visible without cropping */
    display: block;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* Hover Effect */
.gallery-img:hover img {
    transform: translateY(-5px);
    /* Image hover effect */
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .gallery {
        grid-template-columns: repeat(3, 1fr);
        /* Tablet View - 3 images per row */
    }
}

@media (max-width: 768px) {
    .gallery {
        grid-template-columns: repeat(2, 1fr);
        /* Tablet View - 2 images per row */
    }
}

@media (max-width: 480px) {
    .gallery {
        grid-template-columns: repeat(1, 1fr);
        /* Mobile View - 1 image per row */
    }
}

section.info-section {
    display: none;
}

/* about us css end here */

/* services page css start here */
.service {
    /* background: url("../images/inner-banner.jpg") no-repeat center center/cover; */
    background: linear-gradient(rgb(0 0 0 / 30%), rgb(0 0 0 / 38%)), url(../images/inner-banner.jpg) no-repeat center center / cover;
    color: white;
    text-align: center;
    padding: 100px 20px;
    height: 300px;

    display: flex;
    justify-content: center;
    /* Horizontal center */
    align-items: center;
    /* Vertical center */
}

.LDCJPS.section-top-padding {
    padding-top: 0;
}

.LDCJPS h3 {
    font-weight: bold;
    font-size: 32px;
}

footer h3 {
    font-weight: bold;
}

/* services page css end here */
/* hospital-exam-table css start here */
.hospital-exam-table {
    padding: 40px 20px;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 products in a row */
    gap: 20px;
    /* Space between products */
}

section.product-section {
    padding-bottom: 40px;
}

/* Product Box */
.product-box {
    text-align: center;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* Image Styling */
.product-box img {
    border-radius: 2px;
}

/* Headings */
.product-box h3 {
    font-size: 20px;
    margin: 10px 0 5px;
    font-weight: bold;
}

.product-box h4 {
    font-size: 20px;
    color: #081d5c;
    margin-bottom: 15px;
    font-weight: bold;
}

/* Inquiry Button */
.inquiry-btn {
    display: inline-block;
    background: #007bff;
    color: white;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
}

.inquiry-btn:hover {
    background: #0056b3;
}

/* Hover Effect */
.product-box:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 products per row on tablets */
    }
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(1, 1fr);
        /* 1 product per row on mobile */
    }
}

/* hospital-exam-table css start here */
/* contact us css start here*/
.about_us_sec form {
    background: #ddd;
    padding: 30px;
    border: 2px solid #007bff;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.about_us_sec .row {
    align-items: center;
}

/* contact us css end here */

/* header menu css click able */

li.active_menu a {
    display: inline-block;
    text-decoration: none;
    color: #000;
    width: 80%;
}

ul#submenu li a {
    display: inline-block;
    text-decoration: none;
    color: #000;
    width: 90%;
}

h3.india-map {
    font-size: 52px;
    font-weight: bold;
    text-align: center;
    color: #081d5c;
}