* {
    box-sizing: border-box;
}

body {
    padding: 0;
    margin: 0;
    font-family: 'Times New Roman', Times, serif !important;
}

img {
    max-width: 100%;
}

.container {
    max-width: 1140px;
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}

.wrapper {
    overflow-x: hidden;
}


/* topbar-area-css-start */


.topbar {
    width: 100%;
    padding: 10px 0px;
    background: linear-gradient(135deg, #0468b7, #0693e9, #299a40);
    border-bottom: 1px solid #ffffff3a;
    overflow: hidden;
}

/* LEFT SIDE (same) */
.topbar-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.ph-number {
    display: flex;
    align-items: center;
    gap: 5px;
}

.ph-icon {
    font-size: 13px;
    color: #fff;
}

.ph-text {
    font-size: 14px;
    color: #fff;
    font-weight: 600;
}

/* RIGHT SIDE TEXT SCROLL */
.topbar-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
}

/* Moving Text */
.scroll-text {
    white-space: nowrap;
    overflow: hidden;
    width: 100%;
}

.scroll-text span {
    display: inline-block;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding-left: 100%;
    animation: scrollLeft 20s linear infinite;
}

/* Animation */
@keyframes scrollLeft {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}


@media (max-width: 775px) {


    .topbar-left {
        display: none;
    }


}



/* topbar-area-css-end */


/* navbar-area-start */

.custom-navbar {
    background-color: #f0eeed;
    padding: 10px 0;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

/* WHEN SCROLL */
.custom-navbar.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    background: #fff;
    border: 2px solid #174d76;
    box-shadow: 0 5px 20px #4b98f361;
}

/* Logo */
.logo {
    height: 65px;
    border: 1px solid #2a9a3f;
    padding: 5px;
    border-radius: 6px;
    box-shadow: 0px 0px 15px #0693e97a;
}

/* Nav Links */
.navbar-nav .nav-link {
    color: #194d77;
    font-size: 16px;
    font-weight: 600;
    margin: 0 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
    cursor: pointer;
    transition: 0.3s;
}

/* Icons before text */
.nav-link i {
    font-size: 14px;
    color: #1e3c72;
}

/* Hover */
.navbar-nav .nav-link:hover {
    color: #0693e9;
    transition: 0.3s;
}

/* Underline */
.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: #0693e9;
    left: 0;
    bottom: -3px;
    transition: 0.3s;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* Dropdown */
.dropdown-menu-custom {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    border-radius: 10px;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s ease;
    padding: 10px 0;
    z-index: 999;
}

.dropdown-menu-custom a {
    display: block;
    padding: 10px 15px;
    font-size: 14px;
    color: #0a2540;
    text-decoration: none;
    transition: 0.3s;
}

.dropdown-menu-custom a:hover {
    background: #f5f8ff;
    padding-left: 20px;
}

