/* PART 1 */

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

html,
body {

    margin: 0;
    padding: 0;

    overflow-x: hidden;

    width: 100%;
}


/* ========================= */
/* HERO SECTION */
/* ========================= */

.hero-section {



    background: linear-gradient(135deg,
            #f8f7ff 0%,
            #ffffff 45%,
            #f5f3ff 100%);

    width: 100%;

    justify-content: center;

    margin: 0;

    min-height: 100vh;

    padding-top: 10px;

    padding-bottom: 100px;

    display: flex;

    align-items: center;


}

/* ========================= */
/* BACKGROUND BLURS */
/* ========================= */

.hero-blur {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    z-index: 1;
}

.hero-blur-1 {
    width: 320px;
    height: 320px;
    /*  background: rgba(124, 58, 237, 0.15); */
    background: rgba(10, 75, 161, 0.12);
    top: -80px;
    left: -80px;
}

.hero-blur-2 {
    width: 280px;
    height: 280px;
    /*  background: rgba(99, 102, 241, 0.12); */
    background: rgba(24, 165, 88, 0.10);

    bottom: -80px;
    right: -50px;
}


/* ========================= */
/* HERO CONTAINER */
/* ========================= */

.hero-container {

    max-width: 1600px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}


/* ========================= */
/* LEFT */
/* ========================= */

.hero-left {
    flex: 0.85;
    min-width: 0;
}



/* badge */

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 40px;
    /*
    background: rgba(124, 58, 237, 0.08);
    color: #0369a1;
    */
    background: rgba(10, 75, 161, 0.08);
    color: #0A4BA1;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 18px;
}

/* badge dot */

.badge-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #18A558;
    /*   background: #0284c7; */
}




/* PART 2 */


/* ========================= */
/* TITLE */
/* ========================= */

.hero-left h1 {
    line-height: 1.1;
    font-size: clamp(36px, 4.8vw, 54px);
    margin-bottom: 14px;
    color: #111827;
    font-weight: 700;
    letter-spacing: -2px;
}

