html,
body {

    margin: 0;
    padding: 0;
    font-family: 'polySans-neutral';
    overflow-x: hidden;
}


/* 
font-classes */


/* ============ FONT DEFINITIONS ============ */
@font-face {
    font-family: polySans-neutral;
    src: url('../Fonts/polysanstrial-neutral.otf');
}

@font-face {
    font-family: polySans-median;
    src: url('../Fonts/polysanstrial-median.otf');
}

@font-face {
    font-family: polySans-medianWide;
    src: url('../Fonts/polysanstrial-medianwide.otf');
}

@font-face {
    font-family: polySans-slim;
    src: url('../Fonts/polysanstrial-slim.otf');
}

/* ============ FONT CLASSES ============ */
.poly-neutral {
    font-family: 'polySans-neutral';
}

.poly-median {
    font-family: 'polySans-median';
}

.poly-medianWide {
    font-family: 'polySans-medianWide';
}

.poly-slim {
    font-family: 'polySans-slim';
}


/* ============ GLOBAL WRAPPER ============ */

/* ============ NAVBAR SECTION ============ */
.navbar {

    padding-top: 15px;
    padding-bottom: 15px;
    background-color: #fff;

}

.navbar-container {
    max-width: 80vw;
    border-bottom: 2px solid #BBBFC5;
    padding-right: 100px;
    padding-left: 100px;
    padding-bottom: 10px;
    box-sizing: border-box;
    margin: auto;
    display: flex;
    height: 100%;
    justify-content: space-between;
    align-items: center;
}

.navbar-logo-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.navbar-logo {
    width: 145px;
    min-width: 145px;
    height: 22px;
}

.navbar-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.navbar-logo .logo-text {

    font-weight: bold;
    color: #002c5c;
}

.logo-orange {
    color: #ff4d00;
}

.navbar-menu {
    display: none;
}

.hamburger {
    font-size: 22px;
    cursor: pointer;
    display: block;
}

@media (max-width: 768px) {
    .navbar {
        width: 100vw;



        margin-bottom: 0;


    }


    .navbar-container {
        width: 100%;

        display: flex;
        padding-top: 5%;
        padding-bottom: 7%;
        padding-left: 0;
        padding-right: 0;
        border-bottom: 1px solid rgb(188, 186, 186);
        justify-content: space-between;
        margin-bottom: 10px;

    }



}

@media (min-width: 768px) {
    .navbar-menu {
        display: block;
    }

    .hamburger {
        display: none;
    }

    .navbar-logo {
        height: 29px;
        width: 187px;
    }

    .drop-icon {
        width: 10%;
        /* height: 27px; */
    }

    .nav-links {
        list-style: none;
        display: flex;
        gap: 30px;
    }

    .nav-links li a {
        text-decoration: none;
        color: #002c5c;
        font-size: 1vw;
        line-height: 20px;
        font-weight: 400;
        transition: color 0.3s;
    }

    .nav-links li a:hover {
        color: #ff4d00;
    }
}

/* ============ DIABETES AWARENESS SECTION ============ */
.diabetes-section {
    padding: 0 0 4rem 0;
    background-color: #ffffff;
    /* height: calc(100vh - 150px);
    max-height: 900px; */

}

.diabetes-container {
    height: 95%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 65%;

    margin: auto;


}



