.icon-logo {
    margin-right: 22px;
}

.me-2 img {
    max-height: 40px;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-section .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: #FFF5E2;
}

.hero-title {
    line-height: 70px;
    display: inline-block;
    font-size: 52px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    text-align: justify;
    hyphens: auto;
    word-spacing: normal;
}

.hero-title .highlight {
    color: #ff4a51;
    font-size: 58px;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    font-weight: 700;
    text-align: justify;
    hyphens: auto;
    word-spacing: normal;
    display: block;
}

.hero-description {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: justify;
    hyphens: auto;
    word-spacing: normal;
    max-width: 617px;
}

.learn-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #ff4444;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* .learn-btn:hover {
    background: #ff4444;
    color: white;
} */

.learn-btn .arrow {
    width: 25px;
    height: 25px;
    background: #ff4444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    transition: all 0.3s ease;
}

/* .learn-btn:hover .arrow {
    margin-top: -5px;
    margin-left: 5px;
} */

.image-slider-container {
    position: relative;
    height: 550px;
    overflow: visible;
    perspective: 1000px;
}

.image-slider {
    position: relative;
    height: 100%;
    width: 100%;
}

.slider-image {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 350px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.slider-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* Previous slide - above */
.slider-image.prev {
    top: -270px;
    opacity: 0.4;
    transform: translateX(-50%) scale(0.85);
    z-index: 1;
    filter: blur(2px);
}

/* Active slide - center */
.slider-image.active {
    top: 75px;
    opacity: 1;
    transform: translateX(-50%) scale(1);
    z-index: 3;
    filter: blur(0);
}

/* Next slide - below */
.slider-image.next {
    top: 420px;
    opacity: 0.4;
    transform: translateX(-50%) scale(0.85);
    z-index: 1;
    filter: blur(2px);
}

/* Hidden slides */
.slider-image.hidden {
    opacity: 0;
    transform: translateX(-50%) scale(0.7);
    z-index: 0;
}

@media (max-width: 900px) {
    .hero-title {
        font-size: 52px;
    }

    .hero-content .row {
        flex-direction: column;
    }

    .hero-content .row .col-md-5 {
        /* flex: 0 0 auto; */
        width: 100%;
        margin-top: 53px;
    }

    .slider-image.prev {
        top: -20px;
    }

    .slider-image.next {
        top: 220px;
    }

    /* .image-slider-container {
        height: 300px;
        margin-top: 2rem;
    } */
}

:root {
    --primary-red: #EC1B23;
    --dark-bg: #0a1628;
}

body {
    margin: 0;
    padding: 0;
}

.header {
    background-color: #000000e8;
    padding: 1rem 0;
    position: relative;
}

.header .container-fluid {
    padding-left: 2rem;
    padding-right: 2rem;
}

.logo-text {
    color: var(--primary-red);
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    letter-spacing: 2px;
}

.logo-subtext {
    color: #6c757d;
    font-size: 0.65rem;
    letter-spacing: 3px;
    display: block;
    margin-top: -5px;
}

.hamburger-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s;
    display: none;
}

.hamburger-btn:hover {
    color: var(--primary-red);
}

@media (max-width: 991px) {
    .hamburger-btn {
        display: block;
    }
}

.get-touch-btn {
    font-family: "Montserrat", sans-serif;
    background-color: #e31e24;
    color: white;
    border: 1px solid #e31e24;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    white-space: nowrap;
}

.get-touch-btn:hover {
    background-color: #fff;
    color: #e31e24;
    /* transform: translateY(-2px); */
    /* box-shadow: 0 5px 15px rgba(227, 30, 36, 0.4); */
}

.sidebar-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--dark-bg);
    z-index: 1050;
    transition: left 0.4s ease;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
}

.sidebar-menu.active {
    right: 0;
}

.sidebar-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    transition: color 0.3s;
}

.close-btn:hover {
    color: var(--primary-red);
}

.sidebar-nav {
    padding: 1rem 0;
}

.sidebar-nav a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 1rem 1.5rem;
    transition: all 0.3s;
    font-size: 1.1rem;
    border-left: 3px solid transparent;
}

.sidebar-nav a:hover {
    background-color: rgba(227, 30, 36, 0.1);
    border-left-color: var(--primary-red);
    padding-left: 2rem;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-icon {
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s;
}

.search-icon:hover {
    color: var(--primary-red);
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    margin-left: auto;
    /* This pushes it to the right */
    margin-right: 2rem;
    /* Add some space before the button */
}

.desktop-nav a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    line-height: 160%;
    transition: color 0.3s;
    position: relative;
    font-family: "Poppins", sans-serif;
}

.desktop-nav a:hover {
    color: var(--primary-red);
}


