    .text-primary {
        color: #7eabc7 !important;
    }

    .bg-primary {
        background-color: #7eabc7 !important;
    }

    .card:hover h5 {
        color: rgb(8, 128, 54) !important;
        transition: color 0.3s ease;
    }



.border-dotted {
     border: 1px dashed  ;
 
    border-radius: 23px;
}



    .gradient-icon-1 {
        font-size: 30px !important;
        background: linear-gradient(135deg, #41C6B5, #1771E6);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        display: inline-block;
    }

    .gradient-icon-2 {
        font-size: 30px !important;
        background: linear-gradient(90deg, #9eefe6, #2dbcab);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        display: inline-block;
    }


    .gradient-icon-5 {
        font-size: 30px !important;
        background: linear-gradient(135deg, #db2777, #f472b6);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        display: inline-block;
    }

    .gradient-icon-6 {
        font-size: 30px !important;
        background: linear-gradient(135deg, #707d8e, #021C42);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        display: inline-block;
    }

    .gradient-icon-7 {
        font-size: 30px !important;
        background: linear-gradient(135deg, #c4c4c4, #6C757D);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        display: inline-block;
    }


    .bg-lime {
        background-color: rgba(110, 210, 163, 0.42);
    }

    .accordion-button:not(.collapsed) {
        background-color: #6ed2a438 !important;
        color: black !important;
        outline: none;
    }
/* ===============================
   TOGGLE WRAPPER
================================ */
.toggle-wrapper {
    width: 100%;
    overflow-x: auto;
}
.feature-list li{
        border: 1px dashed #22b276;
    padding: 5px 16px;
    border-radius: 23px;
    font-size: 14px;
    background: #22b27614;
    display: inline-block;
    
}

/* ===============================
   TOGGLE CONTAINER
================================ */
.toggle-container {
    background-color: rgba(37, 211, 102, 0.15); /* WhatsApp glass green */
    padding: 6px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

/* ===============================
   BUTTON BASE
================================ */
.btn-toggle {
    border: none;
    border-radius: 50px;
    padding: 10px 22px;
    font-weight: 600;
    font-size: 14px;
    color: #1c1e21;
    background: transparent;
    transition: all 0.25s ease;
    flex-shrink: 0; /* IMPORTANT */
}

/* ===============================
   ACTIVE STATE (WhatsApp Style)
================================ */
.btn-toggle.active {
    background-color: #111b21 !important;
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}
.btn-toggle {
    text-decoration: none !important;
    box-shadow: none !important;
}

.btn-toggle:hover,
.btn-toggle:focus,
.btn-toggle:active {
    text-decoration: none !important;
    outline: none !important;
    box-shadow: none !important;
}


/* ===============================
   HOVER (DESKTOP ONLY)
================================ */
@media (hover: hover) {
    .btn-toggle:hover {
        background-color: rgba(17, 27, 33, 0.08);
    }
}
.feature-list{
        text-align: left;
        display: grid;
        grid-template-columns: 1fr 1fr;
            gap: 6px;
    }
/* ===============================
   TABLET FIX (≤ 992px)
================================ */
@media (max-width: 992px) {
    .btn-toggle {
        padding: 9px 18px;
        font-size: 13px;
    }
     .feature-list{
        text-align: left;
        display: grid;
        grid-template-columns: 1fr ;
            gap: 6px;
    }
}

/* ===============================
   MOBILE FIX (≤ 576px)
================================ */
@media (max-width: 576px) {
    .toggle-container {
        padding: 5px;
        gap: 4px;
    }

    .btn-toggle {
        padding: 8px 14px;
        font-size: 12px;
    }
}

/* ===============================
   VERY SMALL DEVICES (≤ 360px)
================================ */
@media (max-width: 360px) {
    .btn-toggle {
        padding: 7px 12px;
        font-size: 11px;
    }
   
}

    
   



    /* Improved scroll animation effects */
    .scroll-fade {
        opacity: 0;
        transform: translateY(40px);
        transition: opacity 0.9s cubic-bezier(0.215, 0.61, 0.355, 1),
            transform 0.9s cubic-bezier(0.215, 0.61, 0.355, 1);
        will-change: opacity, transform;
        backface-visibility: hidden;
        perspective: 1000px;
    }

    .scroll-fade.active {
        opacity: 1;
        transform: translateY(0);
    }

    /* Smoother section title animation */
    .section-title::after {
        content: '';
        position: absolute;
        width: 0;
        height: 3px;
        background: linear-gradient(90deg, #22D571, #00bc51);
        bottom: -10px;
        left: 0;
        transition: width 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    .section-title.active::after {
        width: 80px;
    }

    /* Different delay classes for staggered animations */
    .delay-100 {
        transition-delay: 0.1s;
    }

    .delay-200 {
        transition-delay: 0.2s;
    }

    .delay-300 {
        transition-delay: 0.3s;
    }

    .delay-400 {
        transition-delay: 0.4s;
    }

    .delay-500 {
        transition-delay: 0.5s;
    }

    /* Add subtle animations for section titles */
    .section-title {
        position: relative;
    }

    .section-title::after {
        content: '';
        position: absolute;
        width: 0;
        height: 3px;
        background: linear-gradient(90deg, #22D571, #00bc51);
        bottom: -10px;
        left: 0;
        transition: width 0.30s ease 0.3s;
    }

/*    #pricing .card {*/
/*        transition: transform 0.3s ease, box-shadow 0.3s ease;*/
/*        border-radius: 12px;*/
/*        overflow: hidden;*/
/*    }*/

/*    #pricing .card {*/
/*        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);*/
/*        border-radius: 12px;*/
/*        overflow: hidden;*/
/*        position: relative;*/
/*        z-index: 1;*/
/*    }*/

/*    #pricing .price-card {*/
/*        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);*/
/*        border: 1px solid rgba(0, 0, 0, 0.05);*/
/*        overflow: hidden;*/
/*        position: relative;*/
/*        z-index: 1;*/
/*    }*/

/*    #pricing .price-card::before {*/
/*        content: '';*/
/*        position: absolute;*/
/*        top: 0;*/
/*        left: 0;*/
/*        width: 100%;*/
/*        height: 0;*/
/*        background:  transparent;*/
/*        transition: all 0.5s ease;*/
/*        z-index: -1;*/
/*    }*/

/*    #pricing .price-card:hover {*/
/*        transform: translateY(-15px);*/
       
/*    }*/

/*    #pricing .price-card:hover::before {*/
/*        height: 100%;*/
/*    }*/

/*    #pricing .inner {*/
/*        padding: 20px;*/
/*        align-items: center;*/
/*        background-color: #F0F2F5;*/

/*        padding-top: 40px;*/
/*        position: relative;*/
/*        border-radius: 12px;*/
/*        height: 100%;*/
/*        transition: all 0.3s ease;*/
/*    }*/

/*    #pricing .price-card:hover .inner {*/
/*        transform: scale(1.02);*/
/*    }*/

/*    #pricing .go-corner {*/
/*        padding: 20px;*/
/*        align-items: center;*/
/*        justify-content: center;*/
/*        position: absolute;*/
/*        height: 32px;*/
/*        overflow: hidden;*/
/*        display: flex;*/
/*        right: 10px;*/
/*        top: 3px;*/
/*        border-radius: 0 4px 0 32px;*/
/*        background-color: #25D366;*/
/*        transition: all 0.3s ease;*/
/*    }*/

/*    #pricing .go-arrow {*/
/*        margin-right: -4px;*/
/*        margin-top: -4px;*/
/*        font-weight: 400;*/
/*        color: white;*/
/*    }*/

/*    #pricing .price-card .card-title {*/
/*        transition: all 0.3s ease;*/
/*    }*/

/*    #pricing .price-card:hover .card-title {*/
/*        transform: translateX(5px);*/
/*    }*/

/*    #pricing .amount {*/
/*        transition: all 0.3s ease;*/
/*    }*/

/*    #pricing .price-card:hover .amount {*/
/*        transform: scale(1.05);*/
/*        color: #25d366 !important;*/
/*    }*/

/*    #pricing .btn {*/
/*        transition: all 0.3s ease;*/
/*    }*/

/*    #pricing .price-card:hover .btn {*/
/*        transform: translateY(-3px);*/
/*        box-shadow: 0 5px 15px rgba(34, 213, 113, 0.2);*/
/*    }*/

/*    #pricing .fa-check-circle {*/
/*        transition: all 0.3s ease;*/
/*    }*/

/*    #pricing .price-card:hover .fa-check-circle {*/
/*        transform: scale(1.1);*/
/*    }*/

/*    #pricing .toggle-container {*/
/*        background-color: #6ed2a438;*/
/*        padding: 5px;*/
/*        border-radius: 50px;*/
/*        display: inline-flex;*/
/*        justify-content: center;*/
/*        align-items: center;*/
/*    }*/
/* #pricing .price-card:hover .inner {*/
/*    transform: translateY(15px) scale(1.02);*/
/*}*/


  /* ================= PRICING CARD BASE ================= */

#pricing .card,
#pricing .price-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

#pricing .price-card {
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* ================= HOVER BACKGROUND ================= */

#pricing .price-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: transparent;
    transition: all 0.5s ease;
    z-index: -1;
}

#pricing .price-card:hover::before {
    height: 100%;
}

/* ================= INNER CARD ================= */

#pricing .inner {
    padding: 20px;
    padding-top: 40px;
    background-color: #F0F2F5;
    border-radius: 12px;
    height: 100%;
    transition: all 0.3s ease;
}

/* 🔥 FIXED: MOVE DOWN (+15px) INSTEAD OF UP */
#pricing .price-card:hover .inner {
    transform: translateY(15px) scale(1.02);
}

/* ================= SHOPIFY STYLE PILL ================= */

#pricing .go-corner {
    position: absolute;
    top: 12px;          /* 👈 pulled inside */
    right: 12px;        /* 👈 pulled inside */
    padding: 6px 14px;  /* 👈 pill size */
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;

    background-color: #25D366;
    color: #fff;

    border-radius: 2rem; /* 👈 perfect pill */
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;

    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.25);
    transition: all 0.3s ease;

    z-index: 3;
}

/* No movement on hover */
#pricing .price-card:hover .go-corner {
    transform: none;
}

#pricing .go-arrow {
    margin: 0;
    color: #fff;
    line-height: 1;
}

/* ================= TEXT EFFECTS ================= */

#pricing .price-card .card-title {
    transition: all 0.3s ease;
}

