:root{
    --r:#e9363a;
    --t:#111827;
    --m:#6b7280;
    --b:#f7f7fb;
    --s:0 14px 40px rgba(15,23,42,.08);
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
    color:var(--t);
    background:#fff;
}

.btn-r,
.btn-o{
    border-radius:999px;
    font-weight:700;
    border:0;
    padding:.8rem 1.35rem;
}

.btn-r{
    background:var(--r);
    color:#fff;
}

.btn-o{
    background:#fff;
    color:var(--r);
    border:1px solid var(--r);
}

#header{
    position:relative;
    z-index:1000;
}

.logo{
    width:136px;
    height:auto;
}

.nav-link{
    color:#374151!important;
    font-weight:600;
    font-size:15px;
}

.nav-link:hover{
    color:var(--r)!important;
}

.get-started-btn{
    border:0;
    background:var(--r);
    color:#fff;
    border-radius:999px;
    padding:.72rem 1.2rem;
    font-weight:700;
}

.get-started-btn:hover{
    background:#dc2626;
}

.menu-icon{
    width:22px;
    height:22px;
}

.black-icon{
    display:none;
}

#top{
    margin:0;
}

/* HERO SECTION */
.hero-section {
    min-height: 82vh;
    position: relative;
    overflow: hidden;
}

.hero-debug-badge{
    position:absolute;
    top:12px;
    left:12px;
    z-index:20;
    padding:6px 10px;
    border-radius:999px;
    background:rgba(0,0,0,.55);
    color:#fff;
    font-size:12px;
}

/* SLIDER */
.hero-slider {
    display: flex;
    transition: transform 0.8s cubic-bezier(.22,.61,.36,1);
    width: 100%;
    will-change: transform;
    min-height: 82vh;
}

.hero-slider > div{
    flex: 0 0 100%;
    width:100%;
    max-width:100%;
    min-height:82vh;
}

.hero-slider > div.active{
    /* active slide is handled by the JS translateX carousel */
}

.hero-slide{
    position:relative;
    width:100%;
}

.hero-slide1,
.hero-slide2,
.hero-slide3,
.hero-slide4,
.hero-slide--banner{
    display:block !important;
}

.hero-slide .container{
    min-height:82vh;
    display:flex;
    align-items:center;
}

.hero-slide .row{
    width:100%;
}

.hero-slide .hero-img{
    width:100%;
    max-height:75vh;
    object-fit:contain;
}

