@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
* {
    margin: 0px !important;
    padding: 0px;
    scroll-behavior: smooth;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none !important;
}
:root {
    --primary-color: #867a6a;
    --secondary-color: #cda167fc;
    --black-button: #000000;
    --text-color: #1e1e1e;
    --heading-font: "Poppins", sans-serif;
    --text-font: "Inter", sans-serif;
}
body {
    font-family: var(--text-font);
    transform: none !important;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
    color: var(--secondary-color);
}
.breadcrumb-item + .breadcrumb-item::before {
    float: left;
    padding-right: var(--bs-breadcrumb-item-padding-x);
    color: white;
    content: "\276F";
}

/* Show dropdown on hover */
.dropdown-hover:hover > .dropdown-menu {
    display: block;
}

/* Submenu container */
.dropdown-submenu {
    position: relative;
}

/* Submenu hidden by default */
.dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    right: auto;
    margin-left: 0;
    margin-right: 0;
    display: none;
    position: absolute;
}
/* Submenu base */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-left: 0;
    margin-right: 0;
}

/* If submenu would overflow, open to left */
.dropdown-submenu.drop-left > .dropdown-menu {
    right: 100%;
    left: auto;
}
/* Show submenu on hover */
.dropdown-submenu:hover > .dropdown-menu {
    display: block;
}

.mega-menu .dropdown-item {
    padding: 12px 16px;
    white-space: nowrap;
}

/*.mega-dropdown {*/
/*  position: static;*/
/*}*/

/*.mega-menu {*/
/*  position: absolute;*/
/*  left: 0;*/
/*  right: 0;*/
/*  top: 100%;*/
/*  width: 100%;*/
/*  background: #fff;*/
/*  z-index: 1000;*/

/* Animation */
/*  opacity: 0;*/
/*  visibility: hidden;*/
/*  transform: translateY(10px);*/
/*  transition: all 0.25s ease;*/
/*  pointer-events: none;*/
/*}*/

/*.mega-menu.show {*/
/*  opacity: 1;*/
/*  visibility: visible;*/
/*  transform: translateY(0);*/
/*  pointer-events: auto;*/
/*}*/

/* Show on hover (desktop) */
/*.mega-dropdown:hover .mega-menu {*/
/*  opacity: 1;*/
/*  visibility: visible;*/
/*  transform: translateY(0);*/
/*  pointer-events: auto;*/
/*}*/

/* LEFT COLUMN */
/*.mega-left {*/
/*  width: 260px;*/
/*  max-height: 420px;*/
/*  overflow-y: auto;*/
/*  border-right: 1px solid #ddd;*/
/*  flex-shrink: 0; */
/*}*/

/*.mega-right {*/
/*  min-height: 420px;*/
/*}*/
/*.submenu {*/
/*  display: none;*/
/*}*/

/*.submenu.active {*/
/*  display: block;*/
/*}*/
.dropdown-item.active,
.dropdown-item:hover,
.dropdown-item:active {
    background-color: var(--secondary-color);
}

.color-text {
    color: var(--text-color);
}
.nav-link {
    font-weight: 500;
    color: var(--black-button);
}
.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: var(--secondary-color);
}
.nav-link:hover {
    color: var(--secondary-color) !important;
}
.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    color: var(--secobdary-button) !important;
}
.banner-btn {
    background-color: var(--black-button);
    padding: 13px 20px;
    border-radius: 32px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    gap: 3px;
    border: none;
    transition: all 0.3s ease-in-out;
    max-height: 50px;
}
.banner-btn:hover {
    transform: translateY(-2px);
}
.contact-btn {
    background-color: var(--black-button);
    padding: 10px 20px;
    border-radius: 32px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    gap: 3px;
    border: none;
    transition: all 0.3s ease-in-out;
}
.contact-btn:hover {
    transform: translateY(-1px);
    background-color: var(--secondary-color);
}
.hero-section {
    position: relative;
    z-index: 1;
}
.banner {
    width: 100%;
    height: 70vh;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}
.banner-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    /* background: linear-gradient(271deg,rgba(16, 132, 126, 0.36) 0%, rgba(10, 83, 79, 0.91) 100%); */
    /*background: linear-gradient(271deg,#867a6a4a 0%, #867a6a 100%);*/
    /*background: linear-gradient(271deg,#867a6a00 0%, var(--secondary-color) 100%);*/
    z-index: 0;
    background: linear-gradient(271deg, #ffffff00 0%, #cda1679c 100%);
}
.hero-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 1;
}
.text-black :is(h1, h2, h3, h4, h5, h6, p) {
    color: black;
    font-size: 20px;
}
#about h2 {
    font-size: 32px;
}
#about h3 {
    font-size: 28px;
}
#capabilities h3 {
    font-size: 35px;
}
#capabilities h3 span {
    color: #000;
}
.primary-heading h1,
.primary-heading h2,
.primary-heading h3,
.primary-heading h4,
.primary-heading h5,
.primary-heading h6,
.primary-heading p {
    color: black;
    font-weight: 600;
    font-size: 48px;
}
.secondary-heading h1,
.secondary-heading h2,
.secondary-heading h3,
.secondary-heading h4,
.secondary-heading h5,
.secondary-heading h6,
.secondary-heading p {
    font-size: 48px;
    font-weight: 500;
}
span p {
    padding-bottom: 15px;
}
.contact-btn-2 {
    background-color: white;
    color: var(--black-button);
    padding: 13px 20px;
    border-radius: 32px;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    gap: 3px;
    font-weight: 500;
    border: none;
    transition: all 0.3s ease-in-out;
}
.contact-btn-2:hover {
    transform: translateY(-1px);
}
.justify-text {
    text-align: justify;
}
.card-wrap {
    padding: 20px;
    border: 1px solid var(--primary-color);
    border-radius: 16px;
    transition: all 0.3s ease-in-out;
}
.card-wrap:hover {
    border-color: Var(--secondary-color);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}