@media (max-width: 991px) {
    .desktop-nav {
        display: none;
    }
}

/* .br-none,
.span-none {
    display: none;
} */

.p-width {
    max-width: 86%;
    /* word-spacing: -2px !important; */
}

@media (min-width: 1399px) {
    .product-title::after {
        margin-left: 100px !important;
    }

    /* .br-none {
        display: block;
    } */
}

@media (min-width: 992px) {
    .sidebar-menu {
        display: none;
    }
}


@media (max-width: 576px) {
    .get-touch-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }


    .logo-text {
        font-size: 1.2rem;
    }

    .logo-subtext {
        font-size: 0.55rem;
    }
}

/* Trusted by Institutions Section */
.trusted-section {
    /* background-color: #f9fbff; */
    padding: 28px 0;
    overflow: hidden;
}

.trusted-title {
    font-size: 21px;
    line-height: 30px;
    text-transform: uppercase;
    font-weight: 600;
    color: #002140;
    font-family: "Poppins", sans-serif;
    /* text-align: center; */
}

.marquee-container {
    overflow: hidden;
    position: relative;
    /* background: white; */
    border-radius: 10px;
    padding: 1rem 0;
}

.marquee-content {
    display: flex;
    gap: 3rem;
    width: max-content;
    animation: marquee 20s linear infinite;
}

.marquee-content:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.marquee-container {
    overflow: hidden;
    width: 100%;
}

.institution-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.institution-logo img {
    /* width: 100px;
    height: 100px; */
    object-fit: contain;
    /* filter: grayscale(100%);
    opacity: 0.7; */
    transition: all 0.3s;
}

.institution-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

@media (max-width: 900px) {
    .trusted-title {
        font-size: 14px;
        text-align: center;
    }


    .trusted-section {
        padding: 2rem 0;
    }

    .trusted-section .col-md-5 {
        width: 40%;
    }

    .trusted-section .col-md-7 {
        width: 60%;
    }


    .institution-logo img {
        width: 80px;
        height: 80px;
    }


    .marquee-content {
        gap: 2rem;
    }
}


@media (max-width: 576px) {
    .trusted-title {
        font-size: 1rem;
    }


    .institution-logo img {
        width: 60px;
        height: 60px;
    }


    .marquee-content {
        gap: 1.5rem;
    }
}



.about-section {
    padding: 60px 0;
    background-color: #ffffff;
}

/* NEW: Make About Us section horizontal layout */
.about-main-content {
    display: flex;
    /* gap: 4rem; */
    align-items: flex-start;
}

.about-title-column {
    flex: 0 0 22%;
}

.about-content-column {
    flex: 1;
}

.about-title {
    font-family: "Poppins", sans-serif;
    font-size: 36px;
    /* line-height: 20px; */
    text-transform: capitalize;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #EC1B23;
    border-radius: 50px;
}

.about-description {
    font-size: 16px;
    text-align: justify;
    hyphens: auto;
    word-spacing: normal;
    line-height: 25px;
    color: #444444;
    font-family: "Poppins", sans-serif;
}

.learn-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: transparent;
    color: #e31e24;
    border: none;
    font-size: 16px;
    line-height: 140%;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s;
    text-decoration: none;
}

.learn-more-btn:hover {
    gap: 0.8rem;
}

.arrow-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: #e31e24;
    border-radius: 50%;
    transition: all 0.3s;
    transform: rotate(315deg)
}

.learn-more-btn:hover .arrow-circle {
    background-color: #c01a1f;
    transform: translateX(5px);
}

.arrow-circle i {
    color: white;
    font-size: 0.8rem;
}

.vision-mission-container {
    margin-top: 3rem;
}