.hero-left h1 span {
     background:
         #E53935;
      /* 
    background:
        linear-gradient(135deg,
            #0A4BA1 0%,
            #18A558 100%);
    background:
        linear-gradient(
            135deg,
            #0284c7,
            #2563eb
        );
        */
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-left h1 .care {
    background:
        #0A4BA1;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ========================= */
/* DESCRIPTION */
/* ========================= */

.hero-left p {

    color: #6b7280;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 20px;
    max-width: 540px;
}

/* ========================= */
/* BUTTONS */
/* ========================= */

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 30px;
}

/* primary */

.primary-btn {
    padding: 16px 34px;
    border: none;
    border-radius: 50px;
    /*
    background:
        linear-gradient(
            135deg,
            #0284c7,
            #2563eb
        );
        box-shadow:
        0 18px 35px rgba(79, 70, 229, 0.2);
        */
    background:
        linear-gradient(135deg,
            #0A4BA1,
            #18A558);
    color: white;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.35s ease;
    box-shadow:
        0 18px 35px rgba(10, 75, 161, 0.20);
}

.primary-btn:hover {
    transform: translateY(-4px);
    box-shadow:
        0 24px 40px rgba(10, 75, 161, 0.28);
    /* box-shadow:
        0 24px 40px rgba(79, 70, 229, 0.28); */
}

/* secondary */

.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 30px;
    border-radius: 50px;
    border: 2px solid #0A4BA1;
    background: #ffffff;
    color: #0A4BA1;
    /*  border: 1px solid rgba(55, 58, 248, 0.15);
    background: white;
    color: #374151;
      transition: all 0.3s ease; */
    box-shadow:
        0 6px 18px rgba(10, 75, 161, 0.12);

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;

}

.secondary-btn:hover {
    /*
    border-color: #18A558;
    color: #0A4BA1;
    border-color: #0284c7;
    color: #0284c7; */
    transform: translateY(-3px);

    background: #0A4BA1;
    color: #ffffff;

    border-color: #0A4BA1;

    box-shadow:
        0 10px 24px rgba(10, 75, 161, 0.22);
}

.secondary-btn i {
    margin-right: 8px;
    font-size: 14px;
}






/* PART 3 */

/* ========================= */
/* USERS */
/* ========================= */

.hero-users {
    display: flex;
    align-items: center;
    gap: 18px;
}

/* avatars */

.user-avatars {
    display: flex;
}

.user-avatars img {
    width: 52px;
    height: 52px;

    border-radius: 50%;

    object-fit: cover;

    border: 3px solid white;

    margin-left: -12px;
}

.user-avatars img:first-child {
    margin-left: 0;
}

/* content */

.user-content h4 {
    font-size: 16px;
    color: #111827;

    margin-bottom: 5px;
}

.user-content p {
    font-size: 14px;
    color: #6b7280;

    margin: 0;
}

.prescription-header {

    background: #082b74;

    color: white;

    padding: 12px 16px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    font-size: 14px;

    font-weight: 600;
}

.close-btn {

    font-size: 12px;

    opacity: .8;
}

.prescription-body {

    padding: 16px;
}

.rx-wave {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 18px;
}

.rx-text {

    font-size: 42px;

    font-weight: 700;

    color: #111827;
}

.wave {

    display: flex;

    align-items: center;

    gap: 3px;
}

.wave span {

    width: 3px;

    background: #9c7cff;

    border-radius: 10px;
}

.wave span:nth-child(1) {
    height: 10px;
}

.wave span:nth-child(2) {
    height: 20px;
}

.wave span:nth-child(3) {
    height: 34px;
}

.wave span:nth-child(4) {
    height: 18px;
}

.wave span:nth-child(5) {
    height: 28px;
}

.wave span:nth-child(6) {
    height: 36px;
}

.wave span:nth-child(7) {
    height: 16px;
}

.wave span:nth-child(8) {
    height: 12px;
}

.medicine-list {

    list-style: none;

    padding: 0;

    margin: 0 0 18px;
}

.medicine-list li {

    position: relative;

    padding-left: 22px;

    margin-bottom: 10px;

    font-size: 12px;

    color: #475569;
}

.medicine-list li::before {

    content: "✔";

    position: absolute;

    left: 0;

    color: #2563eb;

    font-weight: bold;
}

.signature {

    margin-top: 15px;

    text-align: right;
}

.sign-line {

    width: 80px;

    height: 2px;

    background: #7da8ff;

    margin-left: auto;

    margin-bottom: 6px;

    transform: rotate(-8deg);
}

.signature p {

    font-size: 11px;

    color: #374151;

    font-weight: 600;
}


.appointment-row {

    display: flex;

    align-items: center;

    margin-top: 18px;

    gap: 10px;
}

.appointment-row img {

    width: 40px;

    height: 40px;

    border-radius: 50%;

    object-fit: cover;
}

.appointment-row h5 {

    margin: 0;

    font-size: 13px;
}

.appointment-row small {

    color: #22c55e;

    font-size: 11px;
}

.appointment-row span {

    margin-left: auto;

    font-size: 11px;

    color: #64748b;
}


.graph-top {

    display: flex;

    justify-content: space-between;

    align-items: center;
    width: 100%;
    height: 100px;
}

.graph-top span {

    font-size: 11px;

    color: #64748b;

    background: #f3f4f6;

    padding: 4px 8px;

    border-radius: 8px;
}

.graph-days {

    display: flex;

    justify-content: space-between;

    margin-top: 10px;
}

.graph-days small {

    font-size: 10px;

    color: #94a3b8;
}


/* ========================= */
/* RIGHT */
/* ========================= */

.hero-right {
    flex: 1.15;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-dashboard {
    position: relative;
    width: 700px;
    height: 470px;
}


.dashboard-ui {

    position: absolute;

    top: 0;
    right: 0;

    width: 710px;
    height: 570px;

    border-radius: 24px;

    background: #fff;

    overflow: hidden;

    display: flex;

    box-shadow: 0 20px 45px rgba(70, 100, 220, .15);
}


.dashboard-sidebar {

    width: 115px;

    background: #082b74;

    padding: 16px 12px;

    background: #082b74;

    color: white;
}

.dashboard-sidebar li {

    font-size: 11px;

    padding: 9px 10px;

    margin-bottom: 4px;
}

.dashboard-sidebar li.active {

    background: #145cff;
}

/*
.logo-box{
    background:#2563eb;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:bold;
     width:42px;
    height:42px;
    font-size:20px;
    margin-bottom:18px;
}
    */

.logo-box {
    position: relative;

    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;
    border-radius: 12px;
    color: #0877c9;
    border: 1px solid rgba(14, 99, 190, 0.12);
    box-shadow: 0 6px 18px rgba(14, 99, 190, 0.10);

    margin-bottom: 18px;
}

.logo-d {
    font-size: 28px;
    font-weight: 450;
    line-height: 1;

    background: linear-gradient(135deg,
            #0a4ba1 0%,
            #0877c9 50%,
            #18a558 100%);

    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-c {
    position: absolute;
    z-index: 1;

    font-size: 27px;
    font-weight: 400;
    line-height: 1;

    color: #18a558;

    transform: translate(7px, 4px);
}


.logo-plus {
    position: absolute;

    top: 3px;
    left: 9px;

    color: #ef4444;

    font-size: 18px;
    font-weight: 900;
    line-height: 1;
}

.dashboard-sidebar ul {

    list-style: none;

    padding: 0;
}

.dashboard-sidebar li {

    padding: 10px 0;

    font-size: 14px;
}

.dashboard-sidebar .active {

    color: #67b7ff;
}

.dashboard-main {

    flex: 1;

    padding: 18px;
}

.dashboard-main h5 {

    color: #666;

    font-size: 14px;

    margin-bottom: 2px;
}

.dashboard-main h2 {

    font-size: 18px;

    margin-bottom: 14px;
}

.top-cards {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 12px;
}

.top-card {

    background: #f8fafc;
    padding: 10px;

    min-height: 65px;

    border-radius: 12px;
}

.top-card span {

    font-size: 10px;

    color: #666;
}

.top-card h3 {

    font-size: 18px;

    margin-top: 8px;
}

.bottom-row {

    display: flex;

    gap: 15px;

    margin-top: 20px;
}

.appointment-card,
.graph-card {

    flex: 1;

    background: #f7f9fc;

    padding: 12px;

    border-radius: 12px;
}

.graph-bars {

    display: flex;

    align-items: flex-end;

    gap: 6px;

    height: 80px;

    margin-top: 15px;
}

.graph-bars span {

    width: 12px;

    background: #2563eb;

    border-radius: 6px;
}

.graph-bars span:nth-child(1) {
    height: 40px;
}

.graph-bars span:nth-child(2) {
    height: 70px;
}

.graph-bars span:nth-child(3) {
    height: 100px;
}

.graph-bars span:nth-child(4) {
    height: 60px;
}

.graph-bars span:nth-child(5) {
    height: 90px;
}

.graph-bars span:nth-child(6) {
    height: 45px;
}

.hero-doctor {
    position: absolute;

    width: 500px;

    left: -190px;

    bottom: -105px;

    z-index: 50;
}


.prescription-card {
    position: absolute;
    width: 185px;
    height: 298px;
    right: -20px;
    bottom: -20px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    padding: 0;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .18);
    z-index: 30;
}

.voice-btn {
    position: absolute;
    left: 480px;
    bottom: -25px;
    right: 165px;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2870ff, #0b46df);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 30px;
    z-index: 50;
    box-shadow:
        0 0 0 8px rgba(59, 130, 246, .18),
        0 0 0 16px rgba(59, 130, 246, .08),
        0 15px 30px rgba(37, 99, 235, .30);
}





/* ========================= */
/* AI INSIGHT */
/* ========================= */

.ai-insight-card {
    display: flex;
    gap: 16px;

    padding: 22px;

    border-radius: 24px;

    background:
        linear-gradient(135deg,
            #0284c7,
            #2563eb);

    color: white;

    margin-bottom: 30px;
}

.ai-icon {
    width: 50px;
    height: 50px;

    border-radius: 16px;

    background: rgba(255, 255, 255, 0.15);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 22px;
}

.ai-insight-card h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.ai-insight-card p {
    font-size: 14px;
    line-height: 1.7;

    color: rgba(255, 255, 255, 0.85);
}

/* ========================= */
/* APPOINTMENTS */
/* ========================= */

.appointment-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.appointment-item {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 18px;

    border-radius: 20px;

    background: #ffffff;

    border: 1px solid #f3f4f6;
}

.appointment-avatar {
    width: 48px;
    height: 48px;

    border-radius: 14px;

    background:
        linear-gradient(135deg,
            #0284c7,
            #2563eb);

    color: white;

    display: flex;
    align-items: center;
    justify-content: center;

    font-weight: 600;
}

.appointment-item h5 {
    font-size: 15px;
    color: #111827;

    margin-bottom: 5px;
}

.appointment-item p {
    font-size: 13px;
    color: #6b7280;
}

.appointment-item span {
    font-size: 13px;
    font-weight: 600;
    color: #0284c7;
}









/* PART 5 */

/* ========================= */
/* FLOATING CARD */
/* ========================= */

.floating-card {
    position: absolute;

    bottom: -20px;
    left: -60px;

    display: flex;
    gap: 16px;

    padding: 20px 22px;

    border-radius: 24px;

    background: white;

    box-shadow:
        0 20px 40px rgba(79, 70, 229, 0.12);

    z-index: 3;
}

.floating-icon {
    width: 52px;
    height: 52px;

    border-radius: 16px;

    background:
        linear-gradient(135deg,
            #0284c7,
            #2563eb);

    display: flex;
    align-items: center;
    justify-content: center;

    color: white;

    font-size: 22px;
}

.floating-card h4 {
    font-size: 16px;
    color: #111827;

    margin-bottom: 5px;
}

.floating-card p {
    font-size: 13px;
    color: #6b7280;
}

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

@media (max-width: 1200px) {

    .hero-left h1 {
        font-size: 56px;
    }
}

@media (max-width: 992px) {

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

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

    .hero-left h1 {
        font-size: 48px;
    }

    .floating-card {
        left: 0;
    }
}

@media (max-width: 768px) {

    .hero-section {
        padding: 70px 5% 90px;
    }

    .hero-left h1 {
        font-size: 40px;
    }

    .hero-left p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;
    }

    .dashboard-card {
        padding: 25px;
    }

    .dashboard-stats {
        flex-direction: column;
    }

    .floating-card {
        position: relative;
        left: 0;
        bottom: 0;

        margin-top: 25px;
    }
}

@media (max-width: 600px) {

    .hero-left h1 {
        font-size: 34px;
    }

    .hero-badge {
        font-size: 12px;
    }

    .dashboard-top {
        flex-direction: column;
        gap: 18px;
    }

    .appointment-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .dashboard-stats {
        grid-template-columns: 1fr;
    }
}







/* PART 6 */

/* ========================= */
/* HEALTHCARE SECTION */
/* ========================= */

.healthcare-section {
    padding: 18px 7% 28px;
    /*  padding: 50px 7% 70px; */
    background: #ffffff;
}


/* CONTAINER */

.healthcare-container {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 28px;
    align-items: stretch;
}


/* LEFT SIDE */

.healthcare-left {
    /*   background: #f8fbff;
    border-radius: 28px;
    padding: 40px;
    */
    background: #f8fbff;
    border-radius: 24px;
    padding: 25px;
    border: 1px solid rgba(37, 99, 235, 0.10);
}

/*
.healthcare-left, .security-card { 
    padding: 34px; 
    border: 1px solid rgba(37, 99, 235, 0.08); 
}
    */

.healthcare-left h2 {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 28px;
    /* background: linear-gradient(135deg, #0284c7, #2563eb); 
    background: linear-gradient(135deg,
            #E53935 0%,
            #2563EB 50%,
            #18A558 100%);*/
    background:#E53935;
    
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.healthcare-left h2 .type{
    background:#0a4ba1;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.healthcare-left h2 .hcp{
    background:#18A558;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* GRID */

.healthcare-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}


/* ITEM */

.health-item {
    text-align: center;
}

.health-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    margin: 0 auto 5px;
    /*  margin: auto; 
    margin-bottom: 15px;
    transition: 0.3s ease; */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition:
        transform 0.3s ease,
        ox-shadow 0.3s ease;
}

.health-item:hover .health-icon {
    transform: translateY(-8px) scale(1.05);
    /* transform: translateY(-5px); */
    box-shadow:
        0 10px 22px rgba(37, 99, 235, 0.12);
}

.health-item p {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    line-height: 1.4;
    margin: 0;
}


/* ICON COLORS 

.blue {
    background: #dbeafe;
}

.cyan {
    background: #dff8ff;
}

.green {
    background: #dcfce7;
}

.pink {
    background: #ffe4e6;
}

.purple {
    background: #f3e8ff;
}

.orange {
    background: #ffedd5;
}

.peach {
    background: #fde7e7;
}
    */

/* =========================================================
   BRAND ICON COLORS
   RED → BLUE → GREEN
========================================================= */

/* Primary Red */
.blue {
    background: #e8f1ff;
    color: #2563EB;
}

/* Blue */
.cyan {
    background: #e0f2fe;
    color: #0284C7;
}

/* Green */
.green {
    background: #dcfce7;
    color: #18A558;
}

/* Red */
.pink {
    background: #fee2e2;
    color: #E53935;
}

/* Blue */
.purple {
    background: #e0e7ff;
    color: #2563EB;
}

/* Green */
.orange {
    background: #dcfce7;
    color: #16A34A;
}

/* Red */
.peach {
    background: #fee2e2;
    color: #E53935;
}



/* SECURITY CARD */

.security-card {
    background:
        linear-gradient(135deg,
            #fff8f8 0%,
            #f8fbff 50%,
            #f0fdf4 100%);
    border-radius: 24px;
    padding: 30px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;

    border: 1px solid rgba(37, 99, 235, 0.10);

    box-shadow:
        0 10px 28px rgba(37, 99, 235, 0.07);
}


/* CONTENT */

.security-content h3 {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    /*  margin-bottom: 24px; 
  background: linear-gradient(135deg, #0284c7, #2563eb);
  background:
        linear-gradient(135deg,
            #E53935 0%,
            #2563EB 50%,
            #18A558 100%);*/
    margin: 0 0 20px;
    background:#0a4ba1;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.security-content h3 .security {
    background:#E53935;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.security-content h3 .compliance {
    background:#18A558;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


.security-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.security-content ul li {
    margin-bottom: 13px;
    line-height: 1.3;
    color: #475569;
    font-size: 14px;
    font-weight: 500;
}

.security-content ul li:last-child {
    margin-bottom: 0;
}

.security-content ul li::before {
    content: "✔";
    /* color: #2563eb; */
    color: #18A558;
    font-weight: bold;
    margin-right: 9px;
}




/* PART 7 */

/* SHIELD */

.security-image {
    width: 160px;
    height: 160px;

    border-radius: 50%;
    background: white;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 80px;

    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.08);
}

/* =========================================================
   HEALTHCARE SECTION - RESPONSIVE
========================================================= */


/* =========================================================
   TABLET / SMALL LAPTOP
   769px - 992px
========================================================= */

@media (max-width: 992px) {

    body.landing-mode2 .healthcare-section {
        padding-top: 45px;
        padding-bottom: 50px;
    }

    body.landing-mode2 .healthcare-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    body.landing-mode2 .healthcare-left {
        padding: 26px;
    }

    body.landing-mode2 .healthcare-left h2 {
        font-size: 28px;
        line-height: 1.25;
        margin-bottom: 22px;
    }

    /*
       Keep 4 healthcare items in one row
    */
    body.landing-mode2 .healthcare-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 18px;
    }

    body.landing-mode2 .health-icon {
        width: 62px;
        height: 62px;
        font-size: 26px;
        border-radius: 16px;
    }

    body.landing-mode2 .health-item p {
        font-size: 13px;
    }

    body.landing-mode2 .security-card {
        padding: 26px;
        gap: 20px;
    }

    body.landing-mode2 .security-content h3 {
        font-size: 25px;
        margin-bottom: 17px;
    }

    body.landing-mode2 .security-content ul li {
        font-size: 13px;
        margin-bottom: 10px;
    }
}


/* =========================================================
   MOBILE
   768px and below
========================================================= */

@media (max-width: 768px) {

    body.landing-mode2 .healthcare-section {
        padding-top: 42px;
        padding-bottom: 45px;
    }

    body.landing-mode2 .healthcare-container {
        gap: 16px;
    }


    /* =========================
       HEALTHCARE CARD
    ========================= */

    body.landing-mode2 .healthcare-left {
        padding: 20px 14px;
        border-radius: 20px;
    }

    body.landing-mode2 .healthcare-left h2 {
        font-size: 23px;
        line-height: 1.25;
        margin-bottom: 20px;
        text-align: center;
    }


    /* =========================
       HEALTHCARE GRID
       3 ITEMS PER ROW
    ========================= */

    body.landing-mode2 .healthcare-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px 8px;
    }


    /* =========================
       ICON
    ========================= */

    body.landing-mode2 .health-icon {
        width: 54px;
        height: 54px;

        border-radius: 15px;

        font-size: 23px;

        margin-bottom: 7px;
    }


    /* =========================
       LABEL
    ========================= */

    body.landing-mode2 .health-item p {
        font-size: 11px;
        line-height: 1.3;
        font-weight: 600;
    }


    /* =========================
       SECURITY CARD
    ========================= */

    body.landing-mode2 .security-card {
        padding: 22px 18px;

        flex-direction: column;

        text-align: center;

        gap: 15px;

        border-radius: 20px;
    }

    body.landing-mode2 .security-content {
        width: 100%;
    }

    body.landing-mode2 .security-content h3 {
        font-size: 22px;
        line-height: 1.3;
        margin-bottom: 15px;
    }


    /* =========================
       SECURITY LIST
    ========================= */

    body.landing-mode2 .security-content ul {
        text-align: left;
    }

    body.landing-mode2 .security-content ul li {
        font-size: 12px;
        line-height: 1.4;
        margin-bottom: 9px;
    }

    body.landing-mode2 .security-content ul li::before {
        margin-right: 7px;
    }


    /* =========================
       SECURITY ICON
    ========================= */

    body.landing-mode2 .security-image {
        font-size: 38px;
    }
}


/* =========================================================
   VERY SMALL MOBILE
   380px and below
========================================================= */

@media (max-width: 380px) {

    body.landing-mode2 .healthcare-section {
        padding-top: 36px;
        padding-bottom: 40px;
    }

    body.landing-mode2 .healthcare-left {
        padding: 18px 10px;
    }

    body.landing-mode2 .healthcare-left h2 {
        font-size: 20px;
        margin-bottom: 18px;
    }

    body.landing-mode2 .healthcare-grid {
        gap: 15px 5px;
    }

    body.landing-mode2 .health-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
        border-radius: 13px;
    }

    body.landing-mode2 .health-item p {
        font-size: 10px;
    }

    body.landing-mode2 .security-card {
        padding: 20px 14px;
    }

    body.landing-mode2 .security-content h3 {
        font-size: 20px;
    }

    body.landing-mode2 .security-content ul li {
        font-size: 11px;
    }
}

/* ========================= */
/* STATS SECTION */
/* ========================= */

.stats-section {
    padding: 8px 7% 14px;
    background: #ffffff;
}

/* CONTAINER */

.stats-container {

    background: linear-gradient(135deg,
            #0f3d91,
            #2563eb);

    /*   background:
        linear-gradient(
            135deg,
            #E53935 0%,
            #2563EB 50%,
            #18A558 100%
        ); */
    border-radius: 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.12);
}


/* BOX */

.stat-box {
    padding: 18px 18px;
    gap: 12px;
    display: flex;
    align-items: center;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    transition: 0.3s ease;
}

.stat-box:last-child {
    border-right: none;
}

.stat-box:hover {
    background: rgba(255, 255, 255, 0.08);
}


/* ICON */

.stat-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    font-size: 24px;
    /* background: rgba(255,255,255,0.12);
    color: white; */
    background: rgba(255, 255, 255, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
}


/* CONTENT */

.stat-content h2 {
    color: #ffffff;
    margin-bottom: 4px;
    font-weight: 700;
    line-height: 1;
    font-size: 27px;
    margin: 0 0 3px;
}

.stat-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    line-height: 1.35;
    max-width: 150px;
}


/* RESPONSIVE */

@media (max-width: 992px) {

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-box:nth-child(2) {
        border-right: none;
    }

    .stats-section {
        padding-left: 5%;
        padding-right: 5%;
    }

    .stat-box:nth-child(1),
    .stat-box:nth-child(2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

}


@media (max-width: 768px) {

    .stats-section {
        padding: 10px 5% 70px;
    }

   /* .stats-container {
        grid-template-columns: 1fr;
    } */

    .stat-box {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .stat-box:last-child {
        border-bottom: none;
    }

    .stat-content h2 {
        font-size: 32px;
    }

}

/* =========================================================
   SMALL TABLET
========================================================= */

@media (max-width: 700px) {

    .stats-section {
        padding: 10px 4% 18px;
    }

    .stat-box {
        padding: 20px 16px;
        gap: 12px;
    }

    .stat-icon {
        width: 46px;
        height: 46px;

        border-radius: 12px;
        font-size: 20px;
    }

    .stat-content h2 {
        font-size: 26px;
    }

    .stat-content p {
        font-size: 12px;
        max-width: 130px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 520px) {

    .stats-section {
        padding: 8px 14px 18px;
    }

    .stats-container {
     grid-template-columns: 1fr;

        border-radius: 18px;
    }

    .stat-box {
        padding: 18px 20px;

        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .stat-box:nth-child(2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .stat-box:last-child {
        border-bottom: none;
    }

    .stat-icon {
        width: 44px;
        height: 44px;

        border-radius: 11px;
        font-size: 19px;
    }

    .stat-content h2 {
        font-size: 25px;
    }

    .stat-content p {
        font-size: 13px;
        max-width: none;
    }
}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 360px) {

    .stats-section {
        padding-left: 10px;
        padding-right: 10px;
    }

    .stat-box {
        padding: 16px;
    }

    .stat-content h2 {
        font-size: 23px;
    }

    .stat-content p {
        font-size: 12px;
    }
}

.stat-box:nth-child(1),
.stat-box:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

/* PART 9 */


/* =========================
   FEATURES SECTION
========================= */
.carousel-features-section {
    /* min-height: calc(100vh - 80px); */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 22px 0 24px;
    /*   background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
 padding: 40px 0; */
    background:
        linear-gradient(180deg,
            #F8FBFF 0%,
            #FFFFFF 55%,
            #F0FDF4 100%);
    /*  overflow: visible; */
}

/* =========================
   SECTION HEADER
========================= */

.carousel-section-header {
    max-width: 750px;
    margin: 0 auto 10px;
    text-align: center;
}

.carousel-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    /*
    background: #eef5ff;
    color: #5a6cff;
    */
    background: rgba(10, 75, 161, 0.08);
    color: #0A4BA1;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.carousel-section-badge-dot {
    width: 10px;
    height: 10px;
    /*background: #5a6cff;*/
    background: #18A558;
    border-radius: 50%;
}

.carousel-section-header h2 {
    font-size: 40px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}

.carousel-section-header h2 .health{
    -webkit-text-fill-color: #18A558;
}

.carousel-section-header h2 span {
    background:#0A4BA1;
    /*color: #5a6cff;
    background:
        linear-gradient(135deg,
            #0A4BA1 0%,
            #0D63D4 50%,
            #18A558 100%); */
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}



.carousel-section-header p {
    font-size: 16px;
    line-height: 1.6;
    color: #777;
    margin-bottom: 10px;
}







/* PART 10 */
/* =========================
   CAROUSEL
========================= */

#featureCarousel {
    position: relative;
    padding: 0 35px;
}

#featureCarousel .carousel-inner {
    overflow: hidden;
}

#featureCarousel .carousel-item {
    transition: transform .7s ease-in-out;
}

/* =========================
   FEATURE CARD
========================= */

.carousel-feature-card {
    border-radius: 22px;
    overflow: hidden;
    background: #FFFFFF;
    box-shadow: 0 15px 40px rgba(10, 75, 161, 0.08);
    transition: .35s;
    height: 100%;
    position: relative;
    max-width: 590px;
    margin: 0 auto;
}

.carousel-feature-card:hover {
    transform: translateY(-12px);
    /*   box-shadow: 0 25px 50px rgba(90,108,255,.18); */
    box-shadow:
        0 25px 50px rgba(10, 75, 161, 0.18);
}

.carousel-feature-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.carousel-feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.carousel-feature-card:hover img {
    transform: scale(1.08);
}

.carousel-feature-overlay {
    position: absolute;
    inset: 0;
    /*background: linear-gradient(to top,
            rgba(0,0,0,.55),
            rgba(0,0,0,.05)); */
    background:
        linear-gradient(to top,
            rgba(10, 75, 161, 0.55),
            rgba(10, 75, 161, 0.05));
}

.carousel-feature-content {
    padding: 20px;
}

.carousel-feature-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 12px 0 8px;
    color: #222;
}

.carousel-feature-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.carousel-feature-content a {
    text-decoration: none;
    /* color: #5a6cff; */
    color: #0A4BA1;
    font-weight: 600;
    display: inline-flex;
    gap: 8px;
    align-items: center;
    content: fixed;
}

.carousel-feature-content a:hover {
    gap: 14px;
    color: #18A558;
    transition: .3s;
}

/* =========================
   ICONS
========================= */

.carousel-feature-icon {
    width: 35px;
    height: 35px;
    border-radius: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    /*   color: #fff;
    background: linear-gradient(135deg,#5a6cff,#7d8cff); */
    color: #FFFFFF;
    background:
        linear-gradient(135deg,
            #0A4BA1,
            #0D63D4);
    margin-bottom: 4px;
}

.orange-icon {
    /*  background: linear-gradient(135deg,#ff9d00,#ffb84d); */
    background:
        linear-gradient(135deg,
            #18A558,
            #2FCF76);
}

.blue-icon {
    /* background: linear-gradient(135deg,#00b7ff,#4fd2ff); */
    background:
        linear-gradient(135deg,
            #0A4BA1,
            #1677D2);
}

.pink-icon {
    /* background: linear-gradient(135deg,#ff4d88,#ff79aa); */
    background:
        linear-gradient(135deg,
            #E53935,
            #F05A56);
}

.purple-icon {
    /* background: linear-gradient(135deg,#7a5cff,#9d84ff); */
    background:
        linear-gradient(135deg,
            #0D63D4,
            #18A558);
}

.cyan-icon {
    /* background: linear-gradient(135deg,#00c9c8,#42e6e5); */
    background:
        linear-gradient(135deg,
            #E53935,
            #0D63D4);
}








/* PART 11 */

/* =========================
   COMING SOON BADGE
========================= */

.carousel-coming-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 5;
    background: #ff6b6b;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: 30px;
}

/* =========================
   FEATURED CARD
========================= */

.carousel-featured-card {
    border: 2px solid rgba(90, 108, 255, .15);
}

/* =========================
   CAROUSEL BUTTONS
========================= */

#featureCarousel .carousel-control-prev,
#featureCarousel .carousel-control-next {
    width: 46px;
    height: 46px;
    top: 50%;
    transform: translateY(-50%);
    /*  background: #fff;
    box-shadow: 0 8px 25px rgba(0,0,0,.12); */
    border-radius: 50%;
    opacity: 1;
    box-shadow: 0 8px 24px rgba(229, 57, 53, 0.16);
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

#featureCarousel .carousel-control-prev {
    left: -8px;
}

#featureCarousel .carousel-control-next {
    right: -8px;
}

#featureCarousel .carousel-control-prev-icon,
#featureCarousel .carousel-control-next-icon {
    filter: invert(40%);
}

#featureCarousel .carousel-control-prev:hover,
#featureCarousel .carousel-control-next:hover {
    background: #E53935;
    box-shadow: 0 10px 25px rgba(229, 57, 53, 0.25);
}

#featureCarousel .carousel-control-prev i,
#featureCarousel .carousel-control-next i {
    color: #E53935;
    font-size: 20px;
}

#featureCarousel .carousel-control-prev:hover i,
#featureCarousel .carousel-control-next:hover i {
    color: #FFFFFF;
}


#featureCarousel {
    width: 92%;
    margin: 0 auto;
    padding: 0 70px;
}

