* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Poppins', system-ui, -apple-system, sans-serif;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* ---------- HERO SECTION ---------- */
.hero {
    position: relative;
    width: 100%;
    min-height: 77vh;


    color: white;
    padding: 30px 60px;
    display: flex;
    flex-direction: column;
}

.hero-link,
.hero-link * {
  text-decoration: none !important;
  color: inherit;
}
.hero {
  cursor: pointer;
}


.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.091);
    z-index: 0;
}

.hero * {
    position: relative;
    z-index: 2;
}

.hero-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.logo {
    width: 85px;
    height: auto;
    display: block;
    object-fit: contain;
}

.divider {
    width: 2px;
    height: 35px;
    background: #ffffff;
    display: inline-block;
    opacity: 0.9;
}

.brand-text {
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #ffffff;
}

.brand-text sup {
    font-size: 12px;
    margin-left: 2px;
    vertical-align: super;
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
}

.hero-text {
    max-width: 70%;
}

.hero-heading {
    font-family: 'Noto Sans', 'Inter', sans-serif;
    font-style: italic;
    font-weight: 800;
    font-size: 64px;
    line-height: 1.2;
    text-align: left;
    color: #ffffff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.hero-heading span {
    display: inline-block;
}

.hero-heading sup {
    font-size: 35px;
    font-weight: 800;
    vertical-align: super;
    margin-left: 4px;
}


/* ---------- TABLET (<= 1024px) ---------- */
@media (max-width: 1024px) {
    .hero {
        padding: 20px 30px !important;
        min-height: 30vh !important;
        background-position: 100% center !important;
    }

    .hero-text {
        max-width: 80%;
    }

    .hero-heading {
        font-size: 70px !important;
        line-height: 1.3 !important;
    }

    .logo {
        width: 80px;
    }

    .brand-text {
        font-size: 18px;
    }
}


/* ---------- SECOND SECTION: HOW TO TAKE OZEMPIC® ---------- */
.instruction-section {
    padding: 70px 24px 90px;
    text-align: center;
}

.section-title {
    font-size: 38px;
    /* font-weight: 700; */
    color: #64656A;
    margin-bottom: 15px;
    letter-spacing: -0.3px;
    font-weight: 550;
}

.section-title sup {
    font-size: 18px;
    font-weight: 500;
    vertical-align: super;
    color: #64656A;
}

/* video wrapper – replaces old thumbnail card */
.video-wrapper {
    position: relative;
    max-width: 80%;
    margin: 0 auto;
    aspect-ratio: 16 / 8;
    cursor: pointer;
    border-radius: 20px;
    overflow: hidden;
}

/* video element itself */
.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* custom play button overlay */
.play-btn-overlay {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 88px;
    height: 88px;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    color: white;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    z-index: 10;
}

.play-btn-overlay:hover {
    transform: translate(-50%, -50%) scale(1.05);
    border-color: white;
}

/* hide play button when video is playing */
.play-btn-overlay.hide {
    display: none;
}

/* ---------- RESPONSIVE DESIGN ---------- */
@media (max-width: 1024px) {
    .hero-heading {
        font-size: 40px !important;
    }

    .hero-heading sup {
        font-size: 28px !important;
    }

    .section-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 20px 20px !important;
        min-height: 20vh !important;
        background-position: 100% !important;
    }

    .hero-header {
        justify-content: left;
    }

    .hero-content {
        justify-content: left;
        text-align: left;
    }

    .hero-text {
        max-width: 100%;
        text-align: center;
    }

    .hero-heading {
        font-size: 22px !important;
        text-align: center !important;
        line-height: 1.3;
    }

    .hero-heading sup {
        font-size: 20px !important
    }

    .logo {
        width: 70px;
    }

    .brand-text {
        font-size: 18px;
    }

    .divider {
        height: 28px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 32px;
    }

    .video-wrapper {
        aspect-ratio: 4 / 3;
        border-radius: 16px;
    }

    .play-btn-overlay {
        width: 70px;
        height: 70px;
        font-size: 30px;
    }

    .instruction-section {
        padding: 50px 16px 70px;
    }
}

@media (max-width: 412px) {
    .hero-heading {
        font-size: 22px !important;
    }

    .hero-heading sup {
        font-size: 16px;
    }

    .play-btn-overlay {
        width: 60px;
        height: 60px;
        font-size: 26px;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 0px !important;
    }

    .video-wrapper {
        aspect-ratio: 7 / 5;
    }
}

button,
.play-btn-overlay {
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}


/* ---------- THIRD SECTION: HEALTH JOURNEY ---------- */
.health-journey-section {
    padding: 70px 24px 90px;
    /* background: #ffffff; */
}

.container {
    max-width: 80%;
    margin: 0 auto;
}

.journey-title {
    font-size: 38px;
    font-weight: 550;
    color: #64656A;
    text-align: center;
    margin-bottom: 48px;
    letter-spacing: -0.3px;
}

.journey-title sup {
    font-size: 20px;
    font-weight: 500;
}

/* Image grid – 2 columns on desktop & tablet, 1 column on mobile */
.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.grid-item {
    overflow: hidden;
    /* border-radius: 20px; */
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.grid-item:hover {
    transform: translateY(-5px);
}

.grid-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Tablet: reduce gap and slightly smaller heading */
@media (max-width: 1024px) {
    .journey-title {
        font-size: 30px;
    }

    .image-grid {
        gap: 24px;
    }
}

/* Mobile: single column */
@media (max-width: 768px) {
    .health-journey-section {
        padding: 50px 20px 70px;
    }

    .journey-title {
        font-size: 30px;
        margin-bottom: 32px;
    }

    .image-grid {
        grid-template-columns: 1fr;
        /* stack vertically */
        gap: 24px;
    }
}



/* ---------- FOURTH SECTION: EVIDENCE-BASED BENEFITS ---------- */
.evidence-section {
    padding: 70px 24px 90px;
    background: #ffffff;
}

.evidence-title {
    font-size: 38px;
    font-weight: 550;
    color: #64656A;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -0.3px;
}

.evidence-title sup {
    font-size: 20px;
    font-weight: 500;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 100%;
    margin: 0 auto;
}

.benefit-card {
    background-color: rgba(253, 181, 21, 0.2);
    /* 20% opacity */
    border-radius: 20px;
    padding: 24px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    flex-shrink: 0;
}

.benefit-icon img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    display: block;
}

.benefit-content {
    flex: 1;
    text-align: left;
}

.benefit-stat {
    font-weight: bolder;
    font-size: 40px;
    line-height: 1.2;
    color: #E96D07;
    margin-bottom: 8px;
}

.benefit-desc {
    /* font-family: 'Noto Sans', 'Inter', sans-serif; */
    font-weight: 400;
    font-size: 22px;
    line-height: 1.3;
    color: #64656A;
}

/* Tablet: 2 columns */
@media (max-width: 1024px) {
    .evidence-title {
        font-size: 36px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .benefit-stat {
        font-size: 32px;
    }

    .benefit-desc {
        font-size: 18px;
    }

    .benefit-icon img {
        width: 60px;
        height: 60px;
    }

    .benefit-card {
        padding: 20px 16px;
        gap: 16px;
    }
}

/* Mobile: 2 columns (still) but with smaller elements */
@media (max-width: 768px) {
    .evidence-section {
        padding: 50px 20px 70px;
    }

    .evidence-title {
        font-size: 30px;
        margin-bottom: 40px;
    }

    .benefits-grid {
        gap: 20px;
    }

    .benefit-card {
        flex-direction: column;
        /* stack icon above text on very small? No, keep horizontal but reduce icon size */
        align-items: flex-start;
        gap: 12px;
        padding: 16px;
    }

    .benefit-icon img {
        width: 50px;
        height: 50px;
    }

    .benefit-stat {
        font-size: 28px;
    }

    .benefit-desc {
        font-size: 16px;
    }
}

/* Extra small phones: ensure text doesn't overflow */
@media (max-width: 412px) {
    .benefit-card {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 12px;
    }

    .benefit-icon {
        margin-bottom: 0;
    }

    .benefit-stat {
        font-size: 26px;
    }

    .benefit-desc {
        font-size: 14px;
    }
}



/* ---------- FIFTH SECTION: PATIENT EDUCATION & RESOURCES ---------- */
/* SECTION */
.resources {
    /* background: #f3f3f3; */
    padding: 60px 20px;
    text-align: center;
}

/* TITLE */
.resources-title {
    /* font-family: 'Noto Sans', sans-serif; */
    font-size: 36px;
    color: #64656A;
    margin-bottom: 40px;
    font-weight: 550;
}

/* GRID */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 80%;
    margin: auto;
}

/* CARD */
.resource-card {
    text-align: left;
}

/* IMAGE */
.resource-card img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 15px;
}

/* TITLE */
.resource-card h3 {
    font-size: 20px;
    line-height: 140%;
    color: #001965;
    margin-bottom: 10px;
}

/* ® FIX */
.resource-card h3 sup {
    font-size: 12px;
    vertical-align: super;
}

/* DESCRIPTION */
.resource-card p {
    font-size: 16px;
    color: #666D80;
    margin-bottom: 15px;
}


.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    color: #005AD2;
    text-decoration: none;
    font-weight: 500;
}

/* Arrow animation (optional 🔥) */
.download-btn .arrow {
    display: flex;
    transition: transform 0.3s ease;
}

.download-btn:hover .arrow {
    transform: translateX(4px);
}


/* TABLET + MOBILE */
@media (max-width: 768px) {
    .resources-grid {
        grid-template-columns: 1fr;
        /* 🔥 1 column */
    }

    .resources-title {
        font-size: 28px;
    }

    .resource-card {
        text-align: center;
    }
}


/* SIXTH 6TH SECTION */
.faq-section {
    padding: 60px 20px;
}

/* TITLE */
.faq-title {
    font-size: 36px;
    text-align: center;
    color: #64656A;
    margin-bottom: 40px;
    font-weight: 550;
}

/* CONTAINER */
.faq-container {
    max-width: 80%;
    margin: auto;
}

/* ITEM */
.faq-item {
    background: rgba(253, 181, 21, 0.2);
    border-left: 5px solid #E96D07;
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 20px;
    transition: all 0.3s ease;
}

/* QUESTION */
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

/* TEXT */
.faq-question span {
    font-size: 18px;
    color: #E96D07;
    font-weight: 600;
}

.faq-question span sup {
    font-weight: 400;
    font-size: 12px;
}


.faq-btn {
    width: 35px;
    height: 35px;
    background: #ffffff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    /* 🔥 remove default padding */
}

/* SVG fix */
.faq-btn svg {
    display: block;
}

.faq-btn svg path {
    stroke: #E96D07;
}

/* Rotate when open */
.faq-item.active .faq-btn svg {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

/* ANSWER */
.faq-answer {
    font-size: 16px;
    color: #4b4c50;
    margin-top: 15px;
    display: none;
    font-weight: 400;
    line-height: 25px;
}

/* ACTIVE STATE */
.faq-item.active .faq-answer {
    display: block;
}

@media (max-width: 768px) {

    .faq-title {
        font-size: 28px;
    }

    .faq-question span {
        font-size: 16px;
    }

    .faq-answer {
        font-size: 14px;
    }
}

/* SEVENTH 7TH SECTION CSS CODE */
/* SECTION */
.ref-section {
    padding: 20px 20px;
}

/* CONTAINER */
.ref-container {
    max-width: 80%;
    margin: auto;
    background: #F0F7FD;
    border-radius: 12px;
    padding: 40px;
}

/* HEADER */
.ref-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* TITLE */
.ref-header h2 {
    font-size: 36px;
    color: #64656A;
    font-weight: 550;
}

/* BUTTON */
.ref-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    cursor: pointer;
    position: relative;
}

/* ICONS */
.ref-btn svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Hide plus by default */
.icon-plus {
    display: none;
}

/* CONTENT */
.ref-content {
    margin-top: 20px;
}

.ref-content ol {
    padding-left: 20px;
}

.ref-content li {
    font-size: 16px;
    line-height: 20px;
    color: #001965;
    margin-bottom: 8px;
}


/* TOGGLE STATE */
.ref-container:not(.active) .ref-content {
    display: none;
}

.ref-container:not(.active) .icon-minus {
    display: none;
}

.ref-container:not(.active) .icon-plus {
    display: block;
}

/* ===================== */
/* RESPONSIVE */
/* ===================== */