#pricing .price-card:hover .card-title {
    transform: translateX(5px);
}

#pricing .amount {
    transition: all 0.3s ease;
}

#pricing .price-card:hover .amount {
    transform: scale(1.05);
   
}

/* ================= BUTTON ================= */

#pricing .btn {
    transition: all 0.3s ease;
}

#pricing .price-card:hover .btn {
    transform: translateY(-10px);
    box-shadow: 0 5px 15px rgba(34, 213, 113, 0.2);
}

/* ================= ICON ================= */

#pricing .fa-check-circle {
    transition: all 0.3s ease;
}

#pricing .price-card:hover .fa-check-circle {
    transform: scale(1.1);
}

/* ================= TOGGLE ================= */

#pricing .toggle-container {
    background-color: #6ed2a438;
    padding: 5px;
    border-radius: 50px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

   

  

    .bg-bluesh {
 
    background-color: #efeae2;
    background-image:  url('/imgs/wa-chat-message-bg.jpeg') ;
        background-repeat: repeat;
    background-size: 120px;
 

    }

    * {
        padding: 0;
        margin: 0;
        box-sizing: border-box;
        font-family: "Roboto", sans-serif;
    }

    .service-box {
        border: 1px solid #D9D9D9;
        border-radius: 18px;
        transition:
            border-color 0.3s ease,
            box-shadow 0.3s ease,
            transform 0.3s ease;
        background-color: #fff;
        z-index: 1 !important;
    }

    .txt-color-1 {
        color: #0067ff;

    }

    .service-box:hover {
        border-color: #f48308;
        /* orange border */
        transform: translateY(-6px);
        background: #fff;
        /* smooth up */
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    }

    /* Common icon box */
    .service-box .iconBox {
        border-radius: 14px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* ===== Box 1 – Orange ===== */
    .row>div:nth-child(1) .iconBox {
        background: #eef4ff;

    }

    .row>div:nth-child(1) svg path {
        /* fill: #2563eb; */
    }

    .row>div:nth-child(1) .service-box {
        border-color: #2563eb;
    }

    /* ===== Box 2 – Blue ===== */
    .row>div:nth-child(2) .iconBox {

        background: #edfdf3;

    }

    /* .row>div:nth-child(2) svg path {
        fill: #16a34a;
  
    } */

    .row>div:nth-child(2) .service-box {
        border-color: #16a34a;
    }

    /* ===== Box 3 – Green ===== */
    .row>div:nth-child(3) .iconBox {

        background: #fff3e6;
    }

    .row>div:nth-child(3) svg path {

        fill: #ff7a18;
    }

    .row>div:nth-child(3) .service-box {


        border-color: #ff7a18;
    }

    /* ===== Box 4 – Purple ===== */
    .row>div:nth-child(4) .iconBox {
        background: #f4efff;
    }

    .row>div:nth-child(4) svg path {
        fill: #7c3aed;
    }

    .row>div:nth-child(4) .service-box {
        border-color: #7c3aed;
    }

    /* ===== Box 5 – Pink ===== */
    .row>div:nth-child(5) .iconBox {
        background: #ecfeff;
    }

    .row>div:nth-child(5) svg path {
        fill: #0891b2;
    }

    .row>div:nth-child(5) .service-box {
        border-color: #0891b2;
    }

    /* ===== Box 6 – Cyan ===== */
    .row>div:nth-child(6) .iconBox {

        background: #fff0f6;
    }

    .row>div:nth-child(6) svg path {

        fill: #db2777;
    }

    .row>div:nth-child(6) .service-box {

        border-color: #db2777;
    }

    .row>div:nth-child(7) .iconBox {
        background: #eef2ff;
        /* light indigo background */
    }

    .row>div:nth-child(7) svg path {
        fill: #6366f1;
        /* API / tech color */
    }

    .row>div:nth-child(7) .service-box {
        border-color: #6366f1;
    }

    /* ===== Box 2 – Blue ===== */
    .row>div:nth-child(8) .iconBox {
        background: #eef4ff;
    }

    .row>div:nth-child(8) svg path {
        fill: #2563eb;
    }

    .row>div:nth-child(8) .service-box {
        border-color: #2563eb;
    }

    /* ===== Box 3 – Green ===== */
    .row>div:nth-child(9) .iconBox {
        background: #edfdf3;
    }

    .row>div:nth-child(9) svg path {
        fill: #16a34a;
    }

    .row>div:nth-child(9) .service-box {
        border-color: #16a34a;
    }

    /* ===== Box 4 – Purple ===== */
    .row>div:nth-child(10) .iconBox {
        background: #f4efff;
    }

    .row>div:nth-child(10) svg path {
        fill: #7c3aed;
    }

    .row>div:nth-child(10) .service-box {
        border-color: #7c3aed;
    }

    /* ===== Box 5 – Pink ===== */
    .row>div:nth-child(11) .iconBox {
        background: #fff0f6;
    }

    .row>div:nth-child(11) svg path {
        fill: #db2777;
    }

    .row>div:nth-child(11) .service-box {
        border-color: #db2777;
    }

    /* ===== Box 6 – Cyan ===== */
    .row>div:nth-child(12) .iconBox {
        background: #ecfeff;
    }

    .row>div:nth-child(12) svg path {
        fill: #0891b2;
    }

    .row>div:nth-child(12) .service-box {
        border-color: #0891b2;
    }

  

    /* header classes */
    /* ===== Header Base ===== */
    .wh-header {
        z-index: 1050;
    }



    /* Nav links */
    .wh-navbar .nav-link {
        font-weight: 500;
        color: #1c1e21;
    }

    .wh-navbar .nav-link:hover {
        color: #000;
    }
    @media (max-width: 576px) {
  .wh-header .navbar {
    padding:  0; /* reduce height */
  }

  .wh-header .navbar-brand img {
    height: 28px; /* smaller logo */
  } 
  .wh-header .navbar-collapse {
    margin-top: 8px;
  }

  .wh-header .nav-link {
    padding: 8px 0;
  }
  .wh-header .navbar-toggler {
    padding: 8px 12px;
    font-size: 14px;
  }
}
   @media (max-width: 768px) {
  .wh-header .navbar {
    padding:  0px 0; /* reduce height */
  }
  
}


    .wa-brand img {
        max-width: 227px;

    }

    /* WhatsApp-style pill button */
    .wh-btn {
        position: relative;
        display: inline-flex;
        align-items: center;
        gap: 10px;
          padding: 15px 20px;
        border-radius: 9px;
       
        background-color: #000000;
        color: #fff;
        font-size: 16px;
        font-weight: 600;
        line-height: 1em;
        text-decoration: none;
        overflow: hidden;
        z-index: 1;
    }

    /* 👇 FILL LAYER (bottom → top) */
    .wh-btn::before {
        content: "";
        position: absolute;
        left: -1px;
        right: -1px;
        top: -1px;
        bottom: -1px;
        background-color:#22B276;

        transform: scaleY(0);
        transform-origin: bottom;
        transition: transform 0.15s ease;

        z-index: -2;
    }

    /* TEXT + ICON COLOR CHANGE (slightly delayed) */
    .wh-btn span,
    .wh-btn svg {
        transition: color 0.2s linear 0.18s;
    }

    /* HOVER STATE */
    .wh-btn:hover::before {
        transform: scaleY(1);
    }

    .wh-btn:hover {
        border-color: #1c1e21;
        color: #fff;
    }

    .wh-btn:hover span,
    .wh-btn:hover svg {
        color: #ffffff;
    }

    .wh-btn-grn {
        position: relative;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 15px 20px;
        border-radius: 9px;
       border: 1px solid rgba(93, 182, 102, 0.494);
        background-color:#22B276;
        
        color: #fff;
       font-size: 16px;
        font-weight: 600;
        line-height: 1em;
        text-decoration: none;
        overflow: hidden;
        z-index: 1;
    }
    

    /* 👇 FILL LAYER (bottom → top) */
    .wh-btn-grn::before {
        content: "";
        position: absolute;
        left: -1px;
        right: -1px;
        top: -1px;
        bottom: -1px;
        background-color: #22B276;
       border: 1px solid rgba(93, 182, 102, 0.494);


        transform: scaleY(0);
        transform-origin: bottom;
        transition: transform 0.35s ease;

        z-index: -2;
    }

    /* TEXT + ICON COLOR CHANGE (slightly delayed) */
    .wh-btn-grn span,
    .wh-btn-grn svg {
        transition: color 0.2s linear 0.18s;
    }

    /* HOVER STATE */
    .wh-btn-grn:hover::before {
        transform: scaleY(1);
    }

    .wh-btn-grn:hover {
        border-color: rgba(12, 43, 15, 0.494);
    }

    .wh-btn-grn:hover {
        color: #fff;
    }

    .wh-btn-blk {
        position: relative;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 16px 28px;
        border-radius: 9px;
        border: 1px solid #1c1e21;
        background-color: #1c1e21;
        color: #fff;
        font-size: 16px;
        font-weight: 600;
        line-height: 1em;
        text-decoration: none;
        overflow: hidden;
        z-index: 1;
    }

    /* 👇 FILL LAYER (bottom → top) */
    .wh-btn-blk::before {
        content: "";
        position: absolute;
        left: -1px;
        right: -1px;
        top: -1px;
        bottom: -1px;
        background-color: #22B276;
        border: 1px solid #1c1e21;

        transform: scaleY(0);
        transform-origin: bottom;
        transition: transform 0.35s ease;

        z-index: -2;
    }

    /* TEXT + ICON COLOR CHANGE (slightly delayed) */
    .wh-btn-blk span,
    .wh-btn-blk svg {
        transition: color 0.2s linear 0.18s;
    }

    /* HOVER STATE */
    .wh-btn-blk:hover::before {
        transform: scaleY(1);
    }

    .wh-btn:hover {
        border-color: #1c1e21;
    }

    .wh-btn-blk:hover {
        color: #1c1e21;
    }
    .wh-btn-blk:hover{
        border-color:#1c1e21;
    }

   

    /* ===== Mobile Adjustments ===== */
    @media (max-width: 991px) {
        .wh-navbar {
            background: #fcf5ebcc;
            box-shadow: 0 1px 8px rgba(0, 0, 0, 0.08);
        }

        
    }

   




.hero-title {
    color: #131313 !important;  
    font-size: clamp(2rem, 5vw, 3.5rem);
}

.hero-subtitle {
    color: #1a1a1a;
    font-size: clamp(1.2rem, 3vw, 2.2rem);
    opacity: 0.95;
}

.hero-desc {
    color: rgba(0, 0, 0, 0.651);
    max-width: 650px;
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
}


.hero-badge {
    background: rgba(37, 211, 102, 0.1);
    color: #25d366;
    border: 1px solid rgba(37, 211, 102, 0.3);
    padding: 8px 21px;
}

.btn-whatsapp-grn {
    background-color: #25d366;
    color: white;
    border: none;
    font-weight: 600;
    transition: transform 0.2s;
}
.btn-whatsapp-grn:hover {
    background-color: #1ebe57;
    transform: translateY(-2px);
    color: white;
}

 
.stats-row {
    color: rgb(0, 0, 0);
}
.stats-row h5 { font-size: clamp(1.1rem, 2vw, 1.5rem); }
.stats-row small { opacity: 0.7; font-size: 0.85rem; }
 
 
   
   
    .wa-dark-section {
        background-color: #111b21;
        color: #ffffff;
    }

    /* QR wrapper */
    .wa-qr-wrapper {
        max-width: 360px;
    }

    /* QR image */
    .wa-qr-img {
        width: 100%;
        background-color: #ffffff;
    }

    /* QR note */
    .wa-qr-note {
        position: relative;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 16px 28px;
        border-radius: 50px;
        border: 1px solid #1c1e21;
        background-color: #25d366;
        color: #1c1e21;
        font-size: 16px;
        font-weight: 500;
        line-height: 16px;
        text-decoration: none;
        overflow: hidden;
        z-index: 1;
    }

    /* Description text */
    .wa-dark-desc {
        color: #d1d7db;
        line-height: 1.7;
    }

    /* Responsive tweak */
    @media (max-width: 768px) {
        .wa-qr-wrapper {
            max-width: 300px;
        }
    }

 /* ===============================
    SECTION BASE
================================ */
.wa-core-section {
  /* padding: 80px 0; */
  overflow: hidden;
}

/* ===============================
   TEXT
================================ */
.wa-core-title {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
}

.wa-core-desc {
  font-size: 1.1rem;
  max-width: 620px;
}

/* ===============================
   SVG WRAPPER (CRITICAL)
================================ */
.stack-visual-wrapper {
  max-width: 520px;
  margin-inline: auto;
  overflow: hidden; /* HARD STOP overflow */
}

.stack-visual svg {
  width: 100%;
  height: auto;
  display: block;
}

/* ===============================
   ANIMATION BASE
================================ */
#stack-logos-animated svg circle {
  fill: transparent;
}