.vision-card,
.mission-card {
    border-radius: 10px;
    padding: 30px 23px;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.vision-mission-container img {
    margin-top: -36px;
}

.vision-card {
    background: #D9E6F3;
    border: 1px solid #ACD5FF;
}

.mission-card {
    background: #EEEBFE;
    border: 1px solid #C4B9FF;
}

.vision-card:hover,
.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card-title {
    font-size: 24px;
    line-height: 25px;
    text-transform: capitalize;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    margin-bottom: 23px;
}

.card-text {
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    text-align: justify;
    hyphens: auto;
    word-spacing: normal;
    line-height: 1.7;
    color: #333;
}

.blue-line {
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, #2196F3 50%, transparent 100%);
    margin-top: 3rem;
}

@media (min-width: 820px) and (max-width: 1180px) {
    .about-description {
        text-align: justify;
        hyphens: auto;
        word-spacing: normal;
        text-align-last: left;
        width: 100%;
        height: 100%;
    }


    .about-title {
        font-size: 21px;
    }
}


@media (max-width: 900px) {
    .about-main-content {
        flex-direction: column;
        gap: 2rem;
    }


    .about-title-column {
        flex: 0 0 auto;
        width: 100%;
    }


    .about-section {
        padding: 3rem 0;
    }


    .about-title {
        font-size: 28px;
    }

    .about-description {
        text-align: justify;
        hyphens: auto;
        word-spacing: normal;
        text-align-last: left;
        width: 100%;
        height: 100%;
        font-size: 14px;
        line-height: 25px;
    }

    .vision-mission-container .mb-4 {
        margin-bottom: 0 !important;
    }


    .vision-card,
    .mission-card {
        padding: 1.5rem;
    }


    .card-title {
        font-size: 20px;
    }

    .card-text {
        font-size: 13px;
    }

    .therapeutic-card .col-md-6 {
        width: 100%;
    }

    .therapeutic-image {
        height: 83% !important;
    }

    .therapeutic-card .col-md-6:nth-child(2) {
        margin-top: -104px !important;
    }
}

.manufacturing-section {
    padding-top: 40px;
    padding-bottom: 46px;
    /* background-color: #f7faff; */
}

/* .section-header {
    margin-bottom: 3rem;
} */

.section-title {
    font-size: 36px;
    line-height: 45px;
    text-transform: capitalize;
    font-weight: 600;
    color: #002140;
    font-family: "Poppins", sans-serif;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background-color: #EC1B23;
}

.section-description {
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    line-height: 25px;
    color: #444444;
    text-align: justify;
    hyphens: auto;
    word-spacing: normal;
    display: flex;
    align-content: center;
    flex-wrap: wrap;
    height: 100%;
    margin-top: -5px;
}

section.manufacture {
    padding-top: 60px;
}

.all-product-btn a {
    font-size: 24px;
    font-family: "Poppins", sans-serif;
    padding: 10px 30px;
    font-weight: 600;
    text-transform: capitalize;
    line-height: 50px;
    border: 1px solid #000;
    color: #002140;
    text-decoration: none;
    transition: all 0.3s;
}

.all-product-btn a:hover {
    color: #EC1B23;
    border: 1px solid #EC1B23;
}

.product-sect {
    background-image: url("assests/images/image\ 57.png");
    background-size: cover;
    background-repeat: no-repeat;
    padding: 135px 0px;
}

/* Custom Nav Pills */
.custom-nav-pills {
    background-color: white;
    border-radius: 50px;
    padding: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    gap: 0.5rem;
    border: 1px solid #0057A7;
}

.custom-nav-pills .nav-link {
    border-radius: 50px;
    padding: 0.8rem 2rem;
    color: #0057A7;
    font-size: 16px;
    line-height: 30px;
    text-transform: capitalize;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    border: none;
    transition: all 0.3s;
    background-color: transparent;
}

.custom-nav-pills .nav-link:hover {
    color: #0057A7;
}

.custom-nav-pills .nav-link.active {
    background-color: #0057A7;
    color: white;
}

/* Tab Content */
.tab-content-area {
    margin-top: 25px;
    background-color: #E9F2FC;
    border-radius: 20px;
    padding: 25px;
}

.content-row {
    /* display: flex;
    align-items: center; */
    gap: 10px;
}

.content-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.content-text {
    flex: 1;
}

.content-title {
    font-size: 24px;
    line-height: 25px;
    text-transform: capitalize;
    font-weight: 600;
    color: #002140;
    font-family: "Poppins", sans-serif;
    margin-top: 1rem;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.content-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 104%;
    height: 2px;
    background-color: #e31e24;
}

.content-description {
    font-size: 16px;
    line-height: 28px;
    font-family: "Poppins", sans-serif;
    color: #444;
    text-align: justify;
    word-wrap: break-word;
    /* word-break: break-all; */
    text-justify: inter-word;
    /* hyphens: auto; */
    /* word-spacing: normal; */
    /* word-spacing: -2px; */
}

@media (max-width: 991px) {

    .custom-nav-pills {
        /* flex-direction: column; */
        /* border-radius: 15px; */
        width: 100%;
        display: flex;
        justify-content: space-between;
    }


    .custom-nav-pills .nav-link {
        width: 100%;
        text-align: center;
    }


    /* .content-row {
        flex-direction: column;
    } */


    /* .content-image {
        flex: 0 0 100%;
    } */
}


@media (max-width: 900px) {
    .section-title {
        font-size: 28px;
    }

    .product-sect {
        background-image: url("assests/images/image\ 57.png");
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        padding: 135px 0px;
    }

    .tab-content-area {
        padding: 2rem;
    }

    .content-title {
        font-size: 20px;
        line-height: 25px;
        text-transform: uppercase;
        font-weight: 600;
        margin-top: 0;
        margin-bottom: 26px;
    }

    .content-image img {
        height: 100%;
        object-fit: cover;
    }

    .custom-nav-pills .nav-link {
        font-size: 14px;
        line-height: 30px;
    }

    .section-description {
        text-align: left;
        font-size: 14px;
        line-height: 160%;
        margin-top: 5px;
    }

    .content-description {
        font-size: 12px;
        line-height: 160%;
        text-align: justify;
        hyphens: auto;
        word-spacing: normal;
    }
}

.product-identification-section {
    padding: 60px 0;
    background-color: #ffffff;
}

/* .product-card {
    display: flex;
    align-items: stretch;
    background-color: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
} */

/* .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    } */

/* .product-image-container {
    flex: 0 0 50%;
    position: relative;
    overflow: hidden;
} */

.product-bg {
    background: url("assests/images/pro-id.png");
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-card:hover .product-image-container img {
    transform: scale(1.05);
}

.product-content {
    flex: 1;
    background: #0057A7;
    padding: 63px 40px;
    border-radius: 20px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-title {
    font-size: 32px;
    line-height: 50px;
    text-transform: capitalize;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
}

.product-title::after {
    content: url("assests/images/fade-pyramid.svg");
    position: absolute;
    margin-top: -53px;
    margin-left: 11px;
}

.product-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-features-list li {
    font-size: 18px;
    line-height: 1.8;
    font-family: "Poppins", sans-serif;
    margin-bottom: 3px;
    padding-left: 1.5rem;
    position: relative;
}

.product-features-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: white;
    font-size: 1.5rem;
    line-height: 1.2;
}

@media (max-width: 991px) {
    .product-card {
        flex-direction: column;
    }


    .product-image-container {
        flex: 0 0 400px;
        min-height: 400px;
    }


    .product-content {
        padding: 2.5rem;
    }


    .product-title {
        font-size: 1.8rem;
    }
}

.hide-in-desktops {
    display: none;
}

@media (max-width: 900px) {

    .hide-in-tablets {
        display: none;
    }

    .hide-in-desktops {
        display: block;
    }

    .product-identification-section {
        padding: 3rem 0;
    }


    .product-image-container {
        flex: 0 0 300px;
        min-height: 300px;
    }


    .product-content {
        padding: 2rem;
    }


    .product-title {
        font-size: 28px;
        margin-bottom: 1.5rem;
    }


    .product-features-list li {
        font-size: 18px;
        text-transform: capitalize;
    }

    .develop-developer .col-md-6 {
        width: 100%;
    }

    .develop-developer .section-title::after {
        content: '';
        position: absolute;
        top: 92px !important;
        left: 0 !important;
        width: 82% !important;
        height: 2px !important;
        background-color: #e31e24;
    }

    .develop-developer {
        background: none !important;
    }

    .product-sect .my-5 {
        margin-top: 0 !important;
    }

    .category-card,
    .view-all-card {
        height: 260px !important;
    }

    .category-label {
        font-size: 12px !important;
    }

    .view-all-card {
        font-size: 14px !important;
    }

    .image-logo-div img {
        padding: 32px !important;
        width: 19%;
    }

    .image-logo-div a img {
        padding: 31px !important;
        width: 102%;
    }

    .footer-logo img {
        width: 214px;
        margin-bottom: 38px;
    }

    .footer-logo {
        margin-bottom: 0 !important;
    }

    .footer-top {
        padding-bottom: 0px !important;
    }

    footer .full-width {
        width: 100%;
    }

    .footer-description {
        max-width: 100% !important;
    }

    .footer-center {
        align-items: start !important;
    }

    .half-width {
        width: 100%;
    }

    .half-width-two {
        width: 50%;
    }
}


@media (max-width: 576px) {
    .product-image-container {
        flex: 0 0 250px;
        min-height: 250px;
    }


    .product-content {
        padding: 1.5rem;
    }


    /* .product-title {
        font-size: 1.3rem;
    } */


    /* .product-features-list li {
        font-size: 0.9rem;
    } */
}

/* .dosage-forms-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
} */

.dosage-title {
    font-size: 36px;
    line-height: 20px;
    text-transform: capitalize;
    font-weight: 600;
    color: #002140;
    margin-bottom: 63px;
    font-family: "Poppins", sans-serif;
    position: relative;
    display: inline-block;
}

.dosage-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #e31e24;
}

.dosage-cards-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.dosage-cards-container.second-row {
    grid-template-columns: repeat(3, 1fr);
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.dosage-card {
    background-color: white;
    border-radius: 15px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.25);
    transition: all 0.3s;
    cursor: pointer;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dosage-card:hover {
    /* transform: translateY(-10px); */
    box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.25);
    background: #0057A7;
}

.dosage-card:hover .dosage-card-title {
    color: white;
}

.dosage-card-title {
    font-size: 18px;
    line-height: 30px;
    text-transform: capitalize;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    color: #0057A7;
    transition: color 0.3s;
}

@media (max-width: 1200px) {
    .dosage-cards-container {
        grid-template-columns: repeat(2, 1fr);
    }


    .dosage-cards-container.second-row {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
    }
}


@media (max-width: 768px) {
    .dosage-title {
        font-size: 28px;
        line-height: 36px;
        text-transform: capitalize;
        font-weight: 600;
    }


    .dosage-cards-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 7px;
    }

    /* Center the last card */
    .dosage-card:last-child {
        grid-column: 2 / span 1;
    }



    .dosage-cards-container.second-row {
        grid-template-columns: 1fr;
        max-width: 100%;
    }


    .dosage-card {
        padding: 10px;
        min-height: 150px;
    }


    .dosage-card-title {
        font-size: 14px;
        text-transform: capitalize;
        font-weight: 600;
    }
}