.hero-slide--banner{
    background:linear-gradient(135deg,#ff4d4d,#e63946);
    background-position:center;
    background-repeat:no-repeat;
    background-size:cover;
    min-height:82vh;
    height:82vh;
    overflow:hidden;
    flex: 0 0 100%;
}

.hero-banner-link{
    position:absolute;
    inset:0;
    display:block;
}

.hero-slide--banner::after{
    content:none;
}

.hero-dots{
    position:absolute;
    left:50%;
    bottom:22px;
    transform:translateX(-50%);
    display:flex;
    gap:8px;
    z-index:25;
}

.hero-dots span{
    width:10px;
    height:10px;
    border-radius:50%;
    background:rgba(255,255,255,.55);
    display:block;
    cursor:pointer;
}

.hero-dots span.active{
    background:var(--r);
    transform:scale(1.15);
}

/* Responsive */
@media (max-width: 768px) {

    .hero-section {
        min-height: 56vh;
        text-align: center;
    }

    .hero-slider,
    .hero-slider > div,
    .hero-slide .container,
    .hero-slide--banner{
        min-height:56vh;
        height:56vh;
    }

    .hero-slide--banner{
        background-size:cover;
        background-position:center center;
    }

    .hero-dots{
        bottom:14px;
    }

    .hero-dots span{
        width:8px;
        height:8px;
    }

}

@media (min-width: 769px) and (max-width: 991px) {
    .hero-section,
    .hero-slider,
    .hero-slider > div,
    .hero-slide .container,
    .hero-slide--banner{
        min-height:64vh;
        height:64vh;
    }

    .hero-slide--banner{
        background-size:cover;
        background-position:center center;
    }
}

/* FEATURES SECTION */
.features-section {
    padding: 80px 0;
    background: var(--b);
}

.features-section h2 {
    font-weight: 700;
}

/* card */
.feature-card {
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    height: 100%;
    text-align: left;
    transition: 0.3s;
}

.feature-card h5 {
    color: #000000;
    font-size: 17.69px;
    font-weight: 500;
    line-height: 24.77px;
}

.feature-card p {
    color: #787878;
    font-size: 16px;
    font-weight: 500;
}

.feature-card img {
    width: 100%;
    max-width: 180px;
    display: block;
    margin: 20px auto 0;
    height: 180px;
    object-fit: cover;
    object-position: top;
    /* bottom fade */
    -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
}

/* highlight card */
.feature-card.active {
    box-shadow: 0 10px 25px rgba(255, 77, 77, 0.3);
}

/* .feature-card:hover{
    box-shadow: 0 10px 25px rgba(255, 77, 77, 0.3);
} */


/* wide card */
.wide-card {
    padding: 30px;
}

.wide-card img {
    max-width: 220px;
}

/* responsive */
@media (max-width: 991px) {
    .features-section .feature-slider {
        display: flex !important;
        flex-wrap: wrap !important;
        overflow: visible;
        margin-left: calc(-0.5 * var(--bs-gutter-x)) !important;
        margin-right: calc(-0.5 * var(--bs-gutter-x)) !important;
        padding-bottom: 0;
        transform: none !important;
    }

    .features-section .feature-slider::-webkit-scrollbar {
        display: none;
    }

    .features-section .feature-slider .feature-slide {
        flex: 0 0 auto !important;
        width: auto !important;
        max-width: 100% !important;
        min-width: 0 !important;
        padding-left: calc(var(--bs-gutter-x) * .5);
        padding-right: calc(var(--bs-gutter-x) * .5);
    }

    .feature-card {
        text-align: center;
    }

    .smart-auto-card {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .smart-auto-card h5 {
        order: 1;
    }

    .smart-auto-card p {
        order: 2;
    }

    .smart-auto-card img {
        order: 3;
        margin-top: 14px;
    }

    .ai-chatbot-card {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .ai-chatbot-card h5 {
        order: 1;
    }

    .ai-chatbot-card p {
        order: 2;
    }

    .ai-chatbot-card img {
        order: 3;
        margin-top: 14px;
    }

    .wide-card {
        flex-direction: column;
        text-align: center;
    }

    .wide-card img {
        margin-top: 20px;
    }
}

/* ANIMATED SECTION */
.engage-section {
    padding: 50px 0;
    display: flex;
    justify-content: center;
}

/* wrapper */
.engage-wrapper {
    position: relative;
    width: 700px;
    height: 700px;
}

/* circles */
.circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.08);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.c1 {
    width: 700px;
    height: 700px;
}

.c2 {
    width: 560px;
    height: 560px;
}

.c3 {
    width: 410px;
    height: 410px;
}

/* center content */
.engage-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 420px;
}

.engage-content h6 {
    color: #787878;
    font-size: 17.79px;
    font-weight: 500;
}

.engage-content h2 {
    color: #000000;
    font-size: 32px;
    font-weight: 600;
    /* margin: 10px 0; */
}

.engage-content p {
    color: #787878;
    font-size: 16px;
    font-weight: 500;
}

/* button */
.engage-btn {
    margin-top: 20px;
    background: #ff4d4d;
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
}

/* icons */
.engage-section .icon {
    position: absolute;
    width: 65px;
    height: 65px;
    background: #fff;
    border-radius: 35%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon img {
    width: 50px;
}

/* exact positions */
.i1 {
    top: -5%;
    left: 50%;
    transform: translateX(-50%);
}

.i2 {
    top: 20%;
    right: 0;
}

.i3 {
    bottom: 20%;
    right: 0;
}

.i4 {
    bottom: -3%;
    left: 50%;
    transform: translateX(-50%);
}

.i5 {
    top: 20%;
    left: 3%;
    transform: rotate(8deg);
}

.i6 {
    bottom: 20%;
    left: 4%;
    transform: rotate(10deg);
}

/* responsive */
@media (max-width: 992px) {
    .engage-wrapper {
        width: 500px;
        height: 500px;
    }

    .c1 {
        width: 500px;
        height: 500px;
    }

    .c2 {
        width: 380px;
        height: 380px;
    }

    .c3 {
        width: 260px;
        height: 260px;
    }
}

@media (max-width: 768px) {

    .engage-wrapper {
        width: 320px;
        height: 320px;
    }

    .engage-section .icon {
        width: 50px;
        height: 50px;
    }

    .i1 {
        top: -10%;
    }

    .i4 {
        bottom: -41px;
    }

    .i5 {
        left: 0%;
    }

    .i6 {
        left: 0%;
    }

    .c1 {
        width: 320px;
        height: 320px;
    }

    .c2 {
        width: 240px;
        height: 240px;
    }

    .c3 {
        width: 170px;
        height: 170px;
    }

    .engage-section .icon {
        width: 45px;
        height: 45px;
    }

    .engage-section .icon img {
        width: 20px;
    }

    .engage-content h2 {
        font-size: 20px;
    }

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

    .engage-btn {
        margin-top: 0px;
        padding: 5px 10px;
        font-size: 14px;
    }
}


/* PRICING SECTION */
.pricing-section {
    padding: 80px 0;
}

.pricing-section h2 {
    font-weight: 700;
}

.sub {
    color: #666;
    margin-bottom: 30px;
}

/* toggle */
.toggle-btns {
    display: inline-flex;
    background: #eee;
    padding: 5px;
    border-radius: 30px;
    margin-bottom: 40px;
}

.toggle {
    border: none;
    padding: 8px 20px;
    border-radius: 30px;
    background: transparent;
}

.toggle.active {
    background: #ff4d4d;
    color: #fff;
}

/* hide/show */
.pricing-wrapper {
    display: none;
}

.active-plan {
    display: block;
}

/* card */
.price-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    text-align: left;
    height: 100%;
    border-bottom: 5px solid #A1A1AA;
    border-top: 5px solid #A1A1AA;
}

.price-card h5 {
    font-weight: 600;
}

.price-card h3 {
    margin: 15px 0;
}

.price-card h3 span {
    font-size: 14px;
    color: #888;
}

.price-card ul {
    list-style: none;
    padding: 0;
    font-size: 14px;
}

.price-card ul li {
    margin: 8px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-card ul li img {
    width: 8%;
    height: auto;
}

.price-card ul li .feature-status {
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    width: 14px;
    text-align: center;
    flex: 0 0 14px;
}

.price-card ul li.included .feature-status {
    color: #16a34a;
}

.price-card ul li.excluded .feature-status {
    color: #e9363a;
}

.price-card ul li.excluded {
    color: #7b7b7b;
}

.addon-section {
    margin-top: 20px;
    margin-bottom: 30px;
}

.addon-section h6 {
    font-weight: 600;
    margin-bottom: 10px;
}

/* item */
.addon-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    cursor: pointer;
    font-size: 14px;
}

/* checkbox */
/* .addon-item input {

} */

.addon-item input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border: 1.5px solid #E9363A;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
}

