
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }

    body {
      background: #ffffff;
      color: #333333;
      line-height: 1.6;
      overflow-x: hidden;
    }

    a {
      text-decoration: none;
      color: #333333;
      transition: color 0.5s ease;
    }

    a:hover {
      color: #8b5cf6;
    }

    .container {
      width: 90%;
      max-width: 1200px;
      margin: auto;
    }

    section {
      padding: 40px 0;
    }

   
    .features div{
    display:flex;
    align-items:center;
    gap:10px;
    }

.features i{
    color:#ffffff
    font-size:18px;
}


.hero{
    position:relative;
    overflow:hidden;
    min-height:100vh;
    display:flex;
    align-items:center;
    background:
    radial-gradient(circle at top left,
    rgba(139,92,246,0.12),
    transparent 30%),
    radial-gradient(circle at bottom right,
    rgba(99,102,241,0.10),
    transparent 30%),
    linear-gradient(135deg,#f8fafc,#eef2ff,#ffffff);
}

.hero::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(139,92,246,0.08);
    border-radius:50%;
    top:-180px;
    right:-120px;
    filter:blur(120px);
}

.hero-content{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    align-items:center;
    gap:80px;
}

.hero-left{
    max-width:620px;
}

.hero-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:rgba(255,255,255,0.75);
    border:1px solid rgba(139,92,246,0.15);
    padding:12px 22px;
    border-radius:999px;
    font-size:14px;
    font-weight:600;
    color:#7c3aed;
    backdrop-filter:blur(15px);
    box-shadow:0 10px 30px rgba(139,92,246,0.08);
    margin-bottom:28px;
}

.hero h1{
    font-size:60px;
    line-height:1.05;
    font-weight:800;
    color:#111827;
    letter-spacing:-2px;
    margin-bottom:24px;
}

.hero h1 span{
    background:linear-gradient(135deg,#8b5cf6,#6366f1);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.hero p{
    font-size:18px;
    line-height:1.8;
    color:#6b7280;
    margin-bottom:38px;
}

.features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-bottom:42px;
}

.features div{
    display:flex;
    align-items:center;
    gap:12px;
    padding:18px 20px;
    border-radius:18px;
    background:rgba(255,255,255,0.75);
    border:1px solid rgba(139,92,246,0.08);
    backdrop-filter:blur(12px);
    box-shadow:0 10px 30px rgba(0,0,0,0.04);
    transition:0.3s;
}

.features div:hover{
    transform:translateY(-4px);
    border-color:#8b5cf6;
}