@media (max-width: 576px) {
    /* .dosage-forms-section {
        padding: 3rem 0;
    } */


    /* .dosage-title {
        font-size: 1.6rem;
    } */


    .dosage-card {
        padding: 1.5rem 1rem;
        min-height: 130px;
    }


    /* .dosage-card-title {
        font-size: 0.95rem;
    } */
}

.footer-section {
    background: linear-gradient(180deg, #a8c3e2, #4f7299 34.62%, #0e2a4a 90.38%);
    color: #ffffff;
    padding-top: 48px;
    padding-bottom: 19px;
    margin: 8px;
    border-radius: 20px;
}

.footer-top {
    padding-bottom: 46px;
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem; */
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-logo svg {
    margin-right: 1rem;
}

.footer-logo-text {
    color: #e31e24;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.footer-logo-subtext {
    color: #0056b3;
    font-size: 0.75rem;
    letter-spacing: 3px;
    display: block;
    margin-top: -5px;
}

.footer-description {
    color: #ffffff;
    max-width: 380px;
    font-size: 14px;
    line-height: 22px;
    font-family: "Poppins", sans-serif;
    font-weight: 300;
}

.footer-newsletter {
    display: flex;
    gap: 0;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    /* max-width: 350px; */
    max-height: 52px;
}

.footer-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: nowrap;
}


.footer-newsletter input {
    flex: 1;
    padding: 0.7rem 1rem;
    border: none;
    background-color: white;
    color: #333;
    font-size: 0.9rem;
    width: 288px;
    max-height: 52px;
    /* border-radius: 10px !important; */
}

.footer-newsletter input::placeholder {
    color: #999;
    font-size: 16px;
    line-height: 140%;
    font-family: "Poppins", sans-serif;
}

.footer-newsletter input:focus {
    outline: none;
}

.footer-newsletter button {
    width: 117px;
    height: 38px;
    margin-top: 7px;
    margin-right: 6px;
    border-radius: 10px;
    padding: 8px 20px;
    background-color: #e31e24;
    color: white;
    border: none;
    font-size: 14px;
    line-height: 140%;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    cursor: pointer;
    transition: background-color 0.3s;
    white-space: nowrap;
    font-size: 0.9rem;
}

.footer-newsletter button:hover {
    background-color: #c01a1f;
}

.footer-column h4 {
    font-size: 18px;
    line-height: 30px;
    text-transform: capitalize;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    color: white;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.7rem;
}

.footer-links a {
    color: #e8e8e8;
    text-decoration: none;
    font-size: 14px;
    text-transform: capitalize;
    transition: color 0.3s;
    font-family: "Poppins", sans-serif;
}

.footer-links a:hover {
    color: #e31e24;
}

.footer-address-item {
    display: flex;
    align-items: start;
    margin-bottom: 1rem;
    color: #E8E8E8;
    font-size: 14px;
    line-height: 160%;
    font-family: "Poppins", sans-serif;
}

footer strong {
    color: #fff !important;
    font-weight: 600 !important;
}

.footer-address-item i {
    margin-right: 0.7rem;
    margin-top: 0.2rem;
    color: white;
    font-size: 1rem;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #ffffff14;
}

.social-links {
    display: flex;
    gap: 1.2rem;
}

.social-links a {
    color: white;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #e31e24;
}

.footer-copyright {
    color: #fff;
    font-size: 14px;
    line-height: 160%;
    font-family: "Poppins", sans-serif;
}

.footer-copyright .heart {
    color: #e31e24;
    margin: 0 0.2rem;
}

.footer-copyright a {
    color: white;
    text-decoration: none;
}

.footer-copyright a:hover {
    text-decoration: underline;
}

@media (max-width: 991px) {
    .footer-newsletter {
        max-width: 100%;
    }
}


@media (max-width: 900px) {
    .footer-logo-text {
        font-size: 1.5rem;
    }


    .footer-bottom {
        flex-direction: row;
        gap: 1.5rem;
        text-align: center;
    }

    /*.footer-column strong,*/
    /*.footer-address-item i {*/
    /*    color: #ff5d63 !important;*/
    /*}*/
    .footer-column strong,
    .footer-address-item i {
        color: #ffffff !important;
    }
}


@media (max-width: 576px) {
    .footer-section {
        padding: 2rem 0 1rem;
    }


    .footer-newsletter {
        /* flex-direction: column; */
        width: 100%;
    }

    .footer-newsletter input,
    .footer-newsletter button {
        width: 100%;
    }
}

.milestones-section {
    padding: 5rem 0;
    background-color: #ffffff;
    overflow: hidden;
}

.milestones-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0a1628;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

.milestones-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: #0056b3;
}