.col-lg-4,
.col-md-4 {
    padding: 0 12px;
}


/* =========================================================
   FEATURE CAROUSEL - RESPONSIVE
   3 CARDS IN ONE ROW ON ALL DEVICES
========================================================= */


/* =========================
   LARGE LAPTOP / DESKTOP
   1200px+
========================= */

body.landing-mode2 .carousel-features-section {
    padding: 70px 24px;
}

body.landing-mode2 #featureCarousel {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

body.landing-mode2 .carousel-section-header {
    max-width: 850px;
    margin: 0 auto 40px;
    text-align: center;
}

body.landing-mode2 .carousel-section-header h2 {
    font-size: clamp(32px, 3vw, 42px);
    line-height: 1.2;
}

body.landing-mode2 .carousel-section-header p {
    font-size: 16px;
    line-height: 1.6;
}

body.landing-mode2 .carousel-feature-image {
    height: 210px;
}

body.landing-mode2 .carousel-feature-content {
    padding: 24px;
}


/* =========================================================
   TABLET
   768px - 1199px
========================================================= */

@media (max-width: 1199px) {

    body.landing-mode2 .carousel-features-section {
        padding: 60px 20px;
    }

    body.landing-mode2 #featureCarousel {
        padding: 0 25px;
    }

    body.landing-mode2 .carousel-section-header {
        margin-bottom: 32px;
    }

    body.landing-mode2 .carousel-section-header h2 {
        font-size: 34px;
    }

    body.landing-mode2 .carousel-section-header p {
        font-size: 15px;
    }

    /*
       IMPORTANT:
       Keep all 3 cards in one row.
    */
    body.landing-mode2 #featureCarousel .row {
        display: flex;
        flex-wrap: nowrap;
        gap: 16px;
        margin-left: 0;
        margin-right: 0;
    }

    body.landing-mode2 #featureCarousel .col-md-4 {
        flex: 0 0 calc((100% - 32px) / 3);
        width: calc((100% - 32px) / 3);
        max-width: calc((100% - 32px) / 3);
        padding-left: 0;
        padding-right: 0;
    }

    body.landing-mode2 .carousel-feature-image {
        height: 180px;
    }

    body.landing-mode2 .carousel-feature-content {
        padding: 20px;
    }

    body.landing-mode2 .carousel-feature-content h3 {
        font-size: 19px;
        line-height: 1.3;
    }

    body.landing-mode2 .carousel-feature-content p {
        font-size: 14px;
        line-height: 1.5;
    }
}


