/* --- TOPIC MODAL INNER SLIDER --- */
.modal-slider {
    overflow: hidden;
    margin-top: 14px;
}

.modal-slides {
    display: flex;
    transition: transform 0.35s ease;
}

.modal-slide {
    min-width: 100%;
    padding: 0 4px;
    height: 180px;
    overflow-y: auto;
}

.modal-slide h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
    text-align: left;
}

.modal-slide p {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.88);
    text-align: left;
}

.modal-disclaimer {
    display: block;
    font-size: 10px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 8px;
    font-style: italic;
    text-align: left;
}

.modal-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 20px;
}

.modal-arrow {
    background: rgba(255, 255, 255, 0.25);
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    position: relative;
    z-index: 5;
    flex-shrink: 0;
}

.modal-arrow:hover {
    background: rgba(255, 255, 255, 0.35);
}

.modal-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.modal-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    transition: background 0.2s;
}

.modal-dot.active {
    background: #fff;
}

.modal-icon {
    position: absolute;
    top: -38px;
    left: 50%;
    transform: translateX(-50%);
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-icon img {
    width: 72px;
    height: 72px;
    object-fit: contain;
}

/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Google Sans', sans-serif;
} */

body {
    background: #fff;
}

/* ---------------- NAV ---------------- */

/*.navbar {
    background: #e5e5e5;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #000;
    font-size: 14px;
}

.search-box {
    position: relative;
}

.search-box input {
    padding: 8px 35px 8px 10px;
    border: 2px solid #000;
    border-radius: 8px;
}

.search-box i {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.hamburger,
.mobile-search {
    display: none;
    font-size: 20px;
    cursor: pointer;
}

.sidebar {
    position: fixed;
    left: -300px;
    top: 0;
    width: 250px;
    height: 100%;
    background: #e5e5e5;
    padding: 20px;
    transition: 0.3s;
    z-index: 2000;
}

.sidebar.active {
    left: 0;
}

.sidebar .close-btn {
    text-align: right;
    cursor: pointer;
}

.sidebar a {
    display: block;
    margin: 20px 0;
    text-decoration: none;
    color: #000;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: none;
    z-index: 1500;
}

.overlay.active {
    display: block;
}*/

/* -------------- HERO BANNER -------------- */

.hero-banner-section {
    width: 100%;
    line-height: 0;
    margin-top: 80px;
}

.hero-banner-section picture,
.hero-banner-section img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* -------------- HERO -------------- */

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 40px 40px;
}

.hero-left {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-align: center;
}

.hero-right {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-left img,
.hero-right img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* -------------- SLIDER -------------- */

.slider-section {
    padding: 0;
}

.slider-intro {
    background: #ce232d;
    color: #fff;
    text-align: center;
    padding: 50px 40px 155px;
}

.slider-intro h2 {
    color: #fff;
    margin-bottom: 12px;
    font-size: 24px;
}

.slider-intro p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
}

.slider-wrapper {
    position: relative;
    overflow: hidden;
}

.slider {
    display: flex;
    transition: 0.5s;
}

.slide {
    min-width: 100%;
}

.slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: black;
    border: none;
    padding: 5px;
    cursor: pointer;
    background-color: #f0f0f0;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

/* -------------- SERVICES -------------- */

.services {
    padding: 10px 40px 80px 40px;
}

.services-header {
    text-align: center;
    margin-bottom: 40px;
}

.services-header h2 {
    color: #ce232d;
    font-size: 24px;
}

.services-container {
    display: flex;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}

.services-icons {
    flex: 0 0 40%;
    display: grid;
    grid-template-columns: repeat(3, minmax(80px, 1fr));
    gap: 20px;
    align-items: start;
}

.service-item {
    text-align: center;
    cursor: pointer;
    padding: 15px;
    border-radius: 10px;
    transition: 0.3s;
}

.service-item.active {
    background: none;
}

.service-item p {
    font-size: 17px;
}

.service-item img {
    width: 100px;
    margin-bottom: 10px;
}