.left-right-smooth,
.right-left-smooth,
.top-bottom-smooth,
.zoom-in-out,
.zoom-in-out-wati,
.zoom-in-out-green1,
.zoom-in-out-green2,
.zoom-in-out-green3 {
  transform-origin: center;
  will-change: transform;
}

/* ===============================
   DESKTOP ANIMATIONS
================================ */
.left-right-smooth { animation: lr 3s infinite ease-in-out; }
.right-left-smooth { animation: rl 3.2s infinite ease-in-out; }
.top-bottom-smooth { animation: tb 3s infinite ease-in-out; }
.zoom-in-out { animation: zoom 3s infinite ease-in-out; }
.zoom-in-out-wati { animation: zoomSoft 3s infinite ease-in-out; }
.zoom-in-out-green1 { animation: zoom 3s infinite ease-in-out; }
.zoom-in-out-green2 { animation: zoom 2.5s infinite ease-in-out; }
.zoom-in-out-green3 { animation: zoom 2s infinite ease-in-out; }

/* ===============================
   KEYFRAMES (SAFE RANGE)
================================ */
@keyframes lr {
  0%,100% { transform: translateX(0); }
  50% { transform: translateX(4px); }
}

@keyframes rl {
  0%,100% { transform: translateX(0); }
  50% { transform: translateX(-4px); }
}