/* =========================================================
   MOBILE
   Below 768px
========================================================= */

@media (max-width: 767px) {

    body.landing-mode2 .carousel-features-section {
        padding: 45px 10px;
    }

    body.landing-mode2 .carousel-section-header {
        padding: 0 8px;
        margin-bottom: 16px;
    }

    body.landing-mode2 .carousel-section-header h2 {
        font-size: 24px;
        line-height: 1.22;
        margin-bottom: 8px;
    }

    body.landing-mode2 .carousel-section-header p {
        font-size: 12px;
        line-height: 1.45;
        margin-bottom: 0;
    }

    body.landing-mode2 .carousel-section-badge {
        font-size: 10px;
        padding: 5px 10px;
        margin-bottom: 7px;
    }


    /* =====================================
       KEEP 3 CARDS IN ONE ROW
    ===================================== */

    body.landing-mode2 #featureCarousel {
        position: relative;
        padding: 0 16px;
    }

    body.landing-mode2 #featureCarousel .row {
        display: flex;
        flex-wrap: nowrap;
        gap: 8px;
        margin: 0;
    }

    body.landing-mode2 #featureCarousel .col-md-4 {
        flex: 0 0 calc((100% - 16px) / 3);
        width: calc((100% - 16px) / 3);
        max-width: calc((100% - 16px) / 3);
        padding: 0;
    }


    /* =====================================
       CARD
    ===================================== */

    body.landing-mode2 .carousel-feature-card {
        width: 100%;
        border-radius: 11px;
        overflow: hidden;
    }


    /* =====================================
       IMAGE
    ===================================== */

    body.landing-mode2 .carousel-feature-image {
        height: 92px;
    }

    body.landing-mode2 .carousel-feature-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }


    /* =====================================
       CONTENT
    ===================================== */

    body.landing-mode2 .carousel-feature-content {
        padding: 9px 7px 10px;
    }


    /* =====================================
       ICON
    ===================================== */

    body.landing-mode2 .carousel-feature-icon {
        width: 29px;
        height: 29px;
        font-size: 12px;
        margin-bottom: 6px;
    }


    /* =====================================
       TITLE
    ===================================== */

    body.landing-mode2 .carousel-feature-content h3 {
        font-size: 11px;
        line-height: 1.25;
        margin-bottom: 5px;
    }


    /* =====================================
       DESCRIPTION
    ===================================== */

    body.landing-mode2 .carousel-feature-content p {
        font-size: 9px;
        line-height: 1.35;
        margin-bottom: 7px;
    }


    /* =====================================
       LINK
    ===================================== */

    body.landing-mode2 .carousel-feature-content a {
        font-size: 9px;
        line-height: 1.3;
    }

    body.landing-mode2 .carousel-feature-content a i {
        font-size: 7px;
    }


    /* =====================================
       CAROUSEL ARROWS
    ===================================== */

    body.landing-mode2 #featureCarousel .carousel-control-prev,
    body.landing-mode2 #featureCarousel .carousel-control-next {
        display: flex;
        position: absolute;

        top: 50%;
        transform: translateY(-50%);

        width: 24px;
        height: 24px;

        border-radius: 50%;

        background: #ffffff;

        border: 1px solid #dbeafe;

        box-shadow: 0 3px 10px rgba(37, 99, 235, 0.15);

        opacity: 1;

        align-items: center;
        justify-content: center;

        z-index: 10;
    }

    body.landing-mode2 #featureCarousel .carousel-control-prev {
        left: -2px;
    }

    body.landing-mode2 #featureCarousel .carousel-control-next {
        right: -2px;
    }

    body.landing-mode2 #featureCarousel .carousel-control-prev i,
    body.landing-mode2 #featureCarousel .carousel-control-next i {
        font-size: 10px;
        color: #E53935;
    }

    body.landing-mode2 #featureCarousel .carousel-control-prev:hover,
    body.landing-mode2 #featureCarousel .carousel-control-next:hover {
        background: #eff6ff;
    }

}