@media (max-width: 768px) {

    .ref-header h2 {
        font-size: 28px;
    }

    .ref-content li {
        font-size: 14px;
        line-height: 22px;
    }

    .ref-container {
        padding: 20px;
    }
}

/* EIGHT 8TH SECTION CODE */
/* SECTION */
.api-section {
    padding: 20px 20px;
    margin-bottom: 50px;
}

/* CONTAINER */
.api-container {
    max-width: 80%;
    margin: auto;
    background: #F0F7FD;
    border-radius: 12px;
    padding: 40px;
}

/* HEADER */
.api-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* TITLE */
.api-header h2 {
    font-size: 36px;
    color: #64656A;
    font-weight: 600;
}



/* BUTTON */
.api-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    cursor: pointer;
    position: relative;
}

/* ICON CENTER */
.api-btn svg {
    position: absolute;
    top: 50%;
    left: 50%;
    /* width: 22px;
  height: 22px; */
    transform: translate(-50%, -50%);
}

/* ICON TOGGLE */
.icon-plus {
    display: none;
}

/* CONTENT */
.api-content {
    margin-top: 20px;
}

.api-content p {
    font-size: 16px;
    line-height: 26px;
    color: #001965;
}

/* TOGGLE LOGIC */
.api-container:not(.active) .api-content {
    display: none;
}

.api-container:not(.active) .icon-minus {
    display: none;
}

.api-container:not(.active) .icon-plus {
    display: block;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .api-header h2 {
        font-size: 28px;
    }

    .api-content p {
        font-size: 14px;
        line-height: 22px;
    }

    .api-container {
        padding: 20px;
    }
}

/* footer section css code */
/* FOOTER */
.footer {
    background: #001965;
    padding: 60px 20px;
    color: #ffffff;
}

/* CONTAINER */
.footer-container {
    max-width: 80%;
    margin: auto;
}

/* LINKS */
.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 25px;
}

.footer-links a {
    font-size: 16px;
    line-height: 19px;
    color: #ffffff;
    text-decoration: underline;
}

.footer-links a:hover {
    opacity: 0.7;
}

/* TEXT */
.footer-text p {
    font-size: 16px;
    line-height: 19px;
    margin-bottom: 15px;
    /* max-width: 1000px; */
}

/* LOGO */
.footer-logo {
    margin-top: 30px;
}

.footer-logo img {
    width: 8%;
}

/* ===================== */
/* RESPONSIVE */
/* ===================== */

@media (max-width: 768px) {

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }

    .footer-text p {
        font-size: 14px;
        line-height: 20px;
    }

    .footer-logo img {
        width: 70px;
    }
}

@media (max-width: 412px) {

    .footer {
        padding: 40px 15px;
    }

    .footer-links a {
        font-size: 14px;
    }
}


/* ---------- TABLET (<= 1024px) ---------- */
@media (max-width: 1024px) {

    /* Full width sections */
    .video-wrapper,
    .container,
    .resources-grid,
    .faq-container {
        width: 100%;
    }

    .video-wrapper {
        max-width: 100%;
    }

    /* Reference section */
    .ref-container {
        width: 100%;
        /* padding: 20%; */
    }

    .ref-container {
        max-width: 100%;
        padding: 20px;
    }

    .ref-header h2 {
        font-size: 30px;
    }

    .container {
        max-width: 100%;
    }

    .evidence-title {
        font-size: 30px;
    }

    .resources-title {
        font-size: 30px;
    }

    .resources-grid {
        max-width: 100%;
    }

    .faq-container {
        max-width: 100%;
    }

    .faq-title {
        font-size: 30px;
    }

    /* API section */
    .api-container {
        max-width: 100%;
        padding: 20px;
    }

    .api-header h2 {
        font-size: 30px;
    }

    /* Footer */
    .footer-container {
        max-width: 90%;
        margin: 0 auto;
        /* center it */
    }

    .footer-logo img {
        width: 15%;
    }

    /* Health Journey Section */
    .health-journey-section {
        padding: 20px 24px 90px;
    }


}

/* mobile version code */
@media (max-width: 412px) {
    .section-title {
        font-size: 22px;
    }

    .journey-title {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .evidence-title {
        font-size: 22px;
    }

    .resources {
        padding: 50px 20px;
    }

    .resources-title {
        font-size: 22px;
    }

    .resource-card {
        text-align: left;
    }

    .faq-section {
        padding: 10px 20px;
    }

    .faq-title {
        font-size: 22px;
    }

    .faq-btn {
        width: 35px;
        height: 35px;
        min-width: 35px;
        /* 🔥 prevents shrinking */
        min-height: 35px;
        /* 🔥 ensures perfect circle */
        flex-shrink: 0;
        /* 🔥 IMPORTANT */
        background: #ffffff;
        border: none;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

    .faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
        /* add space */
    }

    .ref-header h2 {
        font-size: 22px;
    }

    .api-header h2 {
        font-size: 22px;
    }

    .footer-logo img {
        width: 30%;
    }

    .health-journey-section {
        padding: 20px 24px 30px;
    }

    .evidence-section {
        padding: 50px 20px 30px;
    }

    .video-wrapper video {
        height: 90%;
    }

    .instruction-section {
        padding: 50px 16px 30px;
    }
}

/* ---------- MODAL OVERLAY ---------- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

/* SHOW MODAL */
.modal-overlay.active {
    display: flex;
}





/* ----------PRIVACY  MODAL BOX ---------- */
.modal-box {
    background: #0A2A6B;
    /* dark blue */
    color: white;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    border-radius: 16px;
    position: relative;
}

/* CLOSE BUTTON */
.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
}

/* TEXT */
.modal-title {
    font-size: 32px;
    margin-bottom: 10px;
}

.modal-subtitle {
    font-size: 22px;
    margin-bottom: 20px;
}

.modal-box p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.modal-box ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.modal-box li {
    margin-bottom: 8px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {

    .modal-box {
        padding: 25px;
        border-radius: 12px;
    }

    .modal-title {
        font-size: 24px;
    }

    .modal-subtitle {
        font-size: 18px;
    }

    .modal-box p {
        font-size: 14px;
    }

}

@media (max-width: 412px) {

    .modal-box {
        padding: 20px;
    }

    .modal-close {
        font-size: 24px;
    }

}

.modal-box {
    transform: translateY(40px);
    opacity: 0;
    transition: all 0.3s ease;
}

.modal-overlay.active .modal-box {
    transform: translateY(0);
    opacity: 1;
}


* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', 'Poppins', system-ui, -apple-system, sans-serif;
      background-color: #ffffff;
      overflow-x: hidden;
    }

    /* ---------- HERO SECTION ---------- */
    .hero {/* ---------- MODAL OVERLAY ---------- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

/* SHOW MODAL */
.modal-overlay.active {
  display: flex;
}





/* ----------PRIVACY  MODAL BOX ---------- */
/* ---------- MODAL BOX ---------- */
/* ---------- MODAL BOX ---------- */
.modal-box {
  background: #0A2A6B;
  color: white;
  width: 100%;
  max-width: 80%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  border-radius: 16px;
  position: relative;

  /* animation */
  transform: translateY(40px);
  opacity: 0;
  transition: all 0.3s ease;
}

.modal-overlay.active .modal-box {
  transform: translateY(0);
  opacity: 1;
}

/* ---------- CLOSE BUTTON ---------- */
.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

/* ---------- TYPOGRAPHY ---------- */

/* H2 */
.modal-box h2 {
  font-weight: 700;
  font-size: 28px;
  line-height: 100%;
  text-decoration: underline;
  margin-bottom: 10px;
}

/* H4 */
.modal-box h4 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

/* H6 */
.modal-box h6 {
  font-size: 22px;
  font-weight: 600;
  padding-left: 22px;
  margin-top: 20px;
  margin-bottom: 10px;
}

/* TEXT (P + LI SAME STYLE) */
.modal-box p{
  font-size: 16px !important;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0;
  margin-bottom: 15px;
  padding-left: 23px;
}
.modal-box ul li {
  font-size: 16px !important;
  font-weight: 400;
  letter-spacing: 0;
  margin-bottom: 15px;
}


/* LIST */
.modal-box ul {
  margin-left: 20px;
  /* margin-bottom: 20px; */
}

/* LINKS */
.modal-box a {
  color: #ffffff;
  text-decoration: underline;
}

/* ---------- RESPONSIVE ---------- */

/* TABLET */
@media (max-width: 768px) {

  .modal-box {
    max-width: 95%;
    padding: 25px;
    border-radius: 12px;
  }

  .modal-box h2 {
    font-size: 22px;
  }

  .modal-box h4 {
    font-size: 18px;
  }

  .modal-box h6 {
    font-size: 18px;
    padding-left: 10px;
  }

  .modal-box p,
  .modal-box ul li {
    font-size: 14px;
    line-height: 26px;
  }

}

/* MOBILE */
@media (max-width: 480px) {

  .modal-box {
    padding: 10px;
    max-width: 100%;
  }

  .modal-close {
    font-size: 24px;
  }

  .modal-box h2 {
    font-size: 22px;
    line-height: 30px;
  }

  .modal-box h4 {
    font-size: 20px;
    line-height: 26px;
  }

  .modal-box h6 {
    font-size: 18px;
    line-height: 26px;
  }

  .modal-box ul li {
    font-size: 13px;
    line-height: 20px;
  }
  .modal-box ul li {
    font-size: 13px;
    /* line-height: 25px; */
  }

}
      position: relative;
      width: 100%;
      min-height: 77vh;
      background: url("Assestes/Novocare-banner-1\ 1.png") no-repeat center center;
      background-size: cover;
      background-position: right center;
      color: white;
      padding: 30px 60px;
      display: flex;
      flex-direction: column;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.091);
      z-index: 0;
    }

    .hero * {
      position: relative;
      z-index: 2;
    }

    .hero-header {
      display: flex;
      align-items: center;
      justify-content: flex-start;
    }

    .logo-area {
      display: flex;
      align-items: center;
      gap: 8px;
      flex-wrap: wrap;
    }

    .logo {
      width: 85px;
      height: auto;
      display: block;
      object-fit: contain;
    }

    .divider {
      width: 2px;
      height: 35px;
      background: #ffffff;
      display: inline-block;
      opacity: 0.9;
    }

    .brand-text {
      font-size: 22px;
      font-weight: 500;
      letter-spacing: 0.5px;
      color: #ffffff;
    }

    .brand-text sup {
      font-size: 12px;
      margin-left: 2px;
      vertical-align: super;
    }

    .hero-content {
      flex: 1;
      display: flex;
      align-items: center;
    }

    .hero-text {
      max-width: 70%;
    }

    .hero-heading {
      font-family: 'Noto Sans', 'Inter', sans-serif;
      font-style: italic;
      font-weight: 800;
      font-size: 64px;
      line-height: 1.2;
      text-align: left;
      color: #ffffff;
      text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
    }

    .hero-heading span {
      display: inline-block;
    }

    .hero-heading sup {
      font-size: 35px;
      font-weight: 800;
      vertical-align: super;
      margin-left: 4px;
    }


    /* ---------- TABLET (<= 1024px) ---------- */