@keyframes tb {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes zoom {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

@keyframes zoomSoft {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

/* ===============================
   BELOW 1080px FIX
================================ */
@media (max-width: 1080px) {
  .stack-visual-wrapper {
    max-width: 440px;
  }
}

/* ===============================
   TABLET
================================ */
@media (max-width: 991px) {
  .wa-core-text {
    text-align: center;
  }

  .stack-visual-wrapper {
    max-width: 380px;
    margin-top: 40px;
  }
}

/* ===============================
   MOBILE (NO TRANSLATE)
================================ */
@media (max-width: 576px) {
  .wa-core-section {
    padding: 60px 0;
  }

  .stack-visual-wrapper {
    max-width: 300px;
  }

  /* kill movement animations */
  .left-right-smooth,
  .right-left-smooth,
  .top-bottom-smooth {
    animation: none !important;
  }

  .zoom-in-out,
  .zoom-in-out-wati,
  .zoom-in-out-green1,
  .zoom-in-out-green2,
  .zoom-in-out-green3 {
    animation: zoomSoft 4s infinite ease-in-out;
  }
}

/* ===============================
   ACCESSIBILITY
================================ */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
  }
}
/* =========================
   FAQ SECTION (WhatsApp)
========================= */
.wa-faq-section {
    background-color: #111b21;
}

/* App name */
.wa-appname {
    color: #25d366;
}

/* Accordion wrapper */
.wa-faq-accordion {
    max-width: 900px;
    margin: auto;
}

/* Accordion item */
.wa-faq-item {
    background: transparent;
    border: 1px solid #ffffff;
    border-radius: 14px;
    margin-bottom: 16px;
    overflow: hidden;
}

/* Button (default) */
.wa-faq-btn {
    background-color: #111b21;
    color: #ffffff;
    font-weight: 500;
    padding: 18px 20px;
    border: none;
    box-shadow: none;
}

/* Accordion icon default (white) */
.wa-faq-btn::after {
    filter: invert(1);
    transition: filter 0.2s ease;
}

/* Hover: icon black */
.wa-faq-btn:hover::after {
    filter: invert(0);
}

/* Opened state: icon black */
.wa-faq-btn:not(.collapsed)::after {
    filter: invert(0);
}


/* Hover state */
.wa-faq-btn:hover {
    background-color: #25d366;
    color: #111b21;
    
}

.font-icon{
    border:1px dotted #fff;
    padding: 8px 10px;
    background-color: #a3cfc15e;
}
.font-icon2{
    background-color: #eef4ff;
     border:1px solid #eef4ff;
    padding: 8px 10px;
    border-radius: 10px ;
}

/* Body when open */
.wa-faq-body {
    background-color: #ffffff;
    color: #111b21;
    padding: 20px;
    line-height: 1.6;
}

/* Mobile spacing */
@media (max-width: 576px) {
    .wa-faq-btn {
        font-size: 15px;
        padding: 16px;
    }
}

.wa-faq-accordion .accordion-button:not(.collapsed) {
  background-color: #25d366 !important;
  color: #ffffff !important;
  box-shadow: none !important;
}


/* =========================
   CONTACT SECTION
========================= */
 /* SECTION */
 
/* BRAND COLOR */
.wa-appname {
    color: #25d366;
}

/* CONTACT INFO */
.wa-contact-info {
    max-width: 300px;
    margin-inline: auto;
}

@media (min-width: 992px) {
    .wa-contact-info {
        margin-inline: 0;
    }
}

/* INPUTS */
.wa-input,
.wa-textarea {
    background-color: #f2f4f7;
    border: none;
}

.wa-textarea {
    min-height: 150px;
}

/* REMOVE BOOTSTRAP FOCUS GLOW */
.wa-input:focus,
.wa-textarea:focus {
    box-shadow: none;
}
/* FOOTER BASE */
.wa-footer-section {
    background-color: #111b21;
    color: #ffffff;
}

/* TITLES */
.wa-footer-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}

