* {
    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;
}



/* .header-area {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99999;
}

.header-area.scrolled {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
} */

/* topbar-area-css-start */


.topbar {
    width: 100%;
    padding: 10px 0px;
    background: linear-gradient(135deg, #0a2540, #1e3c72, #2a5298);
    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 */

/* Navbar */
.custom-navbar {
    background-color: #fff;
    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;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Logo */
.logo {
    height: 65px;
}

/* Nav Links */
.navbar-nav .nav-link {
    color: #0a2540;
    font-size: 16px;
    font-weight: 600;
    margin: 0 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
    cursor: pointer;
}

/* Icons before text */
.nav-link i {
    font-size: 14px;
    color: #1e3c72;
}

/* Hover */
.navbar-nav .nav-link:hover {
    color: #1e3c72;
}

/* Underline */
.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: #1e3c72;
    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: #1e3c72;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.talk:hover {
    background: #0a2540;
}

/* Mobile */
@media (max-width: 991px) {
    .navbar-nav {
        background: #f5f8ff;
        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: 13px;
    color: #0a2540;
    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: 50px;
}

/* 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: #112d52;
    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: 13px;
    color: #112d51;
    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);
}





/* navbar-area-end */

/* banner-text-area-css-start */
/* .banner-text-area{

    transform: translate(50% ,50%);
    position: relative;
} */

/* BANNER TEXT OVERLAY */
.banner-text {
    position: absolute;
    top: 26%;
    left: 10%;
    height: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    width: 80%;
    text-align: center;
}

.banner-text .container {
    color: #fff;
    max-width: 600px;
}

/* SMALL HEADING */
.banner-text h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #00b4db;
    font-weight: 600;
}

/* MAIN HEADING */
.banner-text h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #fff;
}

/* PARAGRAPH */
.banner-text p {
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.6;
    color: #fff;
}

/* BUTTONS */
.banner-btns {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

/* BUTTON 1 */
.btn1 {
    background: #00b4db;
    color: #fff;
    padding: 10px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #fff;
    transition: 0.3s;
}

.btn1:hover {
    background: #0096c7;
    background: #fff;
    color: #0a2540;
    transition: 0.3s;
}


.btn2 {
    background: #fff;
    color: #0a2540;
    padding: 10px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #fff;
    transition: 0.3s;
}

.btn2:hover {
    background: #0e2a4b;
    color: #fff;
    transition: 0.3s;
}

@media (max-width: 768px) {

    .banner-text {
        left: 40px;
    }

    .banner-text h1 {
        font-size: 30px;
    }

    .btn2 {
        background: #fff;
        color: #0a2540;
        padding: 10px 26px;
        border-radius: 6px;
        text-decoration: none;
        font-size: 13px;
        font-weight: 600;
        border: 2px solid #fff;
        transition: 0.3s;
    }

    .btn1 {
        background: #fff;
        color: #0a2540;
        padding: 10px 26px;
        border-radius: 6px;
        text-decoration: none;
        font-size: 13px;
        font-weight: 600;
        border: 2px solid #fff;
        transition: 0.3s;
    }
}

/* banner-text-area-css-end */


/* banner-area-css-start */

.banner-area {
    padding: 0px 0px 0px;
    width: 100%;
    /* margin-top: 20px; */
    position: relative;
}

.banner-gallery {
    position: relative;
}

.banner-img1 {
    width: 100%;
    height: 570px;
    position: relative;
    background-image: url(../img/banner/banner01.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.banner-img2 {
    width: 100%;
    height: 570px;
    position: relative;
    background-image: url(../img/banner/banner02.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.banner-img3 {
    width: 100%;
    height: 570px;
    position: relative;
    background-image: url(../img/banner/banner2.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0000006b;
}
.banner-gallery {
    position: relative;
}

.banner-gallery .owl-nav {
    width: 94%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 40%;
    margin-left: 3%;
    z-index: 999;
}

.banner-gallery .owl-nav .owl-prev {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #fff !important;
}

.banner-gallery .owl-nav .owl-prev span {
    font-size: 40px;
    color: #fff;
    margin-bottom: 23%;
}

.banner-gallery .owl-nav .owl-next {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #fff !important;
}

.banner-gallery .owl-nav .owl-next span {
    font-size: 40px;
    color: #fff;
    margin-bottom: 23%;
}

.banner-gallery .owl-nav .owl-next:hover {
    background-color: #0e2a4b !important;
    border: 2px solid #fff !important;
    transition: 0.3s;
}

.banner-gallery .owl-nav .owl-next:hover span {
    color: #fff;
    transition: 0.3s;
}

.banner-gallery .owl-nav .owl-prev:hover {
    background-color: #0e2a4b !important;
    border: 2px solid #fff !important;
    transition: 0.3s;
}

.banner-gallery .owl-nav .owl-prev:hover span {
    transition: 0.3s;
    color: #fff;
}

@media (max-width: 768px) {

    .banner-area {
        position: relative;
        /* margin-top: 60px; */
    }

    .banner-img1 {
        width: 100%;
        height: 380px;
    }

    .banner-img2 {
        width: 100%;
        height: 380px;
    }

    .banner-img3 {
        width: 100%;
        height: 380px;
    }


    .banner-gallery .owl-nav .owl-prev span {
        font-size: 20px;
        color: #fff;
        margin-bottom: 15%;
        transition: 0.3s;
    }

    .banner-gallery .owl-nav .owl-prev {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        border: 2px solid #fff !important;
        transition: 0.3s;
    }

    .banner-gallery .owl-nav .owl-next span {
        font-size: 20px;
        color: #fff;
        margin-bottom: 15%;
        transition: 0.3s;
    }

    .banner-gallery .owl-nav .owl-next {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        border: 2px solid #fff !important;
        transition: 0.3s;
    }
}


/* banner-area-css-end */


/* welcome-section-css-start */

/* SECTION */
.welcome-section {
    padding: 70px 0;
    background: #f8fbff;
}

/* TITLE */
.welcome-section .section-title {
    text-align: center;
    max-width: 700px;
    margin: auto;
    margin-bottom: 50px;
}

.welcome-section .section-title h5 {
    color: #00b4db;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 20px;
}

.welcome-section .section-title h5 span {
    color: #db2626;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 20px;
}

.welcome-section .section-title h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}

.welcome-section .section-title p {
    color: #000;
    font-size: 15px;
}

/* CARD */
.welcome-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    transition: 0.4s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* ICON BOX */
.icon-box {
    width: 70px;
    height: 70px;
    margin: auto;
    margin-bottom: 15px;
    border-radius: 50%;
    background: linear-gradient(45deg, #00b4db, #0077b6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
    transition: 0.4s;
}

/* TITLE */
.welcome-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #000;
    font-weight: 600;
}

/* TEXT */
.welcome-card p {
    font-size: 14px;
    color: #000;
}

/* HOVER EFFECT */
.welcome-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.welcome-card:hover .icon-box {
    transform: rotate(360deg) scale(1.1);
}

/* LIGHT GLOW EFFECT */
.welcome-card::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    background: linear-gradient(45deg, #00b4db, #90e0ef);
    top: 0;
    left: 0;
    transition: 0.4s;
    z-index: 0;
    opacity: 0.1;
}

.welcome-card:hover::before {
    height: 100%;
}

/* KEEP CONTENT ABOVE */
.welcome-card * {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {

    .welcome-section .section-title h2 {
        font-size: 24px;
        margin-bottom: 5px;
    }

    .welcome-section .section-title h5 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .welcome-section .section-title p {
        color: #000;
        font-size: 14px;
    }

    .welcome-card {
        padding: 20px 20px;
    }



}

/* welcome-section-css-end */

/*counter-section-css-start */

/* COUNTER SECTION */
.counter-section {
    padding: 70px 0;
    background: linear-gradient(135deg, #0a2540, #1e3c72, #2a5298);
    color: #fff;
}

/* BOX */
.counter-box {
    padding: 30px 20px;
    /* border-radius: 12px; */
    transition: 0.4s;
    border-right: 1px solid #fff;
}

.counter-section .row>div:nth-child(4) .counter-box {
    border-right: none;
}


/* ICON */
.counter-icon {
    font-size: 40px;
    margin-bottom: 15px;
    color: #00d4ff;
    transition: 0.4s;
}

/* NUMBER */
.counter-box h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 5px;
}

/* TEXT */
.counter-box p {
    font-size: 14px;
    letter-spacing: 1px;
    margin: 0;
}

/* HOVER */
.counter-box:hover {
    transform: translateY(-10px);
}

.counter-box:hover .counter-icon {
    transform: scale(1.2) rotate(10deg);
    color: #ffd700;
}

@media (max-width: 768px) {
    .counter-box h2 {
        font-size: 26px;
    }

    .counter-icon {
        font-size: 28px;
    }

    /* Remove border for 2nd & 4th box */
    .counter-section .row>div:nth-child(2) .counter-box,
    .counter-section .row>div:nth-child(4) .counter-box {
        border-right: none;
    }

}

/* DESKTOP ONLY */
/* @media (min-width: 992px) {

    .counter-section .row>div:nth-child(2) .counter-box,
    .counter-section .row>div:nth-child(4) .counter-box {
        border-right: none;
    }
} */

/* counter-section-css-end */

/* value-section-css-start */

/* SECTION BACKGROUND */
.value-section {
    padding: 70px 0;
    background: #fff;
}

/* TITLE */
.value-section .section-title h5 {
    color: #2a5298;
    font-weight: 600;
    font-size: 20px;
}

.value-section .section-title h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}

.value-section .section-title p {
    color: #000;
}

/* CARD */
.value-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 8px 25px rgb(0 0 0 / 21%);
}

/* ICON */
.value-icon {
    width: 75px;
    height: 75px;
    margin: auto;
    margin-bottom: 15px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0a2540, #1e3c72, #2a5298);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    transition: 0.4s;
}

/* TITLE */
.value-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #000;
}

/* TEXT */
.value-card p {
    font-size: 14px;
    color: #000;
}

/* HOVER EFFECT */
.value-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* ICON ANIMATION */
.value-card:hover .value-icon {
    transform: scale(1.1) rotate(360deg);
}

/* GRADIENT OVERLAY */
.value-card::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, #0a2540, #1e3c72, #2a5298);
    opacity: 0.08;
    transition: 0.4s;
}

.value-card:hover::before {
    height: 100%;
}

/* KEEP CONTENT ABOVE */
.value-card * {
    position: relative;
    z-index: 1;
}


@media (max-width: 768px) {
    .value-section {
        padding: 50px 0;
    }

    .value-section .section-title h2 {
        font-size: 26px;
    }

    .value-card {
        padding: 25px 20px;
    }
}

/* value-section-css-end */


/* our-service-css-start */


.products-section {
    padding: 70px 0;
    background: #f5f8ff;
}

/* TITLE */
.products-section .section-title h2 {
    font-weight: 700;
    color: #2a5298;
}

.products-section .section-title p {
    font-size: 14px;
    color: #000;
}

.product-card {
    display: block;
    /* IMPORTANT for <a> */
    text-decoration: none;
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    transition: 0.4s;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.05);
    color: #0a2540;
}

/* IMAGE */
.product-img {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-img img {
    max-width: 100%;
    transition: 0.4s;
}

/* NAME */
.product-card h6 {
    font-size: 14px;
    margin-top: 10px;
    color: #0a2540;
    font-weight: 600;
}

/* HOVER EFFECT */
.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
}

.product-card:hover img {
    transform: scale(1.1);
}

/* BUTTON */
.view-btn {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(135deg, #0a2540, #1e3c72);
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.view-btn i {
    margin-left: 5px;
}

.view-btn:hover {
    background: #00b4db;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .product-card {
        padding: 10px;
    }

    .product-img {
        height: 90px;
    }

    .product-card h6 {
        font-size: 12px;
    }
}

/* our-service-css-end */

/* what-about-us-css-start */


/* WHAT ABOUT US SECTION */
.what-about-us-section {
    padding: 80px 0;
    background: #f9fbff;
}

/* CONTENT */
.about-content h5 {
    font-size: 16px;
    font-weight: 600;
    color: #2a5298;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-content p {
    font-size: 16px;
    color: #000;
    margin-bottom: 15px;
    line-height: 1.7;
}

/* FEATURES */
.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.feature-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 10px 15px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.feature-box i {
    color: #2a5298;
    font-size: 18px;
}

.feature-box span {
    font-size: 14px;
    font-weight: 500;
    color: #000;
}

/* HOVER EFFECT */
.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* BUTTON */
.about-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 25px;
    background: linear-gradient(135deg, #0a2540, #1e3c72, #2a5298);
    color: #fff;
    font-weight: 500;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}

.about-btn i {
    margin-left: 8px;
}

.about-btn:hover {
    background: linear-gradient(135deg, #2a5298, #1e3c72, #0a2540);
    transform: translateY(-2px);
}

/* IMAGES */
.about-images {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* IMAGE BOX */
.img-box {
    position: absolute;
    overflow: hidden;
    border-radius: 15px;
    transition: 0.4s;
}

/* FIRST IMAGE */
.img1 {
    width: 75%;
    z-index: 2;
    border: 2px solid #133057;
}

.img1 img {
    width: 100%;
    border-radius: 15px;
}

/* SECOND IMAGE */
.img2 {
    width: 55%;
    bottom: -40px;
    right: 0;
    z-index: 3;
    border: 2px solid #133057;
}

.img2 img {
    width: 100%;
    border-radius: 15px;
}

/* IMAGE HOVER EFFECT */
.img-box:hover {
    transform: scale(1.05);
}

/* ADD SHADOW */
.img-box img {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .about-content h2 {
        font-size: 28px;
    }

    .about-images {
        margin-top: 40px;
        position: relative;
        flex-direction: column;
    }

    .img-box {
        position: relative;
        width: 100%;
        margin-bottom: 20px;
    }

    .img2 {
        bottom: 0;
    }
}

@media (max-width: 576px) {
    .what-about-us-section {
        padding: 50px 0;
    }

    .about-content h2 {
        font-size: 24px;
    }

    .about-content p {
        font-size: 14px;
    }

    .feature-box {
        width: 100%;
    }
}


/* what-about-us-css-end */

/* health-section-css-start */

.health-area {
    padding: 80px 0px;
    background: linear-gradient(135deg, #0a2540, #1e3c72, #2a5298);
    border-bottom: 2px solid #fff;
}

.health-left h3 {
    font-size: 28px;
    color: #fff;
    font-weight: 600;
}

.health-right {
    display: flex;
    justify-content: center;
    align-items: end;
}

/* WHATSAPP BOX */
.whatsapp-box {
    /* background: #fff; */
    color: #333;
    /* padding: 40px 25px; */
    border-radius: 15px;

    transition: 0.4s;
    display: inline-block;
}

/* ICON */
.whatsapp-box i {
    font-size: 50px;
    color: #25D366;
    margin-bottom: 15px;
}

/* TITLE */
.whatsapp-box h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

/* TEXT */
.whatsapp-box p {
    font-size: 14px;
    margin-bottom: 20px;
}

/* BUTTON */
.whatsapp-btn {
    display: inline-block;
    background: #25D366;
    color: #fff;
    padding: 16px 70px;
    font-size: 18px;
    font-weight: 800;
    border-radius: 10px;
    text-decoration: none;
    /* font-weight: 500; */
    transition: 0.3s;
    box-shadow: 0 0px 15px rgb(255 255 255 / 23%);
}

.whatsapp-btn i {
    margin-right: 8px;
}

/* HOVER */
.whatsapp-box:hover {
    transform: translateY(-10px);
}

.whatsapp-btn:hover {
    background: #1ebe5d;
}

@media (max-width:767px) {

    .health-right {
        display: flex;
        justify-content: left;
        align-items: end;
        margin-top: 20px;
    }

    .whatsapp-btn {
        display: inline-block;
        background: #25D366;
        color: #fff;
        padding: 10px 20px;
        font-size: 16px;

    }

    .health-left h3 {
        font-size: 22px;
    }

    .health-area {
        padding: 40px 0px;
    }

}

/* health-section-css-end */

/* footer-section-css-start */

/* FOOTER MAIN */
.custom-footer {
    background: linear-gradient(135deg, #0a2540, #1e3c72);
    color: #fff;
    padding: 80px 0 0;
}



/* LOGO */
.footer-logo {
    height: 60px;
    margin-bottom: 15px;
}

/* TEXT */
.footer-text {
    font-size: 14px;
    line-height: 1.6;
    font-weight: 600;
    color: #fff;
}

/* TITLES */
.footer-title {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
    position: relative;
    color: #fff;
}

/* LINKS */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
    font-weight: 600;
}

.footer-links a:hover {
    color: #00b4db;
    padding-left: 5px;
}

/* CONTACT */
.footer-contact {
    font-size: 14px;
    color: #fff;
    line-height: 1.6;
}

/* SOCIAL ICONS */
.footer-social a {
    display: inline-flex;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 8px;
    transition: 0.3s;
}

.footer-social a:hover {
    background: #00b4db;
    transform: translateY(-3px);
}

/* BOTTOM */
.footer-bottom {
    text-align: center;
    padding: 15px;
    margin-top: 30px;
    background: rgba(0, 0, 0, 0.2);
    border-top: 2px solid #fff;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}

.footer-bottom p a {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #de2527;
    text-decoration: none;
}

/* CONTACT LIST */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* EACH ITEM */
.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #fff;
}

/* ICON STYLE */
.footer-contact-list i {
    min-width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #fff;
    transition: 0.3s;
}

/* HOVER EFFECT */
.footer-contact-list li:hover i {
    background: #00b4db;
    transform: scale(1.1);
}

/* TEXT */
.footer-contact-list span {
    line-height: 1.5;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
}

.footer-contact-list span a {
    line-height: 1.5;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
}

/* PRODUCTS GRID (2 COLUMN INSIDE FOOTER) */
.footer-products {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px 15px;
}

.footer-products a {
    font-size: 13px;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
    font-weight: 600;
}

.footer-products a:hover {
    color: #00b4db;
    padding-left: 5px;
}

.footer-links a,
.footer-products a {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links i,
.footer-products i {
    font-size: 12px;
    color: #00b4db;
    min-width: 15px;
}

.footer-title {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Icon style */
.footer-title i {
    width: 30px;
    height: 30px;
    background: #00b4db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #fff;
}

/* MOBILE FIX */
@media (max-width: 576px) {
    .footer-products {
        grid-template-columns: 1fr;
    }
}



/* RESPONSIVE FOOTER */

/* Tablet */
@media (max-width: 991px) {
    .custom-footer {
        padding: 40px 0 0;
    }

    .footer-title {
        margin-top: 10px;
    }
}

/* Mobile */
@media (max-width: 767px) {

    /* Center everything */
    .custom-footer {
        text-align: center;
    }

    /* Logo center */
    .footer-logo {
        margin: 0;
        display: block;
    }

    .footer-text {
        margin-top: 12px;
        text-align: left;
    }

    /* Social icons center */
    .footer-social {
        text-align: left;
        /* justify-content: center; */
    }

    /* Contact list center */
    .footer-contact-list li {
        justify-content: left;
        text-align: left;
        /* keeps text readable */
    }

    /* Remove left border from mobile menu style */
    .mobile-product-menu {
        border-left: none;
        padding-left: 0;
    }
}

/* footer-section-css-end */


/* about-us-banner-css-start */

.about-us-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a2540, #1e3c72, #2a5298);
    position: relative;
    overflow: hidden;
    transition: 0.5s ease;
}

/* GLOW ANIMATION */
.about-us-banner::before {
    content: "";
    position: absolute;
    width: 180%;
    height: 180%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15), transparent 60%);
    top: -40%;
    left: -40%;
    animation: moveGlow 10s linear infinite;
}

/* EXTRA LIGHT LAYER */
.about-us-banner::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    top: 0;
    left: -100%;
    transition: 0.6s;
}

/* HOVER EFFECT */
.about-us-banner:hover::after {
    left: 100%;
}

/* ANIMATION */
@keyframes moveGlow {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(20%, 20%);
    }

    100% {
        transform: translate(0, 0);
    }
}

/* CONTENT */
.about-content {
    position: relative;
    z-index: 2;
    /* text-align: center; */
}

.about-content h1 {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    transition: 0.4s;
}

/* TEXT HOVER EFFECT */
.about-us-banner:hover .about-content h1 {
    letter-spacing: 1px;
    transform: scale(1.05);
}

/* BREADCRUMB */
.breadcrumb-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    border: 2px solid #fff;
    margin: 1% 30%;
    border-radius: 10px;
}

.breadcrumb-box a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.breadcrumb-box a:hover {
    color: #00d4ff;
}

.breadcrumb-box span {
    color: #fff;
    font-size: 14px;
}

.breadcrumb-box .active {
    color: #ffd700;
    font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .about-us-banner {
        padding: 60px 0;
    }

    .about-content h1 {
        font-size: 26px;
    }

    .breadcrumb-box {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        padding: 15px 40px;
        border: 2px solid #fff;
        margin: 1% 6%;
        border-radius: 10px;
    }
}

/* about-us-banner-css-end */

/* about-us-main-css-start */

.about-us-section {
    padding: 80px 0;
    background: #f9fbff;
}

/* LOGO BOX */
.about-logo-box {
    text-align: center;
    position: relative;
    padding: 60px 30px;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.5s ease;

    /* BACKGROUND */
    background: linear-gradient(135deg, #0a2540, #1e3c72, #2a5298);

    /* SHADOW */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

/* GLOW ANIMATION LAYER */
.about-logo-box::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15), transparent 60%);
    top: -50%;
    left: -50%;
    animation: logoGlow 8s linear infinite;
    transition: 0.3s;
}

/* ANIMATION */
@keyframes logoGlow {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(25%, 25%);
    }

    100% {
        transform: translate(0, 0);
    }
}