@media (max-width: 1024px) {
  .hero {
    padding: 20px 30px;
    min-height: 30vh;
    background-position: 100% center;
  }

  .hero-text {
    max-width: 80%;
  }

  .hero-heading {
    font-size: 70px;
    line-height: 1.3;
  }

  .logo {
    width: 80px;
  }

  .brand-text {
    font-size: 18px;
  }
}


    /* ---------- SECOND SECTION: HOW TO TAKE OZEMPIC® ---------- */
    .instruction-section {
      padding: 70px 24px 90px;
      text-align: center;
    }

    .section-title {
      font-size: 38px;
      /* font-weight: 700; */
      color: #64656A;
      margin-bottom: 15px;
      letter-spacing: -0.3px;
      font-weight: 550;
    }

    .section-title sup {
      font-size: 18px;
      font-weight: 500;
      vertical-align: super;
      color: #64656A;
    }

    /* video wrapper – replaces old thumbnail card */
    .video-wrapper {
      position: relative;
      max-width: 80%;
      margin: 0 auto;
      aspect-ratio: 16 / 8;
      cursor: pointer;
      border-radius: 20px;
      overflow: hidden;
    }

    /* video element itself */
    .video-wrapper video {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
    }

    /* custom play button overlay */
    .play-btn-overlay {
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      width: 88px;
      height: 88px;
      background: rgba(0, 0, 0, 0.65);
      backdrop-filter: blur(4px);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 38px;
      color: white;
      cursor: pointer;
      transition: all 0.25s ease;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
      border: 2px solid rgba(255, 255, 255, 0.5);
      z-index: 10;
    }

    .play-btn-overlay:hover {
      transform: translate(-50%, -50%) scale(1.05);
      border-color: white;
    }

    /* hide play button when video is playing */
    .play-btn-overlay.hide {
      display: none;
    }

    /* ---------- RESPONSIVE DESIGN ---------- */
    @media (max-width: 1024px) {
      .hero-heading {
        font-size: 40px;
      }

      .hero-heading sup {
        font-size: 28px;
      }

      .section-title {
        font-size: 32px;
      }
    }

    @media (max-width: 768px) {
      .hero {
        padding: 20px 20px;
        min-height: 20vh;
        background-position: 100%;
      }

      .hero-header {
        justify-content: left;
      }

      .hero-content {
        justify-content: left;
        text-align: left;
      }

      .hero-text {
        max-width: 100%;
        text-align: center;
      }

      .hero-heading {
        font-size: 36px;
        text-align: center;
        line-height: 1.3;
      }

      .hero-heading sup {
        font-size: 20px;
      }

      .logo {
        width: 70px;
      }

      .brand-text {
        font-size: 18px;
      }

      .divider {
        height: 28px;
      }

      .section-title {
        font-size: 28px;
        margin-bottom: 32px;
      }

      .video-wrapper {
        aspect-ratio: 4 / 3;
        border-radius: 16px;
      }

      .play-btn-overlay {
        width: 70px;
        height: 70px;
        font-size: 30px;
      }

      .instruction-section {
        padding: 50px 16px 70px;
      }
    }

    @media (max-width: 480px) {
      .hero-heading {
        font-size: 22px;
      }

      .hero-heading sup {
        font-size: 16px;
      }

      .play-btn-overlay {
        width: 60px;
        height: 60px;
        font-size: 26px;
      }

      .section-title {
        font-size: 24px;
        margin-bottom: 0px !important;
      }
      .video-wrapper{
        aspect-ratio: 7 / 5;
      }
    }

    button,
    .play-btn-overlay {
      user-select: none;
      -webkit-tap-highlight-color: transparent;
    }


    /* ---------- THIRD SECTION: HEALTH JOURNEY ---------- */
    .health-journey-section {
      padding: 70px 24px 90px;
      /* background: #ffffff; */
    }

    .container {
      max-width: 80%;
      margin: 0 auto;
    }

    .journey-title {
      font-size: 38px;
      font-weight: 550;
      color: #64656A;
      text-align: center;
      margin-bottom: 48px;
      letter-spacing: -0.3px;
    }

    .journey-title sup {
      font-size: 20px;
      font-weight: 500;
    }

    /* Image grid – 2 columns on desktop & tablet, 1 column on mobile */
    .image-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
    }

    .grid-item {
      overflow: hidden;
      /* border-radius: 20px; */
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
    }

    .grid-item:hover {
      transform: translateY(-5px);
    }

    .grid-item img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
    }

    /* Tablet: reduce gap and slightly smaller heading */
    @media (max-width: 1024px) {
      .journey-title {
        font-size: 30px;
      }

      .image-grid {
        gap: 24px;
      }
    }

    /* Mobile: single column */
    @media (max-width: 768px) {
      .health-journey-section {
        padding: 50px 20px 70px;
      }

      .journey-title {
        font-size: 30px;
        margin-bottom: 32px;
      }

      .image-grid {
        grid-template-columns: 1fr;
        /* stack vertically */
        gap: 24px;
      }
    }



    /* ---------- FOURTH SECTION: EVIDENCE-BASED BENEFITS ---------- */
    .evidence-section {
      padding: 70px 24px 90px;
      background: #ffffff;
    }

    .evidence-title {
      font-size: 38px;
      font-weight: 550;
      color: #64656A;
      text-align: center;
      margin-bottom: 60px;
      letter-spacing: -0.3px;
    }

    .evidence-title sup {
      font-size: 20px;
      font-weight: 500;
    }

    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      max-width: 100%;
      margin: 0 auto;
    }

    .benefit-card {
      background-color: rgba(253, 181, 21, 0.2);
      /* 20% opacity */
      border-radius: 20px;
      padding: 24px 20px;
      display: flex;
      align-items: center;
      gap: 20px;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    .benefit-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    }

    .benefit-icon {
      flex-shrink: 0;
    }

    .benefit-icon img {
      width: 70px;
      height: 70px;
      object-fit: contain;
      display: block;
    }

    .benefit-content {
      flex: 1;
      text-align: left;
    }

    .benefit-stat {
      font-weight: bolder;
      font-size: 40px;
      line-height: 1.2;
      color: #E96D07;
      margin-bottom: 8px;
    }

    .benefit-desc {
      /* font-family: 'Noto Sans', 'Inter', sans-serif; */
      font-weight: 400;
      font-size: 22px;
      line-height: 1.3;
      color: #64656A;
    }

    /* Tablet: 2 columns */
    @media (max-width: 1024px) {
      .evidence-title {
        font-size: 36px;
      }

      .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
      }

      .benefit-stat {
        font-size: 32px;
      }

      .benefit-desc {
        font-size: 18px;
      }

      .benefit-icon img {
        width: 60px;
        height: 60px;
      }

      .benefit-card {
        padding: 20px 16px;
        gap: 16px;
      }
    }

    /* Mobile: 2 columns (still) but with smaller elements */
    @media (max-width: 768px) {
      .evidence-section {
        padding: 50px 20px 70px;
      }

      .evidence-title {
        font-size: 30px;
        margin-bottom: 40px;
      }

      .benefits-grid {
        gap: 20px;
      }

      .benefit-card {
        flex-direction: column;
        /* stack icon above text on very small? No, keep horizontal but reduce icon size */
        align-items: flex-start;
        gap: 12px;
        padding: 16px;
      }

      .benefit-icon img {
        width: 50px;
        height: 50px;
      }

      .benefit-stat {
        font-size: 28px;
      }

      .benefit-desc {
        font-size: 16px;
      }
    }

    /* Extra small phones: ensure text doesn't overflow */
    @media (max-width: 480px) {
      .benefit-card {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 12px;
      }

      .benefit-icon {
        margin-bottom: 0;
      }

      .benefit-stat {
        font-size: 26px;
      }

      .benefit-desc {
        font-size: 14px;
      }
    }



    /* ---------- FIFTH SECTION: PATIENT EDUCATION & RESOURCES ---------- */
    /* SECTION */
    .resources {
      /* background: #f3f3f3; */
      padding: 60px 20px;
      text-align: center;
    }

    /* TITLE */
    .resources-title {
      /* font-family: 'Noto Sans', sans-serif; */
      font-size: 36px;
      color: #64656A;
      margin-bottom: 40px;
      font-weight: 550;
    }

    /* GRID */
    .resources-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
      max-width: 80%;
      margin: auto;
    }

    /* CARD */
    .resource-card {
      text-align: left;
    }

    /* IMAGE */
    .resource-card img {
      width: 100%;
      border-radius: 12px;
      margin-bottom: 15px;
    }

    /* TITLE */
    .resource-card h3 {
      font-size: 20px;
      line-height: 140%;
      color: #001965;
      margin-bottom: 10px;
    }

    /* ® FIX */
    .resource-card h3 sup {
      font-size: 12px;
      vertical-align: super;
    }

    /* DESCRIPTION */
    .resource-card p {
      font-size: 16px;
      color: #666D80;
      margin-bottom: 15px;
    }


    .download-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 16px;
      color: #005AD2;
      text-decoration: none;
      font-weight: 500;
    }

    /* Arrow animation (optional 🔥) */
    .download-btn .arrow {
      display: flex;
      transition: transform 0.3s ease;
    }

    .download-btn:hover .arrow {
      transform: translateX(4px);
    }


    /* TABLET + MOBILE */
    @media (max-width: 768px) {
      .resources-grid {
        grid-template-columns: 1fr;
        /* 🔥 1 column */
      }

      .resources-title {
        font-size: 28px;
      }

      .resource-card {
        text-align: center;
      }
    }


    /* SIXTH 6TH SECTION */
    .faq-section {
      padding: 60px 20px;
    }

    /* TITLE */
    .faq-title {
      font-size: 36px;
      text-align: center;
      color: #64656A;
      margin-bottom: 40px;
      font-weight: 550;
    }

    /* CONTAINER */
    .faq-container {
      max-width: 80%;
      margin: auto;
    }

    /* ITEM */
    .faq-item {
      background: rgba(253, 181, 21, 0.2);
      border-left: 5px solid #E96D07;
      border-radius: 10px;
      margin-bottom: 20px;
      padding: 20px;
      transition: all 0.3s ease;
    }

    /* QUESTION */
    .faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
    }

    /* TEXT */
    .faq-question span {
      font-size: 18px;
      color: #E96D07;
      font-weight: 600;
    }

    .faq-question span sup {
      font-weight: 400;
      font-size: 12px;
    }


    .faq-btn {
      width: 35px;
      height: 35px;
      background: #ffffff;
      border: none;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      padding: 0;
      /* 🔥 remove default padding */
    }

    /* SVG fix */
    .faq-btn svg {
      display: block;
    }

    .faq-btn svg path {
      stroke: #E96D07;
    }

    /* Rotate when open */
    .faq-item.active .faq-btn svg {
      transform: rotate(180deg);
      transition: transform 0.3s ease;
    }

    /* ANSWER */
    .faq-answer {
      font-size: 16px;
      color: #4b4c50;
      margin-top: 15px;
      display: none;
      font-weight: 400;
      line-height: 25px;
    }

    /* ACTIVE STATE */
    .faq-item.active .faq-answer {
      display: block;
    }

    @media (max-width: 768px) {

      .faq-title {
        font-size: 28px;
      }

      .faq-question span {
        font-size: 16px;
      }

      .faq-answer {
        font-size: 14px;
      }
    }

    /* SEVENTH 7TH SECTION CSS CODE */
    /* SECTION */
.ref-section {
  padding: 20px 20px;
}

/* CONTAINER */
.ref-container {
  max-width: 80%;
  margin: auto;
  background: #F0F7FD;
  border-radius: 12px;
  padding: 40px;
}

/* HEADER */
.ref-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* TITLE */
.ref-header h2 {
  font-size: 36px;
  color: #64656A;
  font-weight: 550;
}

/* BUTTON */
.ref-btn {
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
}

/* ICONS */
.ref-btn svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Hide plus by default */
.icon-plus {
  display: none;
}

/* CONTENT */
.ref-content {
  margin-top: 20px;
}

.ref-content ol {
  padding-left: 20px;
}

.ref-content li {
  font-size: 16px;
  line-height: 20px;
  color: #001965;
  margin-bottom: 8px;
}


/* TOGGLE STATE */
.ref-container:not(.active) .ref-content {
  display: none;
}

.ref-container:not(.active) .icon-minus {
  display: none;
}

.ref-container:not(.active) .icon-plus {
  display: block;
}

/* ===================== */
/* RESPONSIVE */
/* ===================== */

@media (max-width: 768px) {

  .ref-header h2 {
    font-size: 28px;
  }

  .ref-content li {
    font-size: 14px;
    line-height: 22px;
  }

  .ref-container {
    padding: 20px;
  }
}

/* EIGHT 8TH SECTION CODE */
/* SECTION */
.api-section {
  padding: 20px 20px;
  margin-bottom: 50px;
}

/* CONTAINER */
.api-container {
  max-width: 80%;
  margin: auto;
  background: #F0F7FD;
  border-radius: 12px;
  padding: 40px;
}

/* HEADER */
.api-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* TITLE */
.api-header h2 {
  font-size: 36px;
  color: #64656A;
  font-weight: 600;
}



/* BUTTON */
.api-btn {
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
}

/* ICON CENTER */
.api-btn svg {
  position: absolute;
  top: 50%;
  left: 50%;
  /* width: 22px;
  height: 22px; */
  transform: translate(-50%, -50%);
}

/* ICON TOGGLE */
.icon-plus {
  display: none;
}

/* CONTENT */
.api-content {
  margin-top: 20px;
}

.api-content p {
  font-size: 16px;
  line-height: 26px;
  color: #001965;
}

/* TOGGLE LOGIC */
.api-container:not(.active) .api-content {
  display: none;
}

.api-container:not(.active) .icon-minus {
  display: none;
}