.one-line {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}
.three-line {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}
.img-wrap img {
    width: 100%;
    border-radius: 16px;
}
.img-wrap p {
    color: var(--text-color);
}
.card-btn {
    background-color: var(--black-button);
    padding: 10px 20px;
    color: white;
    border: none;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
}
.card-btn:hover {
    background-color: var(--secondary-color);
}
.category-wrap {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
}
.category-images {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}
.category-images:hover {
    transform: scale(1.05);
}
.category-title {
    color: var(--black-button);
    transition: all 0.3s ease-in-out;
}
.category-title:hover {
    color: var(--secondary-color);
}

.services-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.service-card {
    background: #fff;
    border: 1px solid var(--primary-color);
    border-radius: 16px;
    padding: 32px 20px 32px;
    text-align: center;
    height: 100%;
    transition: all 0.25s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px var(--primary-color);
}

.service-icon {
    width: 75px;
    height: 75px;
    margin: 0 auto 18px auto;
    border-radius: 50%;
    /* background: rgba(16, 132, 126, 0.08); */
    background-color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 34px;
    transition: all 0.3s ease-in-out;
}
.service-card:hover .service-icon {
    background-color: var(--primary-color);
}
.service-title {
    font-family: var(--heading-font);
    color: black !important;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.service-text {
    font-family: var(--text-font);
    font-size: 0.95rem;
    color: var(--text-color);
    margin: 0;
}
.cap-wrap {
    background-color: white;
    border: 1px solid var(--primary-color);
    transition: all 0.3s ease-in-out;
}
.cap-wrap:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px var(--primary-color);
}

.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e5e5e5;
    height: 100%;
    transition: 0.25s ease;
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
}
.product-btn {
    background-color: var(--black-button);
    color: white;
    transition: all 0.3s ease-in-out;
}
.product-btn:hover {
    background-color: var(--secondary-color);
    color: white;
}
.zoom {
    aspect-ratio: 16/9;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
}
.zoom:hover {
    transform: scale(1.05);
}
.product-card:hover {
    /* transform: translateY(-1px); */
    border: 1px solid var(--primary-color);
    /* box-shadow: 0 8px 24px rgba(0,0,0,0.08); */
}
.product-card:hover img {
    transform: scale(1.05);
}
.custom-swiper-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black-button); /* default arrow color */
    transition: color 0.3s ease;
}
.custom-swiper-btn:hover {
    background: var(--secondary-color);
    color: #fff;
}
/* .bento-img img {
  transition: transform 0.5s ease;
}
.bento-img:hover img {
  transform: scale(1.1);
} */

.feature-item {
    transition: 0.25s ease;
    background: #fff;
    border: 1px solid #dbeafe;
}

.feature-item:hover {
    border-color: var(--primary-color) !important;
}
.icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    /* background: #c1e1dfb0; */
    background-color: var(--secondary-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.feature-item:hover .icon-box {
    background-color: var(--secondary-color);
}

.feature-item-top {
    display: flex;
    align-items: center;
    gap: 16px;
}

.feature-icon-box-top {
    width: 64px;
    height: 64px;
    background: #fff;
    /*border-radius: 12px;*/
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    font-size: 26px;
    flex-shrink: 0;
}

.icon-medicine {
    color: #ff6b6b;
}
.icon-wellness {
    color: #51cf66;
}
.icon-diagnostic {
    color: #5c7cfa;
}
.icon-health {
    color: #fcc419;
}

.feature-text-top h5 {
    margin: 0 0 6px 0;
    font-weight: 500;
}

.feature-text-top p {
    margin: 0;
    font-size: 14px;
    color: #777;
}

.map-image {
    width: 100%;
    object-fit: cover;
    border-radius: 15px;
}
.story-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    min-height: 420px;
}

.story-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
}
.story-card:hover img {
    transform: scale(1.05);
}
.story-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.1));
    display: flex;
    align-items: flex-end;
    padding: 24px;
}

.story-text {
    color: #fff;
    max-width: 90%;
}

.story-text h3 {
    font-weight: 700;
    margin-bottom: 10px;
}

.story-text p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.95;
}

.info-card {
    border-radius: 24px;

    height: 100%;
}