/* Show Dropdown */
.nav-item.show .dropdown-menu-custom {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Button */
.talk {
    padding: 8px 15px;
    border-radius: 6px;
    background: #0693e9;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.talk:hover {
    background: #2d9c3f;
    transition: 0.3s;
}

/* Mobile */
@media (max-width: 991px) {
    .navbar-nav {
        background: #f0eeed;
        padding: 15px;
        border-radius: 10px;
    }

    .nav-item {
        position: relative;
    }

    .dropdown-menu-custom {
        position: static;
        box-shadow: none;
        transform: none;
        display: none;
    }

    .nav-item.show .dropdown-menu-custom {
        display: block;
    }
}

/* PRODUCT DROPDOWN BOX */
.dropdown-product {
    position: relative;
}

.product-dropdown-box {
    position: absolute;
    top: 100%;
    left: 0;
    width: 260px;
    max-height: 350px;
    overflow-y: auto;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    display: none;
    z-index: 999;
    animation: fadeIn 0.3s ease;
}

/* Scrollbar */
.product-dropdown-box::-webkit-scrollbar {
    width: 5px;
}

.product-dropdown-box::-webkit-scrollbar-thumb {
    background: #1e3c72;
    border-radius: 10px;
}

/* Links */
.product-dropdown-box a {
    display: block;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 600;
    color: #2073aa;
    text-decoration: none;
    transition: 0.3s;
}

.product-dropdown-box a:hover {
    background: #f5f8ff;
    padding-left: 20px;
    color: #1e3c72;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* PLUS ICON ROTATE */
.plus-icon {
    transition: 0.3s;
}

.dropdown-product.active .plus-icon {
    transform: rotate(45deg);
}

/* MOBILE */
@media (max-width: 991px) {
    .product-dropdown-box {
        position: static;
        width: 100%;
        box-shadow: none;
        max-height: none;
    }
}


/* offcanvas-start */

.navbar-toggler {
    color: #0e2a4b !important;
    border: 2px solid #0e2a4b !important;
}

/* OFFCANVAS MAIN */
.custom-offcanvas {
    width: 280px;
    /* background: linear-gradient(135deg, #0a2540, #1e3c72); */
    background-color: #fff;
    color: #fff;
    border: none;
}

/* HEADER */
.custom-header {
    position: relative;
    padding: 15px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* LOGO */
.custom-header .logo {
    height: 70px;
}

/* CLOSE BUTTON (TOP RIGHT CIRCLE) */
.close-btn {
    position: absolute;
    top: 23px;
    right: -18px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: #ffffff;
    color: #0e2a4b;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid #112d52;
}

/* HOVER EFFECT */
.close-btn:hover {
    background: #00b4db;
    color: #fff;
    transform: rotate(90deg) scale(1.1);
}

.custom-offcanvas {
    height: 100vh;
    z-index: 99999 !important;
}

/* BODY */
.custom-offcanvas .offcanvas-body {
    padding: 15px;
}

/* NAV LINKS */
.custom-offcanvas .nav-link {
    color: #184f77;
    font-size: 15px;
    padding: 10px 12px;
    border-radius: 8px;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ICON STYLE */
.custom-offcanvas .nav-link i {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: 0.3s;
}

/* HOVER EFFECT */
.custom-offcanvas .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.custom-offcanvas .nav-link:hover i {
    background: #00b4db;
    color: #fff;
}

/* MOBILE DROPDOWN */
.mobile-dropdown .nav-link {
    justify-content: space-between;
}

/* PRODUCT MENU */
.mobile-product-menu {
    display: none;
    padding-left: 44px;
    margin-top: 5px;
    background-color: #0096c70f;
}

/* SUB LINKS */
.mobile-product-menu a {
    display: block;
    padding: 6px 0;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.mobile-product-menu a:hover {
    color: #00b4db;
    padding-left: 5px;
}

/* ACTIVE DROPDOWN */
.mobile-dropdown.active .mobile-product-menu {
    display: block;
}

/* PLUS ICON ROTATE */
.mobile-dropdown.active i.fa-plus {
    transform: rotate(45deg);
}

/* MOBILE PRODUCT SCROLL BOX */
.mobile-product-menu {
    display: none;
    max-height: 220px;
    /* 👈 control height here */
    overflow-y: auto;
    padding-left: 15px;
    margin-top: 8px;
    border-left: 2px solid rgba(255, 255, 255, 0.2);
}

/* SHOW WHEN ACTIVE */
.mobile-dropdown.active .mobile-product-menu {
    display: block;
}

/* SCROLLBAR DESIGN */
.mobile-product-menu::-webkit-scrollbar {
    width: 5px;
}

.mobile-product-menu::-webkit-scrollbar-thumb {
    background: #00b4db;
    border-radius: 10px;
}

.mobile-product-menu::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

/* BUTTON */
.custom-offcanvas .talk {
    display: block;
    padding: 10px;
    border-radius: 8px;
    background: #00b4db;
    color: #fff;
    text-align: center;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.custom-offcanvas .talk:hover {
    background: #0096c7;
}

/* DESKTOP HOVER DROPDOWN */
.dropdown-product:hover .product-dropdown-box {
    display: block;
}

/* Keep hover active */
.dropdown-product:hover .plus-icon {
    transform: rotate(45deg);
}

/* Smooth */
.product-dropdown-box {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: 0.3s;
}

.dropdown-product:hover .product-dropdown-box {
    display: block;
    opacity: 1;
    transform: translateY(0);
}


/* ==========================
   OFFCANVAS ADDRESS SECTION
========================== */

.offcanvas-address {
    margin-top: 25px;
    padding: 18px;
    border-radius: 12px;
    background: linear-gradient(135deg, #0d6efd, #299a46);
    border: 1px solid #d8e9ff;
    box-shadow: 0px 0px 15px #194d79;
}

.offcanvas-address h6 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
}

.offcanvas-address h6 i {
    color: #0693e9;
    margin-right: 6px;
}

.offcanvas-address p {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 12px;
}

.offcanvas-address a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    margin-bottom: 10px;
    transition: 0.3s;

}

.offcanvas-address a i {
    width: 32px;
    height: 32px;
    background: #0693e9;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offcanvas-address a:hover {
    color: #0693e9;
    transform: translateX(4px);
}

/* View Product Button */
.custom-offcanvas .talk {
    display: block;
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    background: linear-gradient(135deg, #0693e9, #2a9a3f);
    color: #fff;
    text-align: center;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.custom-offcanvas .talk:hover {
    transform: translateY(-2px);
    color: #fff;
}

.office-address {
    margin-top: 15px;
    line-height: 1.8;
}

.office-address i {
    margin-right: 8px;
}



/* navbar-area-end */

/* banner-area-css-start */

/* ==========================
   BANNER SECTION
========================== */

.banner-section {
    position: relative;
}

.banner-image {
    position: relative;
    height: 650px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* BACKGROUND LAYER */

.banner-bg {
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    animation: zoomBanner 6s ease-in-out infinite alternate;
}

.banner-bg1 {
    background-image: url("../img/banner/slide01.webp");
}

.banner-bg2 {
    background-image: url("../img/banner/slide02.webp");
}

.banner-bg3 {
    background-image: url("../img/banner/slide03.webp");
}

/* OVERLAY */

.banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

/* CONTENT */

.banner-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    width: 90%;
    text-align: center;
    color: #fff;
}

.banner-content h4 {
    font-size: 18px;
    color: #0693e9;
    margin-bottom: 10px;
    font-weight: 600;
}

.banner-content h1 {
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 10px;
    font-weight: 700;
}

.banner-content p {
    font-size: 16px;
    line-height: 1.7;
    max-width: 700px;
    margin: auto;
}

/* BUTTONS */

.banner-btns {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn1,
.btn2 {
    padding: 12px 35px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn1 {
    background: #16a34a;
    color: #fff;
    border: 2px solid #16a34a;
}

.btn1:hover {
    background: transparent;
    color: #16a34a;
}

.btn2 {
    background: #0693e9;
    color: #fff;
    border: 2px solid #0693e9;
}

.btn2:hover {
    background: transparent;
    color: #0693e9;
}

/* OWL NAVIGATION */

.banner-slider .owl-nav {
    position: absolute;
    top: 50%;
    left: 3%;
    width: 94%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    z-index: 10;
}

.banner-slider .owl-prev,
.banner-slider .owl-next {
    width: 50px;
    height: 50px;
    border: 2px solid #fff !important;
    color: #fff !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-slider .owl-prev span,
.banner-slider .owl-next span {
    font-size: 35px;
}

/* IMPORTANT FIX */

.banner-slider .owl-stage-outer,
.banner-slider .owl-item,
.banner-item {
    overflow: hidden;
}

/* ZOOM EFFECT */

@keyframes zoomBanner {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.12);
    }
}

/* MOBILE */

@media (max-width:768px) {

    .banner-image {
        height: 370px;
    }

    .banner-content h1 {
        font-size: 24px;
    }

    .banner-content p {
        font-size: 12px;
        line-height: 1.5;
    }

    .banner-btns {
        /* flex-direction: column; */
        margin-top: 15px;
    }

    .btn1,
    .btn2 {
        width: 100%;
        padding: 10px 10px;
        font-size: 12px;
    }

    .banner-slider .owl-prev,
    .banner-slider .owl-next {
        width: 35px;
        height: 35px;
    }

    .banner-slider .owl-prev span,
    .banner-slider .owl-next span {
        font-size: 21px;
    }
}

/* banner-area-css-end */

/* about-section-css-start */


/* ===================================
   ABOUT SECTION
=================================== */

.about-section {
    padding: 80px 0;
    background: #f6fbff;
}

.about-image-box {
    position: relative;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* MAIN LOGO */

.main-logo-box {
    width: 100%;
    max-width: 550px;
    padding: 20px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.10);
    position: relative;
    z-index: 5;
}

.main-logo-box img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* FLOATING MEDICINES */

.floating-pill {
    position: absolute;
    width: 110px;
    height: 110px;
    background: #fff;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .10);
    overflow: hidden;
    z-index: 99;
}

.floating-pill img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* POSITIONS */

.pill-1 {
    top: 20px;
    left: 20px;
    animation: float1 6s ease-in-out infinite;
}

.pill-2 {
    top: 40px;
    right: 20px;
    animation: float2 7s ease-in-out infinite;
}

.pill-3 {
    bottom: 40px;
    left: 40px;
    animation: float3 6.5s ease-in-out infinite;
}

.pill-4 {
    bottom: 20px;
    right: 40px;
    animation: float4 7.5s ease-in-out infinite;
}

/* SMOOTH FLOAT */

@keyframes float1 {
    50% {
        transform: translateY(-20px);
    }
}

@keyframes float2 {
    50% {
        transform: translateY(-30px);
    }
}

@keyframes float3 {
    50% {
        transform: translateY(-25px);
    }
}

@keyframes float4 {
    50% {
        transform: translateY(-18px);
    }
}

/* CONTENT */

.about-content .sub-title {
    color: #00bcd4;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-content h2 {
    font-size: 34px;
    font-weight: 600;
    color: #184e77;
    margin: 10px 0 15px;
    line-height: 1.2;
}

.about-content p {
    color: #000;
    line-height: 1.8;
    margin-bottom: 10px;
    font-size: 14px;
}

/* REASONS */

.about-reasons {
    margin: 20px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.reason-box {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    border-left: 4px solid #184e77;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .05);
}

.reason-box h4 {
    font-size: 15px;
    color: #184e77;
    margin-bottom: 5px;
}

.reason-box p {
    font-size: 13px;
    margin: 0;
}

/* BUTTON */

.about-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #005bea;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    transition: .3s;
}

.about-btn:hover {
    background: #003f9e;
}

/* TABLET */

@media (max-width:991px) {

    .about-image-box {
        height: auto;
        padding-top: 0px;
        margin-bottom: 60px;
    }

    .main-logo-box {
        max-width: 450px;
    }

    .floating-pill {
        width: 70px;
        height: 70px;
    }

    /* medicines above logo */

    .pill-1 {
        top: -29px;
        left: 3%;
    }

    .pill-2 {
        top: -23px;
        right: 0%;
    }

    .pill-3 {
        top: 150px;
        left: 23%;
    }

    .pill-4 {
        top: 141px;
        right: 30%;
    }

    .about-content {
        text-align: center;
    }

    .about-content h2 {
        font-size: 30px;
    }
}

/* MOBILE */

@media (max-width:767px) {
    .about-section {
        padding: 60px 0;
    }

    .about-image-box {
        padding-top: 0px;
    }

    .main-logo-box {
        max-width: 320px;
    }

    .floating-pill {
        width: 55px;
        height: 55px;
    }

    .about-reasons {
        grid-template-columns: 1fr;
    }

    .about-content h2 {
        font-size: 22px;
        margin: 7px;
    }

    .about-content p {
        line-height: 1.6;
        margin-bottom: 8px;
        font-size: 13px;
    }

}


/* about-section-css-end */



/* see-our-products-section-css-start */

.products-main-page {
    padding: 80px 0px;
    background: linear-gradient(to bottom, #0693e91a, #0e2a4b21);
}


.products-main-page .section-title {
    max-width: 750px;
    margin: auto;
    margin-bottom: 30px;
    text-align: center;
}

.products-main-page .section-title span {
    display: inline-block;
    color: #00bcd4;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 6px;
    font-size: 18px;
}

.products-main-page .section-title h2 {
    font-size: 34px;
    font-weight: 700;
    color: #184e77;
    margin-bottom: 8px;
}

.product-five-grid {
    display: flex;
    flex-wrap: wrap;
}

/* 5 cards in one row */
.col-custom {
    flex: 0 0 20%;
    max-width: 20%;
}

.product-card-main {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 5px 20px #0693e929;
    height: 100%;
    border: 1px solid #184e77;
}

.product-img-main {
    overflow: hidden;
}

.product-img-main img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.product-content-main {
    padding: 15px;
    text-align: center;
    border-top: 1px solid #184e77;
}

.product-content-main h4 {
    font-size: 18px;
    color: rgb(24, 77, 119);
    margin-bottom: 12px;
    font-weight: 700;
}

/* .product-btn-main{
    display: inline-block;
    margin-top: 10px;
    padding: 6px 14px;
    background: #0a57ff;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
} */
.product-btn-main {
    position: relative;
    display: inline-block;
    padding: 8px 30px;
    border: 2px solid rgb(6, 147, 233);
    color: #184e77;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    overflow: hidden;
    z-index: 1;
    transition: 0.4s;
}

/* Center Fill Effect */
.product-btn-main::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, #0693e9, #2a9a3f);
    transform: translateX(-50%);
    transition: 0.5s ease;
    z-index: -1;
    border-radius: 50px;
}

.product-btn-main:hover::before {
    width: 100%;
}

.product-btn-main:hover {
    color: #fff;
    border-color: #0693e9;
    transform: translateY(-3px);
}



/* Responsive */
@media (max-width: 1200px) {
    .col-custom {
        flex: 0 0 25%;
        max-width: 25%;
    }
}

@media (max-width: 992px) {
    .col-custom {
        flex: 0 0 33.33%;
        max-width: 33.33%;
    }
}

@media (max-width: 768px) {
    .col-custom {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 576px) {
    .col-custom {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media(max-width:767px) {

    .products-main-page {
        padding: 40px 0;
    }

    .products-main-page .section-heading h2 {
        font-size: 28px;
    }

    .product-img-main {
        height: 200px;
    }

    .product-content-main h4 {
        font-size: 20px;
    }

    .products-main-page .section-title h2 {
        font-size: 24px;
    }

    .products-main-page .section-title span {
        letter-spacing: 1px;
        margin-bottom: 3px;
        font-size: 16px;
    }

    .product-img-main img {
        width: 100%;
        height: 214px;
        object-fit: contain;
        overflow: hidden;
    }


}

/* see-our-products-section-css-end */


/* why-choose-us-section-css-start */

.why-choose-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #ffffff, #f5fbff);
}

/* SECTION HEADING */

.why-choose-section .section-title {
    max-width: 750px;
    margin: auto;
    margin-bottom: 60px;
}

.why-choose-section .section-title span {
    display: inline-block;
    color: #00bcd4;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 6px;
}

.why-choose-section .section-title h2 {
    font-size: 34px;
    font-weight: 700;
    color: #184e77;
    margin-bottom: 8px;
}

.why-choose-section .section-title p {
    font-size: 14px;
    color: #000;
    line-height: 1.7;
}

/* CARD */

.choose-card {
    position: relative;
    background: #fff;
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    height: 100%;
    transition: 0.4s;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

/* TOP GRADIENT BAR */

.choose-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00d4ff, #005bea);
}

.choose-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

/* ICON */

.choose-icon {
    width: 80px;
    height: 80px;
    margin: auto;
    margin-bottom: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00d4ff, #005bea);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
}

.choose-icon i {
    color: #fff;
    font-size: 30px;
}

/* TEXT */

.choose-card h4 {
    font-size: 20px;
    color: #184e77;
    margin-bottom: 10px;
    font-weight: 700;
}

.choose-card p {
    font-size: 14px;
    color: #000;
    line-height: 1.6;
    margin: 0;
}

/* RESPONSIVE */

@media(max-width:991px) {

    .why-choose-section {
        padding: 40px 0;
    }

    .why-choose-section .section-title h2 {
        font-size: 28px;
    }

}

@media(max-width:767px) {

    .why-choose-section .section-title h2 {
        font-size: 24px;
    }

    .choose-card {
        padding: 30px 20px;
    }

    .why-choose-section .section-title {
        margin-bottom: 30px;
    }

}

/* why-choose-us-section-css-end */

/* offer-section-css-start */

/* offer-section-start */

.offer-section {
    padding: 80px 0;
}

.offer-banner {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
}

.offer-banner img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

/* Right Side Content */

.offer-content {
    position: absolute;
    top: 50%;
    right: 60px;
    transform: translateY(-50%);
    max-width: 450px;
    padding: 35px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border-radius: 20px;
}

.offer-content span {
    display: inline-block;
    background: #0693e9;
    color: #fff;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    margin-bottom: 15px;
}

.offer-content h2 {
    color: #184d77;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
}

.offer-content p {
    color: #333;
    line-height: 1.8;
    margin-bottom: 25px;
}

.offer-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: .3s;
}

.offer-btn:hover {
    color: #fff;
    transform: translateY(-3px);
}

/* Tablet */

@media(max-width:991px) {

    .offer-banner img {
        height: 500px;
    }

    .offer-content {
        right: 30px;
        max-width: 380px;
    }

    .offer-content h2 {
        font-size: 30px;
    }
}

/* Mobile */

@media(max-width:767px) {

    .offer-banner img {
        height: 440px;
    }

    .offer-content {
        left: 20px;
        right: 20px;
        top: auto;
        bottom: 20px;
        transform: none;
        max-width: 100%;
        padding: 25px;
    }

    .offer-content h2 {
        font-size: 24px;
    }

}

/* offer-section-end */


/* testimonial-section-css-start */

.testimonial-section {
    padding: 80px 0;
    background: #eaf6ff;
    overflow: hidden;
}

.testimonial-left span {
    color: #00bcd4;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.testimonial-left h2 {
    font-size: 34px;
    color: #184e77;
    margin: 5px 0;
    font-weight: 700;
    line-height: 1.2;
}

.testimonial-left p {
    font-size: 14px;
    color: #000;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* NAVIGATION */

.testimonial-nav {
    display: flex;
    gap: 10px;
}

.testimonial-nav button {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: #005bea;
    color: #fff;
    cursor: pointer;
    transition: .3s;
}

.testimonial-nav button:hover {
    background: #184e77;
}

/* CARD */

.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    margin: 15px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .08);
    min-height: 260px;
}

.client-info {
    display: flex;
    align-items: start;
    justify-content: left;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 8px;
}

.client-info img {
    width: 70px !important;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

.client-info h4 {
    font-size: 18px;
    margin: 0;
    color: #184e77;
}

.client-info span {
    font-size: 13px;
    color: #000;
}

.testimonial-card p {
    font-size: 13px;
    line-height: 1.8;
    color: #000;
    margin: 0;
}

/* RESPONSIVE */

@media(max-width:991px) {

    .testimonial-left {
        text-align: center;
        margin-bottom: 40px;
    }

    .testimonial-nav {
        justify-content: center;
    }

    .testimonial-left h2 {
        font-size: 28px;
    }

}

@media(max-width:767px) {

    .testimonial-section {
        padding: 60px 0;
    }

    .testimonial-card {
        padding: 25px;
    }

}


/* testimonial-section-css-end */


/* footer-section-css-start */


.footer-section {
    background: linear-gradient(135deg, #0b1f3a, #184e77);
    padding: 80px 0 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    top: -120px;
    right: -120px;
}

.footer-logo {
    height: 75px;
    background: #fff;
    padding: 6px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.footer-widget p {
    font-size: 14px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.8);
}

.footer-widget h4 {
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    font-weight: 700;
}

.footer-widget h4::after {
    content: "";
    position: absolute;
    width: 45px;
    height: 3px;
    background: #00bcd4;
    left: 0;
    bottom: -10px;
    border-radius: 30px;
}

.footer-widget ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-widget ul li {
    margin-bottom: 12px;
}





.footer-widget ul li a,
.footer-contact a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    transition: 0.3s;
}

.footer-widget ul li a::after,
.footer-contact a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: #00d4ff;
    transition: width 0.4s ease;
}

.footer-widget ul li a:hover::after,
.footer-contact a:hover::after {
    width: 100%;
}

.footer-widget ul li a:hover,
.footer-contact a:hover {
    color: #00d4ff;
}



.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: .3s;
}

.footer-social a:hover {
    background: #00bcd4;
    transform: translateY(-4px);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: .3s;
}

.footer-contact a i {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-contact a:hover {
    color: #00d4ff;
}

.footer-bottom {
    margin-top: 60px;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom p a {
    font-weight: 600;
    color: #dc3545;
    text-decoration: none;
}

.footer-address {
    display: flex;
    align-items: start;
    gap: 12px;
    color: #fff;
    margin-top: 10px;
    line-height: 1.5;
}


.footer-address span {
    font-size: 14px;
    color: #fff;
    font-weight: 500;
}

.footer-address i {
    margin-top: 5px;
}


/*=========================
    RESPONSIVE
=========================*/

@media (max-width: 991px) {

    .footer-section {
        padding-top: 60px;
    }

    .footer-widget {
        /* text-align: center; */
    }

    .footer-widget h4::after {
        /* left: 50%; */
        transform: translateX(0%);
    }

    .footer-social {
        /* justify-content: center; */
    }

    .footer-contact a {
        justify-content: center;
    }
}



@media(max-width:767px) {


    .footer-bottom {
        margin-top: 30px;
        padding: 25px 0;
        border-top: 1px solid rgb(255 255 255 / 36%);
        text-align: center;
    }

    .footer-contact {
        display: flex;
        align-items: start;
        flex-direction: column;
        gap: 15px;
    }

}

@media (max-width: 576px) {

    .footer-widget h4 {
        font-size: 18px;
    }

    .footer-bottom p {
        font-size: 13px;
        line-height: 1.7;
    }

    .footer-logo {
        height: 65px;
    }
}


/* footer-section-css-end */



/* about-us-banner-css-start */

.about-us-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, #0693e9, #289a3d);
    position: relative;
    overflow: hidden;
}

/* SMOOTH ANIMATION EFFECT */
.about-us-banner::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent 60%);
    top: -50%;
    left: -50%;
    animation: moveGlow 8s linear infinite;
}

/* ANIMATION */
@keyframes moveGlow {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(25%, 25%);
    }

    100% {
        transform: translate(0, 0);
    }
}

/* CONTENT */
.about-content {
    position: relative;
    z-index: 2;
}

.about-content h1 {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

/* BREADCRUMB */
.breadcrumb-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.breadcrumb-box a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.breadcrumb-box a:hover {
    color: #000;
}

.breadcrumb-box span {
    color: #fff;
    font-size: 14px;
}

.breadcrumb-box .active {
    color: #0e2a4b;
    font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .about-us-banner {
        padding: 60px 0;
    }

    .about-content h1 {
        font-size: 28px;
    }

    .breadcrumb-box {
        flex-wrap: wrap;
        gap: 5px;
    }
}

/* about-us-banner-css-end */


/* mission-vision-section-start */

.mission-vision-section {
    padding: 70px 0;
    background: linear-gradient(135deg, #f8fbff, #edf7ff);
}

.mission-vision-section .section-heading {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 25px;
}

.mission-vision-section .section-heading span {
    display: inline-block;
    color: #0693e9;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.mission-vision-section .section-heading h2 {
    font-size: 34px;
    color: #184d77;
    font-weight: 700;
    margin: 3px 0;
}

.mission-vision-section .section-heading p {
    color: #000;
    font-size: 14px;
    line-height: 1.8;
    font-weight: 500;
}

.mission-card,
.vision-card {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    padding: 38px 26px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0px 10px 35px rgba(0, 0, 0, 0.08);
    transition: .4s;
    height: 100%;
}

.mission-card {
    border-top: 5px solid #0693e9;
}

.vision-card {
    border-top: 5px solid #2a9a3f;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px);
}

.mv-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 34px;
    color: #184e77;
}

.mission-card .mv-icon {
    background: rgba(6, 147, 233, 0.12);
}

.vision-card .mv-icon {
    background: rgba(42, 154, 63, 0.12);
}

.mv-icon i {
    font-size: 34px;
}

.mission-card .mv-icon i {
    color: #0693e9;
}

.vision-card .mv-icon i {
    color: #2a9a3f;
}

.mission-card h3,
.vision-card h3 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 8px;
}

.mission-card h3 {
    color: #184d77;
}

.vision-card h3 {
    color: #2a9a3f;
}

.mission-card p,
.vision-card p {
    color: #212529;
    line-height: 1.7;
    font-size: 14px;
    margin: 0;
}

.mv-number {
    position: absolute;
    right: 20px;
    bottom: -20px;
    font-size: 120px;
    font-weight: 800;
    color: rgb(0 0 0 / 10%);
    user-select: none;
}

/* Responsive */

@media(max-width:991px) {

    .mission-vision-section {
        padding: 80px 0;
    }

    .mission-vision-section .section-heading h2 {
        font-size: 34px;
    }
}

@media(max-width:767px) {

    .mission-card,
    .vision-card {
        padding: 30px;
    }

    .mission-vision-section .section-heading h2 {
        font-size: 28px;
    }

    .mv-number {
        font-size: 80px;
    }

    .mission-card h3,
    .vision-card h3 {
        font-size: 24px;
    }

    .mv-icon {
        width: 60px;
        height: 60px;
        border-radius: 10px;
        margin-bottom: 15px;
        font-size: 24px;
    }



}

/* mission-vision-section-end */



/* contact-us-section-start */

.contact-section {
    padding: 80px 0;
    background: #f8fbff;
}

/* HEADING */
.section-heading {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 45px;
}

.section-heading span {
    color: #0693e9;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-heading h2 {
    color: #184d77;
    font-size: 34px;
    font-weight: 600;
    margin: 3px 0;
}

.section-heading p {
    color: #000;
}

/* CONTACT BOX */

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;

}

.contact-box {
    background: #fff;
    padding: 22px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    border: 1px solid #dbeafe;
    transition: .3s;
}

.contact-box:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 65px;
    height: 65px;
    border-radius: 15px;
    background: #0693e9;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
}

.contact-icon.email {
    background: #ff6b35;
}

.contact-icon.location {
    background: #184d77;
}

.contact-box h5 {
    margin: 0 0 3px;
    color: #184d77;
    font-size: 18px;
    font-weight: 600;
}

.contact-box a,
.contact-box p {
    margin: 0;
    color: #000;
    text-decoration: none;
    font-size: 14px;
}



/* FORM */
.contact-form-box {

    background: #fff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .08);
}

.contact-form-box h3 {
    color: #184d77;
    margin-bottom: 10px;
    font-size: 26px;
    font-weight: 600;
}


.contact-form-box input,
.contact-form-box textarea {

    width: 100%;
    padding: 14px 18px;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
    margin-bottom: 20px;
    font-size: 14px;
}

.contact-form-box input:focus,
.contact-form-box textarea:focus {
    border-color: #0693e9;
}


.contact-form-box button {
    background: #005bea;
    color: #fff;
    border: none;
    padding: 13px 35px;
    border-radius: 7px;
    font-weight: 600;
    transition: .3s;
}


.contact-form-box button:hover {
    background: #184d77;
}

/* MAP */
.map-wrapper {
    margin-top: 40px;
    height: 400px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: rgb(6 147 233 / 38%) 0px 10px 35px;
    border: 1px solid #0d6efd40;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}


/* RESPONSIVE */

@media(max-width:991px) {

    .contact-section {
        padding: 60px 0;
    }

    .contact-form-box {
        padding: 25px;
    }
}

@media(max-width:767px) {

    .section-heading h2 {
        font-size: 26px;
    }

    .contact-box {
        align-items: flex-start;
    }

    .contact-icon {
        width: 55px;
        height: 55px;
        min-width: 55px;
    }

    .map-wrapper {
        height: 300px;
    }

}

/* contact-us-section-end */


/* our-products-section-css-start */

.products-section {
    padding: 80px 0;
    background: #f8fbff;
}

.products-section .section-heading {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.products-section .section-heading span {
    color: #0693e9;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 18px;
}

.products-section .section-heading h2 {
    font-size: 34px;
    font-weight: 700;
    color: #184d77;
    margin: 4px 0;
}

.products-section .section-heading p {
    color: #000;
    line-height: 1.6;
    font-size: 14px;
}

/* Card */
.product-card {
    background: rgb(255, 255, 255);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: rgb(27 78 120 / 25%) 0px 10px 30px;
    transition: 0.4s;
    height: 100%;
    border: 1px solid #23537a;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-img {
    overflow: hidden;
    height: 260px;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.product-card:hover .product-img img {
    transform: scale(1.08);
}

.product-content {
    padding: 20px;
    text-align: center;
    border-top: 1px solid #1a4f78;
}

.product-content h4 {
    font-size: 18px;
    color: #184d77;
    margin-bottom: 10px;
    font-weight: 700;
}

.product-btn {
    position: relative;
    display: inline-block;
    padding: 9px 34px;
    border: 2px solid rgb(6, 147, 233);
    color: #184e77;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    overflow: hidden;
    z-index: 1;
    transition: 0.4s;
}

/* Center Fill Effect */
.product-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, #0693e9, #2a9a3f);
    transform: translateX(-50%);
    transition: 0.5s ease;
    z-index: -1;
    border-radius: 50px;
}

.product-btn:hover::before {
    width: 100%;
}

.product-btn:hover {
    color: #fff;
    border-color: #0693e9;
    transform: translateY(-3px);
}

/* .product-btn {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg, #0693e9, #2a9a3f);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: .3s;
}

.product-btn:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(6, 147, 233, .25);
} */

/* Responsive */

@media(max-width:991px) {

    .products-section {
        padding: 80px 0;
    }

    .products-section .section-heading h2 {
        font-size: 34px;
    }

    .product-img {
        height: 220px;
    }
}

@media(max-width:767px) {

    .products-section {
        padding: 60px 0;
    }

    .products-section .section-heading h2 {
        font-size: 28px;
    }

    .product-img {
        height: 200px;
    }

    .product-content h4 {
        font-size: 20px;
    }
}

/* our-products-section-css-end */

/* our-products-adigut-capsules-section-css-start */

.product-details-section {
    padding: 80px 0;
    background: #f8fbff;
}
/* IMAGE */
.product-gallery {
    background: #fff;
    padding: 25px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.main-product-img {
    width: 100%;
    height: 330px;
    object-fit: contain;
    border-radius: 20px;
    background: #fff;
    cursor: pointer;
}

.thumbnail-wrapper {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 20px;
}

.thumb-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    padding: 8px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #ddd;
    cursor: pointer;
    transition: .3s;
}

.thumb-img:hover {
    border-color: #0693e9;
    transform: translateY(-5px);
}

/* CONTENT */

.product-content-box {
    background: #fff;
    padding: 35px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.product-content-box span {
    color: #0693e9;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    /* text-transform: uppercase; */
}

.product-content-box h2 {
    font-size: 34px;
    color: rgb(24, 77, 119);
    font-weight: 700;
    margin: 3px 0px 10px;
}

/* INGREDIENT BOX */
.ingredient-box {
    background: #f4faff;
    padding: 20px;
    border-radius: 18px;
    border-left: 5px solid #0693e9;
    margin-bottom: 15px;
}
.ingredient-box h3 {
    font-size: 20px;
    color: #184d77;
    margin-bottom: 5px;
    font-weight: 600;
}

.ingredient-box ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.ingredient-box li {
    background: #fff;
    padding: 12px 15px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .05);
}

.ingredient-box b {
    color: #0693e9;
    font-size: 13px;
}

/* DESCRIPTION */

.product-content-box p {
    font-size: 14px;
    line-height: 1.6;
    color: #000;
    font-weight: 500;
    margin-bottom: 5px;
}

/* FEATURES */
.product-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.product-features li {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-features i {
    color: #2a9a3f;
}

/* BUTTON */

.enquiry-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: #fff;
    padding: 13px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.enquiry-btn:hover {
    background: #184d77;
    color: #fff;
    transform: translateY(-3px);
}

/* RESPONSIVE */
@media(max-width:991px) {
    .product-gallery {
        margin-bottom: 30px;
    }
    .product-content-box h2 {
        font-size: 30px;
    }
}

@media(max-width:767px) {
    .product-details-section {
        padding: 60px 0;
    }
    .product-content-box {
        padding: 25px;
    }
    .ingredient-box ul {
        grid-template-columns: 1fr;
    }

    .product-features {
        grid-template-columns: 1fr;
    }

    .product-content-box h2 {
        font-size: 26px;
    }

    .main-product-img {
        height: 250px;
    }

}
/* IMAGE POPUP */

.image-popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .90);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999999;
}

.image-popup.active {
    display: flex;
}
.image-popup img {
    max-width: 90%;
    max-height: 85vh;
    background: #fff;
    padding: 15px;
    border-radius: 20px;
    object-fit: contain;
}

.popup-close {
    position: absolute;
    top: 25px;
    right: 35px;
    width: 45px;
    height: 45px;
    background: #fff;
    color: #184d77;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 700;
    cursor: pointer;
    transition: .3s;
}

.popup-close:hover {
    background: #0693e9;
    color: #fff;
    transform: rotate(90deg);
}

@media(max-width:767px) {
    .popup-close {
        width: 38px;
        height: 38px;
        top: 15px;
        right: 15px;
        font-size: 24px;
    }
    .image-popup img {
        max-width: 95%;
        padding: 8px;
    }

}


/* our-products-adigut-capsules-section-css-end */










/* ===== WhatsApp Floating Button ===== */
.whatsapp-float {
    position: fixed;
    right: 25px;
    /* slightly off-screen */
    bottom: 90px;
    /* ABOVE back-to-top button */
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #25D366, #1EBE5D);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 26px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
    z-index: 9998;
    /* below top button if needed */
    transition: all 0.3s ease;
}

/* Hover Effect */
.whatsapp-float:hover {
    /* slide fully into view */
    transform: scale(1.08);
    color: #FFFFFF;
}



/* top_to_bottam-css-start */

#scroll {
    position: fixed;
    right: 24px;
    bottom: 20px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    background-color: #132A58;
    text-indent: -9999px;
    display: none;
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    border-radius: 60px;
    z-index: 9999;
}

#scroll span {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -12px;
    height: 0;
    width: 0;
    border: 8px solid transparent;
    border-bottom-color: #ffffff;
}

#scroll:hover {
    background-color: #1243a5;
    opacity: 1;
    filter: "alpha(opacity=100)";
    -ms-filter: "alpha(opacity=100)";
}

/* top_to_bottam-css-end */





@media (max-width: 576px) {

    .breadcrumbs-area h2 {
        font-size: 34px;
    }

    .breadcrumbs-color {
        padding: 1% 28%;
    }

    #scroll {
        right: 22px;
        bottom: 16px;
        z-index: 99999;
    }

}



@media (min-width: 576px) and (max-width: 767.98px) {


    .breadcrumbs-area h2 {
        font-size: 34px;
    }

    .breadcrumbs-color {
        padding: 1% 24%;
    }

    #scroll {
        right: 23px;
        bottom: 10px;
        z-index: 9999;
    }

}




@media (min-width: 768px) and (max-width: 991.98px) {

    .breadcrumbs-color {
        padding: 1% 35%;
    }

    #scroll {
        right: 23px;
        bottom: 10px;
        z-index: 9999;
    }
}




@media (min-width: 992px) and (max-width: 1199.98px) {


    #scroll {
        right: 23px;
        bottom: 10px;
        z-index: 9999;
    }


}