.api-container:not(.active) .icon-plus {
  display: block;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .api-header h2 {
    font-size: 28px;
  }

  .api-content p {
    font-size: 14px;
    line-height: 22px;
  }

  .api-container {
    padding: 20px;
  }
}

/* footer section css code */
/* FOOTER */
.footer {
  background: #001965;
  padding: 60px 20px;
  color: #ffffff;
}

/* CONTAINER */
.footer-container {
  max-width: 80%;
  margin: auto;
}

/* LINKS */
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 25px;
}

.footer-links a {
  font-size: 16px;
  line-height: 19px;
  color: #ffffff;
  text-decoration: underline;
}
.footer-links a:hover {
  opacity: 0.7;
}

/* TEXT */
.footer-text p {
  font-size: 16px;
  line-height: 19px;
  margin-bottom: 15px;
  /* max-width: 1000px; */
}

/* LOGO */
.footer-logo {
  margin-top: 30px;
}

.footer-logo img {
  width: 8%;
}

/* ===================== */
/* RESPONSIVE */
/* ===================== */

@media (max-width: 768px) {

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }

  .footer-text p {
    font-size: 14px;
    line-height: 20px;
  }

  .footer-logo img {
    width: 70px;
  }
}

@media (max-width: 480px) {

  .footer {
    padding: 40px 15px;
  }

  .footer-links a {
    font-size: 14px;
  }
}


/* ---------- TABLET (<= 1024px) ---------- */
@media (max-width: 1024px) {

  /* Full width sections */
  .video-wrapper,
  .container,
  .resources-grid,
  .faq-container {
    width: 100%;
  }
  .video-wrapper{
    max-width: 100%;
  }

  /* Reference section */
  .ref-container {
    width: 100%;
    /* padding: 20%; */
  }
  .ref-container{
    max-width: 100%;
    padding: 20px;
  }
  .ref-header h2{
    font-size: 30px;
  }
  .container{
    max-width: 100%;
  }
  .evidence-title{
    font-size: 30px;
  }
  .resources-title{
    font-size: 30px;
  }
.resources-grid{
  max-width: 100%;
}
.faq-container{
  max-width: 100%;
}
.faq-title{
  font-size: 30px;
}
  /* API section */
  .api-container {
    max-width: 100%;
    padding: 20px;
  }
  .api-header h2{
    font-size: 30px;
  }

  /* Footer */
  .footer-container {
    max-width: 90%;
    margin: 0 auto; /* center it */
  }

  .footer-logo img {
    width: 15%;
  }

  /* Health Journey Section */
  .health-journey-section {
    padding: 20px 24px 90px;
  }


}

/* mobile version code */
@media (max-width: 480px) {
  .section-title {
    font-size: 22px;
  }
  .journey-title{
    font-size: 22px;
    margin-bottom: 30px;
  }
  .evidence-title{
    font-size: 22px;
  }
  .resources{
    padding: 50px 20px;
  }
  .resources-title{
    font-size: 22px;
  }
  .resource-card{
    text-align: left;
  }
  .faq-section{
    padding: 10px 20px;
  }
    .faq-title {
      font-size: 22px;
    }
    .faq-btn {
  width: 35px;
  height: 35px;
  min-width: 35px;   /* 🔥 prevents shrinking */
  min-height: 35px;  /* 🔥 ensures perfect circle */
  flex-shrink: 0;    /* 🔥 IMPORTANT */
  background: #ffffff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px; /* add space */
}

    .ref-header h2{
      font-size: 22px;
    }
    .api-header h2{
      font-size: 22px;
    }
    .footer-logo img{
      width: 30%;
    }
    .health-journey-section{
      padding: 20px 24px 30px;
    }
    .evidence-section{
      padding: 50px 20px 30px;
    }
    .video-wrapper video{
      height: 90%;
    }
    .instruction-section {
    padding: 50px 16px 30px;
  }
}

/* ---------- MODAL OVERLAY ---------- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

/* SHOW MODAL */
.modal-overlay.active {
  display: flex;
}





/* ----------PRIVACY  MODAL BOX ---------- */
.modal-box {
  background: #0A2A6B; /* dark blue */
  color: white;
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  border-radius: 16px;
  position: relative;
}

/* CLOSE BUTTON */
.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

/* TEXT */
.modal-title {
  font-size: 32px;
  margin-bottom: 10px;
}

.modal-subtitle {
  font-size: 22px;
  margin-bottom: 20px;
}

.modal-box p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.modal-box ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

.modal-box li {
  margin-bottom: 8px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {

  .modal-box {
    padding: 25px;
    border-radius: 12px;
  }

  .modal-title {
    font-size: 24px;
  }

  .modal-subtitle {
    font-size: 18px;
  }

  .modal-box p {
    font-size: 14px;
  }

}

@media (max-width: 480px) {

  .modal-box {
    padding: 20px;
  }

  .modal-close {
    font-size: 24px;
  }

}
.modal-box {
  transform: translateY(40px);
  opacity: 0;
  transition: all 0.3s ease;
}

.modal-overlay.active .modal-box {
  transform: translateY(0);
  opacity: 1;
}


* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', 'Poppins', system-ui, -apple-system, sans-serif;
      background-color: #ffffff;
      overflow-x: hidden;
    }

    /* ---------- HERO SECTION ---------- */
    .hero {/* ---------- MODAL OVERLAY ---------- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

/* SHOW MODAL */
.modal-overlay.active {
  display: flex;
}





/* ----------PRIVACY  MODAL BOX ---------- */
/* ---------- MODAL BOX ---------- */
/* ---------- MODAL BOX ---------- */
.modal-box {
  background: #0A2A6B;
  color: white;
  width: 100%;
  max-width: 80%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  border-radius: 16px;
  position: relative;

  /* animation */
  transform: translateY(40px);
  opacity: 0;
  transition: all 0.3s ease;
}

.modal-overlay.active .modal-box {
  transform: translateY(0);
  opacity: 1;
}

/* ---------- CLOSE BUTTON ---------- */
.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

/* ---------- TYPOGRAPHY ---------- */

/* H2 */
.modal-box h2 {
  font-weight: 700;
  font-size: 28px;
  line-height: 100%;
  text-decoration: underline;
  margin-bottom: 10px;
}

/* H4 */
.modal-box h4 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

/* H6 */
.modal-box h6 {
  font-size: 22px;
  font-weight: 600;
  padding-left: 22px;
  margin-top: 20px;
  margin-bottom: 10px;
}

/* TEXT (P + LI SAME STYLE) */
.modal-box p{
  font-size: 16px !important;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0;
  margin-bottom: 15px;
  padding-left: 23px;
}
.modal-box ul li {
  font-size: 16px !important;
  font-weight: 400;
  letter-spacing: 0;
  margin-bottom: 15px;
}


/* LIST */
.modal-box ul {
  margin-left: 20px;
  /* margin-bottom: 20px; */
}

/* LINKS */
.modal-box a {
  color: #ffffff;
  text-decoration: underline;
}

/* ---------- RESPONSIVE ---------- */

/* TABLET */
@media (max-width: 768px) {

  .modal-box {
    max-width: 95%;
    padding: 25px;
    border-radius: 12px;
  }

  .modal-box h2 {
    font-size: 22px;
  }

  .modal-box h4 {
    font-size: 18px;
  }

  .modal-box h6 {
    font-size: 18px;
    padding-left: 10px;
  }

  .modal-box p,
  .modal-box ul li {
    font-size: 14px;
    line-height: 26px;
  }

}

/* MOBILE */
@media (max-width: 480px) {

  .modal-box {
    padding: 10px;
    max-width: 100%;
  }

  .modal-close {
    font-size: 24px;
  }

  .modal-box h2 {
    font-size: 22px;
    line-height: 30px;
  }

  .modal-box h4 {
    font-size: 20px;
    line-height: 26px;
  }

  .modal-box h6 {
    font-size: 18px;
    line-height: 26px;
  }

  .modal-box ul li {
    font-size: 13px;
    line-height: 20px;
  }
  .modal-box ul li {
    font-size: 13px;
    /* line-height: 25px; */
  }

}
      position: relative;
      width: 100%;
      min-height: 77vh;
      background: url("Assestes/Novocare-banner-1\ 1.png") no-repeat center center;
      background-size: cover;
      background-position: right center;
      color: white;
      padding: 30px 60px;
      display: flex;
      flex-direction: column;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.091);
      z-index: 0;
    }

    .hero * {
      position: relative;
      z-index: 2;
    }

    .hero-header {
      display: flex;
      align-items: center;
      justify-content: flex-start;
    }

    .logo-area {
      display: flex;
      align-items: center;
      gap: 8px;
      flex-wrap: wrap;
    }

    .logo {
      width: 85px;
      height: auto;
      display: block;
      object-fit: contain;
    }

    .divider {
      width: 2px;
      height: 35px;
      background: #ffffff;
      display: inline-block;
      opacity: 0.9;
    }

    .brand-text {
      font-size: 22px;
      font-weight: 500;
      letter-spacing: 0.5px;
      color: #ffffff;
    }

    .brand-text sup {
      font-size: 12px;
      margin-left: 2px;
      vertical-align: super;
    }

    .hero-content {
      flex: 1;
      display: flex;
      align-items: center;
    }

    .hero-text {
      max-width: 70%;
    }

    .hero-heading {
      font-family: 'Noto Sans', 'Inter', sans-serif;
      font-style: italic;
      font-weight: 800;
      font-size: 64px;
      line-height: 1.2;
      text-align: left;
      color: #ffffff;
      text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
    }

    .hero-heading span {
      display: inline-block;
    }

    .hero-heading sup {
      font-size: 35px;
      font-weight: 800;
      vertical-align: super;
      margin-left: 4px;
    }


    /* ---------- TABLET (<= 1024px) ---------- */