.features i{
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:12px;
    background:linear-gradient(135deg,#8b5cf6,#6366f1);
    color:#fff;
    font-size:16px;
    box-shadow:0 10px 25px rgba(139,92,246,0.22);
}

.btn-group{
    display:flex;
    align-items:center;
    gap:18px;
    flex-wrap:wrap;
}

.btn{
    padding:17px 34px;
    border-radius:16px;
    font-size:16px;
    font-weight:700;
    transition:0.3s;
}

.btn-primary{
    background:linear-gradient(135deg,#8b5cf6,#6366f1);
    color:#fff;
    box-shadow:0 15px 35px rgba(139,92,246,0.25);
}

.btn-primary:hover{
    transform:translateY(-3px);
    box-shadow:0 20px 40px rgba(139,92,246,0.32);
}

.btn-secondary{
    background:#fff;
    border:1px solid rgba(0,0,0,0.08);
    color:#111827;
    box-shadow:0 10px 30px rgba(0,0,0,0.04);
}

.btn-secondary:hover{
    border-color:#8b5cf6;
    color:#8b5cf6;
    transform:translateY(-3px);
}

.hero-right{
    position:relative;
}

.hero-image{
    position:relative;
    border-radius:34px;
    padding:18px;
    background:rgba(255,255,255,0.55);
    border:1px solid rgba(255,255,255,0.6);
    backdrop-filter:blur(18px);
    box-shadow:0 25px 80px rgba(0,0,0,0.12);
}

.hero-image::before{
    content:'';
    position:absolute;
    inset:0;
    border-radius:34px;
    background:linear-gradient(135deg,
    rgba(255,255,255,0.28),
    rgba(255,255,255,0.02));
    pointer-events:none;
}

.hero-image img{
    width:100%;
    border-radius:24px;
    display:block;
}

.best-seller{
    position:absolute;
    top:28px;
    right:28px;
    background:linear-gradient(135deg,#ef4444,#b91c1c);
    color:#fff;
    padding:11px 20px;
    border-radius:999px;
    font-size:14px;
    font-weight:700;
    z-index:5;
    box-shadow:0 15px 35px rgba(239,68,68,0.30);
}

@media(max-width:768px){

    .hero{
        min-height:auto;
        padding:70px 0;
    }

    .hero-content{
        gap:50px;
    }

    .hero h1{
        font-size:44px;
        line-height:1.12;
    }

    .hero p{
        font-size:16px;
    }

    .features{
        grid-template-columns:1fr;
    }

    .btn{
        width:100%;
        text-align:center;
    }

    .hero-image{
        padding:12px;
        border-radius:24px;
    }

    .hero-image img{
        border-radius:18px;
    }

    .best-seller{
        top:18px;
        right:18px;
        font-size:12px;
        padding:9px 16px;
    }

}



    @keyframes float {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-15px); } /* Reduced movement */
    }

    .hero-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      align-items: center;
      gap: 60px;
      position: relative;
      z-index: 1;
    }

    .badge {
      display: inline-block;
      background: linear-gradient(135deg, rgba(139,92,246,0.1), rgba(139,92,246,0.2));
      border: 1px solid rgba(139,92,246,0.3);
      color: #6c5ce7;
      padding: 12px 20px;
      border-radius: 50px;
      margin-bottom: 25px;
      font-size: 14px;
      font-weight: 600;
      box-shadow: 0 4px 12px rgba(139,92,246,0.2);
    }

    h1 {
      font-size: 64px;
      line-height: 1.1;
      margin-bottom: 30px;
      font-weight: 800;
      color: #333333;
      letter-spacing: -1px;
    }

    .hero p {
      color: #666666;
      margin-bottom: 30px;
      font-size: 18px;
      line-height: 1.7;
    }

    .features {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      margin-bottom: 40px;
    }

    .features div {
      background: rgba(255,255,255,0.9);
      padding: 16px 20px;
      border-radius: 12px;
      border: 1px solid rgba(0,0,0,0.05);
      color: #333333;
      font-weight: 500;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
      transition: transform 0.5s ease, box-shadow 0.5s ease; /* Slowed */
    }

    .features div:hover {
      transform: translateY(-1px); /* Reduced lift */
      box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    }

    .btn-group {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }

    .btn {
      padding: 18px 32px;
      border-radius: 16px;
      font-weight: 600;
      transition: all 0.5s ease; /* Slowed */
      display: inline-block;
      font-size: 16px;
    }

    .btn-primary {
      background: linear-gradient(135deg,#8b5cf6,#6366f1);
      color: white;
      box-shadow: 0 4px 16px rgba(139,92,246,0.3);
    }

    .btn-primary:hover {
      background: linear-gradient(135deg,#7c3aed,#4f46e5);
      transform: translateY(-2px); /* Reduced lift */
      box-shadow: 0 6px 20px rgba(139,92,246,0.35);
    }

    .btn-secondary {
      border: 2px solid rgba(0,0,0,0.1);
      color: #333333;
      background: rgba(255,255,255,0.9);
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }

    .btn-secondary:hover {
      background: rgba(255,255,255,1);
      border-color: #8b5cf6;
      transform: translateY(-2px);
      box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    }

    .hero-image {
      border-radius: 24px;
      backdrop-filter: blur(20px);
      box-shadow: 0 20px 60px rgba(0,0,0,0.1);
      position: relative;
      overflow: hidden;
    }

    .hero-image::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(45deg, transparent, rgba(139,92,246,0.05));
      pointer-events: none;
    }

    .hero-image img {
      width: 100%;
      border-radius: 16px;
      transition: transform 0.5s ease; /* Slowed */
    }

    .hero-image:hover img {
      transform: scale(1.01); /* Reduced scale */
    }

    .section-title {
      text-align: center;
      margin-bottom: 60px;
    }

    .section-title h2 {
      font-size: 48px;
      margin-bottom: 15px;
      color: #333333;
      font-weight: 700;
      position: relative;
      display: inline-block;
    }

    .section-title h2::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 4px;
      background: linear-gradient(135deg,#8b5cf6,#6366f1);
      border-radius: 2px;
    }

    .section-title p {
      color: #666666;
      font-size: 18px;
      margin: 0 auto;
    }

    .category-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
    }

.category-card{
    background:rgba(15,23,42,0.92);
    border:1px solid rgba(255,255,255,0.06);
    padding:40px 30px;
    border-radius:24px;
    transition:all 0.4s ease;
    text-align:center;
    color:#ffffff;
    box-shadow:0 15px 40px rgba(0,0,0,0.35);
    position:relative;
    overflow:hidden;
    backdrop-filter:blur(14px);
}