.hexagon-row {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 4rem;
    position: relative;
}

.hexagon-wrapper {
    display: flex;
    align-items: center;
    position: relative;
}

.hexagon-item {
    position: relative;
    margin: 0 -15px;
}

.hexagon {
    width: 200px;
    height: 230px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1px;
    transition: all 0.4s ease;
    cursor: pointer;
}

/* Small hexagons */
.hexagon-small {
    width: 80px;
    height: 92px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    border: 2px solid #0056b3;
    background-color: transparent;
    transition: all 0.3s;
}

.hexagon-item:hover~.hexagon-small,
.hexagon-small:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

/* Blue Hexagons */
.hexagon.blue {
    background-color: #0056b3;
}

.hexagon.blue .hexagon-number {
    color: white;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.8rem;
}

.hexagon.blue .hexagon-text {
    color: white;
    font-size: 0.95rem;
    line-height: 1.4;
    font-weight: 500;
}

/* White Hexagons */
.hexagon.white {
    background-color: white;
    border: 2px solid #0056b3;
}

.hexagon.white .hexagon-number {
    color: #0056b3;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.8rem;
}

.hexagon.white .hexagon-text {
    color: #0a1628;
    font-size: 0.95rem;
    line-height: 1.4;
    font-weight: 500;
}

/* Hover Effects - Blue to White */
.hexagon.blue:hover {
    background-color: white;
    border: 2px solid #0056b3;
    transform: scale(1.08);
}

