/* Scroll Progress Circle */
.scroll-progress-circle {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 4px 16px rgba(16, 24, 40, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  transition: all 300ms ease;
  opacity: 0;
  visibility: hidden;
}

.scroll-progress-circle.show {
  opacity: 1;
  visibility: visible;
}

.scroll-progress-circle:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(22, 199, 132, 0.2);
}

.progress-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.progress-circle-bg {
  fill: none;
  stroke: rgba(16, 24, 40, 0.1);
  stroke-width: 3;
}

.progress-circle-fill {
  fill: none;
  stroke: url(#scrollGradient);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 283;
  stroke-dashoffset: 283;
  transition: stroke-dashoffset 200ms ease;
}

.scroll-progress-arrow {
  position: absolute;
  font-size: 1.5rem;
  color: #16c784;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 768px) {
  .scroll-progress-circle {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }

  .scroll-progress-arrow {
    font-size: 1.25rem;
  }
}







/* Color Palette Custom Token System */
:root {
    --logo-badge-gradient: linear-gradient(90deg, #16c784 0%, #0d6efd 100%);
    --logo-badge-shadow: rgba(13, 110, 253, 0.2);
}

/* Replicating the Pill-Shaped Rounded Gradient Badge */
.ai-powered-badge {
    background: var(--logo-badge-gradient);
    color: #ffffff !important;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-weight: 700;
    
    /* Perfect horizontal pill shapes require a large border-radius */
    border-radius: 50px !important; 
    
    /* Scalable dimensions that shrink elegantly on narrow viewports */
    font-size: clamp(11px, 1.4vw, 14px);
    padding: clamp(6px, 0.8vh, 8px) clamp(16px, 1.8vw, 15px);
    
    /* Clean typesetting attributes */

    line-height: 1;
    text-transform: none; /* Keeps it exactly like the image: "AI Prep" or "AI" */
    
    /* Premium platform design cues */
    box-shadow: 0 4px 15px var(--logo-badge-shadow);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    user-select: none;
    
    /* Structural fail-safe configuration */
    flex-shrink: 0;
    white-space: nowrap;
}

/* Image scaling fail-safe configuration to balance the design */
.navbar-brand-img {
    height: clamp(44px, 6vh, 60px);
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

/* Fine-tuning for tiny smartphone screens (< 400px) */
@media (max-width: 400px) {
    .ai-powered-badge {
        padding: 4px 12px; /* Tightens the horizontal padding when viewport width drops */
    }
}








/* =========================================================
   ULTRA RESPONSIVE HERO SECTION
   Works smoothly on:
   Mobile + Tablet + 13/14/15/16 inch laptops + XL screens
========================================================= */

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

.hero-section1{

    background:
    radial-gradient(circle at 10% 20%,
    rgb(22 199 132 / 22%) 0%,
    transparent 40%),


    radial-gradient(circle at 90% 80%,
    rgb(13 110 253 / 18%) 0%,
    transparent 40%),

    #fff;

    overflow:hidden;

    position:relative;

    padding-block:
    clamp(1.5rem, 4vw, 5rem);
}

/* =========================================================
   TYPOGRAPHY
========================================================= */

.hero-title{

    font-size:
    clamp(2rem, 3vw, 4.7rem);

    line-height:1.08;

    letter-spacing:-0.03em;

    font-weight:800;

    color:#0f172a;

    max-width:700px;
}

.hero-description{

    font-size:
    clamp(0.95rem, 1.1vw, 1.2rem);

    line-height:1.75;

    color:#64748b;

    max-width:600px;
}

.text-gradient{

    background:
    linear-gradient(
        90deg,
        #10b981,
        #0d6efd
    );

    -webkit-background-clip:text;

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

/* =========================================================
   BADGE
========================================================= */

.hero-badge{

    background:#f0fdf4;

    border:1px solid #dcfce7;

    color:#16a34a;

    padding:
    clamp(8px, 1vw, 12px)
    clamp(14px, 2vw, 22px);

    border-radius:100px;

    font-size:
    clamp(.78rem, .9vw, .95rem);

    font-weight:600;
}

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

.hero-btn{

    min-width:
    clamp(130px, 10vw, 170px);

    padding:
    clamp(12px, 1vw, 16px)
    clamp(20px, 2vw, 34px);

    border-radius:14px;

    font-size:
    clamp(.85rem, 1vw, 1rem);

    font-weight:700;

    transition:.3s ease;
}

.btn-hero-gradient{

    background:
    linear-gradient(
        135deg,
        #10b981,
        #3b82f6
    );

    color:#fff;

    border:none;
}

.btn-hero-gradient:hover{

    transform:translateY(-3px);

    color:#fff;
}

.btn-light-modern{

    background:#fff;

    border:1px solid #e2e8f0;

    color:#334155;
}

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

.hero-visual-container{

    position:relative;

    width:100%;

    max-width:900px;

    margin-inline:auto;

    padding-bottom:
    clamp(20px, 4vw, 70px);
}

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

.hero-video-card{

    border-radius:
    clamp(18px, 2vw, 34px);

    overflow:hidden;

    position:relative;

    box-shadow:
    0 25px 60px rgba(15,23,42,.12);
}

.hero-video{

    width:100%;

    height:
    clamp(260px, 33vw, 620px);

    object-fit:cover;

    display:block;
}

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

.hero-cards-row{

    position:absolute;

    left:
    clamp(10px, 2vw, 30px);

    right:
    clamp(10px, 2vw, 30px);

    bottom:
    clamp(-20px, -3vw, -45px);

    z-index:5;
}

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

.hero-stat-card{

    background:rgba(255,255,255,.88);

    backdrop-filter:blur(14px);

    border:1px solid rgba(255,255,255,.6);

    border-radius:
    clamp(14px, 1.4vw, 22px);

    padding:
    clamp(12px, 1.3vw, 22px);

    box-shadow:
    0 15px 35px rgba(15,23,42,.08);

    transition:.35s ease;

    height:100%;
}

.hero-stat-card:hover{

    transform:translateY(-6px);
}

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

.card-label{

    font-size:
    clamp(.68rem, .7vw, .82rem);

    color:#94a3b8 !important;
}

.card-value{

    font-size:
    clamp(1rem, 1.2vw, 1.3rem);

    font-weight:800;

    color:#0f172a;
}

.total-score{

    font-size:
    clamp(.75rem, .8vw, .92rem);

    color:#94a3b8;
}

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

.stat-icon-box{

    width:
    clamp(34px, 3vw, 46px);

    height:
    clamp(34px, 3vw, 46px);

    border-radius:
    clamp(10px, 1vw, 14px);

    display:flex;

    align-items:center;

    justify-content:center;

    flex-shrink:0;
}

/* =========================================================
   COLORS
========================================================= */

.bg-emerald-soft{
    background:#ecfdf5;
}

.text-emerald{
    color:#10b981;
}

.bg-blue-soft{
    background:#eff6ff;
}

.text-blue{
    color:#3b82f6;
}

.bg-cyan-soft{
    background:#ecfeff;
}

.text-cyan{
    color:#06b6d4;
}

/* =========================================================
   PROGRESS BAR
========================================================= */

.progress-bar-wrapper{

    width:100%;

    height:6px;

    background:#e2e8f0;

    border-radius:20px;

    overflow:hidden;

    margin-top:10px;
}

.progress-bar-fill{

    height:100%;

    border-radius:20px;

    background:
    linear-gradient(
        90deg,
        #10b981,
        #3b82f6
    );
}

.fill-78{
    width:78%;
}

/* =========================================================
   FLOATING ANIMATION
========================================================= */

.card-anime-1{

    animation:floatY 5s ease-in-out infinite;
}

.card-anime-2{

    animation:floatY 5s ease-in-out infinite;

    animation-delay:1.5s;
}

.card-anime-3{

    animation:floatY 5s ease-in-out infinite;

    animation-delay:3s;
}

@keyframes floatY{

    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-10px);
    }
}

/* =========================================================
   XXL / BIG SCREENS
========================================================= */

@media(min-width:1600px){

    .container{

        max-width:1450px;
    }

    .hero-title{

        max-width:850px;
    }
}

/* =========================================================
   LAPTOP SHRINK CONTROL
========================================================= */

@media(max-width:1399px){

    .hero-title{

        font-size:
        clamp(2rem, 3vw, 4rem);
    }

    .hero-video{

        height:
        clamp(260px, 28vw, 520px);
    }
}

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

@media(max-width:991px){

    .hero-section1{

        text-align:center;
    }

    .hero-description{

        margin-inline:auto;
    }

    .hero-badge{

        margin-inline:auto;
    }

    .modern-muted{

        justify-content:center;
    }

    .hero-visual-container{

        margin-top:2rem;
    }

    .hero-cards-row{

        position:relative;

        bottom:auto;

        left:auto;

        right:auto;

        margin-top:1rem;
    }

    .hero-video{

        height:340px;
    }

    .hero-stat-card{

        animation:none !important;
    }
}

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

@media(max-width:767px){

    .hero-title{

        font-size:2rem;

        line-height:1.2;
    }

    .hero-description{

        font-size:.95rem;
    }

    .hero-video{

        height:240px;
    }

    .hero-btn{

        width:100%;
    }

    .hero-cards-row .row{

        row-gap:12px;
    }

    .hero-stat-card{

        padding:14px;
    }
}

/* =========================================================
   TECHNOLOGY SECTION — ALL SCREEN SHRINKABLE UI
   13 / 14 / 15 / 16 INCH + MOBILE OPTIMIZED
========================================================= */

.section.technology-section{

    padding: clamp(40px, 5vw, 72px) 0;

    background:#fff;

    overflow:hidden;
}

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

.technology-section .section-header{

    margin-bottom: clamp(22px, 3vw, 42px);
}

.technology-section .section-header h1{

    font-size: clamp(1.7rem, 3vw, 3.3rem);

    line-height: 1.15;

    font-weight: 800;

    letter-spacing: -0.03em;

    margin-bottom: 14px;
}

.technology-section .section-header p{

    max-width: 760px;

    margin-inline:auto;

    font-size: clamp(.92rem, 1.1vw, 1.08rem);

    line-height: 1.7;

    color:#64748b;
}

/* =========================================================
   MAIN CARDS
========================================================= */

.technology-section .rounded-4{

    border-radius: clamp(18px, 2vw, 28px) !important;
}

.technology-section .bg-success-subtle,
.technology-section .bg-primary-subtle,
.technology-section .bg-warning-subtle{

    padding: clamp(18px, 2vw, 28px) !important;

    transition: .35s ease;

    min-height: 100%;
}

.technology-section .bg-success-subtle:hover,
.technology-section .bg-primary-subtle:hover,
.technology-section .bg-warning-subtle:hover{

    transform: translateY(-6px);

    box-shadow:
    0 18px 40px rgba(15,23,42,0.08);
}

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

.technology-section img{

    width: 100%;

    max-height: clamp(150px, 16vw, 220px);

    object-fit: contain;
}

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

.technology-section h5{

    font-size: clamp(1rem, 1.2vw, 1.35rem);

    line-height: 1.35;

    font-weight: 800;

    margin-bottom: 10px;
}

.technology-section p{

    font-size: clamp(.85rem, .95vw, 1rem);

    line-height: 1.65;

    margin-bottom: 10px !important;
}

.technology-section a{

    font-size: clamp(.84rem, .9vw, .98rem);

    display:inline-flex;

    align-items:center;

    gap:6px;
}

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

.technology-section .small{

    font-size: clamp(.75rem, .85vw, .9rem) !important;

    margin-bottom: 10px !important;
}

/* =========================================================
   LARGE LAPTOPS (13-16 INCH)
========================================================= */

@media (min-width:1200px){

    .technology-section .container{

        max-width: 1320px;
    }

    .technology-section .row.g-4{

        --bs-gutter-x: 1.4rem;

        --bs-gutter-y: 1.4rem;
    }

    .technology-section .col-lg-4{

        display:flex;
    }

    .technology-section .col-lg-4 > div{

        width:100%;
    }
}

/* =========================================================
   14 / 15 INCH PERFECT FIT
========================================================= */

@media (min-width:992px) and (max-width:1399px){

    .technology-section .section-header h1{

        font-size: clamp(2rem, 2.8vw, 2.8rem);
    }

    .technology-section .bg-success-subtle,
    .technology-section .bg-primary-subtle,
    .technology-section .bg-warning-subtle{

        padding: 20px !important;
    }

    .technology-section h5{

        font-size: 1.1rem;
    }

    .technology-section p{

        font-size: .92rem;
    }
}

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

@media (max-width:991px){

    .technology-section{

        padding: 48px 0;
    }

    .technology-section .section-header{

        margin-bottom: 26px;
    }

    .technology-section .row.g-4{

        --bs-gutter-y: 1rem;
    }

    .technology-section .bg-success-subtle,
    .technology-section .bg-primary-subtle,
    .technology-section .bg-warning-subtle{

        padding: 18px !important;
    }

    .technology-section img{

        max-height: 170px;
    }
}

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

@media (max-width:767px){

    .technology-section{

        padding: 40px 0;
    }

    .technology-section .section-header h1{

        font-size: 1.7rem;

        line-height: 1.25;
    }

    .technology-section .section-header p{

        font-size: .92rem;

        line-height: 1.6;
    }

    .technology-section .bg-success-subtle,
    .technology-section .bg-primary-subtle,
    .technology-section .bg-warning-subtle{

        padding: 16px !important;

        border-radius: 20px !important;
    }

    .technology-section h5{

        font-size: 1rem;
    }

    .technology-section p{

        font-size: .85rem;
    }

    .technology-section img{

        max-height: 140px;

        margin-bottom: 12px;
    }
}

/* =========================================================
   EXTRA SMALL DEVICES
========================================================= */

@media (max-width:480px){

    .technology-section .section-header h1{

        font-size: 1.45rem;
    }

    .technology-section .section-header p{

        font-size: .84rem;
    }

    .technology-section img{

        max-height: 120px;
    }
}

/* ==========================================================================
   HOME PAGE CUSTOM COMPONENTS
     - Stats & Testimonial Cards
     - Feature Highlights
     - Interactive Elements
<!-- CSS -->
 ========================================================================== */


/* MAIN BOX */
.stats-testimonial-box{

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

    border:1px solid rgba(255,255,255,0.08);

    /* border-radius:30px; */

    backdrop-filter:blur(10px);

    box-shadow:
    0 20px 50px rgba(0,0,0,0.35);
}

/* DOTS */
.stats-pattern{

    position:absolute;

    inset:0;

    opacity:0.08;

    background-image: radial-gradient(#fff 1px, transparent 1px);

    background-size:18px 18px;
}

/* METRIC */
.stats-metric{

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

    border:1px solid rgba(255,255,255,0.08);

    border-radius:24px;

    padding:25px 15px;

    transition:0.4s ease;
}

.stats-metric:hover{

    transform:translateY(-8px);

    background:rgba(255,255,255,0.08);
}

/* ICON */
.stats-metric-icon{

    width:60px;
    height:60px;

    margin:auto;

    border-radius:18px;

    background:linear-gradient(90deg, #16c784, #0d6efd);

    color:#fff;

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

    font-size:24px;

    box-shadow:0 10px 25px rgba(13,110,253,0.35);
}

/* VALUE */
.stats-metric-value{

    color:#fff;

    font-size:32px;

    font-weight:800;
}

/* LABEL */
.stats-metric-label{

    color:#cbd5e1;

    font-size:14px;
}

/* FEATURE BOX */
.feature-info-box{

    background:#fff;

    border-radius:24px;

    padding:25px;

    box-shadow:
    0 15px 35px rgba(0,0,0,0.18);
}

/* FEATURE ITEM */
.feature-info-item{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:14px;

    height:100%;
}

/* ICON */
.feature-info-icon{

    width:52px;
    height:52px;

    min-width:52px;

    border-radius:16px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:22px;
}

/* TESTIMONIAL */
.testimonial-card{

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

    border:1px solid rgba(255,255,255,0.08);

    border-radius:28px;

    padding:35px;

    height:100%;

    backdrop-filter:blur(10px);
}

/* QUOTE */
.stats-quote{

    color:#16c784;

    font-size:50px;

    line-height:1;
}

/* TEXT */
.stats-testimonial-text{

    color:#e2e8f0;
    width: 600px;
    font-size:16px;

    line-height:1.8;
}

/* USER */
.stats-user-avatar{

    width:55px;
    height:55px;

    border-radius:50%;

    object-fit:cover;

    border:3px solid #16c784;
}

.stats-user-name{

    color:#fff;

    font-weight:700;
}

.stats-user-role{

    color:#94a3b8;

    font-size:14px;
}

/* DOTS */
.stats-dot{

    width:10px;
    height:10px;

    border-radius:50%;

    background:rgba(255,255,255,0.30);
}

.stats-dot.active{

    background:#16c784;

    width:28px;

    border-radius:20px;
}

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

    .stats-testimonial-box{

        /* border-radius:22px; */
    }

    .stats-metric{

        padding:20px 10px;
    }

    .stats-metric-value{

        font-size:24px;
    }

    .feature-info-box{

        padding:18px;
    }

    .feature-info-item{

        justify-content:flex-start;
    }

    .testimonial-card{

        padding:25px;
    }

}
/* HORIZONTAL SLIDER SYSTEM */
.testimonial-slider-viewport {
    width: 100%;
    overflow: hidden; /* Clips out-of-view slides */
}

.testimonial-slider-track {
    display: flex;
    width: 100%;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.testimonial-slide {
    flex: 0 0 100%;
    width: 100%;
    box-sizing: border-box;
}


.stats-dot {
    cursor: pointer;
    transition: all 0.3s ease;
}



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

.smart-feature-section{

    background:
    radial-gradient(circle at top left,
    rgba(16,185,129,0.06),
    transparent 28%),

    radial-gradient(circle at bottom right,
    rgba(59,130,246,0.06),
    transparent 28%),

    linear-gradient(
        180deg,
        #f8fffb 0%,
        #f4f9ff 100%
    );

    position:relative;

    overflow:hidden;

    padding: clamp(35px, 4vw, 60px) 0;
}

/* =====================================================
   TABS
===================================================== */

.smart-tabs{

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

    backdrop-filter:blur(12px);

    padding:5px;

    border-radius:14px;

    max-width:340px;

    margin:auto;

    box-shadow:
    0 8px 20px rgba(15,23,42,0.05);

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

.smart-tab{

    flex:1;

    border:none;

    background:transparent;

    padding:10px 10px;

    border-radius:10px;

    font-weight:700;

    font-size:0.88rem;

    color:#64748b;

    transition:all .3s ease;
}

.smart-tab.active{

    background:
    linear-gradient(
        135deg,
        #10b981,
        #0ea5e9
    );

    color:#fff;

    box-shadow:
    0 6px 18px rgba(16,185,129,0.22);
}

/* =====================================================
   WRAPPER
===================================================== */

.smart-feature-wrapper{

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

    backdrop-filter:blur(16px);

    border-radius:24px;

    padding:24px;

    border:1px solid rgba(255,255,255,0.8);

    box-shadow:
    0 15px 40px rgba(15,23,42,0.06);

    position:relative;

    overflow:hidden;
}

.smart-feature-wrapper::before{

    content:"";

    position:absolute;

    width:180px;
    height:180px;

    background:rgba(16,185,129,0.05);

    border-radius:50%;

    top:-80px;
    right:-80px;
}

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

.feature-stack{

    display:flex;

    flex-direction:column;

    gap:12px;
}

.smart-feature-item{

    display:flex;

    align-items:flex-start;

    gap:14px;

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

    border:1px solid rgba(226,232,240,0.8);

    padding:16px;

    border-radius:18px;

    transition:all .3s ease;

    position:relative;

    overflow:hidden;
}

.smart-feature-item:hover{

    transform:translateY(-3px);

    box-shadow:
    0 10px 25px rgba(15,23,42,0.05);

    background:#fff;
}

.smart-feature-item::before{

    content:"";

    position:absolute;

    left:0;
    top:0;

    width:3px;
    height:100%;

    background:
    linear-gradient(
        180deg,
        #10b981,
        #0ea5e9
    );

    opacity:0;

    transition:.3s ease;
}

.smart-feature-item:hover::before{

    opacity:1;
}

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

.smart-icon{

    width:46px;
    height:46px;

    min-width:46px;

    border-radius:14px;

    background:
    linear-gradient(
        135deg,
        #3b82f6,
        #06b6d4
    );

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:20px;

    box-shadow:
    0 8px 20px rgba(59,130,246,0.18);
}

.smart-icon.purple{

    background:
    linear-gradient(
        135deg,
        #8b5cf6,
        #6366f1
    );
}

.smart-icon.green{

    background:
    linear-gradient(
        135deg,
        #10b981,
        #22c55e
    );
}

.smart-icon.orange{

    background:
    linear-gradient(
        135deg,
        #fb923c,
        #f97316
    );
}

/* =====================================================
   TEXT
===================================================== */

.smart-title{

    font-size:1rem;

    font-weight:800;

    margin-bottom:4px;

    color:#0f172a;
}

.smart-text{

    color:#64748b;

    line-height:1.5;

    font-size:0.84rem;

    margin-bottom:0;
}

/* =====================================================
   DASHBOARD
===================================================== */

.dashboard-ui-card{

    background:#ffffff;

    border-radius:22px;

    padding:18px;

    border:1px solid #eef2f7;

    box-shadow:
    0 12px 30px rgba(15,23,42,0.05);

    position:relative;
}

/* =====================================================
   TOP BAR
===================================================== */

.dashboard-topbar{

    display:flex;

    gap:6px;

    margin-bottom:14px;
}

.dashboard-topbar span{

    width:10px;
    height:10px;

    border-radius:50%;
}

.dashboard-topbar span:nth-child(1){

    background:#ef4444;
}

.dashboard-topbar span:nth-child(2){

    background:#f59e0b;
}

.dashboard-topbar span:nth-child(3){

    background:#10b981;
}

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

.mini-stat-box{

    background:#fff;

    border-radius:14px;

    padding:14px 10px;

    text-align:center;

    border:1px solid #eef2f7;

    transition:.3s ease;
}

.mini-stat-box:hover{

    transform:translateY(-2px);
}

.mini-stat-box h5{

    font-size:1.1rem;

    font-weight:800;

    margin-bottom:4px;

    color:#0f172a;
}

.mini-stat-box p{

    margin:0;

    font-size:0.72rem;

    color:#64748b;
}

.mini-stat-box.blue{

    background:#eff6ff;
}

.mini-stat-box.green{

    background:#ecfdf5;
}

.mini-stat-box.orange{

    background:#fff7ed;
}

/* =====================================================
   CHART AREA
===================================================== */

.chart-layout{

    display:flex;

    align-items:center;

    gap:18px;

    background:#f8fafc;

    border-radius:18px;

    padding:18px;

    border:1px solid #eef2f7;
}

/* =====================================================
   CIRCLE
===================================================== */

.circle-chart{

    width:95px;
    height:95px;

    border-radius:50%;

    background:
    conic-gradient(
        #10b981 0% 88%,
        #e2e8f0 88% 100%
    );

    display:flex;

    align-items:center;

    justify-content:center;

    flex-shrink:0;
}

.teacher-chart{

    background:
    conic-gradient(
        #8b5cf6 0% 95%,
        #e2e8f0 95% 100%
    );
}

.circle-inner{

    width:68px;
    height:68px;

    border-radius:50%;

    background:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-weight:800;

    font-size:1rem;

    color:#111827;
}

/* =====================================================
   LINES
===================================================== */

.chart-lines{

    flex:1;
}

.line{

    height:8px;

    border-radius:30px;

    background:
    linear-gradient(
        90deg,
        #3b82f6,
        #10b981
    );

    margin-bottom:12px;

    position:relative;

    overflow:hidden;
}

.line::after{

    content:"";

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        90deg,
        rgba(255,255,255,0.1),
        rgba(255,255,255,0.5),
        rgba(255,255,255,0.1)
    );

    animation: shimmer 2.5s linear infinite;
}

@keyframes shimmer{

    0%{
        transform:translateX(-100%);
    }

    100%{
        transform:translateX(100%);
    }
}

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

.tab-content-wrapper{

    display:none;

    animation:fadeSmooth .4s ease;
}

.active-tab{

    display:block;
}

@keyframes fadeSmooth{

    from{
        opacity:0;
        transform:translateY(8px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}

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

@media(max-width:991px){

    .smart-feature-wrapper{

        padding:18px;
    }

    .chart-layout{

        flex-direction:row;
    }
}

@media(max-width:768px){

    .smart-feature-section{

        padding:35px 0;
    }

    .smart-tabs{

        max-width:100%;
    }

    .smart-tab{

        font-size:13px;

        padding:10px 6px;
    }

    .smart-feature-wrapper{

        padding:16px;

        border-radius:18px;
    }

    .smart-feature-item{

        padding:14px;

        border-radius:14px;
    }

    .smart-icon{

        width:42px;
        height:42px;

        min-width:42px;

        font-size:18px;
    }

    .smart-title{

        font-size:0.92rem;
    }

    .smart-text{

        font-size:0.8rem;
    }

    .chart-layout{

        padding:14px;

        gap:14px;
    }

    .circle-chart{

        width:82px;
        height:82px;
    }

    .circle-inner{

        width:58px;
        height:58px;

        font-size:0.9rem;
    }

    .line{

        height:7px;

        margin-bottom:10px;
    }
}



/* Styling Scope Variables */


/* Structural Styling Helpers */
.bg-primary-soft { background-color: rgba(13, 110, 253, 0.08); }
.bg-primary-light { background-color: rgba(13, 110, 253, 0.06); }
.bg-success-light { background-color: rgba(22, 199, 132, 0.06); }
.bg-purple-light { background-color: rgba(111, 66, 193, 0.06); }
.text-purple { color: #6f42c1; }

/* Micro-Interaction Left Feature Cards */
.split-feature-card {
    background: #ffffff;
    border: 1px solid var(--card-border-smooth);
    border-radius: clamp(12px, 2vw, 20px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.01), 0 2px 4px -1px rgba(0, 0, 0, 0.01);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
}

.split-feature-card:hover {
    transform: translateX(6px);
    background: #ffffff;
    border-color: rgba(13, 110, 253, 0.2);
    box-shadow: 0 20px 25px -5px rgba(13, 110, 253, 0.05), 0 10px 10px -5px rgba(13, 110, 253, 0.02);
}

.split-icon-box {
    width: clamp(44px, 5vw, 52px);
    height: clamp(44px, 5vw, 52px);
    border-radius: clamp(10px, 1.5vw, 14px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(20px, 2.5vw, 24px);
    flex-shrink: 0; /* Guard item from squishing during flex-shrink calculations */
}

.card-body-content {
    min-width: 0; /* Allows paragraph elements to clip / wrap natively without overflow */
}

/* Clean Device Frame Mockup Wrapper */
.split-preview-frame {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: clamp(12px, 2vw, 20px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    width: 100%;
    transition: transform 0.4s ease;
}

.split-preview-frame:hover {
    transform: scale(1.01) rotate(0.5deg);
}

.window-header-bar {
    background: #f1f5f9;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    gap: 6px;
}

.window-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}
.window-dot.red { background-color: #ef4444; }
.window-dot.yellow { background-color: #f59e0b; }
.window-dot.green { background-color: #10b981; }

.window-image-canvas {
    padding: clamp(8px, 1.5vw, 16px);
    background: #f8fafc;
}

.visual-preview-asset {
    width: 100%;
    height: auto;
    display: block;
    border-radius: clamp(6px, 1vw, 12px);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Flexible Layout Infrastructure Badges */
.pill-badge-tag {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #475569;
    font-weight: 500;
    font-size: clamp(12px, 1.5vw, 13.5px);
    padding: 6px clamp(12px, 2vw, 18px);
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s ease;
}

.pill-badge-tag:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    color: #0f172a;
}

/* Mobile Layout Scaling Interventions */
@media(max-width: 991px) {
    .split-feature-card:hover {
        transform: translateY(-4px); /* Swaps horizontal sliding logic on stacked small displays */
    }
}
/* =========================================
   SHRINKABLE & BALANCED SPLIT SECTION
========================================= */

.why-choose-section .row.align-items-center{
    align-items: stretch !important;
}

/* BOTH COLS */
.why-choose-section .col-lg-6{
    display:flex;
}

/* LEFT SIDE */
.feature-stack{
    width:100%;
    height:100%;
    gap:14px !important;
}

/* FEATURE CARD */
.split-feature-card{
    flex:1;
    display:flex;
    align-items:center;
    padding:18px !important;

    border-radius:18px;

    min-height:110px;
}

/* ICON */
.split-icon-box{
    width:46px;
    height:46px;

    min-width:46px;

    font-size:20px;
}

/* TITLE */
.card-body-content h4{
    font-size:1rem;
    margin-bottom:4px !important;
}

/* TEXT */
.card-body-content p{
    font-size:0.84rem;
    line-height:1.6;
}

/* RIGHT SIDE */
.split-preview-frame{
    width:100%;
    height:100%;

    display:flex;
    flex-direction:column;

    border-radius:18px;
}

/* IMAGE AREA */
.window-image-canvas{
    flex:1;

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

    padding:10px;
}

/* IMAGE */
.visual-preview-asset{
    width:100%;
    height:100%;

    /* object-fit:cover; */

    border-radius:14px;

    min-height:360px;
    max-height:420px;
}

/* HEADER BAR */
.window-header-bar{
    padding:10px 14px !important;
}

/* =========================================
   LARGE SCREEN SHRINK
========================================= */

@media(min-width:1400px){

    .why-choose-section .container{
        max-width:1240px;
    }

    .split-feature-card{
        min-height:100px;
        padding:16px !important;
    }

    .visual-preview-asset{
        min-height:380px;
        max-height:430px;
    }

}



/* Color Systems & Custom Parameters */
:root {
    --lang-box-theme: rgba(22, 199, 132, 0.12);
    --cta-box-theme: rgba(13, 110, 253, 0.08);
    --btn-primary-grad: linear-gradient(90deg, #16c784 0%, #0d6efd 100%);
    --text-gradient-main: linear-gradient(135deg, #0d6efd, #16c784);
}

/* Typography Gradient Setup */
.gradient-text {
    background: var(--text-gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Section Main Content Wrappers */
.lang-glass-box {
    background-color: var(--lang-box-theme);
    border: 1px solid rgba(22, 199, 132, 0.18);
}

.cta-glass-box {
    background-color: var(--cta-box-theme);
    border: 1px solid rgba(13, 110, 253, 0.14);
}

/* CSS Continuous Rolling Text Pipeline Component */
.marquee-viewport {
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: rollCarousel 35s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused; /* Halts rolling sequence whenever user pointer glides over languages */
}

@keyframes rollCarousel {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Shrink-Shielded Language Badge Items */
.lang-pill {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.8);
    color: #334155;
    font-weight: 600;
    font-size: clamp(13px, 1.5vw, 15px);
    padding: 10px 20px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
    white-space: text-nowrap;
    flex-shrink: 0;
}

/* Micro-Interaction Button Framework Objects */
.btn-action-primary {
    background: var(--btn-primary-grad);
    color: #ffffff !important;
    border: none;
    border-radius: 12px;
    box-shadow: 0 8px 20px -6px rgba(13, 110, 253, 0.4);
    transition: all 0.3s ease;
}

.btn-action-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px -5px rgba(13, 110, 253, 0.6);
    opacity: 0.95;
}

.btn-action-secondary {
    background: #ffffff;
    color: #1e293b !important;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn-action-secondary:hover {
    background: #f8fafc;
    border-color: #94a3b8;
    transform: translateY(-2px);
}

/* Fluid Sizing Protection Metrics for Image Assets */
.cta-graphic {
    max-height: clamp(100px, 12vw, 14px);
    object-fit: contain;
    transition: transform 0.4s ease;
}

.img-bounce-wrapper {
    display: inline-block;
    animation: floatingGently 4s ease-in-out infinite;
}

@keyframes floatingGently {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}




/* =========================
GOOGLE FONT
========================= */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* =========================
GLOBAL
========================= */
:root{
    --primary:#0d6efd;
    --green:#16c784;
    --purple:#7c3aed;
    --dark:#0f172a;
    --text:#64748b;
    --border:#e2e8f0;
    --bg:#f8fafc;
}

body{
    font-family: 'Inter', sans-serif;
}

/* =========================
SECTION
========================= */
.pricing-section{
    background: var(--bg);
}

.pricing-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:10px 18px;
    border-radius:100px;
    background:#e8f1ff;
    color:var(--primary);
    font-weight:700;
    font-size:14px;
}

.pricing-title{
    /* font-size:clamp(32px,5vw,56px); */
    font-weight:800;
    color:var(--dark);
    margin-bottom:18px;
    line-height:1.1;
}

.gradient-text{
    background:linear-gradient(90deg,#0d6efd,#16c784);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.pricing-subtitle{
    color:var(--text);
    /* font-size:clamp(14px,2vw,18px); */
    line-height:1.7;
    max-width:720px;
    margin:auto;
}

/* =========================
CARD
========================= */
.pricing-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:28px;

    padding:clamp(20px,3vw,35px);

    display:flex;
    flex-direction:column;
    justify-content:space-between;

    position:relative;
    overflow:hidden;

    transition:0.35s ease;

    height:100%;
}

.pricing-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 60px rgba(15,23,42,0.08);
}

.pricing-card-active{
    border:1px solid rgba(13,110,253,0.25);

    background:
    linear-gradient(
        180deg,
        rgba(13,110,253,0.04),
        rgba(255,255,255,1)
    );
}

/* =========================
RIBBON
========================= */
.popular-ribbon{
    position:absolute;
    top:35px;
    right:-41px;

    background:var(--green);
    color:#fff;

    padding:8px 45px;

    font-size:11px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;

    transform:rotate(45deg);

    box-shadow:0 8px 25px rgba(22,199,132,0.3);
}

/* =========================
HEADER
========================= */
.pricing-card-header{
    display:flex;
    align-items:flex-start;
    gap:14px;

    padding-bottom:20px;
    margin-bottom:20px;

    border-bottom:1px solid #edf2f7;
}

.pricing-icon{
    width:56px;
    height:56px;

    min-width:56px;

    border-radius:18px;

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

    font-size:26px;
}

.green-light{
    background:rgba(22,199,132,0.12);
    color:var(--green);
}

.purple-light{
    background:rgba(124,58,237,0.12);
    color:var(--purple);
}

.blue-light{
    background:rgba(13,110,253,0.12);
    color:var(--primary);
}

.plan-title{
    font-size:22px;
    font-weight:800;
    color:var(--dark);
}

.plan-subtitle{
    font-size:14px;
    color:var(--text);

    white-space:normal;
    line-height:1.5;
}

/* =========================
MINI BADGE
========================= */
.mini-badge{
    padding:5px 12px;
    border-radius:100px;

    font-size:11px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:0.5px;
}

.mini-badge.green{
    background:var(--green);
    color:#fff;
}

.mini-badge.purple{
    background:var(--purple);
    color:#fff;
}

.mini-badge.blue{
    background:#dbeafe;
    color:var(--primary);
}

/* =========================
DESCRIPTION
========================= */
.pricing-desc{
    color:var(--text);
    font-size:15px;
    line-height:1.7;
    margin-bottom:28px;
}

/* =========================
PRICE
========================= */
.price-box{
    display:flex;
    align-items:flex-end;
    gap:6px;

    flex-wrap:wrap;

    margin-bottom:28px;
}

.currency{
    font-size:28px;
    font-weight:700;
    color:var(--dark);
}

.price{
    font-size: clamp(28px, 4vw, 40px);
    line-height:1;
    font-weight:800;
    color:var(--dark);
}

.custom-price{
    font-size:clamp(34px,4vw,52px);
}

.duration{
    color:var(--text);
    font-size:15px;
    padding-bottom:10px;
}

/* =========================
DIVIDER
========================= */
.pricing-divider{
    width:100%;
    height:1px;
    background:#edf2f7;
    margin-bottom:28px;
}

/* =========================
FEATURES
========================= */
.pricing-features{
    padding:0;
    margin:0;
    list-style:none;

    display:flex;
    flex-direction:column;
    gap:16px;
}

.pricing-features li{
    display:flex;
    align-items:flex-start;
    gap:12px;

    color:#334155;

    font-size:15px;
    line-height:1.6;

    word-break:break-word;
}

.pricing-features li i{
    color:var(--green);
    font-size:20px;
    margin-top:2px;
    flex-shrink:0;
}

.pricing-features li.disabled{
    color:#94a3b8;
    text-decoration:line-through;
}

.pricing-features li.disabled i{
    color:#ef4444;
}

/* =========================
BUTTONS
========================= */
.pricing-btn{
    width:100%;
    margin-top:35px;

    border:none;
    border-radius:16px;

    padding:15px 22px;

    font-size:15px;
    font-weight:700;

    transition:0.3s ease;
}

.primary-btn{
    background:linear-gradient(
        90deg,
        #16c784 0%,
        #0d6efd 100%
    );

    color:#fff;
}

.primary-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 12px 30px rgba(13,110,253,0.25);
    color:#fff;
}

.secondary-btn{
    background:#f8fafc;
    border:1px solid #dbe3ee;
    color:#0f172a;
}

.secondary-btn:hover{
    background:#eef4fa;
    transform:translateY(-2px);
}

/* =========================
SHRINKABLE RESPONSIVE
========================= */
@media (max-width:991px){

    .pricing-card{
        border-radius:24px;
    }

    
}

@media (max-width:767px){

    .pricing-card{
        padding:24px;
    }

    .pricing-card-header{
        gap:12px;
    }

    .pricing-icon{
        width:50px;
        height:50px;
        min-width:50px;
        font-size:22px;
    }

    .plan-title{
        font-size:20px;
    }

  

    .pricing-btn{
        padding:14px 18px;
    }
}

@media (max-width:575px){

    .pricing-title{
        /* font-size:34px; */
    }

    .pricing-card{
        padding:20px;
        border-radius:22px;
    }

   

    .currency{
        font-size:22px;
    }

    .pricing-features li{
        font-size:14px;
    }

    .popular-ribbon{
        font-size:10px;
        padding:7px 40px;
    }
}




/* Styling Theme Token Setups */
:root {
    --window-card-bg: #ffffff;
    --window-card-border: #f1f5f9;
    --window-input-border: #e2e8f0;
    --window-input-bg: #ffffff;
    --btn-window-gradient: linear-gradient(90deg, #16c784 0%, #0d6efd 100%);
}

/* Utilities */
.fw-extrabold { font-weight: 800; }
.fs-xxs { font-size: 11px; letter-spacing: 0.5px; }
.bg-primary-light { background-color: rgba(13, 110, 253, 0.12); }
.bg-success-light { background-color: rgba(22, 199, 132, 0.12); }
.bg-warning-light { background-color: rgba(245, 158, 11, 0.12); }
.gap-3\.5 { gap: 1.1rem !important; }
.mb-1\.5 { margin-bottom: 0.35rem !important; }

/* Left Column Info Icon Assets */
.contact-card-icon {
    width: clamp(40px, 4.5vw, 46px);
    height: clamp(40px, 4.5vw, 46px);
    border-radius: clamp(10px, 1.2vw, 12px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(18px, 2vw, 22px);
    flex-shrink: 0; /* Guard item from collapsing during flex shrinking actions */
}

/* Right Column Elevated Form Block Window Canvas */
.form-display-window {
    background-color: var(--window-card-bg);
    border: 2px solid var(--window-card-border);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.05), 0 10px 20px -10px rgba(0, 0, 0, 0.02);
    padding: clamp(20px, 2vw, 25px) !important; /* Compresses internal spacing reactively based on display scale */
}

/* Highly Compressible Inputs Elements Framework Mapping */
.window-form-input {
    width: 100%;
    padding: clamp(8px, 1.2vh, 12px) 16px !important; /* Ensures the row boxes squeeze tightly when needed */
    font-size: 14px;
    color: #1e293b;
    background-color: var(--window-input-bg);
    border: 1px solid var(--window-input-border);
    border-radius: 8px !important;
    transition: all 0.2s ease-in-out;
}

.window-form-input::placeholder {
    color: #94a3b8;
    opacity: 0.8;
}

.window-form-input:focus {
    color: #0f172a;
    border-color: #0d6efd;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.15);
    background-color: #ffffff;
    outline: 0;
}

/* Sizable Textarea Control */
.dynamic-form-textarea {
    min-height: clamp(80px, 12vh, 130px);
    resize: none;
}

/* Main Action Submission Button Layout */
.btn-window-submit {
    background: var(--btn-window-gradient);
    color: #ffffff !important;
    border: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 20px -6px rgba(13, 110, 253, 0.3);
}

.btn-window-submit:hover {
    transform: translateY(-2px);
    opacity: 0.95;
    box-shadow: 0 12px 24px -5px rgba(13, 110, 253, 0.5);
}

/* Mobile Layout Transformations Overrides */
@media (max-width: 575px) {
    .form-display-window {
        padding: 20px !important;
    }
    .btn-window-submit {
        width: 100%; /* Spans button wide full width across tiny smartphone viewports */
    }
}



/* ======================================================
FOOTER
====================================================== */

.footer{
    /* background:#050b12; */
    padding:80px 0 30px;
}

.footer-box h5{
    margin-bottom:20px;
    font-weight:700;
}

.footer-box a{
    color:#cbd5e1;
    display:block;
    margin-bottom:10px;
}

.footer-social{
    display:flex;
    gap:12px;
}

.footer-social a{
    width:42px;
    height:42px;
    border-radius:12px;
    /* background:#0f1c29; */
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.3s;
}

.footer-social a:hover{
    background:linear-gradient(90deg,var(--primary),var(--secondary));
}