/* =========================================================
   VERY SMALL PHONES
   360px and below
========================================================= */

@media (max-width: 380px) {

    body.landing-mode2 .carousel-features-section {
        padding-left: 7px;
        padding-right: 7px;
    }

    body.landing-mode2 #featureCarousel .row {
        gap: 6px;
    }

    body.landing-mode2 #featureCarousel .col-md-4 {
        flex-basis: calc((100% - 12px) / 3);
        width: calc((100% - 12px) / 3);
        max-width: calc((100% - 12px) / 3);
    }

    body.landing-mode2 .carousel-feature-image {
        height: 82px;
    }

    body.landing-mode2 .carousel-feature-content {
        padding: 8px 6px 10px;
    }

    body.landing-mode2 .carousel-feature-icon {
        width: 26px;
        height: 26px;
        font-size: 11px;
    }

    body.landing-mode2 .carousel-feature-content h3 {
        font-size: 10px;
    }

    body.landing-mode2 .carousel-feature-content p {
        font-size: 9px;
    }

    body.landing-mode2 .carousel-feature-content a {
        font-size: 9px;
    }
}

/* =========================
   WHY DCONNECT SECTION
========================= */


.why-dconnect-section {
    padding: 22px 7% 12px;
    background:
        linear-gradient(
            180deg,
            #f8fbff 100%,
            #ffffff 70%,
            #f0fdf4 0%
        );
}