.hexagon.blue:hover .hexagon-number {
    color: #0056b3;
}

.hexagon.blue:hover .hexagon-text {
    color: #0a1628;
}

/* Hover Effects - White to Blue */
.hexagon.white:hover {
    background-color: #0056b3;
    border: 2px solid #0056b3;
    transform: scale(1.08);
}

.hexagon.white:hover .hexagon-number,
.hexagon.white:hover .hexagon-text {
    color: white;
}

@media (max-width: 1200px) {
    .hexagon {
        width: 180px;
        height: 207px;
        padding: 2rem 1.2rem;
    }


    .hexagon .hexagon-number {
        font-size: 3rem;
    }


    .hexagon .hexagon-text {
        font-size: 0.85rem;
    }


    .hexagon-small {
        width: 70px;
        height: 80px;
    }
}


@media (max-width: 992px) {
    .hexagon-row {
        flex-wrap: wrap;
        gap: 2rem;
    }


    .hexagon-wrapper {
        flex-wrap: wrap;
        justify-content: center;
    }


    .hexagon-item {
        margin: 1rem;
    }


    .hexagon-small {
        display: none;
    }
}


@media (max-width: 768px) {
    .milestones-title {
        font-size: 2rem;
    }


    .hexagon {
        width: 160px;
        height: 184px;
        padding: 1.8rem 1rem;
    }


    .hexagon .hexagon-number {
        font-size: 2.5rem;
    }


    .hexagon .hexagon-text {
        font-size: 0.8rem;
    }
}


@media (max-width: 576px) {
    .milestones-section {
        padding: 3rem 0;
    }


    .milestones-title {
        font-size: 1.6rem;
    }


    .hexagon {
        width: 140px;
        height: 161px;
        padding: 1.5rem 0.8rem;
    }


    .hexagon .hexagon-number {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }


    .hexagon .hexagon-text {
        font-size: 0.7rem;
    }
}

/* .therapeutic-section {
    padding: 60px 0;
    background-color: #f8f9fa;
} */

.therapeutic-card {
    background-color: #DAE9FF4D;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #213F984D;
}

.therapeutic-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.therapeutic-content {
    padding-left: 2rem;
}

