/* ==================================================
   DEMO HERO
================================================== */

.demo-hero-section{

    position:relative;

    overflow:hidden;

    padding:180px 40px 120px;

    background:
    linear-gradient(
    135deg,
    #041e2d 0%,
    #0b2f42 35%,
    #0f4c5c 70%,
    #14b8a6 100%
    );

    isolation:isolate;
}
.demo-hero-section::before{

    content:"";

    position:absolute;

    inset:0;

    background:
    linear-gradient(
    180deg,
    rgba(255,255,255,.04),
    rgba(255,255,255,.01)
    );

    backdrop-filter:blur(2px);

    z-index:-1;
}
.demo-hero-section::after{

    content:"";

    position:absolute;

    bottom:-250px;
    left:-250px;

    width:600px;
    height:600px;

    border-radius:50%;

    background:
    radial-gradient(
    circle,
    rgba(20,184,166,.25),
    transparent 70%
    );

    filter:blur(50px);

    animation:
    demoFloatReverse 12s ease-in-out infinite;
}
.demo-hero-bg{

    position:absolute;

    top:-180px;
    right:-180px;

    width:700px;
    height:700px;

    border-radius:50%;

    background:
    radial-gradient(
    circle,
    rgba(45,212,191,.35),
    transparent 70%
    );

    filter:blur(40px);

    animation:
    demoFloat 10s ease-in-out infinite;
}

@keyframes demoFloat{

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

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

.demo-hero-container{

    max-width:1400px;

    margin:auto;

    display:grid;

    grid-template-columns:
    1fr 1fr;

    gap:80px;

    align-items:center;

    position:relative;

    z-index:2;
}

/* BREADCRUMB */

.demo-breadcrumb{

    display:flex;

    align-items:center;

    gap:10px;

    margin-bottom:25px;
}

.demo-breadcrumb a{

    text-decoration:none;

   color:#5eead4;

    font-weight:600;
}

.demo-breadcrumb span{

     color:rgba(255,255,255,.7);
}

/* BADGE */

.demo-hero-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 24px;

    border-radius:999px;

    background:#ecfeff;

    color:#14b8a6;

    font-weight:700;

    margin-bottom:28px;
}

/* HEADING */

.demo-hero-content h1{

    font-size:72px;

    line-height:1.05;

    font-weight:900;

      color:white;

    margin-bottom:28px;
}

.demo-hero-content h1 span{

    display:block;

    color:#14b8a6;
}

.demo-hero-content p{

    font-size:20px;

    color:#b6adad;

    line-height:1.9;

    max-width:650px;

    margin-bottom:40px;
}

.demo-hero-content strong{

    display:block;

    margin-top:15px;

    color:#00dbb7;
}

/* BUTTONS */

.demo-hero-buttons{

    display:flex;

    gap:20px;
}

.demo-primary-btn{

    border:none;

    cursor:pointer;

    padding:18px 36px;

    border-radius:16px;

    font-size:16px;

    font-weight:700;

    color:white;

    background:
    linear-gradient(
        135deg,
        #14b8a6,
        #06b6d4
    );

    box-shadow:
    0 20px 40px rgba(20,184,166,.25);

    transition:.35s;
}

.demo-primary-btn:hover{

    transform:
    translateY(-5px);
}

.demo-secondary-btn{

    text-decoration:none;

    padding:18px 36px;

    border-radius:16px;

    border:2px solid #cbd5e1;

    color:#f8f8f8;

    font-weight:700;

    transition:.35s;
}

.demo-secondary-btn:hover{

    border-color:#14b8a6;

    color:#14b8a6;
}

/* IMAGE */

.demo-dashboard-card{

    background:white;

    padding:18px;

    border-radius:30px;

    box-shadow:
    0 40px 80px rgba(0,0,0,.08);

    animation:
    dashboardFloat 6s ease-in-out infinite;
}

.demo-dashboard-card img{

    width:100%;

    display:block;

    border-radius:20px;
}