@media (max-width: 1024px) {
  .hero {
    padding: 20px 30px;
    min-height: 30vh;
    background-position: 100% center;
  }

  .hero-text {
    max-width: 80%;
  }

  .hero-heading {
    font-size: 70px;
    line-height: 1.3;
  }

  .logo {
    width: 80px;
  }

  .brand-text {
    font-size: 18px;
  }
}


    /* ---------- SECOND SECTION: HOW TO TAKE OZEMPIC® ---------- */
    .instruction-section {
      padding: 70px 24px 90px;
      text-align: center;
    }

    .section-title {
      font-size: 38px;
      /* font-weight: 700; */
      color: #64656A;
      margin-bottom: 15px;
      letter-spacing: -0.3px;
      font-weight: 550;
    }

    .section-title sup {
      font-size: 18px;
      font-weight: 500;
      vertical-align: super;
      color: #64656A;
    }

    /* video wrapper – replaces old thumbnail card */
    .video-wrapper {
      position: relative;
      max-width: 80%;
      margin: 0 auto;
      aspect-ratio: 16 / 8;
      cursor: pointer;
      border-radius: 20px;
      overflow: hidden;
    }

    /* video element itself */
    .video-wrapper video {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
    }

    /* custom play button overlay */
    .play-btn-overlay {
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      width: 88px;
      height: 88px;
      background: rgba(0, 0, 0, 0.65);
      backdrop-filter: blur(4px);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 38px;
      color: white;
      cursor: pointer;
      transition: all 0.25s ease;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
      border: 2px solid rgba(255, 255, 255, 0.5);
      z-index: 10;
    }

    .play-btn-overlay:hover {
      transform: translate(-50%, -50%) scale(1.05);
      border-color: white;
    }

    /* hide play button when video is playing */
    .play-btn-overlay.hide {
      display: none;
    }

    /* ---------- RESPONSIVE DESIGN ---------- */
    @media (max-width: 1024px) {
      .hero-heading {
        font-size: 40px;
      }

      .hero-heading sup {
        font-size: 28px;
      }

      .section-title {
        font-size: 32px;
      }
    }

    @media (max-width: 768px) {
      .hero {
        padding: 20px 20px;
        min-height: 20vh;
        background-position: 100%;
      }

      .hero-header {
        justify-content: left;
      }

      .hero-content {
        justify-content: left;
        text-align: left;
      }

      .hero-text {
        max-width: 100%;
        text-align: center;
      }

      .hero-heading {
        font-size: 36px;
        text-align: center;
        line-height: 1.3;
      }

      .hero-heading sup {
        font-size: 20px;
      }

      .logo {
        width: 70px;
      }

      .brand-text {
        font-size: 18px;
      }

      .divider {
        height: 28px;
      }

      .section-title {
        font-size: 28px;
        margin-bottom: 32px;
      }

      .video-wrapper {
        aspect-ratio: 4 / 3;
        border-radius: 16px;
      }

      .play-btn-overlay {
        width: 70px;
        height: 70px;
        font-size: 30px;
      }

      .instruction-section {
        padding: 50px 16px 70px;
      }
    }

    @media (max-width: 480px) {
      .hero-heading {
        font-size: 22px;
      }

      .hero-heading sup {
        font-size: 16px;
      }

      .play-btn-overlay {
        width: 60px;
        height: 60px;
        font-size: 26px;
      }

      .section-title {
        font-size: 24px;
        margin-bottom: 0px !important;
      }
      .video-wrapper{
        aspect-ratio: 7 / 5;
      }
    }

    button,
    .play-btn-overlay {
      user-select: none;
      -webkit-tap-highlight-color: transparent;
    }


    /* ---------- THIRD SECTION: HEALTH JOURNEY ---------- */
    .health-journey-section {
      padding: 70px 24px 90px;
      /* background: #ffffff; */
    }

    .container {
      max-width: 80%;
      margin: 0 auto;
    }

    .journey-title {
      font-size: 38px;
      font-weight: 550;
      color: #64656A;
      text-align: center;
      margin-bottom: 48px;
      letter-spacing: -0.3px;
    }

    .journey-title sup {
      font-size: 20px;
      font-weight: 500;
    }

    /* Image grid – 2 columns on desktop & tablet, 1 column on mobile */
    .image-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
    }

    .grid-item {
      overflow: hidden;
      /* border-radius: 20px; */
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
    }

    .grid-item:hover {
      transform: translateY(-5px);
    }

    .grid-item img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
    }

    /* Tablet: reduce gap and slightly smaller heading */
    @media (max-width: 1024px) {
      .journey-title {
        font-size: 30px;
      }

      .image-grid {
        gap: 24px;
      }
    }

    /* Mobile: single column */
    @media (max-width: 768px) {
      .health-journey-section {
        padding: 50px 20px 70px;
      }

      .journey-title {
        font-size: 30px;
        margin-bottom: 32px;
      }

      .image-grid {
        grid-template-columns: 1fr;
        /* stack vertically */
        gap: 24px;
      }
    }



    /* ---------- FOURTH SECTION: EVIDENCE-BASED BENEFITS ---------- */
    .evidence-section {
      padding: 70px 24px 90px;
      background: #ffffff;
    }

    .evidence-title {
      font-size: 38px;
      font-weight: 550;
      color: #64656A;
      text-align: center;
      margin-bottom: 60px;
      letter-spacing: -0.3px;
    }

    .evidence-title sup {
      font-size: 20px;
      font-weight: 500;
    }

    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      max-width: 100%;
      margin: 0 auto;
    }

    .benefit-card {
      background-color: rgba(253, 181, 21, 0.2);
      /* 20% opacity */
      border-radius: 20px;
      padding: 24px 20px;
      display: flex;
      align-items: center;
      gap: 20px;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    .benefit-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    }

    .benefit-icon {
      flex-shrink: 0;
    }

    .benefit-icon img {
      width: 70px;
      height: 70px;
      object-fit: contain;
      display: block;
    }

    .benefit-content {
      flex: 1;
      text-align: left;
    }

    .benefit-stat {
      font-weight: bolder;
      font-size: 40px;
      line-height: 1.2;
      color: #E96D07;
      margin-bottom: 8px;
    }

    .benefit-desc {
      /* font-family: 'Noto Sans', 'Inter', sans-serif; */
      font-weight: 400;
      font-size: 22px;
      line-height: 1.3;
      color: #64656A;
    }

    /* Tablet: 2 columns */
    @media (max-width: 1024px) {
      .evidence-title {
        font-size: 36px;
      }

      .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
      }

      .benefit-stat {
        font-size: 32px;
      }

      .benefit-desc {
        font-size: 18px;
      }

      .benefit-icon img {
        width: 60px;
        height: 60px;
      }

      .benefit-card {
        padding: 20px 16px;
        gap: 16px;
      }
    }

    /* Mobile: 2 columns (still) but with smaller elements */
    @media (max-width: 768px) {
      .evidence-section {
        padding: 50px 20px 70px;
      }

      .evidence-title {
        font-size: 30px;
        margin-bottom: 40px;
      }

      .benefits-grid {
        gap: 20px;
      }

      .benefit-card {
        flex-direction: column;
        /* stack icon above text on very small? No, keep horizontal but reduce icon size */
        align-items: flex-start;
        gap: 12px;
        padding: 16px;
      }

      .benefit-icon img {
        width: 50px;
        height: 50px;
      }

      .benefit-stat {
        font-size: 28px;
      }

      .benefit-desc {
        font-size: 16px;
      }
    }

    /* Extra small phones: ensure text doesn't overflow */
    @media (max-width: 480px) {
      .benefit-card {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 12px;
      }

      .benefit-icon {
        margin-bottom: 0;
      }

      .benefit-stat {
        font-size: 26px;
      }

      .benefit-desc {
        font-size: 14px;
      }
    }



    /* ---------- FIFTH SECTION: PATIENT EDUCATION & RESOURCES ---------- */
    /* SECTION */
    .resources {
      /* background: #f3f3f3; */
      padding: 60px 20px;
      text-align: center;
    }

    /* TITLE */
    .resources-title {
      /* font-family: 'Noto Sans', sans-serif; */
      font-size: 36px;
      color: #64656A;
      margin-bottom: 40px;
      font-weight: 550;
    }

    /* GRID */
    .resources-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
      max-width: 80%;
      margin: auto;
    }

    /* CARD */
    .resource-card {
      text-align: left;
    }

    /* IMAGE */
    .resource-card img {
      width: 100%;
      border-radius: 12px;
      margin-bottom: 15px;
    }

    /* TITLE */
    .resource-card h3 {
      font-size: 20px;
      line-height: 140%;
      color: #001965;
      margin-bottom: 10px;
    }

    /* ® FIX */
    .resource-card h3 sup {
      font-size: 12px;
      vertical-align: super;
    }

    /* DESCRIPTION */
    .resource-card p {
      font-size: 16px;
      color: #666D80;
      margin-bottom: 15px;
    }


    .download-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 16px;
      color: #005AD2;
      text-decoration: none;
      font-weight: 500;
    }

    /* Arrow animation (optional 🔥) */
    .download-btn .arrow {
      display: flex;
      transition: transform 0.3s ease;
    }

    .download-btn:hover .arrow {
      transform: translateX(4px);
    }


    /* TABLET + MOBILE */
    @media (max-width: 768px) {
      .resources-grid {
        grid-template-columns: 1fr;
        /* 🔥 1 column */
      }

      .resources-title {
        font-size: 28px;
      }

      .resource-card {
        text-align: center;
      }
    }


    /* SIXTH 6TH SECTION */
    .faq-section {
      padding: 60px 20px;
    }

    /* TITLE */
    .faq-title {
      font-size: 36px;
      text-align: center;
      color: #64656A;
      margin-bottom: 40px;
      font-weight: 550;
    }

    /* CONTAINER */
    .faq-container {
      max-width: 80%;
      margin: auto;
    }

    /* ITEM */
    .faq-item {
      background: rgba(253, 181, 21, 0.2);
      border-left: 5px solid #E96D07;
      border-radius: 10px;
      margin-bottom: 20px;
      padding: 20px;
      transition: all 0.3s ease;
    }

    /* QUESTION */
    .faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
    }

    /* TEXT */
    .faq-question span {
      font-size: 18px;
      color: #E96D07;
      font-weight: 600;
    }

    .faq-question span sup {
      font-weight: 400;
      font-size: 12px;
    }


    .faq-btn {
      width: 35px;
      height: 35px;
      background: #ffffff;
      border: none;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      padding: 0;
      /* 🔥 remove default padding */
    }

    /* SVG fix */
    .faq-btn svg {
      display: block;
    }

    .faq-btn svg path {
      stroke: #E96D07;
    }

    /* Rotate when open */
    .faq-item.active .faq-btn svg {
      transform: rotate(180deg);
      transition: transform 0.3s ease;
    }

    /* ANSWER */
    .faq-answer {
      font-size: 16px;
      color: #4b4c50;
      margin-top: 15px;
      display: none;
      font-weight: 400;
      line-height: 25px;
    }

    /* ACTIVE STATE */
    .faq-item.active .faq-answer {
      display: block;
    }

    @media (max-width: 768px) {

      .faq-title {
        font-size: 28px;
      }

      .faq-question span {
        font-size: 16px;
      }

      .faq-answer {
        font-size: 14px;
      }
    }

    /* SEVENTH 7TH SECTION CSS CODE */
    /* SECTION */
.ref-section {
  padding: 20px 20px;
}

/* CONTAINER */
.ref-container {
  max-width: 80%;
  margin: auto;
  background: #F0F7FD;
  border-radius: 12px;
  padding: 40px;
}

/* HEADER */
.ref-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* TITLE */
.ref-header h2 {
  font-size: 36px;
  color: #64656A;
  font-weight: 550;
}

/* BUTTON */
.ref-btn {
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
}

/* ICONS */
.ref-btn svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Hide plus by default */
.icon-plus {
  display: none;
}

/* CONTENT */
.ref-content {
  margin-top: 20px;
}

.ref-content ol {
  padding-left: 20px;
}

.ref-content li {
  font-size: 16px;
  line-height: 20px;
  color: #001965;
  margin-bottom: 8px;
}


/* TOGGLE STATE */
.ref-container:not(.active) .ref-content {
  display: none;
}

.ref-container:not(.active) .icon-minus {
  display: none;
}

.ref-container:not(.active) .icon-plus {
  display: block;
}

/* ===================== */
/* RESPONSIVE */
/* ===================== */

@media (max-width: 768px) {

  .ref-header h2 {
    font-size: 28px;
  }

  .ref-content li {
    font-size: 14px;
    line-height: 22px;
  }

  .ref-container {
    padding: 20px;
  }
}

/* EIGHT 8TH SECTION CODE */
/* SECTION */
.api-section {
  padding: 20px 20px;
  margin-bottom: 50px;
}

/* CONTAINER */
.api-container {
  max-width: 80%;
  margin: auto;
  background: #F0F7FD;
  border-radius: 12px;
  padding: 40px;
}

/* HEADER */
.api-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* TITLE */
.api-header h2 {
  font-size: 36px;
  color: #64656A;
  font-weight: 600;
}



/* BUTTON */
.api-btn {
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
}

/* ICON CENTER */
.api-btn svg {
  position: absolute;
  top: 50%;
  left: 50%;
  /* width: 22px;
  height: 22px; */
  transform: translate(-50%, -50%);
}

/* ICON TOGGLE */
.icon-plus {
  display: none;
}

/* CONTENT */
.api-content {
  margin-top: 20px;
}

.api-content p {
  font-size: 16px;
  line-height: 26px;
  color: #001965;
}

/* TOGGLE LOGIC */
.api-container:not(.active) .api-content {
  display: none;
}

.api-container:not(.active) .icon-minus {
  display: none;
}

.api-container:not(.active) .icon-plus {
  display: block;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .api-header h2 {
    font-size: 28px;
  }

  .api-content p {
    font-size: 14px;
    line-height: 22px;
  }

  .api-container {
    padding: 20px;
  }
}

/* footer section css code */
/* FOOTER */
.footer {
  background: #001965;
  padding: 60px 20px;
  color: #ffffff;
}

/* CONTAINER */
.footer-container {
  max-width: 80%;
  margin: auto;
}

/* LINKS */
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 25px;
}

.footer-links a {
  font-size: 16px;
  line-height: 19px;
  color: #ffffff;
  text-decoration: underline;
}
.footer-links a:hover {
  opacity: 0.7;
}

/* TEXT */
.footer-text p {
  font-size: 16px;
  line-height: 19px;
  margin-bottom: 15px;
  /* max-width: 1000px; */
}

/* LOGO */
.footer-logo {
  margin-top: 30px;
}

.footer-logo img {
  width: 8%;
}

/* ===================== */
/* RESPONSIVE */
/* ===================== */

@media (max-width: 768px) {

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }

  .footer-text p {
    font-size: 14px;
    line-height: 20px;
  }

  .footer-logo img {
    width: 70px;
  }
}

@media (max-width: 480px) {

  .footer {
    padding: 40px 15px;
  }

  .footer-links a {
    font-size: 14px;
  }
}