.category-card::before{
    content:'';
    position:absolute;
    width:180px;
    height:180px;
    background:rgba(139,92,246,0.15);
    border-radius:50%;
    top:-60px;
    right:-60px;
    filter:blur(20px);
}

.category-card:hover{
    transform:translateY(-8px);
    border-color:#8b5cf6;
    box-shadow:0 20px 50px rgba(139,92,246,0.22);
}

.category-card i{
    font-size:42px;
    margin-bottom:22px;
    color:#a78bfa;
    position:relative;
    z-index:2;
}

.category-card h3{
    font-size:20px;
    font-weight:600;
    margin-top:10px;
    position:relative;
    z-index:2;
    color:#ffffff;
}

    .why-grid,
    .bonus-grid,
    .perfect-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
      gap: 30px;
    }
    
    

   .box{
    background:rgba(15,23,42,0.92);
    border:1px solid rgba(255,255,255,0.06);
    border-radius:24px;
    padding:40px 30px;
    transition:all 0.4s ease;
    color:#ffffff;
    box-shadow:0 15px 40px rgba(0,0,0,0.35);
    text-align:center;
    position:relative;
    overflow:hidden;
    backdrop-filter:blur(14px);
}

.box::before{
    content:'';
    position:absolute;
    width:180px;
    height:180px;
    background:rgba(139,92,246,0.12);
    border-radius:50%;
    top:-60px;
    right:-60px;
    filter:blur(20px);
}

.box:hover{
    transform:translateY(-8px);
    border-color:#8b5cf6;
    box-shadow:0 20px 50px rgba(139,92,246,0.22);
}

.box i{
    font-size:42px;
    margin-bottom:22px;
    color:#a78bfa;
    position:relative;
    z-index:2;
}

.box h3{
    margin-bottom:18px;
    font-size:24px;
    font-weight:600;
    position:relative;
    z-index:2;
    color:#ffffff;
}

.box p{
    color:#cbd5e1;
    line-height:1.7;
    position:relative;
    z-index:2;
}

    .bundle-list {
      max-width: 700px;
      margin: auto;
      display: grid;
      gap: 20px;
    }

    .bundle-item {
      background: rgba(255,255,255,0.95);
      padding: 25px 30px;
      border-radius: 16px;
      border: 1px solid rgba(0,0,0,0.05);
      color: #333333;
      font-weight: 500;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
      transition: transform 0.5s ease; /* Slowed */
    }

    .bundle-item:hover {
      transform: translateX(3px); /* Reduced slide */
    }

    .demo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }

    .demo-card {
      background: rgba(255,255,255,0.95);
      border-radius: 20px;
      overflow: hidden;
      border: 1px solid rgba(0,0,0,0.05);
      transition: all 0.5s ease; /* Slowed */
      box-shadow: 0 4px 16px rgba(0,0,0,0.05);
    }

    .demo-card:hover {
      transform: translateY(-4px); /* Reduced lift */
      box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    }

    .demo-card img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      transition: transform 0.5s ease; /* Slowed */
    }

    .demo-card:hover img {
      transform: scale(1.02); /* Reduced scale */
    }

    .demo-content {
      padding: 25px;
      color: #333333;
    }

    .demo-content h3 {
      margin-bottom: 12px;
      font-size: 20px;
      font-weight: 600;
    }



/*///pricing start*/
.pricing{
    text-align:center;
}

.pricing-card{
    max-width:500px;
    margin:auto;
    background:
    linear-gradient(135deg,
    rgba(15,23,42,0.96),
    rgba(30,41,59,0.96));
    padding:42px 30px;
    border-radius:28px;
    border:1px solid rgba(255,255,255,0.08);
    box-shadow:
    0 20px 60px rgba(0,0,0,0.28),
    0 0 35px rgba(139,92,246,0.12);
    color:#fff;
    position:relative;
    overflow:hidden;
    backdrop-filter:blur(18px);
}

.pricing-card::before{
    content:'';
    position:absolute;
    width:220px;
    height:220px;
    background:rgba(139,92,246,0.16);
    border-radius:50%;
    top:-100px;
    right:-80px;
    filter:blur(30px);
}

