/* 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);

    top: -80px;
    left: -80px;
}

.hero-blur-2 {
    width: 280px;
    height: 280px;
    background: rgba(99, 102, 241, 0.12);

    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;

    font-size: 14px;
    font-weight: 600;

    margin-bottom: 18px;
}

/* badge dot */

.badge-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;

    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:
        linear-gradient(
            135deg,
            #0284c7,
            #2563eb
        );

    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
        );

    color: white;

    font-size: 15px;
    font-weight: 600;

    cursor: pointer;

    transition: all 0.35s ease;

    box-shadow:
        0 18px 35px rgba(79, 70, 229, 0.2);
}

.primary-btn:hover {
    transform: translateY(-4px);

    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: 1px solid rgba(55, 58, 248, 0.15);

    background: white;

    color: #374151;

    font-size: 15px;
    font-weight: 600;

    text-decoration: none;

    cursor: pointer;

    transition: all 0.3s ease;
}

.secondary-btn:hover {
    border-color: #0284c7;
    color: #0284c7;
    transform: translateY(-3px);
}







/* 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;
}

.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:-100px;

    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:-105px;

    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: 50px 7% 70px;
    background: #ffffff;
}


/* CONTAINER */

.healthcare-container {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 35px;
    align-items: stretch;
}


/* LEFT SIDE */

.healthcare-left {
    background: #f8fbff;
    border-radius: 28px;
    padding: 40px;
}

.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);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* GRID */

.healthcare-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}


/* ITEM */

.health-item {
    text-align: center;
}

.health-icon {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    margin: auto;
    margin-bottom: 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 34px;

    transition: 0.3s ease;
}

.health-item:hover .health-icon {
    transform: translateY(-8px) scale(1.05);
}

.health-item p {
    font-size: 15px;
    font-weight: 600;
    color: #374151;
    line-height: 1.5;
}


/* ICON COLORS */

.blue {
    background: #dbeafe;
}

.cyan {
    background: #dff8ff;
}

.green {
    background: #dcfce7;
}

.pink {
    background: #ffe4e6;
}

.purple {
    background: #f3e8ff;
}

.orange {
    background: #ffedd5;
}

.peach {
    background: #fde7e7;
}


/* SECURITY CARD */

.security-card {
    background: linear-gradient(
        135deg,
        #f8fbff,
        #eef4ff
    );

    border-radius: 28px;
    padding: 40px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;

    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}


/* CONTENT */

.security-content h3 {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 24px;

    background: linear-gradient(135deg, #0284c7, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.security-content ul {
    list-style: none;
    padding: 0;
}

.security-content ul li {
    margin-bottom: 18px;
    line-height: 1.6;
    color: #475569;
    font-size: 15px;
    font-weight: 500;

}

.security-content ul li::before {
    content: "✔";
    color: #2563eb;
    font-weight: bold;
    margin-right: 10px;
}




/* 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);
}


/* RESPONSIVE */

@media (max-width: 992px) {

    .healthcare-container {
        grid-template-columns: 1fr;
    }

    .healthcare-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}


@media (max-width: 768px) {

    .healthcare-section {
        padding: 70px 5%;
    }

    .healthcare-left h2,
    .security-content h3 {
        font-size: 28px;
    }

    .healthcare-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .security-card {
        flex-direction: column;
        text-align: center;
    }

}

/* ========================= */
/* STATS SECTION */
/* ========================= */

.stats-section {
    padding: 10px 7% 50px;
    background: #ffffff;
}


/* CONTAINER */

.stats-container {

    background: linear-gradient(
        135deg,
        #0f3d91,
        #2563eb
    );

    border-radius: 22px;

    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: 28px 22px;
    gap: 16px;

    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.06);
}


/* ICON */

.stat-icon {

    width: 54px;
    height: 54px;
    border-radius: 14px;
    font-size: 24px;


    background: rgba(255,255,255,0.12);

    display: flex;
    align-items: center;
    justify-content: center;

    color: white;

    flex-shrink: 0;
}


/* CONTENT */