/* ---------- TABLET (<= 1024px) ---------- */
@media (max-width: 1024px) {

  /* Full width sections */
  .video-wrapper,
  .container,
  .resources-grid,
  .faq-container {
    width: 100%;
  }
  .video-wrapper{
    max-width: 100%;
  }

  /* Reference section */
  .ref-container {
    width: 100%;
    /* padding: 20%; */
  }
  .ref-container{
    max-width: 100%;
    padding: 20px;
  }
  .ref-header h2{
    font-size: 30px;
  }
  .container{
    max-width: 100%;
  }
  .evidence-title{
    font-size: 30px;
  }
  .resources-title{
    font-size: 30px;
  }
.resources-grid{
  max-width: 100%;
}
.faq-container{
  max-width: 100%;
}
.faq-title{
  font-size: 30px;
}
  /* API section */
  .api-container {
    max-width: 100%;
    padding: 20px;
  }
  .api-header h2{
    font-size: 30px;
  }

  /* Footer */
  .footer-container {
    max-width: 90%;
    margin: 0 auto; /* center it */
  }

  .footer-logo img {
    width: 15%;
  }

  /* Health Journey Section */
  .health-journey-section {
    padding: 20px 24px 90px;
  }


}

/* mobile version code */
@media (max-width: 480px) {
  .section-title {
    font-size: 22px;
  }
  .journey-title{
    font-size: 22px;
    margin-bottom: 30px;
  }
  .evidence-title{
    font-size: 22px;
  }
  .resources{
    padding: 50px 20px;
  }
  .resources-title{
    font-size: 22px;
  }
  .resource-card{
    text-align: left;
  }
  .faq-section{
    padding: 10px 20px;
  }
    .faq-title {
      font-size: 22px;
    }
    .faq-btn {
  width: 35px;
  height: 35px;
  min-width: 35px;   /* 🔥 prevents shrinking */
  min-height: 35px;  /* 🔥 ensures perfect circle */
  flex-shrink: 0;    /* 🔥 IMPORTANT */
  background: #ffffff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px; /* add space */
}

    .ref-header h2{
      font-size: 22px;
    }
    .api-header h2{
      font-size: 22px;
    }
    .footer-logo img{
      width: 30%;
    }
    .health-journey-section{
      padding: 20px 24px 30px;
    }
    .evidence-section{
      padding: 50px 20px 30px;
    }
    .video-wrapper video{
      height: 90%;
    }
    .instruction-section {
    padding: 50px 16px 30px;
  }
}

/* ---------- MODAL OVERLAY ---------- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

/* SHOW MODAL */
.modal-overlay.active {
  display: flex;
}





/* ----------PRIVACY  MODAL BOX ---------- */
.modal-box {
  background: #0A2A6B; /* dark blue */
  color: white;
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  border-radius: 16px;
  position: relative;
}

/* CLOSE BUTTON */
.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

/* TEXT */
.modal-title {
  font-size: 32px;
  margin-bottom: 10px;
}

.modal-subtitle {
  font-size: 22px;
  margin-bottom: 20px;
}

.modal-box p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.modal-box ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

.modal-box li {
  margin-bottom: 8px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {

  .modal-box {
    padding: 25px;
    border-radius: 12px;
  }

  .modal-title {
    font-size: 24px;
  }

  .modal-subtitle {
    font-size: 18px;
  }

  .modal-box p {
    font-size: 14px;
  }

}

@media (max-width: 480px) {

  .modal-box {
    padding: 20px;
  }

  .modal-close {
    font-size: 24px;
  }

}
.modal-box {
  transform: translateY(40px);
  opacity: 0;
  transition: all 0.3s ease;
}

.modal-overlay.active .modal-box {
  transform: translateY(0);
  opacity: 1;
}

* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', 'Poppins', system-ui, -apple-system, sans-serif;
      background-color: #ffffff;
      overflow-x: hidden;
    }

    /* ---------- HERO SECTION ---------- */
    .hero {/* ---------- MODAL OVERLAY ---------- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

/* SHOW MODAL */
.modal-overlay.active {
  display: flex;
}





/* ----------PRIVACY  MODAL BOX ---------- */
/* ---------- MODAL BOX ---------- */
/* ---------- MODAL BOX ---------- */
.modal-box {
  background: #0A2A6B;
  color: white;
  width: 100%;
  max-width: 80%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  border-radius: 16px;
  position: relative;

  /* animation */
  transform: translateY(40px);
  opacity: 0;
  transition: all 0.3s ease;
}

.modal-overlay.active .modal-box {
  transform: translateY(0);
  opacity: 1;
}

/* ---------- CLOSE BUTTON ---------- */
.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

/* ---------- TYPOGRAPHY ---------- */

/* H2 */
.modal-box h2 {
  font-weight: 700;
  font-size: 28px;
  line-height: 100%;
  text-decoration: underline;
  margin-bottom: 10px;
}

/* H4 */
.modal-box h4 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

/* H6 */
.modal-box h6 {
  font-size: 22px;
  font-weight: 600;
  padding-left: 22px;
  margin-top: 20px;
  margin-bottom: 10px;
}

/* TEXT (P + LI SAME STYLE) */
.modal-box p{
  font-size: 16px !important;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0;
  margin-bottom: 15px;
  padding-left: 23px;
}
.modal-box ul li {
  font-size: 16px !important;
  font-weight: 400;
  letter-spacing: 0;
  margin-bottom: 15px;
}


/* LIST */
.modal-box ul {
  margin-left: 20px;
  /* margin-bottom: 20px; */
}

/* LINKS */
.modal-box a {
  color: #ffffff;
  text-decoration: underline;
}

/* ---------- RESPONSIVE ---------- */

/* TABLET */
@media (max-width: 768px) {

  .modal-box {
    max-width: 95%;
    padding: 25px;
    border-radius: 12px;
  }

  .modal-box h2 {
    font-size: 22px;
  }

  .modal-box h4 {
    font-size: 18px;
  }

  .modal-box h6 {
    font-size: 18px;
    padding-left: 10px;
  }

  .modal-box p,
  .modal-box ul li {
    font-size: 14px;
    line-height: 26px;
  }

}

/* MOBILE */
@media (max-width: 480px) {

  .modal-box {
    padding: 10px;
    max-width: 100%;
  }

  .modal-close {
    font-size: 24px;
  }

  .modal-box h2 {
    font-size: 22px;
    line-height: 30px;
  }

  .modal-box h4 {
    font-size: 20px;
    line-height: 26px;
  }

  .modal-box h6 {
    font-size: 18px;
    line-height: 26px;
  }

  .modal-box ul li {
    font-size: 13px;
    line-height: 20px;
  }
  .modal-box ul li {
    font-size: 13px;
    /* line-height: 25px; */
  }

}
      position: relative;
      width: 100%;
      min-height: 77vh;
      background: url("Assestes/Novocare-banner-1\ 1.png") no-repeat center center;
      background-size: cover;
      background-position: right center;
      color: white;
      padding: 30px 60px;
      display: flex;
      flex-direction: column;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.091);
      z-index: 0;
    }

    .hero * {
      position: relative;
      z-index: 2;
    }

    .hero-header {
      display: flex;
      align-items: center;
      justify-content: flex-start;
    }

    .logo-area {
      display: flex;
      align-items: center;
      gap: 8px;
      flex-wrap: wrap;
    }

    .logo {
      width: 85px;
      height: auto;
      display: block;
      object-fit: contain;
    }

    .divider {
      width: 2px;
      height: 35px;
      background: #ffffff;
      display: inline-block;
      opacity: 0.9;
    }

    .brand-text {
      font-size: 22px;
      font-weight: 500;
      letter-spacing: 0.5px;
      color: #ffffff;
    }

    .brand-text sup {
      font-size: 12px;
      margin-left: 2px;
      vertical-align: super;
    }

    .hero-content {
      flex: 1;
      display: flex;
      align-items: center;
    }

    .hero-text {
      max-width: 70%;
    }

    .hero-heading {
      font-family: 'Noto Sans', 'Inter', sans-serif;
      font-style: italic;
      font-weight: 800;
      font-size: 64px;
      line-height: 1.2;
      text-align: left;
      color: #ffffff;
      text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
    }

    .hero-heading span {
      display: inline-block;
    }

    .hero-heading sup {
      font-size: 35px;
      font-weight: 800;
      vertical-align: super;
      margin-left: 4px;
    }


    /* ---------- TABLET (<= 1024px) ---------- */