@media (min-width: 768px) {
    .diabetes-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.diabetes-content {
    flex: 1;
}

.breadcrumb {
    font-size: 12px;
    color: #777;
    margin-bottom: 2rem;
}
.breadcrumb a{
    text-decoration: none;
    color: #B3B3B3;
}
.diabetes-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.diabetes-tag .tag {
    width: auto;
    height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #A6B7C5;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 100;
    color: #A6B7C5;
padding: 10px;
}

.diabetes-tag .icon {
    font-size: 16px;
}

.diabetes-heading {
    color: #FB4D08;
    font-size: 50px;
    line-height: 50px;

    padding: 0;
    margin: 0;
    margin-bottom: 10px;

}

.diabetes-subheading {
    color: #002349;
    font-weight: 400;
    margin-bottom: 50px;
    font-size: 40px;
    line-height: 40px;
    padding: 0;
    margin: 0;
    margin-bottom: 40px;

}

.diabetes-description {
    font-size: 18px;
    line-height: 22px;
    color: #7C8189;
    margin-bottom: 20px;
    font-weight: 300;
    max-width: 500px;
}

.consult-btn {
    background-color: #F40846;
    color: #fff;
    border: none;
    font-size: 0.9rem;
    width: 25vw;
    min-width: 300px;
    height: 55px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease;
}

.consult-btn:hover {
    background-color: #c51162;
}

.diabetes-image {
    flex: 1;
    height: 100%;
    border: 1px;
    text-align: center;
}

.diabetes-image img {
    width: 100%;

    height: 100%;
    border-radius: 60px;
    object-fit: cover;
    width: 454px;
    height: 515px;
}

.show-in-phone {
    display: none;
}


@media (max-width: 340px) {

    .consult-btn {
        /* width: 280px; */
        height: 45px;
        font-size: 16px;
    }

    .diabetes-heading {
        font-size: 40px;
    }

    .show-in-phone .diabetes-description {
        font-size: 14px;
        line-height: 16px;
    }
}

@media (max-width: 768px) {
    .breadcrumb {
        display: none;
        margin: 0;
    }

    .diabetes-container {
        max-width: 100vw;
    }

    .show-in-desktop {
        display: none;
    }

    .diabetes-tag {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0;
        margin: 10px;
        margin-top: 0;
    }

    .drop-icon {
        height: 26px;
        width: 17px;
    }

    .diabetes-section {
        min-width: 100vw;
        border: 1px soild red;

        padding: 0;
        min-height: fit-content;
    }

    .diabetes-heading {
        text-align: center;
        font-size: 30px;
        line-height: 30px;
    }

    .line-break {
        display: none;
    }

    .diabetes-subheading {
        text-align: center;
        font-size: 20px;
        line-height: 20px;
        color: #002349;
        margin-bottom: 0;
    }

    .diabetes-content {

        flex: none;
        height: fit-content;
        padding: 0;
    }

    .diabetes-image {
        margin: 0;
        width: 90%;
        height: 375px;
        margin-left: auto;
        margin-right: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        flex: none;


    }

    .diabetes-container {

        margin: 0;
        width: 100%;
        min-height: fit-content;
        padding-bottom: 30px;
    }

    .diabetes-image img {
        border-radius: 40px;
        width: 354px;
        height: 375px;
    }

    .show-in-phone {
        display: block;
        width: 90%;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        margin-top: -25px;

    }

    .diabetes-description {
        font-size: 16px;
        width: 85%;
        margin: 1rem auto;
    }


}


/* blue grid section */

.dia-container {
    width: 100%;
    min-height: fit-content;
    background-color: #003564;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4rem 2rem;
    box-sizing: border-box;


    text-align: center;
}

.dia-heading {
    color: #ffffff;
    margin-bottom: 70px;
    font-size: 40px;
}

.dia-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.dia-box {
    background-color: #002349;

    display: flex;
    justify-content: center;
    /* align-items: center; */
    flex-direction: column;
    gap: 3rem;
    border-radius: 40px;
    padding: 3rem;
    width: 324px;
    height: 324px;

    box-sizing: border-box;

}

.dia-box img {
    /* margin-left: -12%; */
}


.dia-highlight {
    font-size: 74px;

    margin-bottom: 10px;
    color: transparent;
    -webkit-text-stroke: 0.3px #FFF200;
    text-shadow: -4px 2px 0px #f1f1f1;

}

.dia-desc {
    font-size: 18px;
    line-height: 20px;
    text-align: left;
    width: 90%;
    color: #7C8189;
}

.dia-footer {
    font-size: 20px;
    color: #999999;
}



.dia-bold {
    color: white;
    font-weight: bold;
}

.dia-card-img {
    height: auto;
        width: 80%;
}


@media (max-width: 768px) {

    .dia-container {
        padding-top: 0px;
    }

    .dia-grid {

        width: 100%;
        padding: 10px;
        gap: 10px;
    }

    .dia-box {
        padding: 2rem 1rem;
        gap: 10px;
        border-radius: 20px;
        width: 171px;
        height: 203px;
        margin-left: auto;
        margin-right: auto;
    }

    .dia-box img {
        /* margin-left: -8px; */
    }

    .dia-desc {
        font-size: 14px;
        max-width: 90%;
    }

    .dia-container {
        width: 100vw;
        padding-left: 15px;
        padding-right: 15px;
        min-height: fit-content;
    }

    .dia-heading {
        font-size: 30px;
        margin-top: 50px;
        max-width: 80%;
        margin-bottom: 20px;
    }

    .dia-footer {
        font-size: 16px;
        max-width: 80%;
        line-height: 20px;
        margin-bottom: 0;
    }

}

@media (max-width:340px) {
    .dia-heading {
        font-size: 20px;
        margin-top: 0;

    }

    .dia-container {
        width: 100vw;
        padding: 2rem 0;
    }

    .dia-card-img {
        /* height: 2.1em; */
    }

    .dia-desc {
        font-size: 12px;
        line-height: 1.1;
    }

    .dia-grid {
        padding: .4em;
    }

    .dia-footer {
        font-size: 14px;

        line-height: 18px;

    }

}



/* Responsive Layout */
@media (min-width: 768px) {


    .dia-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .dia-heading {
        font-size: 40px;
        line-height: 40px;
    }

    .dia-highlight {
        font-size: 74px;
    }

    .dia-desc {
        font-size: 18px;
        line-height: 20px;
        text-align: left;
        width: 90%;
        color: #7C8189;
        font-family: polySans-neutral;
    }

    .dia-footer {
        font-size: 1.5vw;
    }

    .dia-card-img {
        /* height: 4vw; */
    }
}

.support-section {
    padding-top: 3%;
    padding-bottom: 3%;
    display: grid;
    grid-template-columns: 45% 55%;
    padding-left: 5%;
    background-color: #FAFAFA;
}


.left-text-section {
    padding-top: 20px;
    padding-left: 70px;
    padding-right: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    box-sizing: border-box;
    /* background: #ffffff; */
}

.left-text-section h1 {
    font-size: 40px;
    color: #002349;
    margin-bottom: 5px;
    line-height: 40px;
}

.left-text-section p {
    font-size: 20px;
    color: #7C8189;
    margin-bottom: 0;
    line-height: 22px;

    font-family: polysans-neutral;
}

.highlight-text {
    font-size: 50px;
    line-height: 50px;
    color: #FB4D08;
    font-weight: 500;
    margin-bottom: 80px;
    width: 80%;
}

@media (max-width:340px) {
    .left-text-section h1 {

        padding-right: 10% !important;
        font-size: 25px !important;
    }

    .left-text-section p {
        font-size: 14px !important;
    }

    .we-understand {
        font-size: 14px !important;
    }
}

.carousel-container {

    /* Takes half of the full screen */
    padding-left: 30px;

    width: 100%;
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
}

.carousel-track {
    display: flex;
    height: 600px;
    transition: transform 0.6s ease-in-out;
    /* smoother sliding transition */
    align-items: center;
}

.slide {
    flex: 0 0 25%;
    /* smaller width by default */
    margin: 0 5px;
    height: 529px;
    width: 400px;

    transition: all 0.6s ease;
    /* smooth transition for scale, opacity, blur */
    opacity: 0.4;
    transform: scale(0.85);
    filter: blur(2px);
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.slide.active {
    flex: 0 0 60%;
    /* expand to more than half of 50vw = ~30vw */
    transform: scale(1);
    opacity: 1;
    filter: blur(0);
}

.controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: auto;
    margin-bottom: auto;
}

.controls button {
    padding: 8px 14px;
    font-size: 18px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
    width: 42.17px;
    height: 42.17px;
}

.controls button img {
    width: 16px;
    float: left;
}

.controls button:hover {
    background: #f0f0f0;
}

.progress-bar-container {
    width: 60%;
    margin: 20px auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
}

.progress-bar {
    flex: 1;
    height: 3px;
    background: #ddd;
    margin: 0 10px;
    position: relative;
}

.progress-fill {
    height: 3px;
    background: #333;
    width: 0%;
    position: absolute;
    top: 0;
    left: 0;
    transition: width 0.5s ease;
}

.slider-control {
    display: flex;
}



@media (max-width:786px) {
    .carousel-container {
        display: none;
    }

    .support-section {
        width: 100%;

        display: flex;
        flex-direction: column;
    }

    .support-section {
        padding: 2rem 0;
        margin: 0;
    }

    .left-text-section {
        width: 100%;
        padding: 0;
        margin: 0;

    }

    .left-text-section h1 {
        text-align: left;
        font-size: 30px;
        max-width: 85%;
        padding-right: 15%;
        margin-left: auto;
        margin-right: auto;
        box-sizing: border-box;
        line-height: 1
    }

    .left-text-section p {
        font-size: 16px;
        max-width: 85%;
        line-height: 18px;
        margin: 1rem auto;
    }

    .highlight-text {
        display: none
    }

    .sympathy-text {
        display: none;
    }

}



.slider-wrapper {
    display: flex;
    margin-left: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding: 20px 16px;
}

.slider-wrapper::-webkit-scrollbar {
    display: none;
}

.slide-box {
    flex: 0 0 70%;
    max-width: 211px;
    height: 325px;
    padding: 0.5em;
    scroll-snap-align: start;
    background-color: #33363F;
    color: #ffffff;
    border-radius: 5px;
    display: flex;
    justify-content: start;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);

}