.why-dconnect-container {
    max-width: 1050px;
    margin: 0 auto;
}

.why-dconnect-header {
    text-align: center;
    margin-bottom: 24px;
}

.why-badge {
    display: inline-block;
    padding: 7px 15px;
    border-radius: 30px;
    background: #eff6ff;
    color: #2563eb;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(37, 99, 235, 0.08);
}

.why-dconnect-header h2 {
    margin: 10px 0 0;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 700;
    color: #0f172a;
}

.why-dconnect-header h2 span {
    background:
        linear-gradient(
            135deg,
            #E53935 15%,
            #0a4ba1 55%,
            #18A558 100%
        );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-dconnect-header p {
    max-width: 620px;
    margin: 7px auto 0;
    font-size: 15px;
    line-height: 1.6;
    color: #64748b;
}

/* =========================================================
   COMPARISON CARD
========================================================= */

.comparison-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 12px;
    border: 1px solid rgba(37, 99, 235, 0.10);
    box-shadow:
        0 12px 28px rgba(37, 99, 235, 0.06);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 12px 18px;
    border-bottom: 1px solid #e2e8f0;
    text-align: left;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table th:last-child,
.comparison-table td:last-child {   
    background: #f0fdf4;
    /*   background: #eff6ff;
    color: #2563eb; */
    font-weight: 700;
}

.comparison-table th {
    background: #f8fafc;
    color: #334155;
    font-weight: 700;

}

.dconnect-column {
    color: #2563eb !important;
}

/* =========================================================
   DCONNECT VALUES
========================================================= */

.dconnect-value {
    color: #15803d;
    font-weight: 700;
}

.dconnect-value::before {
    content: "✔";
    color: #18A558;
  /*  color: #22c55e; */
    margin-right: 8px;
    font-size: 15px;
}


/* =========================================================
   CAROUSEL
========================================================= */

#whyDconnectCarousel {
    padding-bottom: 8px;
}