.therapeutic-title {
    font-size: 34px;
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 35px;
    position: relative;
    display: inline-block;
    font-family: "Poppins", sans-serif;
}

.therapeutic-title::after {
    content: '';
    position: absolute;
    bottom: -11px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #e31e24;
}

.therapeutic-description {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    line-height: 160%;
    color: #333;
    text-align: justify;
    hyphens: auto;
    word-spacing: normal;
    margin-bottom: 36px;
}

.focus-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.focus-item {
    background-color: white;
    border: 1px solid #4444444D;
    border-radius: 10px;
    padding: 20px 16px;
    display: flex;
    align-items: center;
    transition: all 0.3s;
    /* cursor: pointer; */
}

/* .focus-item:hover {
    border-color: #0056b3;
    box-shadow: 0 5px 15px rgba(0, 86, 179, 0.1);
    transform: translateX(5px);
} */

.focus-icon {
    /* width: 40px;
    height: 40px;
    min-width: 40px; */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.3rem;
}

.focus-icon.brain {
    color: #e31e24;
}

.focus-icon.ribbon {
    color: #e91e63;
}

.focus-icon.pill {
    color: #ff5722;
}

.focus-icon.wellness {
    color: #f44336;
}

.focus-text {
    flex: 1;
    font-size: 14px;
    line-height: 25px;
    font-family: "Poppins", sans-serif;
}

.focus-text strong {
    font-weight: 600;
    /* font-size: 1rem; */
    color: #000;
}

.focus-text span {
    color: #000;
    /* font-size: 0.95rem; */
}

@media (max-width: 991px) {
    .therapeutic-content {
        padding-left: 0;
        margin-top: 2rem;
    }


    .therapeutic-title {
        font-size: 2rem;
    }
}


@media (max-width: 900px) {
    .therapeutic-section {
        padding: 3rem 0;
    }

    .therapeutic-card {
        padding: 1.5rem;
    }

    .therapeutic-title {
        font-size: 28px;
    }

    .therapeutic-description {
        text-align: left;
        font-size: 0.95rem;
        font-size: 14px;
    }

    .focus-item {
        padding: 1rem;
    }

    .focus-icon {
        width: 35px;
        height: 35px;
        min-width: 35px;
        font-size: 1.1rem;
    }

    .focus-text strong {
        font-size: 0.95rem;
    }

    .focus-text span {
        font-size: 14px;
    }

    .section-title::after {
        content: '';
        position: absolute;
        top: 45px;
        width: 86%;
        left: 0;
        height: 2px;
        background-color: #e31e24;
    }

    .manufacture .col-md-6 {
        width: 100%;
    }

    section.manufacture {
        margin-top: 0px;
    }

    .milestone-heading {
        font-size: 28px;
        line-height: 36px;
    }

    .milestone-heading::after {
        left: 10% !important;
        width: 612px !important;
    }

    .product-identification-section .col-md-6 {
        width: 100%;
        padding: 0;
    }

    .product-bg {
        background: url("assests/images/biochemistry-doctor.png");
        background-repeat: no-repeat;
        background-size: cover;
        height: 532px;
        margin-bottom: 10px;
    }

    .product-title::after {
        content: url("assests/images/fade-pyramid.svg");
        position: absolute;
        margin-top: -15px;
        margin-left: 11px;
        right: 39px;
    }
}


@media (max-width: 576px) {
    .therapeutic-title {
        font-size: 1.5rem;
    }


    /* .focus-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    } */


    .focus-icon {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
}


.client-images img {
    max-width: 80px;
    max-height: 80px;
}

/* .card-title::after {
    content: url("assests/images/fade-pyramid.svg");
    position: absolute;
    left: 29.2%;
    top: 76%;
} */

.category-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 320px;
    cursor: pointer;
}

.category-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

/* Background images */
.psychiatry {
    background-image: url("assests/images/red-tab.png");
}

.neurology {
    background-image: url("assests/images/blue-tab.png");
}

/* Hover zoom effect */
.category-card:hover .category-img {
    transform: scale(1.08);
}

/* Bottom label */
.category-label {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.45);
    color: #ffffff;
    text-align: center;
    padding: 14px 0;
    font-size: 18px;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    transition: color 0.3s ease;
}

/* Text turns red on hover */
.category-card:hover .category-label {
    color: #EC1B23;
}

