

/* FEATURE CONTAINER */
.about-features{
    display:flex;
    flex-direction:column;
    gap:18px;
}

/* FEATURE CARD */
.feature-box{
    background:#ffffff;
    border-left:4px solid #007bff;
    padding:16px 18px;
    border-radius:12px;
    box-shadow:0 6px 18px rgba(0,0,0,0.05);
    transition:0.3s ease;
}

/* HOVER EFFECT */
.feature-box:hover{
    transform:translateX(6px);
    box-shadow:0 12px 28px rgba(0,0,0,0.10);
}

/* TITLE INSIDE BOX */
.feature-box h3{
    font-size:16px;
    font-weight:700;
    color:#0c2340;
    margin-bottom:6px;
}

/* TEXT */
.feature-box p{
    font-size:14px;
    color:#555;
    line-height:1.6;
    margin:0;
}

/* IMAGE STYLE (your existing circle upgrade will still work if you kept it) */
.about-section .col-xl-6 img{
    width:260px;
    height:260px;
    object-fit:cover;
    border-radius:50%;
    display:block;
    margin:0 auto 30px;
    border:6px solid #ffffff;
    box-shadow:0 12px 35px rgba(0,0,0,0.12);
    transition:0.3s ease;
}

.about-section .col-xl-6 img:hover{
    transform:scale(1.05);
}




/* SECTION BACKGROUND */
.about-section{
    background:linear-gradient(180deg,#ffffff 0%, #f6f9ff 100%);
}

/* TITLE */
.about-section .title-under-line{
    font-size:42px;
    font-weight:800;
    color:#0c2340;
    position:relative;
    margin-bottom:35px;
}

.about-section .title-under-line::after{
    content:"";
    width:80px;
    height:4px;
    background:#007bff;
    position:absolute;
    left:0;
    bottom:-10px;
    border-radius:10px;
}

/* TEXT */
.about-section p{
    font-size:15.5px;
    line-height:1.9;
    color:#555;
    margin-bottom:14px;
}

/* =========================
   ⭐ CIRCLE IMAGE DESIGN
========================= */

.about-section .col-xl-6 img{
    width:260px;
    height:260px;
    object-fit:cover;
    border-radius:50%;   /* makes circle */

    display:block;
    margin:0 auto 30px;

    border:6px solid #ffffff;
    box-shadow:0 12px 35px rgba(0,0,0,0.12);

    transition:0.35s ease;
}

/* HOVER EFFECT */
.about-section .col-xl-6 img:hover{
    transform:scale(1.05);
    box-shadow:0 18px 50px rgba(0,0,0,0.18);
}

/* RESPONSIVE */
@media(max-width:768px){
    .about-section .title-under-line{
        font-size:30px;
    }

    .about-section .col-xl-6 img{
        width:180px;
        height:180px;
    }

    .about-section p{
        font-size:14.5px;
    }
}



.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}
.benefit-item {
    background-color: #007BFF; /* Bootstrap primary blue */
    color: white;
    padding: 15px 20px;
    border-radius: 25px;
    font-size: 16px;
    text-align: left;
    transition: 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.benefit-item:hover {
    background-color: #0056b3;
}


  .benefits-section {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    padding: 40px;
    background-color: #f9f9f9;
  }

  .benefit-box {
    width: 220px;
    height: 220px;
    background-color: #ccc; /* grey background */
    border-radius: 30px; /* rounded square */
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }

  .benefit-box:hover {
    background-color: #fff;
    transform: scale(1.05);
  }

  .benefit-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
  }

  .benefit-text {
    font-size: 14px;
    color: #333;
  }


.exam-feature-section{
    padding:70px 0;
    background:#f5f8fc;
}

.exam-feature-card{
    background:#fff;
    border-radius:20px;
    padding:30px 25px;
    height:100%;
    transition:0.3s ease;
    box-shadow:0 8px 25px rgba(0,0,0,0.06);
    border:1px solid #edf0f5;
}

.exam-feature-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,0.12);
}

.exam-icon{
    width:175px;
    height:75px;
    border-radius:18px;
    background:linear-gradient(135deg,#007bff,#00b4ff);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
}

.exam-icon img{
    width:42px;
    height:42px;
    object-fit:contain;
}

.exam-feature-card h3{
    font-size:24px;
    font-weight:700;
    margin-bottom:20px;
    color:#0c2340;
}

.exam-feature-list{
    list-style:none;
    padding:0;
    margin:0;
}

.exam-feature-list li{
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin-bottom:15px;
    color:#555;
    line-height:1.6;
    font-size:15px;
}

.exam-feature-list li i{
    color:#00b67a;
    font-size:18px;
    margin-top:4px;
}


.cbt-banner-section{
    position: relative;
    padding: 140px 0;
    min-height: 500px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.cbt-banner-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.55);
}

.cbt-banner-content{
    position:relative;
    z-index:2;
}

.cbt-banner-title{
    font-size:64px;
    font-weight:800;
    color:#fff;
    line-height:1.2;
    margin-bottom:20px;
    text-transform:uppercase;
    letter-spacing:1px;
}

.cbt-banner-title span{
    color:#00c3ff;
}