.slide-image {
    width: 100%;
    height: 214px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    margin-left: auto;
    margin-right: auto;
    object-fit: cover;
}

.slide-caption {
    padding: 1rem;
    font-size: 15px;
    line-height: 18px;
    font-family: polysans-neutral;
    /* height: 20%; */
    margin-bottom: 0;
}

@media (max-width:340px) {
    .slide-box {
        flex: 0 0 80%;
        padding: .3em;


    }

    .slide-image {
        width: 206px;
        height: 220px;

    }

    .slide-caption {
        padding: 7px 8px;
        margin: 0;
    }
}

@media (min-width: 600px) {
    .slide-box {
        flex: 0 0 300px;
    }
}

@media (max-width:786px) {
    .highlight-text-mobile {
        display: block;
        color: #FFDC4B;
    }

    .consult-title {
        font-weight: 100;
    }



}


@media (min-width:786px) {

    .slider-wrapper {
        display: none;
    }

    .highlight-text-mobile {
        display: none;
    }
}

.we-understand {
    max-width: 85%;
    text-align: left;
    margin-top: 20px;
    font-size: 16px;
    line-height: 18px;
    color: #7C8189;
}


/* consult-container */

.consult-section {
    text-align: center;
    padding: 4rem 2rem;
    background: #33363F;
}