@media (max-width: 1024px) {
  .hero {
    padding: 20px 30px;
    min-height: 30vh;
    background-position: 100% center;
  }

  .hero-text {
    max-width: 80%;
  }

  .hero-heading {
    font-size: 70px;
    line-height: 1.3;
  }

  .logo {
    width: 80px;
  }

  .brand-text {
    font-size: 18px;
  }
}


    /* ---------- SECOND SECTION: HOW TO TAKE OZEMPIC® ---------- */
    .instruction-section {
      padding: 70px 24px 90px;
      text-align: center;
    }

    .section-title {
      font-size: 38px;
      /* font-weight: 700; */
      color: #64656A;
      margin-bottom: 15px;
      letter-spacing: -0.3px;
      font-weight: 550;
    }

    .section-title sup {
      font-size: 18px;
      font-weight: 500;
      vertical-align: super;
      color: #64656A;
    }

    /* video wrapper – replaces old thumbnail card */
    .video-wrapper {
      position: relative;
      max-width: 80%;
      margin: 0 auto;
      aspect-ratio: 16 / 8;
      cursor: pointer;
      border-radius: 20px;
      overflow: hidden;
    }

    /* video element itself */
    .video-wrapper video {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
    }

    /* custom play button overlay */
    .play-btn-overlay {
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      width: 88px;
      height: 88px;
      background: rgba(0, 0, 0, 0.65);
      backdrop-filter: blur(4px);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 38px;
      color: white;
      cursor: pointer;
      transition: all 0.25s ease;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
      border: 2px solid rgba(255, 255, 255, 0.5);
      z-index: 10;
    }

    .play-btn-overlay:hover {
      transform: translate(-50%, -50%) scale(1.05);
      border-color: white;
    }

    /* hide play button when video is playing */
    .play-btn-overlay.hide {
      display: none;
    }

    /* ---------- RESPONSIVE DESIGN ---------- */
    @media (max-width: 1024px) {
      .hero-heading {
        font-size: 40px;
      }

      .hero-heading sup {
        font-size: 28px;
      }

      .section-title {
        font-size: 32px;
      }
    }

    @media (max-width: 768px) {
      .hero {
        padding: 20px 20px;
        min-height: 20vh;
        background-position: 100%;
      }

      .hero-header {
        justify-content: left;
      }

      .hero-content {
        justify-content: left;
        text-align: left;
      }

      .hero-text {
        max-width: 100%;
        text-align: center;
      }

      .hero-heading {
        font-size: 36px;
        text-align: center;
        line-height: 1.3;
      }

      .hero-heading sup {
        font-size: 20px;
      }

      .logo {
        width: 70px;
      }

      .brand-text {
        font-size: 18px;
      }

      .divider {
        height: 28px;
      }

      .section-title {
        font-size: 28px;
        margin-bottom: 32px;
      }

      .video-wrapper {
        aspect-ratio: 4 / 3;
        border-radius: 16px;
      }

      .play-btn-overlay {
        width: 70px;
        height: 70px;
        font-size: 30px;
      }

      .instruction-section {
        padding: 50px 16px 70px;
      }
    }

    @media (max-width: 480px) {
      .hero-heading {
        font-size: 22px;
      }

      .hero-heading sup {
        font-size: 16px;
      }

      .play-btn-overlay {
        width: 60px;
        height: 60px;
        font-size: 26px;
      }

      .section-title {
        font-size: 24px;
        margin-bottom: 0px !important;
      }
      .video-wrapper{
        aspect-ratio: 7 / 5;
      }
    }

    button,
    .play-btn-overlay {
      user-select: none;
      -webkit-tap-highlight-color: transparent;
    }


    /* ---------- THIRD SECTION: HEALTH JOURNEY ---------- */
    .health-journey-section {
      padding: 70px 24px 90px;
      /* background: #ffffff; */
    }

    .container {
      max-width: 80%;
      margin: 0 auto;
    }

    .journey-title {
      font-size: 38px;
      font-weight: 550;
      color: #64656A;
      text-align: center;
      margin-bottom: 48px;
      letter-spacing: -0.3px;
    }

    .journey-title sup {
      font-size: 20px;
      font-weight: 500;
    }

    /* Image grid – 2 columns on desktop & tablet, 1 column on mobile */
    .image-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
    }

    .grid-item {
      overflow: hidden;
      /* border-radius: 20px; */
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
    }

    .grid-item:hover {
      transform: translateY(-5px);
    }

    .grid-item img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
    }

    /* Tablet: reduce gap and slightly smaller heading */
    @media (max-width: 1024px) {
      .journey-title {
        font-size: 30px;
      }

      .image-grid {
        gap: 24px;
      }
    }

    /* Mobile: single column */
    @media (max-width: 768px) {
      .health-journey-section {
        padding: 50px 20px 70px;
      }

      .journey-title {
        font-size: 30px;
        margin-bottom: 32px;
      }

      .image-grid {
        grid-template-columns: 1fr;
        /* stack vertically */
        gap: 24px;
      }
    }



    /* ---------- FOURTH SECTION: EVIDENCE-BASED BENEFITS ---------- */
    .evidence-section {
      padding: 70px 24px 90px;
      background: #ffffff;
    }

    .evidence-title {
      font-size: 38px;
      font-weight: 550;
      color: #64656A;
      text-align: center;
      margin-bottom: 60px;
      letter-spacing: -0.3px;
    }

    .evidence-title sup {
      font-size: 20px;
      font-weight: 500;
    }

    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      max-width: 100%;
      margin: 0 auto;
    }

    .benefit-card {
      background-color: rgba(253, 181, 21, 0.2);
      /* 20% opacity */
      border-radius: 20px;
      padding: 24px 20px;
      display: flex;
      align-items: center;
      gap: 20px;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    .benefit-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    }

    .benefit-icon {
      flex-shrink: 0;
    }

    .benefit-icon img {
      width: 70px;
      height: 70px;
      object-fit: contain;
      display: block;
    }

    .benefit-content {
      flex: 1;
      text-align: left;
    }

    .benefit-stat {
      font-weight: bolder;
      font-size: 40px;
      line-height: 1.2;
      color: #E96D07;
      margin-bottom: 8px;
    }

    .benefit-desc {
      /* font-family: 'Noto Sans', 'Inter', sans-serif; */
      font-weight: 400;
      font-size: 22px;
      line-height: 1.3;
      color: #64656A;
    }

    /* Tablet: 2 columns */
    @media (max-width: 1024px) {
      .evidence-title {
        font-size: 36px;
      }

      .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
      }

      .benefit-stat {
        font-size: 32px;
      }

      .benefit-desc {
        font-size: 18px;
      }

      .benefit-icon img {
        width: 60px;
        height: 60px;
      }

      .benefit-card {
        padding: 20px 16px;
        gap: 16px;
      }
    }

    /* Mobile: 2 columns (still) but with smaller elements */
    @media (max-width: 768px) {
      .evidence-section {
        padding: 50px 20px 70px;
      }

      .evidence-title {
        font-size: 30px;
        margin-bottom: 40px;
      }

      .benefits-grid {
        gap: 20px;
      }

      .benefit-card {
        flex-direction: column;
        /* stack icon above text on very small? No, keep horizontal but reduce icon size */
        align-items: flex-start;
        gap: 12px;
        padding: 16px;
      }

      .benefit-icon img {
        width: 50px;
        height: 50px;
      }

      .benefit-stat {
        font-size: 28px;
      }

      .benefit-desc {
        font-size: 16px;
      }
    }

    /* Extra small phones: ensure text doesn't overflow */
    @media (max-width: 480px) {
      .benefit-card {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 12px;
      }

      .benefit-icon {
        margin-bottom: 0;
      }

      .benefit-stat {
        font-size: 26px;
      }

      .benefit-desc {
        font-size: 14px;
      }
    }



    /* ---------- FIFTH SECTION: PATIENT EDUCATION & RESOURCES ---------- */
    /* SECTION */
    .resources {
      /* background: #f3f3f3; */
      padding: 60px 20px;
      text-align: center;
    }

    /* TITLE */
    .resources-title {
      /* font-family: 'Noto Sans', sans-serif; */
      font-size: 36px;
      color: #64656A;
      margin-bottom: 40px;
      font-weight: 550;
    }

    /* GRID */
    .resources-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
      max-width: 80%;
      margin: auto;
    }

    /* CARD */
    .resource-card {
      text-align: left;
    }

    /* IMAGE */
    .resource-card img {
      width: 100%;
      border-radius: 12px;
      margin-bottom: 15px;
    }

    /* TITLE */
    .resource-card h3 {
      font-size: 20px;
      line-height: 140%;
      color: #001965;
      margin-bottom: 10px;
    }

    /* ® FIX */
    .resource-card h3 sup {
      font-size: 12px;
      vertical-align: super;
    }

    /* DESCRIPTION */
    .resource-card p {
      font-size: 16px;
      color: #666D80;
      margin-bottom: 15px;
    }


    .download-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 16px;
      color: #005AD2;
      text-decoration: none;
      font-weight: 500;
    }

    /* Arrow animation (optional 🔥) */
    .download-btn .arrow {
      display: flex;
      transition: transform 0.3s ease;
    }

    .download-btn:hover .arrow {
      transform: translateX(4px);
    }


    /* TABLET + MOBILE */
    @media (max-width: 768px) {
      .resources-grid {
        grid-template-columns: 1fr;
        /* 🔥 1 column */
      }

      .resources-title {
        font-size: 28px;
      }

      .resource-card {
        text-align: center;
      }
    }


    /* SIXTH 6TH SECTION */
    .faq-section {
      padding: 60px 20px;
    }

    /* TITLE */
    .faq-title {
      font-size: 36px;
      text-align: center;
      color: #64656A;
      margin-bottom: 40px;
      font-weight: 550;
    }

    /* CONTAINER */
    .faq-container {
      max-width: 80%;
      margin: auto;
    }

    /* ITEM */
    .faq-item {
      background: rgba(253, 181, 21, 0.2);
      border-left: 5px solid #E96D07;
      border-radius: 10px;
      margin-bottom: 20px;
      padding: 20px;
      transition: all 0.3s ease;
    }

    /* QUESTION */
    .faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
    }

    /* TEXT */
    .faq-question span {
      font-size: 18px;
      color: #E96D07;
      font-weight: 600;
    }

    .faq-question span sup {
      font-weight: 400;
      font-size: 12px;
    }


    .faq-btn {
      width: 35px;
      height: 35px;
      background: #ffffff;
      border: none;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      padding: 0;
      /* 🔥 remove default padding */
    }

    /* SVG fix */
    .faq-btn svg {
      display: block;
    }

    .faq-btn svg path {
      stroke: #E96D07;
    }

    /* Rotate when open */
    .faq-item.active .faq-btn svg {
      transform: rotate(180deg);
      transition: transform 0.3s ease;
    }

    /* ANSWER */
    .faq-answer {
      font-size: 16px;
      color: #4b4c50;
      margin-top: 15px;
      display: none;
      font-weight: 400;
      line-height: 25px;
    }

    /* ACTIVE STATE */
    .faq-item.active .faq-answer {
      display: block;
    }

    @media (max-width: 768px) {

      .faq-title {
        font-size: 28px;
      }

      .faq-question span {
        font-size: 16px;
      }

      .faq-answer {
        font-size: 14px;
      }
    }

    /* SEVENTH 7TH SECTION CSS CODE */
    /* SECTION */
.ref-section {
  padding: 20px 20px;
}

/* CONTAINER */
.ref-container {
  max-width: 80%;
  margin: auto;
  background: #F0F7FD;
  border-radius: 12px;
  padding: 40px;
}

/* HEADER */
.ref-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* TITLE */
.ref-header h2 {
  font-size: 36px;
  color: #64656A;
  font-weight: 550;
}

/* BUTTON */
.ref-btn {
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
}

/* ICONS */
.ref-btn svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Hide plus by default */
.icon-plus {
  display: none;
}

/* CONTENT */
.ref-content {
  margin-top: 20px;
}

.ref-content ol {
  padding-left: 20px;
}

.ref-content li {
  font-size: 16px;
  line-height: 20px;
  color: #001965;
  margin-bottom: 8px;
}


/* TOGGLE STATE */
.ref-container:not(.active) .ref-content {
  display: none;
}

.ref-container:not(.active) .icon-minus {
  display: none;
}

.ref-container:not(.active) .icon-plus {
  display: block;
}

/* ===================== */
/* RESPONSIVE */
/* ===================== */

@media (max-width: 768px) {

  .ref-header h2 {
    font-size: 28px;
  }

  .ref-content li {
    font-size: 14px;
    line-height: 22px;
  }

  .ref-container {
    padding: 20px;
  }
}

/* EIGHT 8TH SECTION CODE */
/* SECTION */
.api-section {
  padding: 20px 20px;
  margin-bottom: 50px;
}

/* CONTAINER */
.api-container {
  max-width: 80%;
  margin: auto;
  background: #F0F7FD;
  border-radius: 12px;
  padding: 40px;
}

/* HEADER */
.api-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* TITLE */
.api-header h2 {
  font-size: 36px;
  color: #64656A;
  font-weight: 600;
}



/* BUTTON */
.api-btn {
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
}

/* ICON CENTER */
.api-btn svg {
  position: absolute;
  top: 50%;
  left: 50%;
  /* width: 22px;
  height: 22px; */
  transform: translate(-50%, -50%);
}

/* ICON TOGGLE */
.icon-plus {
  display: none;
}

/* CONTENT */
.api-content {
  margin-top: 20px;
}

.api-content p {
  font-size: 16px;
  line-height: 26px;
  color: #001965;
}

/* TOGGLE LOGIC */
.api-container:not(.active) .api-content {
  display: none;
}

.api-container:not(.active) .icon-minus {
  display: none;
}

.api-container:not(.active) .icon-plus {
  display: block;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .api-header h2 {
    font-size: 28px;
  }

  .api-content p {
    font-size: 14px;
    line-height: 22px;
  }

  .api-container {
    padding: 20px;
  }
}

/* footer section css code */
/* FOOTER */
.footer {
  background: #001965;
  padding: 60px 20px;
  color: #ffffff;
}

/* CONTAINER */
.footer-container {
  max-width: 80%;
  margin: auto;
}

/* LINKS */
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 25px;
}

.footer-links a {
  font-size: 16px;
  line-height: 19px;
  color: #ffffff;
  text-decoration: underline;
}
.footer-links a:hover {
  opacity: 0.7;
}

/* TEXT */
.footer-text p {
  font-size: 16px;
  line-height: 19px;
  margin-bottom: 15px;
  /* max-width: 1000px; */
}

/* LOGO */
.footer-logo {
  margin-top: 30px;
}

.footer-logo img {
  width: 8%;
}

/* ===================== */
/* RESPONSIVE */
/* ===================== */

@media (max-width: 768px) {

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }

  .footer-text p {
    font-size: 14px;
    line-height: 20px;
  }

  .footer-logo img {
    width: 70px;
  }
}

@media (max-width: 480px) {

  .footer {
    padding: 40px 15px;
  }

  .footer-links a {
    font-size: 14px;
  }
}


/* ---------- TABLET (<= 1024px) ---------- */
@media (max-width: 1024px) {

  /* Full width sections */
  .video-wrapper,
  .container,
  .resources-grid,
  .faq-container {
    width: 100%;
  }
  .video-wrapper{
    max-width: 100%;
  }

  /* Reference section */
  .ref-container {
    width: 100%;
    /* padding: 20%; */
  }
  .ref-container{
    max-width: 100%;
    padding: 20px;
  }
  .ref-header h2{
    font-size: 30px;
  }
  .container{
    max-width: 100%;
  }
  .evidence-title{
    font-size: 30px;
  }
  .resources-title{
    font-size: 30px;
  }
.resources-grid{
  max-width: 100%;
}
.faq-container{
  max-width: 100%;
}
.faq-title{
  font-size: 30px;
}
  /* API section */
  .api-container {
    max-width: 100%;
    padding: 20px;
  }
  .api-header h2{
    font-size: 30px;
  }

  /* Footer */
  .footer-container {
    max-width: 90%;
    margin: 0 auto; /* center it */
  }

  .footer-logo img {
    width: 15%;
  }

  /* Health Journey Section */
  .health-journey-section {
    padding: 20px 24px 90px;
  }


}