.offer-badge{
    display:inline-block;
    background:linear-gradient(135deg,#ff512f,#dd2476);
    padding:10px 18px;
    border-radius:999px;
    font-size:13px;
    font-weight:700;
    margin-bottom:18px;
    color:#fff;
    box-shadow:0 10px 25px rgba(255,81,47,0.25);
    position:relative;
    z-index:2;
}

.pricing-countdown{
    margin-bottom:18px;
    position:relative;
    z-index:2;
}

#pricingTimer{
    display:inline-block;
    background:linear-gradient(135deg,#ff3b30,#ff6b6b);
    color:#fff;
    padding:10px 20px;
    border-radius:14px;
    font-size:22px;
    font-weight:800;
    letter-spacing:2px;
    box-shadow:
    0 12px 30px rgba(255,59,48,0.30);
}

.pricing-card h3{
    font-size:28px;
    line-height:1.4;
    margin-bottom:18px;
    position:relative;
    z-index:2;
}

.price{
    font-size:64px;
    font-weight:900;
    background:linear-gradient(135deg,#8b5cf6,#6366f1);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    margin:20px 0;
    letter-spacing:-2px;
    position:relative;
    z-index:2;
}

.pricing-card ul{
    list-style:none;
    margin-bottom:28px;
    position:relative;
    z-index:2;
}

.pricing-card ul li{
    margin-bottom:12px;
    color:#cbd5e1;
    font-size:15px;
}

.pricing-card .btn{
    padding:14px 32px;
    border-radius:14px;
    font-size:15px;
    font-weight:700;
    box-shadow:0 12px 30px rgba(99,102,241,0.30);
    position:relative;
    z-index:2;
}

/* MOBILE */

@media(max-width:768px){

    .pricing-card{
        max-width:100%;
        padding:34px 22px;
        border-radius:24px;
    }

    .offer-badge{
        font-size:12px;
        padding:9px 16px;
        margin-bottom:16px;
    }

    #pricingTimer{
        font-size:18px;
        padding:9px 15px;
    }

    .pricing-card h3{
        font-size:22px;
        margin-bottom:14px;
    }

    .price{
        font-size:52px;
        margin:16px 0;
    }

    .pricing-card ul{
        margin-bottom:22px;
    }

    .pricing-card ul li{
        font-size:14px;
        margin-bottom:10px;
    }

    .pricing-card .btn{
        width:100%;
        padding:13px;
        font-size:14px;
    }
}
/*////pricing end*/

    .faq {
      max-width: 800px;
      margin: auto;
    }

    .faq-item {
      background: rgba(255,255,255,0.95);
      margin-bottom: 20px;
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid rgba(0,0,0,0.05);
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
      transition: box-shadow 0.5s ease; /* Slowed */
    }

    .faq-item:hover {
      box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    }

    .faq-question {
      padding: 25px 30px;
      cursor: pointer;
      font-weight: 600;
      color: #333333;
      font-size: 18px;
      transition: color 0.5s ease; /* Slowed */
    }

    .faq-question:hover {
      color: #8b5cf6;
    }

    .faq-answer {
      padding: 0 30px 25px;
      color: #666666;
      display: none;
      animation: fadeIn 0.6s ease; /* Slowed */
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(-5px); } /* Reduced movement */
      to { opacity: 1; transform: translateY(0); }
    }

    .cta {
      text-align: center;
      background: linear-gradient(135deg,#8b5cf6,#6366f1);
      border-radius: 30px;
      padding: 80px 40px;
      color: white;
      box-shadow: 0 20px 60px rgba(139,92,246,0.3);
    }

    .cta h2 {
      font-size: 52px;
      margin-bottom: 25px;
      font-weight: 700;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin-top: 60px;
    }

    .stat-box {
      background: rgba(255,255,255,0.95);
      border: 1px solid rgba(0,0,0,0.05);
      padding: 40px 30px;
      border-radius: 24px;
      text-align: center;
      backdrop-filter: blur(20px);
      box-shadow: 0 4px 16px rgba(0,0,0,0.05);
      transition: transform 0.5s ease; /* Slowed */
      color: #333333;
    }

    .stat-box:hover {
      transform: translateY(-3px); /* Reduced lift */
    }

    .stat-box h3 {
      font-size: 48px;
      color: #6c5ce7;
      margin-bottom: 12px;
      font-weight: 800;
    }

    .testimonial-slider {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .testimonial {
      background: rgba(255,255,255,0.95);
      border: 1px solid rgba(0,0,0,0.05);
      border-radius: 24px;
      padding: 35px;
      backdrop-filter: blur(20px);
      box-shadow: 0 4px 16px rgba(0,0,0,0.05);
      color: #333333;
      transition: transform 0.5s ease; /* Slowed */
    }

    .testimonial:hover {
      transform: translateY(-3px); /* Reduced lift */
    }

    .testimonial p {
      color: #666666;
      margin-bottom: 20px;
      font-style: italic;
    }

    .floating-whatsapp {
      position: fixed;
      right: 25px;
      bottom: 100px;
      z-index: 999;
    }

    .floating-whatsapp a {
      width: 70px;
      height: 70px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      font-size: 32px;
      color: white;
      box-shadow: 0 8px 24px rgba(0,0,0,0.15);
      transition: transform 0.5s ease; /* Slowed */
    }

    .floating-whatsapp a:hover {
      transform: scale(1.05); /* Reduced scale */
    }

    .sticky-buy {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background: rgba(255,255,255,0.98);
      backdrop-filter: blur(20px);
      border-top: 1px solid rgba(0,0,0,0.05);
      padding: 18px 25px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      z-index: 998;
      color: #333333;
      box-shadow: 0 -4px 16px rgba(0,0,0,0.05);
    }

    .sticky-buy span {
      color: #666666;
      font-size: 14px;
    }

    footer {
      padding: 50px 0;
      text-align: center;
      color: #666666;
      border-top: 1px solid rgba(0,0,0,0.05);
    }

    .why-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:30px;
    }

    .why-grid .box:nth-child(5),
    .why-grid .box:nth-child(6){
      grid-column:span 2;
    }
    
    
    /*////count start*/
    
.sticky-buy{
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    background:#ffffff;
    padding:14px 25px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    z-index:999;
    box-shadow:0 -5px 30px rgba(0,0,0,0.08);
}

.sticky-buy .offer-area{
    display:flex;
    align-items:center;
    gap:20px;
}

#countdown{
    background:linear-gradient(135deg,#ff3b30,#ff6b6b);
    color:#fff;
    border-radius:14px;
    font-size:24px;
    font-weight:800;
    letter-spacing:2px;
    box-shadow:0 12px 30px rgba(255,59,48,0.30);
    border:2px solid rgba(255,255,255,0.4);
    display:inline-block;
    min-width:210px;
    text-align:center;
}

.sticky-buy strong{
    font-size:22px;
    font-weight:700;
    color:#111827;
}

.sticky-buy span{
    font-size:15px;
    color:#6b7280;
}

@media(max-width:768px){

    .sticky-buy{
        flex-direction:column;
        align-items:stretch;
        gap:12px;
        padding:12px 14px;
    }

    /* Counter Top */
    .sticky-buy .offer-area{
        width:100%;
        display:flex;
        justify-content:center;
        align-items:center;
    }

    #countdown{
        width:auto;
        min-width:160px;
        text-align:center;
        font-size:18px;
        padding:10px 18px;
        border-radius:12px;
        margin:0 auto;
    }

    /* Bottom Row */
    .sticky-buy .offer-area + .btn,
    .sticky-buy .bottom-row{
        width:100%;
    }

    .sticky-buy .mobile-bottom{
        width:100%;
        display:flex;
        align-items:center;
        justify-content:space-between;
        gap:12px;
    }

    .sticky-buy .mobile-bottom div{
        display:flex;
        flex-direction:column;
    }

    .sticky-buy strong{
        font-size:13px;
        line-height:1.3;
        margin-bottom:2px;
    }

    .sticky-buy span{
        display:none;
    }

    .sticky-buy .btn{
        padding:11px 22px;
        font-size:13px;
        border-radius:10px;
        white-space:nowrap;
        min-width:120px;
        text-align:center;
    }
}
    /*////count end*/
    
    
    
    
    
   /*/////////////// live start*/