/* TEXT COLOR FIX FOR DARK BG */
.brand-text {
    color: #fff;
    position: relative;
    z-index: 2;
    font-size: 42px;
    font-weight: 600;
}

/* HOVER EFFECT */
.about-logo-box:hover {
    transform: translateY(-10px) scale(1.02);

    /* Strong shadow */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
}

/* EXTRA HOVER GLOW */
.about-logo-box:hover::before {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.25), transparent 60%);
    font-size: 42px;
    font-weight: 600;
    transition: 0.3s;
}


/* Gradient part */
.brand-text span {
    background: linear-gradient(135deg, #01beff, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    /* Glow shadow for gradient text */
    text-shadow:
        0 0 10px rgba(1, 190, 255, 0.4),
        0 0 20px rgba(255, 215, 0, 0.3);
    font-size: 42px;
    font-weight: 600;
    transition: 0.3s;
}

/* HOVER EFFECT */
.about-logo-box:hover .brand-text {
    transform: scale(1.05);
    letter-spacing: 1px;

    /* Stronger shadow on hover */
    text-shadow:
        0 5px 15px rgba(0, 0, 0, 0.2),
        0 10px 30px rgba(0, 0, 0, 0.25);
    transition: 0.3s;
}

/* MOBILE */
@media (max-width: 768px) {
    .brand-text {
        font-size: 32px;
    }
}



/* HOVER EFFECT */
.about-logo-box:hover img {
    transform: scale(1.08) rotate(2deg);
}

/* CONTENT */
.about-us-content h5 {
    color: #01beff;
    font-weight: 600;
    margin-bottom: 10px;
}

.about-us-content h2 {
    font-size: 34px;
    font-weight: 700;
    color: #0a2540;
    margin-bottom: 15px;
}

.about-us-content p {
    font-size: 15px;
    color: #000;
    margin-bottom: 15px;
}

/* POINTS */
.about-points {
    margin-top: 20px;
}

.point {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #0a2540;
    /* width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #0e2a4b; */
}

.point span {
    font-size: 18px;
    color: #0e2a4b;
    font-weight: 600;
}

.point i {
    color: #01beff;
    transition: 0.3s;
}

/* BUTTON */
.about-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #0a2540, #1e3c72, #2a5298);
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.about-btn:hover {
    background: linear-gradient(135deg, #01beff, #ffd700);
    color: #000;
    transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .about-us-content {
        text-align: left;
    }

    .about-us-content h2 {
        font-size: 26px;
    }

    .about-logo-box img {
        max-width: 220px;
    }
}

/* about-us-main-css-end */

/* mission-vision-css-start */

.mission-vision-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a254010, #1e3c7210, #2a529810);
}

/* BOX */
.mv-box {
    background: #fff;
    padding: 40px 30px;
    height: 100%;
    border-radius: 15px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: 0.4s ease;
    box-shadow: 0 10px 25px rgb(10 37 64 / 25%);
}

/* GRADIENT BORDER */
.mv-box::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 15px;
    padding: 2px;
    background: linear-gradient(135deg, #0a2540, #1e3c72, #2a5298);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

/* ICON */
.mv-icon {
    width: 70px;
    height: 70px;
    margin: auto;
    font-size: 28px;
    color: #fff;
    border-radius: 50%;
    background: linear-gradient(135deg, #0a2540, #1e3c72, #2a5298);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: 0.4s;
    box-shadow: 0 5px 20px rgba(10, 37, 64, 0.3);
}

/* .mv-icon i {
    color: #fff;
    font-size: 28px;
} */

/* TEXT */
.mv-box h3 {
    font-size: 24px;
    font-weight: 700;
    color: #0a2540;
    margin-bottom: 15px;
}

.mv-box p {
    font-size: 15px;
    color: #000;
    line-height: 1.6;
}

/* HOVER EFFECT */
.mv-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(30, 60, 114, 0.25);
}

/* GLOW EFFECT */
.mv-box::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    background: linear-gradient(120deg, transparent, #1e3c7230, #2a529830, transparent);
    top: -100%;
    left: -100%;
    transition: 0.6s;
}

.mv-box:hover::after {
    top: 0;
    left: 0;
}

/* ICON ANIMATION */
.mv-box:hover .mv-icon {
    transform: scale(1.1) rotate(6deg);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .mv-box {
        padding: 30px 20px;
    }

    .mv-box h3 {
        font-size: 20px;
    }

    .mv-icon {
        width: 60px;
        height: 60px;
    }
}

/* mission-vision-css-end */

/* contact-us-css-start */

/* SECTION */
.contact-section {
    padding: 80px 0;
    background: #f9fbff;
}

/* CONTACT BOX */
.contact-box {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: 0.4s;
    border: 2px solid #0e2a4b;
}

.contact-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* TITLE */
.contact-box h2 {
    margin-bottom: 25px;
    font-weight: 700;
    color: #0a2540;
    font-size: 32px;
    text-underline-offset: 5px;
    text-decoration: underline;
}

/* CONTACT ITEM */
.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;

}

/* ICON */
.contact-box {
    background: rgb(255, 255, 255);
    padding: 40px 30px;
    border-radius: 12px;
    height: 100%;
    box-shadow: rgb(31 62 117 / 30%) 0px 10px 30px;
    transition: 0.4s;
    border: 2px solid rgb(14 42 75 / 59%);
}

/* TEXT */
.contact-item p {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    color: #000;
}

/* LINK */
.contact-item a {
    color: #0a2540;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.contact-item a:hover {
    color: #2a5298;
}

/* ICON HOVER */
.contact-item:hover .icon-box-three {
    transform: scale(1.1) rotate(8deg);
    background: linear-gradient(135deg, #0e2a4b, #0a2540);
    color: #fff;
}

/* MAP BOX */
.map-box {
    width: 100%;
    height: 100%;
    min-height: 350px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: rgb(31 62 117 / 30%) 0px 10px 30px;
    transition: 0.4s;
    border: 2px solid rgb(14 42 75 / 59%);
}

.map-box:hover {
    transform: scale(1.02);
}

/* ===================== */
/* 📱 RESPONSIVE */
/* ===================== */

/* TABLET */
@media (max-width: 992px) {
    .map-box {
        min-height: 300px;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }

    .contact-box {
        padding: 25px;
    }

    .contact-box h2 {
        font-size: 24px;
        text-align: left;
    }

    .contact-item {
        align-items: flex-start;
    }

    .icon-box {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .map-box {
        min-height: 250px;
    }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
    .contact-item p {
        font-size: 13px;
    }
}

/* contact-us-css-end */

/* become-mr-css-start */

/* MR SECTION */
.mr-section {
    padding: 60px 0;
    background: #f5f7fb;
}

/* WRAPPER */
.mr-wrapper {
    width: 85%;
    margin: auto;
    display: flex;
    gap: 40px;
    align-items: center;
    background: linear-gradient(135deg, #0a2540, #1e3c72, #2a5298);
    padding: 40px;
    border-radius: 12px;
}

/* LEFT SIDE */
.mr-info {
    flex: 1;
    color: #fff;
}

.mr-info h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.mr-info p {
    font-size: 15px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.mr-info ul {
    padding-left: 15px;
    border: 1px solid #fff;
    padding: 10px;
    border-radius: 8px;
}

.mr-info li {
    margin-bottom: 8px;
    font-size: 14px;
}

/* FORM BOX */
.mr-form-box {
    flex: 1;
    background: #fff;
    padding: 25px;
    border-radius: 10px;
}

/* FORM */
.form-group {
    margin-bottom: 15px;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    outline: none;
    transition: 0.3s;
}

.form-group input:focus {
    border-color: #1e3c72;
}

/* BUTTON */
.mr-btn {
    width: 100%;
    padding: 12px;
    background: #2a5298;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.mr-btn:hover {
    background: #0a2540;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .mr-wrapper {
        flex-direction: column;
        width: 90%;
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .mr-info h2 {
        font-size: 22px;
    }

    .mr-form-box {
        padding: 20px;
    }
}

/* become-mr-css-end */


/* pharmaceutical-tablets-css-start */


/* SECTION */
.pharma-section {
    padding: 60px 0;
    background: #f9fbff;
}

/* CARD */
.pharma-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 15px;
    transition: 0.3s;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* IMAGE */
.pharma-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    transition: 0.3s;
}

/* TITLE */
.pharma-card h6 {
    font-size: 13px;
    font-weight: 600;
    color: #0a2540;
    padding: 10px 10px 5px;
    min-height: 40px;
}

/* BUTTON */
.interest-btn {
    display: inline-block;
    margin-top: 5px;
    padding: 6px 12px;
    font-size: 12px;
    background: linear-gradient(135deg, #0a2540, #1e3c72, #2a5298);
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s;
}

/* HOVER */
.pharma-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.pharma-card:hover img {
    transform: scale(1.05);
}

.interest-btn:hover {
    background: linear-gradient(135deg, #01beff, #0e2a4b);
    color: #000;
}

/* RESPONSIVE */

/* MOBILE */
@media (max-width: 768px) {

    .pharma-card img {
        height: 110px;
    }

    .pharma-card h6 {
        font-size: 12px;
    }

    .interest-btn {
        font-size: 11px;
        padding: 5px 10px;
    }
}

/* SMALL MOBILE */
@media (max-width: 480px) {

    .pharma-card img {
        height: 95px;
    }

    .pharma-card h6 {
        font-size: 11px;
    }
}

/* pharmaceutical-tablets-css-end */

/* azithromycin-500mg-tablets-details-css-start */

.product-details-section {
    padding: 60px 0;

}

.product-wrapper {
    width: 81%;
    margin: auto;
    display: flex;
    gap: 40px;
    align-items: flex-start;
    border-radius: 10px;
    padding: 30px;
    background: linear-gradient(135deg, #0a2540, #1e3c72, #2a5298);
}

/* LEFT CONTENT */
.product-content {
    flex: 1;
    color: #fff;
}

.product-content h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}

.product-desc {
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.9;
    color: #fff;
}

/* PRICE */
.price-box {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.price-box h4 {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
}

.price-box h3 {
    font-size: 28px;
    font-weight: 600;
    color: #ffd700;
}

.price-box p {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

/* DETAILS */
.product-info {
    background: rgba(255, 255, 255, 0.08);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.product-info div {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
}

.product-info div:last-child {
    border-bottom: none;
}

/* EXTRA */
.extra-content h4 {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}

.extra-content ul {
    padding-left: 15px;
}

.extra-content li {
    margin-bottom: 5px;
    font-size: 14px;
    color: #fff;
}

.bottom-note {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    margin-top: 15px;
    line-height: 1.5;
    border: 2px solid #fff;
    padding: 5px;
    border-radius: 10px;
}

/* .product-wrapper:hover .bottom-note{
    color: #db2626;
} */

/* BUTTON */
.interest-btn {
    display: inline-block;
    background: #1e3c72;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    border: 1px solid #1e3c72;
}

.interest-btn:hover {
    background: #fff;
    color: #1e3c72;
    transform: translateY(-3px);
}

/* .product-image-box {
    width: 320px;
    background: #fff;
    padding: 15px;
    border-radius: 6px;
    text-align: center;
    transition: 0.3s;
} */

.product-image-box {
    width: 370px;
    height: 100%;
    background: #fff;
    padding: 15px;
    border-radius: 6px;
    text-align: center;
    transition: 0.3s;
}

.product-image-box:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    transition: 0.3s;
}

.product-wrapper:hover .product-image-box {
    transform: translateY(-5px);
    transition: 0.3s;
}

/* BASE */
.product-wrapper {
    position: relative;
    overflow: hidden;
}

/* GRADIENT OVERLAY */
.product-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

/* SHOW ON HOVER */
.product-wrapper:hover::after {
    opacity: 1;
}

/* SHOW ON TOUCH (MOBILE) */
.product-wrapper:active::after {
    opacity: 1;
}


/* MAIN IMAGE */
.main-img {
    position: relative;
    border: 1px solid #fff;
    padding: 10px;
}

.main-img img {
    width: 100%;
    height: 100%;
    border: 1px solid #264a89;
    border-radius: 10px;
    cursor: pointer;
}

/* ZOOM ICON */
.zoom-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #fff;
    border-radius: 50%;
    padding: 6px 8px;
    font-size: 14px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* THUMBNAILS */
.thumb-row {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

.thumb-row img {
    width: 55px;
    height: 55px;
    border: 2px solid #25498882;
    cursor: pointer;
    transition: 0.3s;
}

.thumb-row img:hover {
    border-color: #de2527;
}

/* BUTTON */
.quote-btn {
    display: inline-block;
    margin-top: 12px;
    padding: 10px;
    width: 100%;
    border: 2px solid #f0c040;
    color: #fff;
    background: #2a5298;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
}

.quote-btn:hover {
    background: #f0c040;
    color: #000;
}

/* POPUP */
.image-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    z-index: 99999;
    transition: 0.3s;
}

.image-popup.active {
    opacity: 1;
    visibility: visible;
}

.image-popup img {
    max-width: 30%;
}

.close-popup {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}

/* MOBILE */
@media(max-width:768px) {
    .product-image-box {
        width: 100%;
    }

    .image-popup img {
        max-width: 90%;
    }
}

@media (max-width: 992px) {
    .product-wrapper {
        width: 90%;
        flex-direction: column;
        gap: 30px;
    }

    .product-image {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .product-content h2 {
        font-size: 22px;
    }

    .price-box h3 {
        font-size: 20px;
    }

    .thumbs img {
        width: 50px;
    }
}



/* CONTACT BUTTONS */
.product-contact-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: left;
    margin-top: 20px;
}

/* WHATSAPP */
.products-whatsapp-btn {
    /* flex: 1; */
    background: #25D366;
    color: #fff;
    padding: 8px;
    text-align: center;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
}

.products-whatsapp-btn:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
}

/* CALL */
.products-call-btn {
    /* flex: 1; */
    background: #0a2540;
    color: #fff;
    padding: 8px;
    text-align: center;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    border: 1px solid #fff;
    transition: 0.3s;
}

.products-call-btn:hover {
    background: #fff;
    color: #0a2540;
}

/* ICON SPACE */
.product-contact-buttons i {
    margin-right: 6px;
}

/* MOBILE RESPONSIVE */
@media (max-width: 576px) {
    /* .product-contact-buttons {
       
    } */
}





/* azithromycin-500mg-tablets-details-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;
    }


}