/* =========================================================
   INDICATORS
========================================================= */


.carousel-indicators {
    position: static;
  /*  bottom: -28px; */
    display: flex;
    justify-content: center;
    margin-top: 10px;
    margin-bottom: 0;
    gap:6px;
}


.carousel-indicators button {
    width: 30px !important;
    height: 4px !important;
    padding:0;
    border-radius: 20px;
    background: #cbd5e1 !important;
    border: none;
    opacity: 1;
}

.carousel-indicators .active {
    background: #E53935 !important;
    /* background: #2563eb !important; */
}

/* =========================================================
   STATS — MOBILE RESPONSIVE
========================================================= */

@media (max-width: 768px) {

    .stats-section {
        padding: 8px 16px 12px;
    }

    .stats-container {
        width: 100%;
        grid-template-columns: repeat(4, 1fr);
        border-radius: 16px;
    }

    .stat-box {
        min-width: 0;
        padding: 18px 8px;
        gap: 6px;

        flex-direction: column;
        justify-content: center;
        text-align: center;

        border-right: 1px solid rgba(255,255,255,0.14);
        border-bottom: none;
    }

    .stat-box:last-child {
        border-right: none;
    }

    .stat-icon {
        width: 38px;
        height: 38px;
        border-radius: 10px;
        font-size: 17px;
        margin-bottom: 4px;
    }

    .stat-content h2 {
        font-size: 20px;
        margin-bottom: 4px;
        line-height: 1;
    }

    .stat-content p {
        font-size: 10px;
        line-height: 1.25;
        max-width: 75px;
        margin: 0 auto;
    }
}