.demo-slider{
    position:relative;
    width:100%;
    overflow:hidden;
    margin-top:60px;
}

.slider-track{
    position:relative;
    width:100%;
    height:650px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.slider-item{
    position:absolute;
    transition:0.6s ease;
    opacity:0;
    transform:scale(0.8);
    z-index:1;
}

.slider-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:24px;
    box-shadow:0 20px 60px rgba(0,0,0,0.18);
}

.slider-item.active{
    width:340px;
    height:620px;
    opacity:1;
    transform:translateX(0) scale(1);
    z-index:5;
}

.slider-item.left{
    width:240px;
    height:480px;
    opacity:0.55;
    transform:translateX(-360px) scale(0.9);
    z-index:3;
}

.slider-item.right{
    width:240px;
    height:480px;
    opacity:0.55;
    transform:translateX(360px) scale(0.9);
    z-index:3;
}

.slider-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:52px;
    height:52px;
    border:none;
    border-radius:50%;
    background:#fff;
    color:#333;
    font-size:22px;
    cursor:pointer;
    z-index:20;
    box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

.slider-btn.prev{
    left:10px;
}

.slider-btn.next{
    right:10px;
}

.slider-dots{
    display:flex;
    justify-content:center;
    gap:10px;
    margin-top:25px;
}