.consult-title {
    /* margin-top: 0.8em; */
    margin-bottom: 2rem;
    font-size: 50px;
    color: white;
    line-height: 50px;

}

.highlight-text2 {
    color: #FFD700;
}

.consult-subtitle {
    color: #7C8189;
    font-size: 20px;
    line-height: 22px;
    margin-bottom: 2em;
}

.consult-card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;

    gap: 2rem;
    margin: 2rem 0;
}

.glow-card {
    width: 290px;
    z-index: 0;
    position: relative;
    height: 226px;
    border-radius: 10px;
    background: linear-gradient(to top right, #fff200, #ff7300, #ff00aa);
    padding: 2px;
    box-shadow: 0 4px 10px 0 #00000040;
    transition: transform 0.3s;
}

.glow-card:hover {
    transform: scale(1.03);
}

.card-content {
    background-color: #33363F;
    border-radius: 10px;

    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
    text-align: left;

    padding: 2rem;
    box-sizing: border-box;
}

.card-content img {
    width: 48px;
    margin-bottom: 2rem;
}

.card-content p {
    color: #818181;
    font-size: 18px;
    line-height: 20px;
    font-family: polysans-neutral;
}

/* Different color themes */
.purple-glow {
    background: linear-gradient(to top right, #500DCE, #CEA0CE, #EB6FE2);
}

.blue-glow {
    background: linear-gradient(to top right, #6E80B0, #8CBEB2, #CDD7AA);
}

.gradient-shadow-red::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -13px;
    height: 110%;
    width: 110%;
    z-index: -1;
    background: linear-gradient(235deg, #FF00AA, #FF00AA, #FF7300, #FFF200);
    filter: blur(30px);
    opacity: 0;
    /* hidden by default */
    border-radius: inherit;
    transition: opacity 0.4s ease, filter 0.4s ease;
}

.gradient-shadow-red:hover::before {
    opacity: 0.3;
}

.gradient-shadow-purple::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -13px;
    height: 110%;
    width: 110%;
    z-index: -1;
    background: linear-gradient(235deg, #EB6FE2, #EB6FE2, #CEA0CE, #500DCE);
    filter: blur(30px);
    opacity: 0;
    /* hidden by default */
    border-radius: inherit;
    transition: opacity 0.4s ease, filter 0.4s ease;
}

.gradient-shadow-purple:hover::before {
    opacity: 0.3;
}

.gradient-shadow-blue::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -13px;
    height: 110%;
    width: 110%;
    z-index: -1;
    background: linear-gradient(235deg, #CDD7AA, #CDD7AA, #8CBEB2, #6E80B0);
    filter: blur(30px);
    opacity: 0;
    /* hidden by default */
    border-radius: inherit;
    transition: opacity 0.4s ease, filter 0.4s ease;
}

.gradient-shadow-blue:hover::before {
    opacity: 0.3;
}

.consult-footer {
    color: #7C8189;
    font-size: 20px;
    line-height: 22px;
    margin: 2rem 0;
    font-family: polysans-neutral;
}

.consult-button {
    background-color: #f50057;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.consult-button:hover {
    background-color: #c51162;
}

/* Responsive */
@media (max-width: 768px) {
    .glow-card {
        width: 90%;
        max-width: 300px;
    }

    .consult-section {
        width: 100%;
        padding: 0;
    }

    .consult-title {
        font-size: 30px;
        height: auto;
        line-height: 30px;
        font-family: 'polySans-median';
        padding-top: 1.5em;
        box-sizing: border-box;

    }

    .highlight-text {
        display: none;
        font-size: 30px;
        line-height: 30px;
        margin: 0;


    }

    .consult-subtitle {
        font-size: 14px;
        line-height: 20px;
        max-width: 85%;
        margin-left: auto;
        margin-right: auto
    }

    .consult-card-container {
        display: none;
    }
}






.button-container {
    width: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
}



/* custom carousal */
.coverflow-wrapper {
    width: 100%;
    height: 400px;
    perspective: 1200px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: fit-content;
    box-sizing: border-box;

}

.coverflow-track {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: grab;
    user-select: none;
}

.coverflow-track:active {
    cursor: grabbing;
}

.coverflow-item {
    position: absolute;
    width: 280px;
    height: 350px;


    border-radius: 20px;


    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-style: preserve-3d;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    padding: 2px;
}

.orange-glow {
    background: linear-gradient(to top right, #fff200, #ff7300, #ff00aa);
}

.coverflow-gradient-shadow-red::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -13px;
    height: 110%;
    width: 110%;
    z-index: -1;
    background: linear-gradient(235deg, #FF00AA, #FF00AA, #FF7300, #FFF200);
    filter: blur(30px);
    opacity: 0.3;
    /* hidden by default */
    border-radius: inherit;
    transition: opacity 0.4s ease, filter 0.4s ease;
}


.coverflow-gradient-shadow-purple::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -13px;
    height: 110%;
    width: 110%;
    z-index: -1;
    background: linear-gradient(235deg, #EB6FE2, #EB6FE2, #CEA0CE, #500DCE);
    filter: blur(30px);
    opacity: 0.3;
    /* hidden by default */
    border-radius: inherit;
    transition: opacity 0.4s ease, filter 0.4s ease;
}


.coverflow-gradient-shadow-blue::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -13px;
    height: 110%;
    width: 110%;
    z-index: -1;
    background: linear-gradient(235deg, #CDD7AA, #CDD7AA, #8CBEB2, #6E80B0);
    filter: blur(30px);
    opacity: 0.3;
    /* hidden by default */
    border-radius: inherit;
    transition: opacity 0.4s ease, filter 0.4s ease;
}

.inner-coverflow-item {
    background: #33363F;
    height: 100%;
    border-radius: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;

}

.coverflow-item.coverflow-active {
    transform: translateX(0) rotateY(0deg) scale(1);
    z-index: 10;
    opacity: 1;


}

.coverflow-item.coverflow-prev {
    transform: translateX(-120px) rotateY(10deg) scale(0.8);
    z-index: 5;
    opacity: 0.7;
}

.coverflow-item.coverflow-next {
    transform: translateX(320px) rotateY(-45deg) scale(0.8);
    z-index: 5;
    opacity: 0.7;
}

.coverflow-item.coverflow-far-prev {
    transform: translateX(-480px) rotateY(60deg) scale(0.8);
    z-index: 1;
    opacity: 0.4;
}

.coverflow-item.coverflow-far-next {
    transform: translateX(480px) rotateY(-60deg) scale(0.8);
    z-index: 1;
    opacity: 0.4;
}

.item-image {
    width: 48px;
    height: 48px;

    object-fit: contain;
}

.image-wrapper-carousal {
    background: #2A2D3A;
    border: 1px solid #3D4258;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90px;
    width: 90px;
    border-radius: 50%;
    margin-bottom: 15px;

}

.item-text {
    font-size: 1rem;
    opacity: 1;
    color: #818181;
    line-height: 1.4;
    padding: 0 20px;
    width: 60%;



}

.coverflow-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
}

.coverflow-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.coverflow-indicator.indicator-active {
    background: white;
    box-shadow: 0 0 15px rgba(226, 228, 228, 0.5);
}

.item-number {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.5);
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    opacity: 0.8;
}

@media (max-width: 768px) {

    .coverflow-wrapper {

        padding-top: 0;
    }

    .consult-subtitle {
        margin-bottom: -1em;
    }



    .coverflow-item {
        width: 222px;
        height: 271px;
        border-radius: 10px;
    }

    .coverflow-item.coverflow-prev {
        transform: translateX(-230px) scale(0.9);
    }

    .coverflow-item.coverflow-next {
        transform: translateX(228px) scale(0.9);
    }

    .coverflow-item.coverflow-far-prev {
        transform: translateX(-380px) rotateY(60deg) scale(0.6);
    }

    .coverflow-item.coverflow-far-next {
        transform: translateX(380px) rotateY(-60deg) scale(0.6);
    }

    .consult-footer {
        font-size: 16px;
        line-height: 18px;
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }

    .consult-btn {
        height: 50px;
        font-size: 14px;
        min-width: fit-content;
        padding: 1rem;
    }

    .consult-section {
        padding-bottom: 50px;
    }
}

@media(min-width:786px) {

    .coverflow-wrapper {
        display: none;
    }

}

@media(max-width:376px) {
    .dia-box {
        width: 157px;
        padding: 2rem 1rem;
        justify-content: start;
        gap: 20px;
    }

    .dia-desc {
        width: 100%;
        max-width: 100%;
        margin-bottom: 0;
        font-size: 12px;
        line-height: 16px;
    }

    .diabetes-image img {
        width: 100%;
        /* height: fit-content; */
    }

    .slider-wrapper {
        margin-left: 20px;
    }

    .we-understand {
        margin: 0 auto;
    }

    .consult-title {
        width: 95%;
        margin-left: auto;
        margin-right: auto;
    }
}

@media(max-width:321px) {
    .dia-box {
        width: 148px;
        height: 190px;
    }
}

.related-blogs {
    padding: 4rem 0;

}

.related-blogs .section-heading {
    font-family: myFirstFont2;
    font-size: 40px;
    line-height: 40px;
    color: #003564;
    font-weight: normal;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.related-blogs .sub-heading {
    font-family: myFirstFont3;
    font-size: 20px;
    line-height: 24px;
    color: #7C8189;
    font-weight: 400;
    margin-top: 1rem;
    /* width: 403px; */
    margin-left: auto;
    margin-right: auto;

    margin-bottom: 2rem;
}

.related-blogs .cards {
    flex-direction: row;
    gap: 24px;
    align-items: center;
    justify-content: center;
}

.related-blogs .card {
    width: 336px;
    height: 368px;
    border-radius: 20px;
    border: 1px solid #F0F0F0;
    background-color: #FAFAFA;
    padding: 20px;
    text-decoration: none;
}

.related-blogs .card img {
    width: 304px;
    height: 164px;
    object-fit: cover;
    border-radius: 10px;
}

.related-blogs .card .blog-body {
    width: 85%;
    padding: 1rem;
    text-decoration: none;
    /* margin-top: auto;
        margin-bottom: auto; */
}

.related-blogs .card h4 {
    color: #002349;
    font-size: 15px;
    line-height: 16px;
    font-family: myFirstFont2;
    margin-bottom: 1rem;
    text-decoration: none;
}

.related-blogs .card p {
    color: #7C8189;
    font-size: 13px;
    line-height: 16px;
    font-family: myFirstFont3;
    margin-bottom: 0;
    text-decoration: none;
}

@media (max-width: 576px) {
    .related-blogs {
        padding: 2rem 0;
    }
    .related-blogs .cards{
        flex-wrap: nowrap;
        overflow-x: scroll;
        padding-left: 2rem;
        padding-right: 2rem;
        justify-content: start;
        gap: 16px;
    }
    .related-blogs .card {
        width: 244px;
        height: 317px;
        padding: 12px;
    }

    .related-blogs .card img {
        width: 220px;
        height: 119px;
    }

    .related-blogs .section-heading {
        font-size: 30px;
        line-height: 30px;
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .related-blogs .sub-heading {
        font-size: 16px;
        line-height: 18px;
        width: 70%;
        margin-left: auto;
        margin-right: auto;
    }

    .related-blogs .card .blog-body {
        width: 100%;
        padding: 0.5rem 1rem;
    }
    .related-blogs  .video-view-all a {
        height: 40px;
        font-size: 12px;
        width: fit-content;
    }
}
@media (max-width: 576px) {
.related-blogs .sub-heading{
    width: 80%;
}
}