.stat-content h2 {

    font-size: 30px;
    color: white;
    margin-bottom: 4px;
    font-weight: 700;
    line-height: 1;
}

.stat-content p {

    color: rgba(255,255,255,0.88);

    font-size: 14px;
    line-height: 1.4;
    max-width: 140px;
}


/* RESPONSIVE */

@media (max-width: 992px) {

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-box:nth-child(2) {
        border-right: none;
    }

}


@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;
    }

}



/* PART 9 */   


/* =========================
   FEATURES SECTION
========================= */
.carousel-features-section {

   /* min-height: calc(100vh - 80px); */
   min-height: 100vh;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 40px 0;

    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  /*  overflow: visible; */
}

/* =========================
   SECTION HEADER
========================= */

.carousel-section-header {
    max-width: 750px;
    margin: 0 auto 40px;
    text-align: center;
}

.carousel-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #eef5ff;
    color: #5a6cff;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 22px;
}

.carousel-section-badge-dot {
    width: 10px;
    height: 10px;
    background: #5a6cff;
    border-radius: 50%;
}

.carousel-section-header h2 {
    font-size: 40px;
    font-weight: 700;
    color: #222;
    margin-bottom: 12px;
}

.carousel-section-header h2 span {
    color: #5a6cff;
}

.carousel-section-header p {
    font-size: 16px;
    line-height: 1.6;
    color: #777;
}







/* PART 10 */
/* =========================
   CAROUSEL
========================= */

#featureCarousel {
    position: relative;
    padding: 0 70px;
}

#featureCarousel .carousel-inner {
    overflow: hidden;
}

#featureCarousel .carousel-item {
    transition: transform .7s ease-in-out;
}

/* =========================
   FEATURE CARD
========================= */

.carousel-feature-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,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);
}

.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));
}

.carousel-feature-content {
    padding: 30px;
}

.carousel-feature-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 18px 0 15px;
    color: #222;
}

.carousel-feature-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.carousel-feature-content a {
    text-decoration: none;
    color: #5a6cff;
    font-weight: 600;
    display: inline-flex;
    gap: 8px;
    align-items: center;
}

.carousel-feature-content a:hover {
    gap: 14px;
    transition: .3s;
}

/* =========================
   ICONS
========================= */