.dot{
    width:12px;
    height:12px;
    border-radius:50%;
    background:#ccc;
    transition:0.3s;
}

.dot.active{
    width:30px;
    border-radius:20px;
    background:#8b5cf6;
}

@media(max-width:991px){

    .slider-track{
        height:560px;
    }

    .slider-item.active{
        width:280px;
        height:520px;
    }

    .slider-item.left,
    .slider-item.right{
        width:190px;
        height:380px;
    }

    .slider-item.left{
        transform:translateX(-250px) scale(0.88);
    }

    .slider-item.right{
        transform:translateX(250px) scale(0.88);
    }
}

@media(max-width:768px){

    .slider-track{
        height:470px;
    }

    .slider-item.active{
        width:220px;
        height:420px;
    }

    .slider-item.left,
    .slider-item.right{
        width:135px;
        height:260px;
        opacity:0.35;
    }

    .slider-item.left{
        transform:translateX(-150px) scale(0.82);
    }

    .slider-item.right{
        transform:translateX(150px) scale(0.82);
    }

    .slider-btn{
        display:none;
    }
}

@media(max-width:576px){

    .slider-track{
        height:420px;
    }

    .slider-item.active{
        width:200px;
        height:380px;
    }

    .slider-item.left,
    .slider-item.right{
        width:105px;
        height:210px;
        opacity:0.25;
    }

    .slider-item.left{
        transform:translateX(-115px) scale(0.78);
    }

    .slider-item.right{
        transform:translateX(115px) scale(0.78);
    }
}

/*////////////endd*/