@media (max-width: 380px) {

    .stats-section {
        padding-left: 10px;
        padding-right: 10px;
    }

    .stats-container {
        border-radius: 14px;
    }

    .stat-box {
        padding: 15px 4px;
    }

    .stat-icon {
        width: 34px;
        height: 34px;
        font-size: 15px;
        border-radius: 9px;
    }

    .stat-content h2 {
        font-size: 18px;
    }

    .stat-content p {
        font-size: 9px;
        max-width: 68px;
    }
}

/* ========================= */
/* CTA SECTION */
/* ========================= */

.cta-section {
    width: 100%;
    padding: 0px 4% 10px;
    background: #ffffff;
    box-sizing: border-box;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;

    padding: 22px 28px;

    border-radius: 20px;

   /* background:
        linear-gradient(
            115deg,
            #dc2626 0%,
            #2563eb 52%,
            #16a34a 100%
        ); */
      background:  #2563eb;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    box-sizing: border-box;

    box-shadow:
        0 14px 35px rgba(37, 99, 235, 0.16);
}

/* =========================================================
   CONTENT
========================================================= */

.cta-content {
    min-width: 0;
}

/* Left */

.cta-content h2 {
    margin: 0 0 7px;
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.4px;
}

.cta-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.90);
    font-size: 14px;
    line-height: 1.5;
}

/* Right */

.cta-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 42px;

    padding: 10px 18px;

    border-radius: 10px;

    font-size: 13px;
    font-weight: 600;

    text-decoration: none;

    white-space: nowrap;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease;
}

/* =========================================================
   PRIMARY
========================================================= */

.cta-btn.primary {
    background: #ffffff;
    color: #2563eb;

    border: 1px solid #ffffff;

    box-shadow:
        0 6px 16px rgba(0, 0, 0, 0.10);
}

.cta-btn.primary:hover {
    transform: translateY(-2px);

    box-shadow:
        0 9px 22px rgba(0, 0, 0, 0.16);
}

/* =========================================================
   SECONDARY
========================================================= */

.cta-btn.secondary {
    background: rgba(255, 255, 255, 0.08);

    color: #ffffff;

    border: 1px solid rgba(255, 255, 255, 0.65);
}

.cta-btn.secondary:hover {
    transform: translateY(-2px);

    background: rgba(255, 255, 255, 0.16);

    border-color: #ffffff;
}




/* =========================================================
   CTA — MOBILE RESPONSIVE
========================================================= */

@media (max-width: 768px) {

    .cta-section {
        padding: 12px 10px;
    }

    .cta-container {
        width: 100%;
        padding: 18px 16px;

      flex-direction: row; 
        align-items: center;
        justify-content: space-between;
        text-align: center;

        gap: 12px;

        border-radius: 16px;
    }

    /* LEFT CONTENT */

    .cta-content {
        flex: 1;
        min-width: 0;
    }

    .cta-content h2 {
        font-size: 18px;
        line-height: 1.25;
        margin-bottom: 5px;
    }

    .cta-content p {
        font-size: 11px;
        line-height: 1.4;
    }

    /* RIGHT BUTTONS */

    .cta-buttons {
        flex-shrink: 0;

        display: flex;
        flex-direction: column;
        align-items: stretch;

        gap: 7px;
    }

    .cta-btn {
        padding: 9px 13px;

        font-size: 11px;

        border-radius: 8px;

        white-space: nowrap;
        text-align: center;
    }
}

@media (max-width: 380px) {

    .cta-section {
        padding: 10px 8px;
    }

    .cta-container {
        padding: 15px 12px;
        gap: 8px;
    }

    .cta-content h2 {
        font-size: 16px;
    }

    .cta-content p {
        font-size: 10px;
    }

    .cta-btn {
        padding: 8px 10px;
        font-size: 10px;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 992px) {

    .cta-section {
        padding: 10px 5% 0px;
    }

    .cta-container {
        padding: 24px;
        gap: 20px;
    }

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

    .cta-content p {
        font-size: 13px;
    }
}