/* LINKS */
.wa-footer-link {
    display: block;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.829);
    text-decoration: none;
    margin-bottom: 8px;
}

.wa-footer-link:hover {
    color: #ffffff;
}

/* BUTTON */
.wa-footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 600;
    color: #111b21;
    background-color: #25d366;
    border-radius: 999px;
    text-decoration: none;
}

.wa-footer-btn:hover {
    background-color: #1ebe5d;
}

/* DIVIDER */
.wa-footer-divider {
    border-color: rgba(255, 255, 255, 0.12);
}

/* COPYRIGHT */
.wa-footer-copy {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}


/* MOBILE */
@media (max-width: 576px) {
    .wa-footer-title {
        margin-top: 10px;
    }
    .wa-footer-link {
        font-size: 16px;
    }
}
/* Footer visibility hard fix */
.wa-footer,
.wa-footer-bottom,
.wa-footer-copy,
.wa-footer-link {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    animation: none !important;
}

/* Prevent accidental clipping */
.wa-footer,
.wa-footer-bottom {
    overflow: visible !important;
}
 

.feature-item {
    padding: 0;
}

.feature-box {
    background: transparent;
 
    height: 100%;
  
    transition: all 0.35s ease;
}

.feature-box img {
    width: 48px;
    height: auto;
    margin-bottom: 16px;
}