/* View All Products Card */
.view-all-card {
    height: 320px;
    background-color: #0056a6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #ffffff;
    font-size: 18px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* .view-all-card:hover {} */

.view-all-card .arrow {
    font-size: 22px;
}

.image-logo-div img {
    padding: 36px 63px;
    border: 1px solid #bebebe;
}

.image-logo-div img:nth-child(1) {
    border-radius: 10px 0px 0px 10px;
}

.image-logo-div a img {
    border-radius: 0px 10px 10px 0px !important;
    padding: 41px 63px;
}


.image-logo-div {
    margin-top: 31px;
}

.video-wrappers {
    position: relative;
    width: 100%;
    height: 99% !important;
    overflow: hidden;
}

.video-wrappers video {
    width: 100%;
    height: 506px;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: #0000005C;
    height: 99%;
    /* adjust darkness */
    pointer-events: none;
}

.develop-developer {
    background-color: #f6f9fe;
    padding: 40px 0px;
}

.develop-developer .section-title::after {
    content: '';
    position: absolute;
    right: 0;
    top: -5px;
    width: 2px;
    height: 120%;
    background-color: #EC1B23;
}

.marketing-divisions {
    background-color: #f7faff;
    padding-top: 42px;
    padding-bottom: 57px;
}

.marketing-divisions h3 {
    font-size: 18px;
    line-height: 20px;
    text-transform: uppercase;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
    color: #002140;
}


.milestone-heading {
    font-size: 36px;
    color: #002140;
    /* line-height: 20px; */
    text-transform: capitalize;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    text-align: center;
    /* margin-bottom: 40px; */
}

.hex-container {
    margin-top: 41px;
    margin-bottom: 60px;
}

.milestone-heading::after {
    content: '';
    position: absolute;
    /* bottom: -10px; */
    left: 40%;
    margin-top: 47px;
    width: 218px;
    height: 2px;
    background-color: #e31e24;
}

.stats-section {
    padding-top: 14px;
    background: #fff;
    overflow: hidden;
}

.hexagon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    position: relative;
}

.hexagon {
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    background-color: #0056b3;
    width: 200px;
    height: 230px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 -20px;
}

.hexagon-shape {
    width: 100%;
    height: 100%;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    width: calc(100% - 6px);
    height: calc(100% - 6px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 63px 56px;
    text-align: center;
    transition: all 0.3s ease;
}

.hexagon-outline .hexagon-shape {
    background: white;
    /* border: 2px solid #0056b3; */
}

.hexagon-filled .hexagon-shape {
    background: #0056b3;
    color: white;
}

.hexagon-empty .hexagon-shape {
    background: transparent;
    border: 2px solid #0056b3;
}

.hex-number {
    font-size: 40px;
    line-height: 115%;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
    margin-bottom: 10px;
}

.hex-text {
    font-size: 16px;
    line-height: 25px;
    text-transform: capitalize;
    font-family: "Poppins", sans-serif;
}

/* Size variations */
.hexagon.hex-small {
    width: 120px;
    height: 138px;
    margin: 0 77px;
}

.hexagon.hex-medium {
    width: 240px;
    height: 240px;
    margin: 0 -30px;
}

/* Row layout */
.hex-row {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 17px;
}

.hexagon-hover:hover {
    background-color: #0056b3 !important;
}

.hexagon-hover.hexagon-filled:hover .hexagon-shape {
    background: #fff !important;
    color: #0056b3 !important;
}

.hex-hover-blue {
    color: #0056b3;
    background-color: #0056b3;
}

.hex-hover-blue:hover {
    background-color: #0056b3 !important;
}

/* Change hexagon-filled to hexagon-outline */
.hex-hover-blue.hexagon-outline:hover .hexagon-shape {
    background: #0056b3 !important;
    color: #fff !important;
}

/* 
.hex-row:last-child {
    margin-bottom: 0;
} */

/* Responsive adjustments */
@media (max-width: 1200px) {
    .hexagon {
        width: 180px;
        height: 207px;
    }

    .hexagon.hex-medium {
        width: 220px;
        height: 253px;
    }

    .hex-number {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .hexagon {
        width: 160px;
        height: 184px;
        margin: 0 -15px;
    }

    .hexagon.hex-small {
        width: 100px;
        height: 115px;
    }

    .hexagon.hex-medium {
        width: 200px;
        height: 230px;
    }

    .hex-number {
        font-size: 2.5rem;
    }

    .hex-text {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .hex-row {
        margin-bottom: -40px;
    }

    .hexagon {
        width: 140px;
        height: 161px;
        margin: 10px;
    }

    .hexagon.hex-small {
        width: 80px;
        height: 92px;
    }

    .hexagon.hex-medium {
        width: 180px;
        height: 207px;
    }

    .hex-number {
        font-size: 2rem;
    }

    .hex-text {
        font-size: 0.75rem;
    }
}

.stats-section img {
    margin-top: 41px;
    margin-bottom: 60px;
}

.content-image {
    display: flex;
    object-fit: cover;
}

.content-image img {
    display: flex;
    object-fit: cover;
    height: 100%;
}