/* mobile version code */
@media (max-width: 480px) {
  .section-title {
    font-size: 22px;
  }
  .journey-title{
    font-size: 22px;
    margin-bottom: 30px;
  }
  .evidence-title{
    font-size: 22px;
  }
  .resources{
    padding: 50px 20px;
  }
  .resources-title{
    font-size: 22px;
  }
  .resource-card{
    text-align: left;
  }
  .faq-section{
    padding: 10px 20px;
  }
    .faq-title {
      font-size: 22px;
    }
    .faq-btn {
  width: 35px;
  height: 35px;
  min-width: 35px;   /* 🔥 prevents shrinking */
  min-height: 35px;  /* 🔥 ensures perfect circle */
  flex-shrink: 0;    /* 🔥 IMPORTANT */
  background: #ffffff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px; /* add space */
}

    .ref-header h2{
      font-size: 22px;
    }
    .api-header h2{
      font-size: 22px;
    }
    .footer-logo img{
      width: 30%;
    }
    .health-journey-section{
      padding: 20px 24px 30px;
    }
    .evidence-section{
      padding: 50px 20px 30px;
    }
    .video-wrapper video{
      height: 90%;
    }
    .instruction-section {
    padding: 50px 16px 30px;
  }
}

/* ---------- MODAL OVERLAY ---------- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

/* SHOW MODAL */
.modal-overlay.active {
  display: flex;
}





/* ----------PRIVACY  MODAL BOX ---------- */
.modal-box {
  background: #0A2A6B; /* dark blue */
  color: white;
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  border-radius: 16px;
  position: relative;
}

/* CLOSE BUTTON */
.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

/* TEXT */
.modal-title {
  font-size: 32px;
  margin-bottom: 10px;
}

.modal-subtitle {
  font-size: 22px;
  margin-bottom: 20px;
}

.modal-box p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.modal-box ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

.modal-box li {
  margin-bottom: 8px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {

  .modal-box {
    padding: 25px;
    border-radius: 12px;
  }

  .modal-title {
    font-size: 24px;
  }

  .modal-subtitle {
    font-size: 18px;
  }

  .modal-box p {
    font-size: 14px;
  }

}

@media (max-width: 480px) {

  .modal-box {
    padding: 20px;
  }

  .modal-close {
    font-size: 24px;
  }

}
.modal-box {
  transform: translateY(40px);
  opacity: 0;
  transition: all 0.3s ease;
}

.modal-overlay.active .modal-box {
  transform: translateY(0);
  opacity: 1;
}



/* ---------- MODAL OVERLAY ---------- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

/* SHOW MODAL */
.modal-overlay.active {
    display: flex;
}





/* ----------PRIVACY  MODAL BOX ---------- */
/* ---------- MODAL BOX ---------- */
/* ---------- MODAL BOX ---------- */
.modal-box {
    background: #0A2A6B;
    color: white;
    width: 100%;
    max-width: 80%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    border-radius: 16px;
    position: relative;

    /* animation */
    transform: translateY(40px);
    opacity: 0;
    transition: all 0.3s ease;
}

.modal-overlay.active .modal-box {
    transform: translateY(0);
    opacity: 1;
}

/* ---------- CLOSE BUTTON ---------- */
.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
}

/* ---------- TYPOGRAPHY ---------- */

/* H2 */
.modal-box h2 {
    font-weight: 700;
    font-size: 28px;
    line-height: 100%;
    text-decoration: underline;
    margin-bottom: 10px;
}

/* H4 */
.modal-box h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

/* H6 */
.modal-box h6 {
    font-size: 22px;
    font-weight: 600;
    padding-left: 22px;
    margin-top: 20px;
    margin-bottom: 10px;
}

/* TEXT (P + LI SAME STYLE) */
.modal-box p {
    font-size: 16px !important;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0;
    margin-bottom: 15px;
    padding-left: 23px;
}

.modal-box ul li {
    font-size: 16px !important;
    font-weight: 400;
    letter-spacing: 0;
    margin-bottom: 15px;
}


/* LIST */
.modal-box ul {
    margin-left: 20px;
    /* margin-bottom: 20px; */
}

/* LINKS */
.modal-box a {
    color: #ffffff;
    text-decoration: underline;
}

/* ---------- RESPONSIVE ---------- */

/* TABLET */
@media (max-width: 768px) {

    .modal-box {
        max-width: 95%;
        padding: 25px;
        border-radius: 12px;
    }

    .modal-box h2 {
        font-size: 22px;
    }

    .modal-box h4 {
        font-size: 18px;
    }

    .modal-box h6 {
        font-size: 18px;
        padding-left: 10px;
    }

    .modal-box p,
    .modal-box ul li {
        font-size: 14px;
        line-height: 26px;
    }

}

/* MOBILE */
@media (max-width: 480px) {

    .modal-box {
        padding: 10px;
        max-width: 100%;
    }

    .modal-close {
        font-size: 24px;
    }

    .modal-box h2 {
        font-size: 22px;
        line-height: 30px;
    }

    .modal-box h4 {
        font-size: 20px;
        line-height: 26px;
    }

    .modal-box h6 {
        font-size: 18px;
        line-height: 26px;
    }

    .modal-box ul li {
        font-size: 13px;
        line-height: 20px;
    }

    .modal-box ul li {
        font-size: 13px;
        /* line-height: 25px; */
    }

}



/* New Top Hero section Code For (POP -SECtion) */
@font-face {
  font-family: "Apis";
  src: url("/website_asset/fonts/Apis/Apis-Regular.woff2") format("woff2"),
       url("/website_asset/fonts/Apis/Apis-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Apis";
  src: url("/website_asset/fonts/Apis/Apis-Bold.woff2") format("woff2"),
       url("/website_asset/fonts/Apis-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
/* HELPLINE BAR */
.helpline-bar {
  width: 100%;
  background: #ffffff;
  border-bottom: 3px solid #E96D07;
  /* padding: 12px 20px; */
  cursor: pointer;
  text-align: center;
   position: sticky;
    top: 0;
    z-index: 1000;
}

.helpline-content {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: #E96D07;
  font-weight: 800;
  font-size: 20px;
  line-height: 30px;
  font-family: "Apis", sans-serif;
}
.helpline-content sup{
  font-size: 13px;
  font-weight: 600;
}

.phone-icon {
  /* animation: ring 1.5s infinite; */
  margin-top: 5px;
}

/* ICON ANIMATION */
@keyframes ring {
  0% { transform: rotate(0); }
  25% { transform: rotate(15deg); }
  50% { transform: rotate(-15deg); }
  75% { transform: rotate(10deg); }
  100% { transform: rotate(0); }
}

/* POPUP BACKGROUND */
.helpline-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: none;
  align-items: flex-start;
  z-index: 9999;
  justify-content: center;
  padding-top: 18px;
}

/* POPUP BOX */
.popup-box {
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  width: 32%;
  text-align: center;
  position: relative;
}

/* TEXT STYLE (DESKTOP) */
.popup-box h3 {
  font-family: "Apis", sans-serif;
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  color: #E96D07;
  margin-bottom: 10px;
  margin-top: 30px;
  border-top: 1px solid rgba(172, 172, 172, 0.301);
}
.popup-box h3 sup{
  font-size: 12px;
  font-weight: 6  00;
}

.phone-number span {
  font-family: "Apis", sans-serif !important;
  font-size: 28px;
  line-height: 34px;
  font-weight: 500;
}
.phone-number button {
  text-align: right;
}

/* PHONE NUMBER */
.phone-number {
  display: flex;
  align-items: center;
  justify-content: center;
  /* gap: 10px; */
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(172, 172, 172, 0.301);
}

/* CLOSE ICON */
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 35px;
  cursor: pointer;
}
/* Close button SVG stroke color */
.close-btn svg {
  stroke: #666666;   /* light black / gray */
  transition: stroke 0.2s ease;
}

/* Hover effect: dark black */
.close-btn:hover svg {
  stroke: #000000;
}

/* BUTTON */
.popup-close-btn {
  background: #E96D07;
  color: #ffffff;
  border: none;
  padding: 5px 20px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  font-family: "Apis", sans-serif;
  display: block;
  margin-left: auto;
}

/* MOBILE / TABLET */
@media (max-width: 1024px) {
  .popup-box h3,
  .phone-number span {
    font-size: 12px;
    line-height: 18px;
    font-weight: 700;
  }

  .helpline-content {
    font-size: 13px;
    line-height: 18px;
    font-weight: 700;
  }
}
.popup-box {
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}


/* -------------- slider ------------- */
/* ---------- THIRD SECTION: HEALTH JOURNEY ---------- */
.health-journey-section {
    padding: 70px 24px 90px;
    /* background: #ffffff; */
}

.container {
    max-width: 80%;
    margin: 0 auto;
}

.journey-title {
    font-size: 38px;
    font-weight: 550;
    color: #64656A;
    text-align: center;
    margin-bottom: 48px;
    letter-spacing: -0.3px;
}

.journey-title sup {
    font-size: 20px;
    font-weight: 500;
}

/* Image grid – 2 columns on desktop & tablet, 1 column on mobile */
.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.grid-item {
    overflow: hidden;
    /* border-radius: 20px; */
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.grid-item:hover {
    transform: translateY(-5px);
}

.grid-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* crousel code */
/* CAROUSEL */
.carousel {
    position: relative;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

/* Each slide */
.carousel-slide {
    min-width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding: 0 10px;
}

.carousel-slide img {
    width: 100%;
    display: block;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

/* DOTS */
.carousel-dots {
    display: flex;
    justify-content: center;
    margin-top: 25px;
    gap: 10px;
}

.carousel-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #ccc;
    cursor: pointer;
    transition: 0.3s;
}

.carousel-dots button.active {
    background: #E96D07;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .carousel-slide {
        padding: 0;
    }
}

/* DESKTOP ONLY (2 IMAGES) */
@media (min-width: 1025px) {
    .carousel-slide {
        min-width: 50%;
    }
}

/* Tablet: reduce gap and slightly smaller heading */
@media (max-width: 1024px) {
    .journey-title {
        font-size: 30px;
    }

    .carousel-slide {
        min-width: 100% !important;
    }

    .image-grid {
        gap: 24px;
    }
}

/* Mobile: single column */
@media (max-width: 768px) {
    .health-journey-section {
        padding: 50px 20px 70px;
    }

    .journey-title {
        font-size: 30px;
        margin-bottom: 32px;
    }

    .image-grid {
        grid-template-columns: 1fr;
        /* stack vertically */
        gap: 24px;
    }
}

/* ---------- FIFTH SECTION: PATIENT EDUCATION & RESOURCES ---------- */
/* SECTION */
.resources {
    /* background: #f3f3f3; */
    padding: 60px 20px;
    text-align: center;
}

.resources-carousel {
    overflow: hidden;
    max-width: 80%;
    margin: auto;
}

.resources-track {
    display: flex;
    transition: transform 0.5s ease;
}

/* SLIDE */
.resource-slide {
    min-width: 50%;
    box-sizing: border-box;
    padding: 0px 10px;
}

/* TITLE */
.resources-title {
    /* font-family: 'Noto Sans', sans-serif; */
    font-size: 36px;
    color: #64656A;
    margin-bottom: 40px;
    font-weight: 550;
}

/* DOTS */
.resources-dots {
    display: flex;
    justify-content: center;
    margin-top: 25px;
    gap: 10px;
}

.resources-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #ccc;
    cursor: pointer;
}

.resources-dots button.active {
    background: #E96D07;
}

/* CARD */
.resource-card {
    text-align: left;
}

/* IMAGE */
.resource-card img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 15px;
    height: 350px;
}

/* TITLE */
.resource-card h3 {
    font-size: 20px;
    line-height: 140%;
    color: #001965;
    margin-bottom: 10px;
}

/* ® FIX */
.resource-card h3 sup {
    font-size: 12px;
    vertical-align: super;
}

/* DESCRIPTION */
.resource-card p {
    font-size: 16px;
    color: #666D80;
    margin-bottom: 15px;
}


.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    color: #005AD2;
    text-decoration: none;
    font-weight: 500;
}

/* Arrow animation (optional 🔥) */
.download-btn .arrow {
    display: flex;
    transition: transform 0.3s ease;
}

.download-btn:hover .arrow {
    transform: translateX(4px);
}


/* TABLET + MOBILE */
@media (max-width: 768px) {
    .resources-title {
        font-size: 28px;
    }

    .resource-card {
        text-align: center;
    }

    .resource-card img {
        height: auto;
    }
}

/* TABLET + MOBILE → 1 CARD */
@media (max-width: 1024px) {
    .resource-slide {
        min-width: 100%;
    }

    .resources-carousel {
        max-width: 100%;
    }

    .resource-card img {
        height: auto;
    }
}