.feature-box h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-box p {
    color: #555;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Hover uplift effect */
.feature-box:hover {
    transform: translateY(-1px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.13);
    z-index: 2;
    background:#fcf5ebb0;
}
.boxSocial {
    width: 42px;
    height: 42px;
    transition: all 0.3s ease;
     color: #ffff;
}

.boxSocial:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.boxSocial:hover .bi-instagram { color: #E4405F; }
.boxSocial:hover .bi-facebook { color: #1877F2; }
.boxSocial:hover .linkedin  { color: #0A66C2; }
.boxSocial:hover .youtube { color: #FF0000; }
.neo-heading {
    font-weight:800;
    font-size: 34px;
    /*line-height: 1rem;*/

}

.neo-heading .underline {
    text-decoration: underline;
}

.neo-subtitle {
    max-width: 720px;
    color: #555555ce;
    font-size: 1rem;
    
}
.pricing-subtitle{
      max-width: 730px;
    color: #555555ce;
    font-size: 1.2rem;
    line-height: 1.8rem;
}
.hero-heading {
    font-weight: 600;
    font-size: 60px;
    line-height: 1.3;
}

.hero-heading .underline {
    text-decoration: underline;
}

.hero-subtitle {
    max-width: 1120px;
    color: #555555ce;
    font-size: 1rem;
    
}

.video-card {
    background: transparent;
}

.video-thumb {
    position: relative;
    display: block;
    border-radius: 8px;
    overflow: hidden;
}

.video-thumb img {
    width: 100%;
    height: auto;
    display: block;
}

.play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #fff;
    background: rgba(0,0,0,0.35);
    transition: all 0.3s ease;
}

.video-thumb:hover .play-btn {
    background: rgba(0,0,0,0.55);
    transform: scale(1.05);
}

.video-card h6 {
    font-weight: 600;
    font-size: 0.95rem;
}
.line-svg {
    position: relative;
    display: inline-block;
}

/* SVG positioning */
.line-svg svg {
       position: absolute;
    top: -13%;
    right: 0%;
    width: calc(38% + 20px);
    height: calc(100% + 20px);
    transform: translate(-%, -45%);
    overflow: visible;
    pointer-events: none;
}

/* Path base */
.line-svg svg path {
    fill: none;
    stroke: #FFBA00;
    stroke-width: 6;
    stroke-linecap: round;
    stroke-dasharray: 2000px;
    stroke-dashoffset: 2000px;
    opacity: 1;
}



.line-svg.animate svg path {
    animation: line-svg-dash 1.5s cubic-bezier(.4, 0, .2, 1) forwards;
}


@keyframes line-svg-dash {
    to {
        stroke-dashoffset: 0;
    }
}

@media (max-width: 576px) {
   
    .line-svg svg {
       position: absolute;
    top: -13%;
    right: 0%;
    width: calc(38% + 20px);
    height: calc(100% + 20px);
    transform: translate(-%, -45%);
    overflow: visible;
    pointer-events: none;
}
    .hero-heading {
    font-weight: 600;
    font-size: 30px;
    line-height: 1.3;
}
}

.feature-list li {
   
    gap: 10px;
    font-weight: 500;
   
}

.feature-list .tick {
    color: #25D366; /* WhatsApp green */
    font-size: 18px;
    font-weight: 700;
}

.stats-row{
    bottom: -30%;

}

.arrow-blue-bg {
    background-color: #E0F2FE !important;
}

.no-blue {
    color: #0285c7a1;
    font-weight: 700;
    font-size: 26px;
}

.arrow-orange-bg {
    background-color: #FFF7ED !important;
}

.no-orange {
    color: #f97416a8;
    font-weight: 700;
    font-size: 26px;
}

.arrow-green-bg {
    background-color: #ECFDF5 !important;
}
.arrow-green-bg svg path {
    fill: #047857ad !important;
}

.color1{
     color: #047857ad !important;
      background-color: #ECFDF5 !important;
      padding: 8px 8px;
}

.color2{
     color: #f97416a8 !important;
      background-color: #FFF9F2 !important;
      padding: 8px 9px;
}
.color3{
      color: #7c3aed !important;
       background-color: #f4efff !important;
        padding: 8px 8px;
}


.no-green {
    color: #047857ad;
    font-weight: 700;
    font-size: 26px;
}

.no-pink {
    color: #E6B780;
    font-weight: 700;
    font-size: 26px;

}

.arrow-pink-bg {
    background-color: #e6b6803f !important;
}
.arrow-pink-bg svg path {
    fill: #E6B780 !important;
}
.price-wrapper p{
    text-align: start;
}