.cta-box{
  position:relative;
  overflow:hidden;
  text-align:center;
  padding:70px 30px;
  border-radius:30px;
  background:linear-gradient(135deg,#1e1b4b,#111827);
  border:1px solid rgba(139,92,246,0.15);
  box-shadow:0 20px 60px rgba(0,0,0,0.35);
}

.cta-box::before{
  content:'';
  position:absolute;
  width:260px;
  height:260px;
  background:rgba(139,92,246,0.15);
  border-radius:50%;
  top:-120px;
  right:-100px;
  filter:blur(30px);
}

.cta-badge{
  display:inline-block;
  background:linear-gradient(135deg,#8b5cf6,#6366f1);
  color:#fff;
  padding:10px 20px;
  border-radius:999px;
  font-size:14px;
  font-weight:600;
  margin-bottom:20px;
  box-shadow:0 10px 30px rgba(139,92,246,0.30);
  position:relative;
  z-index:2;
}

.cta-box h2{
  font-size:48px;
  line-height:1.2;
  color:#fff;
  margin-bottom:20px;
  font-weight:800;
  position:relative;
  z-index:2;
}

.cta-box h2 span{
  color:#a78bfa;
}

.cta-box p{
  max-width:700px;
  margin:auto;
  font-size:18px;
  line-height:1.7;
  color:#cbd5e1;
  margin-bottom:35px;
  position:relative;
  z-index:2;
}

.cta-btn{
  display:inline-block;
  background:linear-gradient(135deg,#8b5cf6,#6366f1);
  color:#fff;
  text-decoration:none;
  padding:16px 38px;
  border-radius:14px;
  font-size:17px;
  font-weight:700;
  transition:0.3s;
  box-shadow:0 10px 30px rgba(139,92,246,0.35);
  position:relative;
  z-index:2;
}

.cta-btn:hover{
  transform:translateY(-3px);
  box-shadow:0 15px 40px rgba(139,92,246,0.45);
}

@media(max-width:768px){

  .cta-box{
    padding:50px 20px;
  }

  .cta-box h2{
    font-size:32px;
  }

  .cta-box p{
    font-size:16px;
  }

}


/*///review start*/

.review-section{
    position:relative;
    overflow:hidden;
    padding:90px 0;
    background:linear-gradient(180deg,#ffffff,#f8faff);
}

.review-slider{
    overflow:hidden;
    position:relative;
    margin-top:60px;
    padding:10px 0;
}

.review-track{
    display:flex;
    align-items:flex-start;
    gap:28px;
    width:max-content;
    animation:reviewScroll 35s linear infinite;
}

.review-card{
    width:340px;
    flex-shrink:0;
    background:#fff;
    border:1px solid rgba(139,92,246,0.10);
    border-radius:28px;
    overflow:hidden;
    padding:20px;
    box-shadow:0 15px 40px rgba(0,0,0,0.06);
    transition:0.35s ease;
}

.review-card:hover{
    transform:translateY(-6px);
    border-color:#8b5cf6;
    box-shadow:0 20px 50px rgba(139,92,246,0.14);
}

.review-top{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:18px;
}

.review-avatar{
    width:54px;
    height:54px;
    border-radius:16px;
    background:linear-gradient(135deg,#8b5cf6,#6366f1);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:20px;
    font-weight:700;
}

.review-top h4{
    font-size:17px;
    color:#111827;
    margin-bottom:3px;
}

.review-top span{
    color:#6b7280;
    font-size:13px;
}

.review-card img{
    width:100%;
    height:520px; /* fixed height */
    object-fit:cover; /* image crop fix */
    border-radius:20px;
    display:block;
}

@keyframes reviewScroll{

    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(-50%);
    }

}

@media(max-width:768px){

    .review-section{
        padding:70px 0;
    }

    .review-slider{
        margin-top:35px;
    }

    .review-track{
        gap:18px;
    }

    .review-card{
        width:270px;
        padding:16px;
        border-radius:22px;
    }

    .review-card img{
        height:420px;
        border-radius:16px;
    }

    .review-avatar{
        width:46px;
        height:46px;
        border-radius:14px;
        font-size:18px;
    }

    .review-top h4{
        font-size:15px;
    }

    .review-top span{
        font-size:12px;
    }

}

/*///review end*/



    .footer-area{
      padding:70px 0 140px;
      border-top:1px solid rgba(0,0,0,0.05);
      background:#ffffff;
    }

    .footer-links{
      display:flex;
      justify-content:center;
      align-items:center;
      flex-wrap:wrap;
      gap:20px;
      margin-bottom:30px;
    }

    .footer-links a{
      color:#666666;
      text-decoration:none;
      font-size:16px;
      transition:0.5s; /* Slowed */
      font-weight:500;
    }

    .footer-links a:hover{
      color:#8b5cf6;
    }

    .copyright{
      text-align:center;
      color:#666666;
      font-size:15px;
    }
    
    

    @media(max-width:768px){
      .footer-links{
        gap:15px;
      }
      .footer-links a{
        font-size:14px;
      }
      .sticky-buy{
        padding:16px 20px;
      }
      .sticky-buy strong{
        font-size:15px;
      }
      .sticky-buy span{
        font-size:13px;
      }
      .floating-whatsapp{
        right:20px;
        bottom:90px;
      }
      .floating-whatsapp a{
        width:65px;
        height:65px;
      }
    }
    @media(max-width:768px){

    .floating-whatsapp{
        right:18px;
        bottom:165px; /* mobile এ আরো উপরে */
    }

    .floating-whatsapp img{
        width:55px !important;
    }

}

    @keyframes scrollChat{
      0%{
        transform:translateX(0);
      }
      100%{
        transform:translateX(-50%);
      }
    }

    @media(max-width:768px){
      .review-card{
        width:280px;
      }
    }

    @keyframes scrollReview{
      0%{
        transform:translateX(0);
      }
      100%{
        transform:translateX(-50%);
      }
    }

    @media(max-width:768px){
      .review-card{
        width:300px;
      }
    }

    @media(max-width:991px){
      .slider-track{
        gap:25px;
      }
      .slider-item.active{
        width:280px;
        height:520px;
      }
      .slider-item.small{
        width:200px;
        height:420px;
      }
    }

    @media(max-width:768px){
      .slider-track{
        overflow-x:auto;
        padding-bottom:15px;
      }
      .slider-btn{
        display:none;
      }
      .slider-item.active,
      .slider-item.small{
        width:260px;
        height:480px;
        opacity:1;
        transform:none;
      }
    }

    @media(max-width:991px){
      .why-grid{
        grid-template-columns:repeat(2,1fr);
      }
      .why-grid .box:nth-child(5),
      .why-grid .box:nth-child(6){
        grid-column:span 1;
      }
    }

    @media(max-width:576px){
      .why-grid{
        grid-template-columns:1fr;
      }
    }

    @media(max-width: 768px) {
      h1 {
        font-size: 48px;
      }
      .section-title h2,
      .cta h2 {
        font-size: 36px;
      }
      .features {
        grid-template-columns: 1fr;
      }
    }
    
    .bonus-section{
    position:relative;
    overflow:hidden;
}

.bonus-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:28px;
    margin-top:60px;
}

.bonus-card{
    position:relative;
    overflow:hidden;
    padding:38px 30px;
    border-radius:28px;
    background:linear-gradient(135deg,#ffffff,#f8fafc);
    border:1px solid rgba(139,92,246,0.10);
    box-shadow:0 15px 40px rgba(0,0,0,0.06);
    transition:0.35s ease;
}

.bonus-card::before{
    content:'';
    position:absolute;
    width:220px;
    height:220px;
    background:rgba(139,92,246,0.08);
    border-radius:50%;
    top:-120px;
    right:-100px;
    filter:blur(20px);
}

.bonus-card:hover{
    transform:translateY(-8px);
    border-color:#8b5cf6;
    box-shadow:0 25px 60px rgba(139,92,246,0.14);
}

.bonus-icon{
    width:72px;
    height:72px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:22px;
    background:linear-gradient(135deg,#8b5cf6,#6366f1);
    color:#fff;
    font-size:28px;
    margin-bottom:24px;
    box-shadow:0 15px 35px rgba(139,92,246,0.22);
    position:relative;
    z-index:2;
}

.bonus-card h3{
    font-size:24px;
    font-weight:700;
    color:#111827;
    margin-bottom:16px;
    position:relative;
    z-index:2;
}

.bonus-card p{
    font-size:15px;
    line-height:1.8;
    color:#6b7280;
    margin-bottom:22px;
    position:relative;
    z-index:2;
}

.bonus-card span{
    display:inline-block;
    padding:9px 16px;
    border-radius:999px;
    background:rgba(139,92,246,0.10);
    color:#7c3aed;
    font-size:13px;
    font-weight:700;
    position:relative;
    z-index:2;
}

@media(max-width:768px){

    .bonus-grid{
        gap:20px;
    }

    .bonus-card{
        padding:30px 22px;
        border-radius:22px;
    }

    .bonus-icon{
        width:62px;
        height:62px;
        font-size:24px;
        border-radius:18px;
    }

    .bonus-card h3{
        font-size:21px;
    }

}











.get-section{
    position:relative;
    padding:90px 0;
    overflow:hidden;
}

.get-wrapper{
    display:flex;
    flex-direction:column;
    gap:24px;
    margin-top:60px;
}

.get-item{
    position:relative;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
    padding:32px;
    border-radius:28px;
    background:linear-gradient(135deg,#ffffff,#f8faff);
    border:1px solid rgba(139,92,246,0.10);
    box-shadow:0 15px 40px rgba(0,0,0,0.05);
    overflow:hidden;
    transition:0.35s ease;
}

.get-item::before{
    content:'';
    position:absolute;
    width:240px;
    height:240px;
    background:rgba(139,92,246,0.07);
    border-radius:50%;
    top:-120px;
    right:-120px;
    filter:blur(20px);
}

.get-item:hover{
    transform:translateY(-6px);
    border-color:#8b5cf6;
    box-shadow:0 25px 60px rgba(139,92,246,0.14);
}

.get-number{
    min-width:90px;
    height:90px;
    border-radius:24px;
    background:linear-gradient(135deg,#8b5cf6,#6366f1);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:30px;
    font-weight:800;
    box-shadow:0 15px 35px rgba(139,92,246,0.25);
    position:relative;
    z-index:2;
}

.get-content{
    flex:1;
    position:relative;
    z-index:2;
}

.get-content h3{
    font-size:28px;
    color:#111827;
    margin-bottom:10px;
    font-weight:700;
}

.get-content p{
    font-size:16px;
    line-height:1.8;
    color:#6b7280;
}

.get-arrow{
    width:58px;
    height:58px;
    border-radius:18px;
    background:rgba(139,92,246,0.10);
    color:#8b5cf6;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    position:relative;
    z-index:2;
    transition:0.3s;
}

.get-item:hover .get-arrow{
    background:#8b5cf6;
    color:#fff;
}

@media(max-width:768px){

    .get-section{
        padding:70px 0;
    }

    .get-wrapper{
        margin-top:40px;
        gap:18px;
    }

    .get-item{
        flex-direction:column;
        align-items:flex-start;
        padding:24px 20px;
        border-radius:22px;
        gap:20px;
    }

    .get-number{
        width:72px;
        height:72px;
        min-width:72px;
        border-radius:18px;
        font-size:24px;
    }

    .get-content h3{
        font-size:22px;
    }

    .get-content p{
        font-size:15px;
    }

    .get-arrow{
        width:50px;
        height:50px;
        border-radius:14px;
        font-size:18px;
    }

}