.cbt-banner-text{
    font-size:20px;
    color:#f1f1f1;
    max-width:750px;
    margin:0 auto;
    line-height:1.8;
}

@media(max-width:991px){

    .cbt-banner-section{
        padding:100px 20px;
    }

    .cbt-banner-title{
        font-size:42px;
    }

    .cbt-banner-text{
        font-size:17px;
    }
}

@media(max-width:576px){

    .cbt-banner-title{
        font-size:32px;
    }

    .cbt-banner-text{
        font-size:15px;
        line-height:1.7;
    }
}


	

<!-- ===== CSS ===== -->


.cbt-process-section{
    padding:10px 0;
    background:#f7faff;
}

.process-step{
    position:relative;
    padding-left:95px;
    margin-bottom:15px;
}

.process-step:last-child{
    margin-bottom:0;
}

.process-step::before{
    content:'';
    position:absolute;
    left:32px;
    top:75px;
    width:3px;
    height:100%;
    background:#d9e6ff;
}

.process-step:last-child::before{
    display:none;
}

.process-number{
    position:absolute;
    left:0;
    top:0;
    width:65px;
    height:65px;
    border-radius:50%;
    background:linear-gradient(135deg,#007bff,#00c6ff);
    color:#fff;
    font-size:22px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 10px 25px rgba(0,123,255,0.25);
    z-index:2;
}

.process-content{
    background:#fff;
    border-radius:20px;
    padding:0px 30px;
    box-shadow:0 8px 25px rgba(0,0,0,0.06);
    display:flex;
    align-items:flex-start;
    transition:0.3s ease;
    border:1px solid #edf2f7;
}

.process-content:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(0,0,0,0.1);
}

.step-icon{    
    margin-right:20px;
}

.step-icon img{
    width:500px;
    height:500px;
    object-fit:contain;
}

.step-text h4{
	padding-top:80px;
    font-size:22px;
    font-weight:700;
    color:#0c2340;
    margin-bottom:10px;
}

.step-text p{
    color:#666;
    margin:0;
    line-height:1.8;
    font-size:15px;
}

@media(max-width:768px){

    .process-step{
        padding-left:80px;
    }

    .process-content{
        padding:20px;
    }

    .step-icon img{
        width:50px;
        height:50px;
		object-fit:contain;
    }

    .step-text h4{
        font-size:18px;
    }

}





.why-datascribe-section{
    padding:10px 0;
    background:#ffffff;
}

.why-card{
    background:#f8fbff;
    border-radius:22px;
    overflow:hidden;
    height:100%;
    transition:0.3s ease;
    box-shadow:0 8px 25px rgba(0,0,0,0.06);
    border:1px solid #edf2f7;
}

.why-card img{
    width:100%;
    height:240px;
    object-fit:contain;
    background:#ffffff;
    display:block;
    transition:all 0.35s ease;
    padding:20px;
}

/* HOVER = show “true original feel” */
.why-card:hover img{
    object-fit:contain;
    padding:0;                 /* removes frame on hover */
    transform:scale(1.05);     /* slight premium zoom */
    filter:drop-shadow(0 12px 20px rgba(0,0,0,0.15));
}

.why-content{
    padding:30px;
}

.why-content h3{
    font-size:24px;
    font-weight:700;
    color:#0c2340;
    margin-bottom:15px;
}

.why-content p{
    color:#666;
    line-height:1.8;
    margin-bottom:0;
}

.highlight-text{
    color:#007bff;
    font-weight:600;
}





/* LIGHTBOX BACKDROP */
.img-lightbox{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.75);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:9999;
}

/* IMAGE INSIDE POPUP */
.img-lightbox img{
    max-width:85%;
    max-height:85%;
    border-radius:12px;
    box-shadow:0 20px 50px rgba(0,0,0,0.4);
    background:#fff;
    padding:10px;
}

/* CLOSE BUTTON */
.img-lightbox span{
    position:absolute;
    top:20px;
    right:30px;
    font-size:30px;
    color:#fff;
    cursor:pointer;
    font-weight:700;
}





.process-points{
    display:flex;
    flex-direction:column;
    gap:10px;
    margin-top:15px;
}

.process-points span{
    display:flex;
    align-items:flex-start;
    gap:10px;
    color:#555;
    font-size:15px;
    line-height:1.7;
}

.process-points i{
    color:#0d6efd;
    margin-top:4px;
    font-size:14px;
}



html{
    scroll-behavior:smooth;
}

section{
    scroll-margin-top:100px;
}

.mobile-slide{
    position:relative;
    height:450px;
    background-size:cover;
    background-position:center center;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:20px;
}

.mobile-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.55);
}

.mobile-content{
    position:relative;
    z-index:2;
    text-align:center;
    width:100%;
    max-width:320px;
}

.mobile-content h2{
    color:#fff;
    font-size:28px;
    font-weight:800;
    line-height:1.3;
    margin-bottom:15px;
    text-transform:uppercase;
}

.mobile-content p{
    color:#fff;
    font-size:15px;
    line-height:1.7;
    margin:0;
}

.carousel-indicators{
    margin-bottom:20px;
}

.carousel-indicators button{
    width:10px;
    height:10px;
    border-radius:50%;
}

@media(min-width:768px){
    #mobileCarousel{
        display:none;
    }
}