@keyframes dashboardFloat{

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

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


@media(max-width:576px){

    .demo-hero-section{

        padding:120px 20px 80px;
    }

    .demo-hero-container{

        grid-template-columns:1fr;

        gap:40px;
    }

    .demo-hero-content{

        text-align:center;
    }

    .demo-breadcrumb{

        justify-content:center;
    }

    .demo-hero-content h1{

        font-size:42px;
    }

    .demo-hero-content p{

        font-size:16px;
    }

    .demo-hero-buttons{

        flex-direction:column;
    }

    .demo-primary-btn,
    .demo-secondary-btn{

        width:100%;
    }
}


/* ==================================
   CONNECT SCHOOL
================================== */

.demo-connect{

    padding:140px 40px;

    background:#ffffff;
}

.demo-connect-header{

    max-width:900px;

    margin:auto;

    text-align:center;

    margin-bottom:90px;
}

.demo-connect-badge{

    display:inline-block;

    padding:12px 22px;

    border-radius:999px;

    background:#e6fffb;

    color:#14b8a6;

    font-weight:700;

    margin-bottom:24px;
}

.demo-connect-header h2{

    font-size:68px;

    line-height:1.1;

    font-weight:900;

    color:#0f172a;

    margin-bottom:20px;
}

.demo-connect-header h2 span{

    display:block;

    color:#14b8a6;
}

.demo-connect-header p{

    max-width:750px;

    margin:auto;

    font-size:18px;

    line-height:1.9;

    color:#64748b;
}

.marathi{

    margin-top:20px;

    font-size:20px;

    color:#475569;
}

/* NETWORK */

.school-network{

    position:relative;

    width:1000px;

    height:850px;

    margin:auto;
}
.network-lines{

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    z-index:1;

    overflow:visible;
}

.network-lines line{

    stroke:#14b8a6;

    stroke-width:2.5;

    stroke-linecap:round;

    stroke-dasharray:8 8;

    opacity:.45;

    animation:
    flowLine 10s linear infinite;
}

@keyframes flowLine{

    from{

        stroke-dashoffset:0;
    }

    to{

        stroke-dashoffset:-150;
    }
}
/* CENTER */

.network-center{

    position:absolute;

    top:50%;
    left:50%;

    transform:translate(-50%,-50%);

    z-index:10;

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

@keyframes phoneFloat{

    0%,100%{

        transform:
        translate(-50%,-50%);
    }

    50%{

        transform:
        translate(-50%,-58%);
    }
}

.network-center img{

    width:360px;

    filter:
    drop-shadow(
    0 35px 60px rgba(0,0,0,.20));
}

/* NODE */

.node{

    position:absolute;

    width:170px;

    height:56px;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:8px;

    border-radius:999px;

    background:white;

    border:1px solid #e2e8f0;

    box-shadow:
    0 15px 35px rgba(0,0,0,.06);

    font-weight:700;

    color:#0f172a;

    z-index:2;

    transition:.35s ease;
}

.node:hover{

    border-color:#14b8a6;

    box-shadow:
    0 20px 45px rgba(20,184,166,.15);
}
 

/* TOP */

.student{

    top:30px;
    left:50%;

    transform:translateX(-50%);
}

.teacher{

    top:140px;
    left:170px;
}

.parent{

    top:140px;
    right:170px;
}

.admin{
    top:270px;
    left:50%;
    transform:translateX(-50%);
}

/* LEFT */

.admissionn{

    top:290px;
    left:40px;
}

.attendancee{

    top:430px;
    left:100px;
}

.library{

    bottom:220px;
    left:150px;
}

.transport{

    bottom:80px;
    left:260px;
}

/* RIGHT */

.feess{

    top:290px;
    right:40px;
}

.examss{

    top:430px;
    right:100px;
}

.resultss{

    bottom:220px;
    right:150px;
}

.timetable{

    bottom:80px;
    right:260px;
}

.content{

    bottom:10px;
    left:50%;

    transform:translateX(-50%);
}

/* ==================================
   CONNECT SCHOOL MOBILE PREMIUM
================================== */

@media (max-width:576px){

.demo-connect{

    padding:80px 18px;
}

.demo-connect-header{

    margin-bottom:40px;
}

.demo-connect-header h2{

    font-size:34px;

    line-height:1.15;
}

.demo-connect-header p{

    font-size:15px;
}

.marathi{

    font-size:15px;
}

/* NETWORK */

.school-network{

    position:relative;

    width:100%;

    height:820px;

    margin:auto;
}

/* HIDE DESKTOP SVG */

.network-lines{

    display:none;
}

/* PHONE */

.network-center{

    position:absolute;

    top:50%;
    left:50%;

    transform:
    translate(-50%,-50%);

    z-index:10;

    animation:
    phoneFloatMobile 4s ease-in-out infinite;
}

.network-center img{

    width:170px;
}

@keyframes phoneFloatMobile{

    0%,100%{

        transform:
        translate(-50%,-50%);
    }

    50%{

        transform:
        translate(-50%,-56%);
    }
}

/* NODE */

.node{

    position:absolute !important;

    width:130px;

    height:46px;

    border-radius:999px;

    background:#fff;

    border:1px solid #e2e8f0;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:12px;

    font-weight:700;

    color:#0f172a;

    z-index:5;

    box-shadow:
    0 10px 25px rgba(0,0,0,.06);
}

/* TOP */

.student{

    top:20px;
    left:50%;

    transform:
    translateX(-50%) !important;
}

/* UPPER */

.teacher{

    top:110px;
    left:0;
}

.parent{

    top:110px;
    right:0;
}

/* MID */

.admission{

    top:250px;
    left:0;
}

.fees{

    top:250px;
    right:0;
}

/* MID 2 */

.attendance{

    top:370px;
    left:0;
}

.exams{

    top:370px;
    right:0;
}

/* LOWER */

.library{

    top:490px;
    left:0;
}

.results{

    top:490px;
    right:0;
}

/* LOWER 2 */

.transport{

    top:610px;
    left:0;
}

.timetable{

    top:610px;
    right:0;
}

/* BOTTOM */

.content{

    bottom:10px;

    left:50%;

    transform:
    translateX(-50%) !important;

    width:180px;
}

/* ADMIN BADGE */

.admin{

    position:absolute !important;

    top:185px;

    left:50%;

    transform:
    translateX(-50%) !important;

    width:120px;

    background:
    linear-gradient(
    135deg,
    #14b8a6,
    #06b6d4);

    color:white;

    border:none;
}

/* DOTTED CONNECTIONS */

.node::before{

    content:"";

    position:absolute;

    width:60px;

    border-top:2px dashed
    rgba(20,184,166,.45);

    z-index:-1;

    animation:
    pulseLine 3s linear infinite;
}

.teacher::before,
.admission::before,
.attendance::before,
.library::before,
.transport::before{

    right:-60px;
}

.parent::before,
.fees::before,
.exams::before,
.results::before,
.timetable::before{

    left:-60px;
}

.student::before{

    width:2px;

    height:70px;

    border:none;

    border-left:2px dashed
    rgba(20,184,166,.45);

    left:50%;

    top:44px;
}

.content::before{

    width:2px;

    height:70px;

    border:none;

    border-left:2px dashed
    rgba(20,184,166,.45);

    left:50%;

    bottom:44px;
}

@keyframes pulseLine{

    0%{

        opacity:.2;
    }

    50%{

        opacity:1;
    }

    100%{

        opacity:.2;
    }
}

}

/* ==================================
   DAILY WORKFLOW TIMELINE
================================== */

.demo-day{

    padding:140px 20px;

    background:
    linear-gradient(
    180deg,
    #ffffff,
    #f8fafc);
}

/* HEADER */

.demo-day-header{

    max-width:850px;

    margin:auto;

    text-align:center;

    margin-bottom:100px;
}

.demo-day-badge{

    display:inline-block;

    padding:12px 24px;

    border-radius:999px;

    background:#e6fffb;

    color:#14b8a6;

    font-weight:700;

    margin-bottom:24px;
}

.demo-day-header h2{

    font-size:68px;

    line-height:1.1;

    font-weight:900;

    color:#0f172a;

    margin-bottom:20px;
}

.demo-day-header h2 span{

    display:block;

    color:#14b8a6;
}

.demo-day-header p{

    font-size:18px;

    color:#64748b;

    line-height:1.8;
}

.marathi{

    margin-top:15px;

    font-size:19px;
}

/* TIMELINE */

.timeline-wrapper{

    position:relative;

    max-width:1100px;

    margin:auto;
}

/* CENTER LINE */

.timeline-line{

    position:absolute;

    left:50%;

    top:0;

    width:4px;

    height:100%;

    transform:translateX(-50%);

    background:
    rgba(20,184,166,.12);

    overflow:hidden;
}

.timeline-line::after{

    content:"";

    position:absolute;

    width:100%;

    height:180px;

    background:
    linear-gradient(
    180deg,
    transparent,
    #14b8a6,
    transparent);

    animation:
    flowDown 3s linear infinite;
}

@keyframes flowDown{

    from{
        top:-180px;
    }

    to{
        top:100%;
    }
}

/* STEP */

.timeline-step{

    position:relative;

    width:50%;

    padding:0 60px;

    margin-bottom:70px;
}

.timeline-step.left{

    left:0;
}

.timeline-step.right{

    left:50%;
}

/* DOT */

.timeline-step::before{

    content:"";

    position:absolute;

    top:40px;

    width:22px;

    height:22px;

    background:#14b8a6;

    border-radius:50%;

    box-shadow:
    0 0 0 10px rgba(20,184,166,.15);
}

.timeline-step.left::before{

    right:-11px;
}

.timeline-step.right::before{

    left:-11px;
}

/* CARD */

.timeline-card{

    padding:30px;

    border-radius:28px;

    background:white;

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

    transition:.4s;
}

.timeline-card:hover{

    transform:
    translateY(-10px);

    box-shadow:
    0 30px 80px rgba(20,184,166,.18);
}

.timeline-time{

    display:inline-block;

    padding:10px 18px;

    border-radius:999px;

    background:#f1f5f9;

    font-weight:800;

    margin-bottom:18px;
}

.timeline-card h4{

    font-size:28px;

    color:#0f172a;

    margin-bottom:12px;
}

.timeline-card p{

    color:#64748b;

    line-height:1.8;
}
/* ==================================
   DAILY WORKFLOW MOBILE
================================== */

@media (max-width:576px){

    .demo-day{

        padding:90px 18px;
    }

    /* HEADER */

    .demo-day-header{

        margin-bottom:60px;
    }

    .demo-day-badge{

        font-size:13px;

        padding:10px 18px;

        margin-bottom:18px;
    }

    .demo-day-header h2{

        font-size:38px;

        line-height:1.15;

        margin-bottom:18px;
    }

    .demo-day-header p{

        font-size:15px;

        line-height:1.8;
    }

    .marathi{

        font-size:15px;

        line-height:1.8;

        margin-top:12px;
    }

    /* TIMELINE */

    .timeline-wrapper{

        max-width:100%;

        padding-left:18px;
    }

    /* LINE */

    .timeline-line{

        left:20px;

        width:3px;
    }

    .timeline-line::after{

        height:120px;
    }

    /* STEP */

    .timeline-step{

        width:100%;

        left:0 !important;

        padding:0 0 0 45px;

        margin-bottom:28px;
    }

    /* DOT */

    .timeline-step::before{

        left:11px !important;

        right:auto !important;

        width:18px;

        height:18px;

        top:34px;

        box-shadow:
        0 0 0 8px rgba(20,184,166,.12);
    }

    /* CARD */

    .timeline-card{

        padding:22px 20px;

        border-radius:22px;

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

        backdrop-filter:
        blur(20px);

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

        border:
        1px solid rgba(226,232,240,.8);
    }

    .timeline-card:hover{

        transform:none;
    }

    /* TIME */

    .timeline-time{

        font-size:12px;

        padding:8px 14px;

        margin-bottom:14px;
    }

    /* TITLE */

    .timeline-card h4{

        font-size:20px;

        line-height:1.4;

        margin-bottom:10px;
    }

    /* DESCRIPTION */

    .timeline-card p{

        font-size:14px;

        line-height:1.7;
    }

    /* STAGGER EFFECT */

    .timeline-step:nth-child(even) .timeline-card{

        margin-left:8px;
    }

    .timeline-step:nth-child(odd) .timeline-card{

        margin-right:8px;
    }

}

/* ==================================
   WHY SCHOOLS SWITCH
================================== */

.demo-switch{

    padding:140px 40px;

    background:
    linear-gradient(
    180deg,
    #ffffff,
    #f8fafc);
}

/* HEADER */

.demo-switch-header{

    max-width:900px;

    margin:auto;

    text-align:center;

    margin-bottom:90px;
}

.demo-switch-badge{

    display:inline-block;

    padding:12px 24px;

    border-radius:999px;

    background:#e6fffb;

    color:#14b8a6;

    font-weight:700;

    margin-bottom:24px;
}

.demo-switch-header h2{

    font-size:68px;

    line-height:1.1;

    font-weight:900;

    color:#0f172a;

    margin-bottom:20px;
}

.demo-switch-header h2 span{

    display:block;

    color:#14b8a6;
}

.demo-switch-header p{

    max-width:760px;

    margin:auto;

    font-size:18px;

    line-height:1.9;

    color:#64748b;
}

.demo-switch-marathi{

    margin-top:18px;
}

/* COMPARISON */

.demo-switch-wrapper{

    max-width:1300px;

    margin:auto  auto 100px;

    display:grid;

    grid-template-columns:
    1fr 220px 1fr;

    align-items:center;

    gap:40px;
}

/* CARDS */

.switch-card{

    background:white;

    border-radius:32px;

    padding:45px;

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

    border:1px solid #e2e8f0;

    transition:.4s;
}

.switch-card:hover{

    transform:translateY(-10px);
}

.before-card{

    border-top:6px solid #ef4444;
}

.after-card{

    border-top:6px solid #14b8a6;
}

.switch-title{

    font-size:28px;

    font-weight:800;

    margin-bottom:30px;

    color:#0f172a;
}

.switch-card ul{

    list-style:none;
}

.switch-card li{

    padding:16px 0;

    border-bottom:1px solid #e2e8f0;

    color:#475569;

    font-size:17px;
}

.switch-card li:last-child{

    border:none;
}

/* CENTER */

.switch-center{

    text-align:center;
}

.switch-circle{

    width:160px;
    height:160px;

    margin:auto;

    border-radius:50%;

    background:
    linear-gradient(
    135deg,
    #14b8a6,
    #06b6d4);

    display:flex;

    align-items:center;

    justify-content:center;

    color:white;

    font-size:24px;

    font-weight:800;

    box-shadow:
    0 25px 60px rgba(20,184,166,.35);

    animation:
    pulseCircle 3s infinite;
}

@keyframes pulseCircle{

    0%,100%{

        transform:scale(1);
    }

    50%{

        transform:scale(1.08);
    }
}

.switch-arrow{

    font-size:60px;

    color:#14b8a6;

    margin-top:30px;

    animation:
    moveArrow 1.5s infinite;
}

@keyframes moveArrow{

    50%{

        transform:translateX(10px);
    }
}

/* STATS */

.switch-stats{

    max-width:1200px;

    margin:auto;

    display:grid;

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

    gap:25px;
}

.switch-stat{

    background:white;

    padding:35px;

    border-radius:24px;

    text-align:center;

    box-shadow:
    0 20px 50px rgba(15,23,42,.06);
}

.switch-stat h3{

    font-size:52px;

    color:#14b8a6;

    font-weight:900;

    margin-bottom:10px;
}

.switch-stat p{

    color:#64748b;

    font-weight:600;
}

@media(max-width:576px){

    .demo-switch{

        padding:90px 18px;
    }

    .demo-switch-header h2{

        font-size:38px;
    }

    .demo-switch-header p{

        font-size:15px;
    }

    .demo-switch-wrapper{

        grid-template-columns:1fr;

        gap:25px;
    }

    .switch-center{

        order:2;
    }

    .before-card{

        order:1;
    }

    .after-card{

        order:3;
    }

    .switch-card{

        padding:28px;
    }

    .switch-title{

        font-size:22px;
    }

    .switch-card li{

        font-size:15px;
    }

    .switch-circle{

        width:120px;
        height:120px;

        font-size:18px;
    }

    .switch-arrow{

        transform:rotate(90deg);

        margin-top:20px;
    }

    .switch-stats{

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

        gap:15px;
    }

    .switch-stat{

        padding:25px 15px;
    }

    .switch-stat h3{

        font-size:34px;
    }
}

/* ==================================
   BOOK DEMO SECTION
================================== */

.demo-booking{

    padding:140px 40px;

    background:
    linear-gradient(
    180deg,
    #f8fafc 0%,
    #ffffff 100%);
}

.demo-booking-container{

    max-width:1400px;

    margin:auto;

    display:grid;

    grid-template-columns:
    1.2fr .8fr;

    gap:40px;

    align-items:start;
}

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

.demo-form-card{

    background:white;

    border-radius:36px;

    padding:50px;

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

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

    position:relative;

    overflow:hidden;
}

.demo-form-card::before{

    content:"";

    position:absolute;

    top:-120px;
    right:-120px;

    width:260px;
    height:260px;

    background:
    radial-gradient(
    rgba(20,184,166,.12),
    transparent);

    border-radius:50%;
}

.demo-form-header{

    margin-bottom:35px;
}

.demo-form-header span{

    display:inline-block;

    padding:12px 20px;

    border-radius:999px;

    background:#e6fffb;

    color:#14b8a6;

    font-weight:700;

    margin-bottom:18px;
}

.demo-form-header h2{

    font-size:48px;

    line-height:1.1;

    font-weight:900;

    color:#0f172a;

    margin-bottom:12px;
}

.demo-form-header p{

    color:#64748b;

    font-size:17px;

    line-height:1.8;
}

/* FORM */
.form-grid{

    display:grid;

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

    gap:18px;
}

#demoForm{

    display:flex;

    flex-direction:column;

    gap:18px;
}
.demo-form-card form{

    display:grid;

    gap:18px;
}

.demo-form-card input,
.demo-form-card select,
.demo-form-card textarea{

    width:100%;

    border:1px solid #dbeafe;

    background:#ffffff;

    padding:18px 20px;

    border-radius:16px;

    font-size:15px;

    outline:none;

    transition:.3s;
}

.demo-form-card input:focus,
.demo-form-card select:focus,
.demo-form-card textarea:focus{

    border-color:#14b8a6;

    box-shadow:
    0 0 0 5px rgba(20,184,166,.08);
}
.demo-plan-display{

    display:flex;

    flex-direction:column;

    gap:10px;
}

.demo-plan-display label{

    font-size:14px;

    font-weight:700;

    color:#0f172a;
}

.demo-plan-box{

    padding:16px 20px;

    border-radius:16px;

    background:#ecfeff;

    border:1px solid #99f6e4;

    color:#0f766e;

    font-weight:700;
}
.demo-form-card textarea{

    min-height:140px;

    resize:none;
}

.demo-submit-btn{

    border:none;

    padding:18px;

    border-radius:16px;

    background:
    linear-gradient(
    135deg,
    #14b8a6,
    #06b6d4);

    color:white;

    font-size:16px;

    font-weight:700;

    cursor:pointer;

    transition:.35s;

    box-shadow:
    0 18px 35px rgba(20,184,166,.25);
}

.demo-submit-btn:hover{

    transform:translateY(-4px);

    box-shadow:
    0 22px 45px rgba(20,184,166,.35);
}

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

.demo-info-side{

    display:flex;

    flex-direction:column;

    gap:22px;
}

/* TOP CARD */

.slot-card{

    background:
    linear-gradient(
    135deg,
    #14b8a6,
    #06b6d4);

    color:white;

    border-radius:32px;

    padding:35px;

    box-shadow:
    0 25px 60px rgba(20,184,166,.25);
}

.slot-card h3{

    font-size:32px;

    font-weight:800;

    margin-bottom:12px;
}

.slot-card p{

    line-height:1.8;

    opacity:.95;
}

/* ==================================
   MEETING CARDS
================================== */

.meeting-card{

    background:white;

    border-radius:26px;

    padding:24px;

    display:flex;

    align-items:center;

    gap:18px;

    border:
    1px solid #e2e8f0;

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

    transition:.35s;
}

.meeting-card:hover{

    transform:translateY(-6px);

    border-color:#14b8a6;

    box-shadow:
    0 20px 45px rgba(20,184,166,.15);
}

.meeting-icon{

    width:70px;
    height:70px;

    display:flex;

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

    border-radius:20px;

    background:
    linear-gradient(
    135deg,
    #e6fffb,
    #ccfbf1);

    color:#14b8a6;

    font-size:28px;

    flex-shrink:0;
}

.meeting-card h4{

    font-size:22px;

    color:#0f172a;

    margin-bottom:6px;
}

.meeting-card p{

    color:#64748b;

    line-height:1.7;
}

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

.demo-process{

    background:white;

    border-radius:32px;

    padding:35px;

    border:
    1px solid #e2e8f0;

    box-shadow:
    0 20px 50px rgba(15,23,42,.05);
}

.process-item{

    display:flex;

    align-items:center;

    gap:16px;

    padding:18px 0;

    position:relative;
}

.process-item:not(:last-child)::after{

    content:"";

    position:absolute;

    left:20px;

    top:58px;

    width:2px;

    height:30px;

    background:
    linear-gradient(
    to bottom,
    #14b8a6,
    transparent);
}

.process-item span{

    width:40px;
    height:40px;

    display:flex;

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

    border-radius:50%;

    background:
    linear-gradient(
    135deg,
    #14b8a6,
    #06b6d4);

    color:white;

    font-weight:700;

    flex-shrink:0;
}

.process-item{

    color:#0f172a;

    font-weight:600;
}

/* ==================================
   BOOK DEMO MOBILE
================================== */

@media(max-width:576px){

    .demo-booking{

        padding:90px 18px;
    }

    .demo-booking-container{

        grid-template-columns:1fr;

        gap:25px;
    }

    .demo-form-card{

        padding:28px;
    }
  .form-grid{

        grid-template-columns:1fr;
    }
    .demo-form-header h2{

        font-size:34px;
    }

    .demo-form-header p{

        font-size:15px;
    }

    .demo-form-card input,
    .demo-form-card select,
    .demo-form-card textarea{

        padding:15px 16px;
    }

    .slot-card{

        padding:25px;
    }

    .slot-card h3{

        font-size:26px;
    }

    .meeting-card{

        padding:18px;
    }

    .meeting-icon{

        width:55px;
        height:55px;

        font-size:22px;
    }

    .meeting-card h4{

        font-size:18px;
    }

    .demo-process{

        padding:24px;
    }

    .process-item{

        font-size:14px;
    }
}

/* ==================================
   DEMO FAQ
================================== */

.demo-faq{

    padding:140px 40px;

    background:
    linear-gradient(
    180deg,
    #ffffff,
    #f8fafc);
}

.demo-faq-header{

    text-align:center;

    max-width:850px;

    margin:auto auto 70px;
}

.demo-faq-badge{

    display:inline-block;

    padding:12px 24px;

    border-radius:999px;

    background:#e6fffb;

    color:#14b8a6;

    font-weight:700;

    margin-bottom:24px;
}

.demo-faq-header h2{

    font-size:64px;

    font-weight:900;

    line-height:1.1;

    color:#0f172a;

    margin-bottom:20px;
}

.demo-faq-header h2 span{

    display:block;

    color:#14b8a6;
}

.demo-faq-header p{

    color:#64748b;

    font-size:18px;

    line-height:1.9;
}

.faq-marathi{

    margin-top:16px;

    font-size:20px;

    color:#475569;
}

.demo-faq-container{

    max-width:900px;

    margin:auto;

    display:flex;

    flex-direction:column;

    gap:18px;
}

.faq-item{

    background:white;

    border:1px solid #e2e8f0;

    border-radius:22px;

    overflow:hidden;

    box-shadow:
    0 20px 50px rgba(15,23,42,.05);

    transition:.35s;
}

.faq-item:hover{

    transform:translateY(-3px);

    border-color:#14b8a6;
}

.faq-question{

    width:100%;

    border:none;

    background:none;

    cursor:pointer;

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:26px 30px;

    font-size:18px;

    font-weight:700;

    color:#0f172a;
}

.faq-question i{

    color:#14b8a6;

    transition:.35s;
}

.faq-item.active .faq-question i{

    transform:rotate(45deg);
}

.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:.4s ease;
}

.faq-answer p{

    padding:
    0 30px 25px;

    color:#64748b;

    line-height:1.9;

    font-size:16px;
}

.faq-item.active .faq-answer{

    max-height:300px;
}

@media (max-width:576px){

    .demo-faq{

        padding:90px 18px;
    }

    .demo-faq-header{

        margin-bottom:45px;
    }

    .demo-faq-header h2{

        font-size:38px;
    }

    .demo-faq-header p{

        font-size:15px;
    }

    .faq-marathi{

        font-size:16px;
    }

    .faq-question{

        padding:20px;

        font-size:15px;

        text-align:left;
    }

    .faq-answer p{

        padding:
        0 20px 20px;

        font-size:14px;
    }

}