.service-image {
    flex: 1 1 60%;
    max-width: 650px;
}

.service-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

#serviceText {
    margin-top: 16px;
    font-size: 14px;
    color: #444;
    line-height: 1.5;
    text-align: center;
}

/* -------------- RED STATS SECTION -------------- */

.stats {
    background: #ce232d;
    color: #fff;
    text-align: center;
    padding: 220px 20px 20px;
    position: relative;
}

.stats-img {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}

.stats-img img {
    width: 50%;
    border-radius: 10px;
}

/* ensure services have space so the absolute image does not cover them */
.services {
    margin-bottom: 120px;
}

@media (max-width: 992px) {
    .stats {
        padding-top: 180px;
    }

    .services {
        margin-bottom: 100px;
    }
}

@media (max-width: 768px) {
    .stats {
        padding-top: 140px;
    }

    .services {
        margin-bottom: 80px;
    }

    .stats-img {
        left: 45%;
        transform: translate(-50%, -50%);
    }

    .stats-img img {
        width: 120%;
    }
}



.stats h2 {
    font-weight: 400;
    margin-top: 20px;
    font-size: 24px;
}

.stats h1 {
    font-size: 70px;
    font-weight: 800;
    margin: 20px 0;
}

.stats-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.stat-bracket {
    font-size: 90px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-num {
    font-size: 72px;
    font-weight: 800;
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 6px;
    line-height: 1.3;
}

.stat-x {
    font-size: 28px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
}

/* -------------- RED BANNER BEFORE FAQ -------------- */

.banner {
    background: #ce232d;
    color: #fff;
    text-align: center;
    padding: 45px 0px 45px 0px;
    position: relative;
}

.banner-slider-wrapper {
    overflow: hidden;
    margin-top: 30px;
    width: 100%;
}

.banner-slider-track {
    display: flex;
    transition: transform 0.4s ease;
    align-items: flex-start;
}

.banner-slide {
    flex: 0 0 25%;
    padding: 0 8px;
    box-sizing: border-box;
}

.banner-slide img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    display: block;
}

/* -------------- HEART 3D SECTION -------------- */
.heart-3d-section {
    background: #fff;
    padding: 80px 40px;
}

.heart-3d-wrapper {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 160px;
    display: flex;
    justify-content: center;
}

.heart-3d-image {
    position: relative;
    width: 80%;
    max-width: 420px;
}

.heart-3d-image img {
    width: 100%;
    height: auto;
    display: block;
}

.heart-label {
    position: absolute;
    color: #000000;
    font-size: 21px;
    font-weight: 500;
    white-space: nowrap;
    cursor: pointer;
    transform: translateY(-50%);
    transition: color 0.2s;
}

.heart-label:hover {
    color: #ce232d;
}

.heart-label.left {
    right: calc(100% + 0px);
    text-align: right;
}

.heart-label.left_1 {
    right: calc(100% + -11px);
    text-align: left;
}

.heart-label.left_2 {
    right: calc(100% + -11px);
    text-align: left;
}

.heart-label.left_3 {
    right: calc(100% + -17px);
    text-align: left;
}

.heart-label.right {
    left: calc(100% + -10px);
    text-align: left;
}

.heart-label.right_1 {
    left: calc(100% + -11px);
    text-align: left;
}

.heart-label.right_2 {
    left: calc(100% + -22px);
    text-align: left;
}

@media (max-width: 900px) {
    .heart-3d-wrapper {
        padding: 0 110px;
    }
}

@media (max-width: 600px) {
    .heart-3d-section {
        padding: 60px 0;
    }

    .heart-3d-wrapper {
        padding: 0 72px;
    }

    .heart-label {
        font-size: 11px;
    }
}

@media (max-width: 420px) {
    .heart-3d-wrapper {
        padding: 0 58px;
    }

    .heart-label {
        font-size: 10px;
    }
}

/* -------------- LABEL MODAL -------------- */
.label-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 4000;
    justify-content: center;
    align-items: center;
}