.mission-card {
    background-color: white;
    color: #000;
    transition: all 0.3s ease-in-out;
}
.mission-card:hover {
    background-color: var(--black-button);
    color: #fff;
}
.vision-card {
    background-color: var(--black-button);
    color: #fff;
    transition: all 0.3s ease-in-out;
}
.vision-card:hover {
    background-color: white;
    color: #000;
}
.info-card h4 {
    font-weight: 700;
    margin-bottom: 12px;
}

.info-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.9;
}

.stat-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    height: 100%;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.stat-icon {
    font-size: 42px;
    color: #b08a4a; /* gold-ish */
    margin-bottom: 16px;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #111;
    margin-bottom: 4px;
}

.stat-title {
    font-size: 18px;
    font-weight: 600;
    color: #b08a4a;
    margin-bottom: 12px;
}

.stat-text {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}
.cta-section {
    position: relative;
    /*background-image:url(../image/banner.webp);*/
    background-size: cover;
    width: 100%;
    height: 50vh;
}
.cta-wrap {
    background-color: var(--secondary-color);
}
.cta_dots {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.85;
    background: /* major guides */
        linear-gradient(
                to right,
                rgba(255, 255, 255, 0.08) 1px,
                transparent 1px
            )
            0 0 / 110px 100%,
        linear-gradient(
                to bottom,
                rgba(255, 255, 255, 0.08) 1px,
                transparent 1px
            )
            0 0 / 100% 110px,
        /* minor grid */
        linear-gradient(
                to right,
                rgba(255, 255, 255, 0.05) 1px,
                transparent 1px
            )
            0 0 / 22px 100%,
        linear-gradient(
                to bottom,
                rgba(255, 255, 255, 0.05) 1px,
                transparent 1px
            )
            0 0 / 100% 22px;
    mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        #000 10%,
        #000 90%,
        transparent 100%
    );
}
.our_sponsers_title::after {
    content: "";
    width: 10px;
    height: 10px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -25px;
    border-radius: 100%;
    background: white;
}
.our_sponsers_title::before {
    content: "";
    width: 10px;
    height: 10px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -25px;
    border-radius: 100%;
    background: white;
}
.about-image {
    transition: all 0.3s ease-in-out;
}
.about-image:hover {
    transform: scale(1.05);
}

.thumb {
    cursor: pointer;
    border: 2px solid transparent;
    padding: 4px;
    border-radius: 6px;
    transition: 0.2s;
}

.thumb:hover {
    border-color: var(--secondary-color); /* Bootstrap primary */
}

.thumb.active {
    border-color: var(--secondary-color);
}

.site-footer {
    background: #f8f9fa;
    border-top: 1px solid #e5e5e5;
    font-size: 0.95rem;
}
.banner-title {
    /*background-image:url(../image/small-banner.webp);*/
    background-size: cover;
    background-position: center;
    z-index: 0;
    height: 30vh;
}
.product-card-new {
    width: 100%;
    height: 250px;
    /*background-image:url(../image/product.webp);*/
    background-size: cover;
    background-position: center;
}
.content-product a svg {
    transition: all 0.3s ease-in-out;
}
.content-product a:hover svg {
    transform: rotate(47deg);
}
.icon-bg {
    padding: 10px;
    background: var(--black-button);
    border-radius: 50%;
}
.left-wrap {
    background-color: var(--secondary-color);
}
.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 1px #867a6a !important;
}
/* Main Footer Wrapper */
.site-footer {
    background: var(--black-button);
    border-top: 1px solid #e2e8f0; /* subtle divider from section above */
    font-size: 0.95rem;
    padding-top: 25px; /* generous top spacing */
}

/* Inner container spacing (optional fine-tuning) */
.site-footer .container {
    padding-bottom: 16px;
}

/* Footer text */
.site-footer p,
.site-footer li,
.site-footer div {
    color: #e7e7e7f0;
}

.footer-title {
    font-weight: 600;
    margin-bottom: 14px;
    color: white; /* dark, clean heading */
}

/* About text */
.footer-text {
    max-width: 320px;
    line-height: 1.6;
}

/* Footer links */
.footer-links {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    text-decoration: none;
    color: #fffffff0;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--primary-color); /* teal accent */
}

/* Contact list */
.footer-contact {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-contact li {
    margin-bottom: 8px;
    /*color: #6c757d;*/
}

/* Badges */
.footer-badge {
    background: #e7e7e7f0;
    color: black;
    font-weight: 500;
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 0.8rem;
}

/* Social icons */
.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.2s ease;
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
}

/* Bottom bar */
.footer-bottom {
    border-top: 1px solid #e2e8f0;
    padding: 16px 0;
    background: var(--black-button);
    font-size: 0.9rem;
    color: #6c757d;
    margin-top: 40px;
}

/* Bottom links */
.footer-bottom-links a {
    color: #fffffff0;
    text-decoration: none;
    margin: 0 6px;
    transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}
.modal.show .modal-dialog {
    width: 100% !important;
}
.modal.show {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.modal-dialog {
    margin: 0 auto !important;
    transform: none !important;
}
.modal .btn-close {
    --bs-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ff0000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414'/%3e%3c/svg%3e");
}