/* checked */
.addon-item input[type="checkbox"]:checked {
    background-color: #E9363A;
}

/* tick */
.addon-item input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 1px;
    width: 4px;
    height: 9px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* info icon */
.addon-item span {
    font-size: 13px;
}

.addon-item .info {
    margin-left: auto;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid #ff4d4d;
    color: #ff4d4d;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* buttons */
.outline-btn {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #E9363A;
    background: transparent;
    color: #E9363A;
    font-weight: 600;
}

.fill-btn {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    background: #E9363A;
    color: #FFFFFF;
    border: none;
    font-weight: 600;
}

/* active card */
.price-card.active {
    border-top: 5px solid #E9363A;
    border-bottom: 5px solid #E9363A;
}

/* badge */
.popular {
    position: relative;
}

.popular .badge {
    position: absolute;
    top: -10px;
    right: 10px;
    background: green;
    color: #fff;
    padding: 4px 10px;
    border-radius: 10px;
    font-size: 12px;
}

/* responsive */
@media (max-width: 768px) {
    .price-card {
        text-align: left;
    }

    .addon-item {
        font-size: 13px;
    }

    .toggle-btns {
        display: flex;
        flex-wrap: nowrap;
        width: 100%;
        overflow: hidden;
        white-space: normal;
        justify-content: stretch;
        gap: 4px;
        padding: 6px;
        border-radius: 14px;
        max-width: 100%;
    }

    .toggle-btns::-webkit-scrollbar {
        display: none;
    }

    .toggle {
        flex: 1 1 0;
        min-width: 0;
        padding: 10px 12px;
        text-align: center;
        font-size: 16px;
    }
}


/* PLATFORM SECTION */
/* .platform-section {
    padding: 80px 0;
    background: #f5f5f5;
} */

/* main box */
.platform-box {
    position: relative;
    border-radius: 20px;
    padding: 20px 50px;
    overflow: hidden;

    /* main gradient */
    background: radial-gradient(circle at top center, #ff7a7a, transparent 50%),
        linear-gradient(135deg, #ff4d4d, #e63946);
}


/* text */
.platform-box h2 {
    font-weight: 700;
    margin: 15px 0;
}

.platform-box p {
    opacity: 0.9;
    max-width: 450px;
}

/* stats */
.stats {
    display: flex;
    gap: 50px;
    margin-top: 30px;
}

.stats h3 {
    font-weight: 700;
}

.stats span {
    font-size: 14px;
}

/* phones container */
.phones {
    position: relative;
    height: 420px;
    overflow: hidden;
}

/* phones */
.phone {
    position: absolute;
    bottom: -190px;
    object-fit: contain;
}

/* front phone */
.phone1 {
    right: 10px;
    height: 145%;
    /* 🔥 bigger */
    z-index: 2;
}

/* back phone */
.phone2 {
    right: 0px;
    height: 110%;
    z-index: 1;
    opacity: 0.95;

}

/* responsive */
@media (max-width: 992px) {

    .platform-box {
        text-align: center;
        padding-top: 26px;
        padding-bottom: 0px;
    }

    .stats {
        justify-content: center;
    }

    .phones {
        margin-top: 40px;
        height: 300px;
    }

    .phone {
        height: 450px;
        bottom: -150px;
    }

    .phone2 {
        height: 375px;
    }
}

@media (max-width: 768px) {

    .stats {
        flex-direction: row;
        gap: 15px;
    }

    .phones {
        margin: 0px;
        height: 320px;
        right: 50px;
    }

    .phone {
        height: 450px;
        bottom: -90px;
    }

    .phone1 {
        right: -40px;
    }

    .phone2 {
        height: 375px;
    }
    .benefit-section {
        padding: 0 !important;
        margin-top: 50px;
    }

}


/* BENEFITS SECTION */
.benefit-section {
    padding: 80px 0;
}

.top-text {
    color: #888;
}

.main-title {
    font-weight: 700;
    margin-top: 10px;
}

/* layout */
.benefit-wrapper {
    /* margin-top: 60px; */
    display: flex;
    justify-content: center;
    align-items: center;
    /* gap: 40px; */
}

/* sides */
.left-side,
.right-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* card */
.b-card {
    background: #FAFAFA;
    backdrop-filter: blur(6px);
    padding: 18px;
    border-radius: 18px;
    width: 230px;
    text-align: left;
}

/* icon */
.icon {
    width: 30px;
    margin-bottom: 10px;
}

/* text */
.b-card h5 {
    color: #000000;
    font-size: 18.46px;
    font-weight: 500;
}

.b-card p {
    font-weight: 500;
    font-size: 14px;
    color: #787878;
}

/* center phone */
.center-phone {
    position: relative;
    width: 370px;
    height: 754px;
}

.center-phone img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
}

/* bottom fade */
/* .center-phone .fade {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to bottom, transparent, #f8f9fa);
} */

/* responsive */
@media (max-width: 992px) {

    .benefit-wrapper {
        flex-direction: column;
    }

    .center-phone {
        order: -1;
        margin-bottom: 30px;
    }

    .left-side,
    .right-side {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .b-card {
        width: 45%;
        text-align: left;
    }
}

@media (max-width: 576px) {

    .b-card {
        width: 100%;
    }

    .center-phone {
        width: 260px;
        height: auto;
    }
}

/* FOOTER CTA + FOOTER */
.footer-cta{
    margin-top:-56px;
    padding:0 0 36px;
}

.cta-box{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
    background:#fff;
    border:1px solid rgba(229,231,235,.92);
    border-radius:18px;
    box-shadow:0 18px 40px rgba(15,23,42,.08);
    padding:22px 30px;
    color:#111827;
}

.cta-box h4{
    margin:0 0 6px;
    font-weight:800;
}

.cta-box p{
    margin:0;
    color:var(--m);
}

.cta-center input{
    width:min(340px,100%);
    border:0;
    background:#f3f4f6;
    border-radius:999px;
    padding:12px 18px;
    outline:none;
}

.cta-right button{
    min-width:160px;
    height:48px;
    border-radius:999px;
    border:0;
    background:var(--r);
    color:#fff;
    font-weight:700;
}

.footer{
    background:#0b1523;
    color:#d1d5db;
    padding-top:104px;
    position:relative;
}

.footer-main{
    padding-bottom:24px;
}

.footer-main h6{
    color:#fff;
    font-weight:800;
    margin-bottom:14px;
}

.footer-main p{
    color:#94a3b8;
    font-size:.95rem;
}

.footer-logo{
    width:150px;
}

.social-icons{
    display:flex;
    gap:10px;
    margin:14px 0;
}

.social-icons span{
    width:30px;
    height:30px;
    border-radius:50%;
    background:#172238;
    display:flex;
    align-items:center;
    justify-content:center;
}

.social-icons img{
    width:16px;
    height:16px;
    object-fit:contain;
}

.india{
    width:100px;
    margin-top:10px;
}

.footer-bottom{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
    flex-wrap:wrap;
    border-top:1px solid rgba(148,163,184,.18);
    padding:18px 0 24px;
    font-size:.9rem;
}

.footer-bottom a{
    color:#94a3b8;
    text-decoration:none;
    margin-right:10px;
}