.carousel-feature-icon {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: #fff;
    background: linear-gradient(135deg,#5a6cff,#7d8cff);
}

.orange-icon {
    background: linear-gradient(135deg,#ff9d00,#ffb84d);
}

.blue-icon {
    background: linear-gradient(135deg,#00b7ff,#4fd2ff);
}

.pink-icon {
    background: linear-gradient(135deg,#ff4d88,#ff79aa);
}

.purple-icon {
    background: linear-gradient(135deg,#7a5cff,#9d84ff);
}

.cyan-icon {
    background: linear-gradient(135deg,#00c9c8,#42e6e5);
}








/* 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: 55px;
    height: 55px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border-radius: 50%;
    opacity: 1;
    box-shadow: 0 8px 25px rgba(0,0,0,.12);
}

#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%);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width:991px){

    .carousel-section-header h2{
        font-size:36px;
    }

    #featureCarousel{
        padding:0 20px;
    }

    .carousel-feature-image{
        height:200px;
    }
}

@media (max-width:767px){

    .carousel-features-section{
        padding:70px 0;
    }

    .carousel-section-header h2{
        font-size:30px;
    }

    .carousel-feature-content{
        padding:24px;
    }

    #featureCarousel .carousel-control-prev,
    #featureCarousel .carousel-control-next{
        display:none;
    }
}


#featureCarousel .carousel-control-prev i,
#featureCarousel .carousel-control-next i{
    color:#5a6cff;
    font-size:24px;
}

#featureCarousel .carousel-control-prev{
    left:-20px;
}

#featureCarousel .carousel-control-next{
    right:-20px;
}
#featureCarousel .carousel-control-prev,
#featureCarousel .carousel-control-next{
    width:60px;
    height:60px;
    border-radius:50%;
    background:#ffffff;
    color:#5a6cff;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
    opacity:1;
}



#featureCarousel {
    width: 92%;
    margin: 0 auto;
    padding: 0 70px;
}

.col-lg-4,
.col-md-4 {
    padding: 0 12px;
}



/* =========================
   WHY DCONNECT SECTION
========================= */


.why-dconnect-section {

    padding: 50px 7% 10px;
    background: #f8fbff;
}

.why-dconnect-container {

    max-width: 1050px;
    margin: auto;
}

.why-dconnect-header {

    text-align: center;

    margin-bottom: 50px;
}

.why-badge {

    display: inline-block;

    padding: 8px 16px;

    border-radius: 30px;

    background: #e0f2fe;

    color: #0369a1;

    font-size: 14px;
    font-weight: 600;
}

.why-dconnect-header h2 {

    margin-top: 14px;
    font-size: 38px;
    line-height: 1.2;
    font-weight: 700;
    color: #0f172a;
}

.why-dconnect-header h2 span {

    color: #2563eb;
}

.why-dconnect-header p {
max-width: 620px;
    margin: 10px auto 0;
    font-size: 16px;
    line-height: 1.6;
    color: #64748b;
}

.comparison-card {

    background: white;

    border-radius: 20px;

    padding: 22px;

    border: 1px solid #dbeafe;

    box-shadow:
        0 20px 40px rgba(37,99,235,0.08);

        padding-bottom: 10px;
}

.comparison-table {

    width: 100%;

    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {

    padding: 16px 24px;

    border-bottom: 1px solid #e2e8f0;

    text-align: left;
}

.comparison-table th:last-child,
.comparison-table td:last-child {
   background: #eff6ff;
 /*   color: #2563eb; */
    font-weight: 700;
}

.comparison-table th {

    background: #f8fafc;

    font-weight: 700;
}

.dconnect-column {

    color: #2563eb;
}

.carousel-indicators {
    position: static;
    bottom: -28px;

    display: flex;
    justify-content: center;

    margin-top: 12px;
    margin-bottom: 0;

}

#whyDconnectCarousel {
    padding-bottom: 45px;
}

.carousel-indicators button {

    width: 35px !important;
    height: 4px !important;

    border-radius: 20px;

    background: #cbd5e1 !important;

    border: none;

    opacity: 1;
}

.carousel-indicators .active {

    background: #2563eb !important;
}

.dconnect-value {
    color: #15803d;
    font-weight: 700;
}

.dconnect-value::before {
    content: "✔";
    color: #22c55e;
    margin-right: 8px;
    font-size: 16px;
}

    /* ========================= */
/* CTA SECTION */
/* ========================= */

.cta-section{

    width:100%;

    padding:40px 0;

    background:#ffffff;
}

.cta-container{

    max-width:1200px;

    margin:0 auto;

    padding:20px 35px;

    border-radius:16px;

    background:linear-gradient(90deg,#2563eb,#60a5fa);

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:30px;

    box-sizing:border-box;
}

/* Left */

.cta-content h2{

    color:#ffffff;

    font-size:30px;

    font-weight:700;

    margin-bottom:8px;
}

.cta-content p{

    color:rgba(255,255,255,.9);

    font-size:15px;

    margin:0;

    line-height:1.6;
}

/* Right */

.cta-buttons{

    display:flex;

    gap:15px;

    align-items:center;
}

.cta-btn{

    padding:12px 22px;

    border-radius:10px;

    text-decoration:none;

    font-size:14px;

    font-weight:600;

    transition:.3s;
}

.cta-btn.primary{

    background:#ffffff;

    color:#2563eb;
}

.cta-btn.primary:hover{

    transform:translateY(-2px);

    box-shadow:0 8px 20px rgba(255,255,255,.25);
}

.cta-btn.secondary{

    border:1px solid rgba(255,255,255,.5);

    color:#ffffff;

    background:transparent;
}

.cta-btn.secondary:hover{

    background:rgba(255,255,255,.12);
}

/* Responsive */

@media(max-width:768px){

    .cta-container{

        flex-direction:column;

        text-align:center;
    }

    .cta-buttons{

        width:100%;

        justify-content:center;

        flex-wrap:wrap;
    }
}