.label-modal.active {
    display: flex;
}

.label-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.label-modal-content {
    position: relative;
    width: 380px;
    max-width: 90%;
    background: #ce232d;
    color: #fff;
    padding: 40px 28px 28px;
    z-index: 2;
    text-align: center;
}

.lm-close {
    position: absolute;
    top: 14px;
    left: 16px;
    background: none;
    border: none;
    color: #000000;
    font-size: 20px;
    font-weight: bolder;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.lm-heading {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.lm-divider {
    width: 55%;
    height: 1.5px;
    background: rgba(255, 255, 255, 0.45);
    margin: 0 auto 14px;
}

.lm-subheading {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 18px;
}

.lm-body {
    font-size: 12px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 28px;
}

.lm-source {
    font-size: 8px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
}

/* -------------- FAQ -------------- */

.faq {
    padding: 60px 40px;
}

.faq h2 {
    color: #ce232d;
    margin-bottom: 20px;
}

.faq-item {
    border-top: 2px solid #000;
    padding: 15px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.faq-answer {
    display: none;
    margin-top: 10px;
}

.faq-answer.active {
    display: block;
}

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

@media(max-width:768px) {

    /*.nav-links,
    .search-box {
        display: none;
    }

    .hamburger,
    .mobile-search {
        display: block;
    }

    .logo {
        margin: auto;
    }*/

    .hero-banner-section {
        width: 100%;
        line-height: 0;
        margin-top: 45px;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding-left: 0;
        padding-right: 0;
        height: auto;
    }

    .hero-left,
    .hero-right {
        width: 88%;
    }

    .hero-left img,
    .hero-right img {
        width: 100%;
        height: auto;
        object-fit: contain;
        display: block;
    }

    .services-container {
        flex-direction: column;
    }

    .services-icons {
        flex: 0 0 100%;
        grid-template-columns: repeat(3, 1fr);
    }

    .service-image {
        width: 100%;
        margin-top: 20px;
    }

    .stats h1 {
        font-size: 45px;
    }

    .stats-bottom {
        gap: 10px;
    }

    .stat-num {
        font-size: 48px;
    }

    .stat-bracket {
        font-size: 60px;
    }

    .stat-x {
        font-size: 20px;
    }

    .banner-slide {
        flex: 0 0 100%;
        padding: 0 16px;
    }

}

@media (max-width: 600px) {
    .services-container {
        gap: 16px;
        padding: 0 16px;
    }

    .services-icons {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .service-item {
        padding: 6px;
    }

    .service-item p {
        font-size: 15px;
    }

    .service-item img {
        width: 70px;
    }
}

@media (max-width: 420px) {
    .services-icons {
        grid-template-columns: repeat(3, 1fr);
    }

    .service-item {
        padding: 4px;
    }

    .service-item p {
        font-size: 14px;
    }

    .service-item img {
        width: 70px;
    }
}

/* Fix hero cropping on very narrow screens */
@media (max-width: 375px) {
    .hero {
        padding-left: 8px;
        padding-right: 8px;
        height: auto;
    }

    .hero-left img,
    .hero-right img {
        width: 100%;
        max-width: 100vw;
        height: auto;
        object-fit: contain;
        display: block;
        margin: 0 auto;
    }
}

/* -------- SLIDER -------- */

.slider-container {
    position: relative;
    margin-top: -125px;
    overflow: hidden;
    z-index: 1;
}

.slider-track {
    display: flex;
    transition: 0.5s ease;
}

.slide-item {
    flex: 0 0 25%;
    padding: 10px;
    cursor: pointer;
    text-align: center;
}

.slide-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

.slider-btn {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    color: black;
    border: none;
    padding: 5px;
    cursor: pointer;
    z-index: 10;
}

.prev {
    left: 0;
}

.next {
    right: 0;
}

/* Tablet */
@media (max-width: 992px) {
    .slide-item {
        flex: 0 0 50%;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .slide-item {
        flex: 0 0 100%;
    }
}


/* -------- MODAL FIXED CENTER -------- */

.topic-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 3000;

    /* display: flex; */
    justify-content: center;
    align-items: center;
}

.topic-modal.active {
    display: flex;
}

.topic-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.topic-modal-content {
    position: relative;
    width: 420px;
    max-width: 92%;
    background: #ce232d;
    color: white;
    padding: 60px 24px 28px;
    border-radius: 10px;
    text-align: center;
    z-index: 2;
    overflow: visible;
}

.topic-modal-content h2{
    font-size: 24px;
}

.close-modal {
    position: absolute;
    right: 15px;
    top: 10px;
    cursor: pointer;
}

@media (max-width: 768px) {
    #serviceText {
        font-size: 12px;
    }

    .slide-item img {
        width: 80%;
    }
}

@media (max-width: 600px) {
    #serviceText {
        font-size: 11px;
    }
}

@media (max-width: 420px) {
    #serviceText {
        font-size: 10px;
    }
}

@media (max-width: 768px) {
    .services-header h2 {
        font-size: 22px;
    }

    .stats h2 {
        font-size: 18px;
    }
}

@media (max-width: 420px) {
    .services-header h2 {
        font-size: 20px;
    }

    .stats h2 {
        font-size: 15px;
    }
}

@media (max-width: 600px) {
    .stat-num {
        font-size: 38px;
    }

    .stat-bracket {
        font-size: 48px;
    }

    .stat-x {
        font-size: 16px;
    }

    .stat-label {
        font-size: 11px;
    }
}

@media (max-width: 420px) {
    .stat-num {
        font-size: 30px;
    }

    .stat-bracket {
        font-size: 38px;
    }

    .stat-x {
        font-size: 13px;
    }

    .stat-label {
        font-size: 10px;
    }
}

/* -------------- DID YOU KNOW -------------- */
.did-you-know {
    text-align: center;
    color: #ce232d;
    font-size: 28px;
    font-weight: 700;
    padding: 20px 20px 10px;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .did-you-know {
        font-size: 22px;
    }
}

@media (max-width: 420px) {
    .did-you-know {
        font-size: 22px;
    }
}

/* -------------- FAQ RESPONSIVE -------------- */
@media (max-width: 768px) {
    .faq {
        padding: 40px 20px;
    }

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

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

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

@media (max-width: 420px) {
    .faq h2 {
        font-size: 18px;
    }

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

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

/* -------------- SLIDER SECTION RESPONSIVE -------------- */
@media (max-width: 768px) {
    .slider-intro h2 {
        font-size: 22px;
    }

    .slider-intro p {
        font-size: 14px;
    }

    .slider-intro {
        padding: 40px 20px 135px;
    }
}

@media (max-width: 420px) {
    .slider-intro h2 {
        font-size: 20px;
    }

    .slider-intro p {
        font-size: 15px;
    }

    .slider-intro {
        padding: 30px 16px 125px;
    }
}

/* -------------- HEART KE LIYE INTRO -------------- */
.hkl-intro {
    text-align: center;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.video-thumb-wrapper {
    position: relative;
    display: inline-block;
    max-width: 620px;
    width: 100%;
    cursor: pointer;
}

.video-thumb-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.play-btn-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: background 0.2s;
}

.video-thumb-wrapper:hover .play-btn-overlay {
    background: rgba(0, 0, 0, 0.4);
}

.play-btn-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.video-thumb-wrapper iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: none;
    border-radius: 12px;
    display: block;
}

.hkl-intro p {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.6;
    color: #222;
    max-width: 520px;
}

@media (max-width: 768px) {
    .hkl-intro {
        padding: 30px 0px 30px 0px;
        gap: 18px;
    }

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

    .hkl-intro p {
        font-size: 16px;
    }
}

@media (max-width: 420px) {
    .video-thumb-wrapper {
        width: 100%;
    }

    .hkl-intro p {
        font-size: 17px;
    }
}