
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: 'Poppins', sans-serif;
}
 body{
    background:#0f172a;
    min-height:100vh;
}

.main-container{
    width: 100%;
background-color: aliceblue;
}

.top-header{
    width:100%;
    background: linear-gradient(135deg,#0f172a,#1e293b);
    padding:5px 3%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    border-bottom:1px solid rgba(255,255,255,0.1);
}

.header-left,
.header-right{
    display:flex;
    align-items:center;
    gap:15px;
}

.header-left a{
    color:#fff;
    text-decoration:none;
    font-size:14px;
    transition:0.3s;
}

.header-left a:hover{
    color:023e7;
}

.header-right a{
    width:25px;
    height:25px;
    background:rgba(255,255,255,0.08);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    text-decoration:none;
    transition:0.4s;
    backdrop-filter:blur(10px);
}

.header-right a:hover{
    background:#38bdf8;
    transform:translateY(-4px);
    box-shadow:0 10px 20px rgba(56,189,248,0.4);
}

@media(max-width:768px){

    .top-header{
        display: none;
        flex-direction:column;
        gap:15px;
        text-align:center;
    }

    .header-left{
        flex-direction:column;
        gap:10px;
    }
}


/* =========================
   NAVBAR
========================= */

.agency-navbar{
    position:sticky;
    top:0;
    width:100%;
    height:85px;

    background:#ffffff;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:0 5%;

    border-bottom:1px solid #e8eef5;

    box-shadow:0 8px 30px rgba(0,0,0,0.05);

    z-index:9999;
}

/* =========================
   LOGO
========================= */

.agency-logo{
    font-size:30px;
    font-weight:800;
    text-decoration:none;
    color:#111827;
}

.agency-logo span{
    color:#2563eb;
}
.agency-logo img{
   width: 200px;
}
/* =========================
   NAV LINKS
========================= */

.agency-nav-links{
    display:flex;
    align-items:center;
    list-style:none;
    gap:6px;
}

.agency-nav-links li{
    position:relative;
}

.agency-nav-links li a{
    text-decoration:none;
    color:#374151;

    font-size:15px;
    font-weight:600;

    padding:12px 16px;

    border-radius:12px;

    display:flex;
    align-items:center;
    gap:6px;

    transition:0.3s;
}

.agency-nav-links li a:hover{
    background:#f1f5f9;
    color:#e75404;
}

/* =========================
   DROPDOWN
========================= */

.agency-dropdown{
    position:absolute;
    top:115%;
    left:0;

    width:240px;

    background:#fff;

    border-radius:16px;

    padding:10px;

    list-style:none;

    border:1px solid #eaeef4;

    box-shadow:0 15px 40px rgba(0,0,0,0.08);

    opacity:0;
    visibility:hidden;

    transform:translateY(12px);

    transition:0.3s ease;

    z-index:999;
}

.agency-dropdown li{
    width:100%;
}

.agency-dropdown li a{
    width:100%;
    padding:12px 14px;
    border-radius:10px;
}

/* SHOW DROPDOWN */

.agency-nav-links li:hover > .agency-dropdown{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

/* =========================
   SUB MENU
========================= */

.agency-sub-menu{
    position:relative;
}

.agency-sub-dropdown{
    top:0;
    left:105%;
}

/* =========================
   RIGHT SIDE
========================= */

.agency-nav-right{
    display:flex;
    align-items:center;
    gap:14px;
}

/* CTA BUTTON */

.agency-cta-btn{
    text-decoration:none;

    background:#21385a;
    color:#fff;

    padding:14px 22px;

    border-radius:12px;

    font-size:15px;
    font-weight:600;

    transition:0.3s;
}

.agency-cta-btn:hover{
    background:#e75404;
    transform:translateY(-2px);
}

/* =========================
   MENU BUTTON
========================= */

.agency-menu-btn{
    width:48px;
    height:48px;

    border-radius:12px;

    background:#f1f5f9;

    display:none;
    align-items:center;
    justify-content:center;

    cursor:pointer;

    font-size:20px;
    color:#111827;

    transition:0.3s;
}

.agency-menu-btn:hover{
    background:#2563eb;
    color:#fff;
}

/* =========================
   SIDEBAR
========================= */

.agency-sidebar{
    position:fixed;
    top:0;
    right:-100%;

    width:340px;
    height:100vh;

    background:#ffffff;

    padding:100px 20px 30px;

    transition:0.4s ease;

    z-index:99999;

    border-left:1px solid #e8eef5;

    overflow-y:auto;
}

.agency-sidebar.active{
    right:0;
}

/* CLOSE */

.agency-close-btn{
    position:absolute;
    top:20px;
    right:20px;

    width:45px;
    height:45px;

    border-radius:12px;

    background:#f1f5f9;

    display:flex;
    align-items:center;
    justify-content:center;

    cursor:pointer;

    font-size:20px;
}
.dl, ol, ul  {
    margin-top: 0;
    margin-bottom: 0 !important;
}
/* SIDEBAR LINKS */

.agency-sidebar ul{
    list-style:none;
}

.agency-sidebar ul li{
    margin-bottom:12px;
}

.agency-sidebar ul li a{
    text-decoration:none;
    color:#374151;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:14px 16px;

    border-radius:12px;

    background:#f8fafc;

    transition:0.3s;
}

.agency-sidebar ul li a:hover{
    background:#2563eb;
    color:#fff;
}

/* =========================
   MOBILE DROPDOWN
========================= */

.agency-mobile-dropdown{
    max-height:0;
    overflow:hidden;

    transition:0.4s ease;

    padding-left:12px;
}

.agency-mobile-dropdown a{
    margin-top:10px;
    font-size:14px;
}

/* =========================
   OVERLAY
========================= */

.agency-overlay{
    position:fixed;
    inset:0;

    background:rgba(15,23,42,0.35);

    opacity:0;
    visibility:hidden;

    transition:0.3s;

    z-index:999;
}

.agency-overlay.active{
    opacity:1;
    visibility:visible;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1100px){

    .agency-nav-links,
    .agency-cta-btn{
        display:none;
    }

    .agency-menu-btn{
        display:flex;
    }
}

@media(max-width:768px){

    .agency-sidebar{
        width:100%;
    }
}
/* main swiper */
.mySwiper{
    width: 100%;
}
.mySwiper img{
    width: 100%;
    height: auto;
}
.mySwiper .main-next, .main-prev{
width: 15px;
color: #fff;
font-weight: 800;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  display: none;
}
.mySwiper .main-next{
margin-right: 20px;
}
.mySwiper .main-prev{
margin-left: 20px;
}
.hero-section{
    position: relative;
}

.swiper-slide{
    position: relative;
}

.agency-overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
    z-index: 1;
}

.hero-content{
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    z-index: 2;
    max-width: 650px;
    color: #fff;
}

.hero-content h1{
    font-size: 55px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-content p{
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.hero-btns{
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
/* MOBILE */
@media (max-width:767px){

    .hero-content{
        width:200px;
    }

    .hero-content h1{
        font-size:10px;
        margin-bottom:5px;
        line-height:1.4;
    }

    .hero-content p{
        font-size:8px;
        margin-bottom:10px;
        line-height:1.5;
    }

    .btn-call,
    .btn-support{
        font-size:8px;
        padding:3px 8px !important;
    }

}


/* TABLET */
@media (min-width:768px) and (max-width:991px){

    .hero-content{
        width:400px;
    }

    .hero-content h1{
        font-size:25px;
        margin-bottom:12px;
        line-height:1.4;
    }

    .hero-content p{
        font-size:15px;
        margin-bottom:15px;
        line-height:1.6;
    }

    .btn-call,
    .btn-support{
        font-size:14px;
        padding:10px 18px !important;
    }

}
.btn-call,
.btn-support{
    padding: 14px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-call{
    background: #0d6efd;
    color: #fff;
}

.btn-support{
    background: #fff;
    color: #000;
}

.btn-call:hover{
    background: #084298;
}

.btn-support:hover{
    background: #0d6efd;
    color: #fff;
}

/* Navigation Buttons */
.main-next,
.main-prev{
    color: #fff;
}

/* about */
.about-section{
  background: #f8fbff;
}

.vector-blob{
  width: 380px;
  height: 380px;
  background: linear-gradient(135deg,#4f46e5,#8b5cf6);
  opacity: .12;
  border-radius: 58% 42% 70% 30% / 30% 30% 70% 70%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  animation: morph 8s ease-in-out infinite;
}

@keyframes morph{
  0%{
    border-radius: 58% 42% 70% 30% / 30% 30% 70% 70%;
  }
  50%{
    border-radius: 40% 60% 33% 67% / 55% 27% 73% 45%;
  }
  100%{
    border-radius: 58% 42% 70% 30% / 30% 30% 70% 70%;
  }
}

.about-card{
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  padding: 50px 35px;
  max-width: 400px;
  margin: auto;
}

.circle-icon{
  width: 90px;
  height: 90px;
  margin: auto;
  border-radius: 50%;
  background: linear-gradient(135deg,#4f46e5,#8b5cf6);
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-box{
  width: 55px;
  height: 55px;
  border-radius: 16px;
  background: #eef2ff;
  color: #4f46e5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon-box i{
    font-size: 20px;
}
@media(max-width:768px){
  .vector-blob{
    width: 260px;
    height: 260px;
  }

  .about-card{
    padding: 35px 25px;
  }
}
.animated-btn{
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 34px;
    border-radius: 60px;
    text-decoration: none;
    overflow: hidden;
    background: linear-gradient(135deg,#4f46e5,#7c3aed);
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all .4s ease;
    box-shadow: 0 10px 25px rgba(79,70,229,0.25);
}

.animated-btn span{
    position: relative;
    z-index: 2;
}

.animated-btn::before{
    content: "";
    position: absolute;
    width: 0%;
    height: 100%;
    left: 0;
    top: 0;
    background: linear-gradient(135deg,#7c3aed,#4f46e5);
    transition: width .4s ease;
    z-index: 1;
}

.animated-btn::after{
    content: "";
    position: absolute;
    width: 30px;
    height: 180%;
    background: rgba(255,255,255,0.35);
    top: -40%;
    left: -80px;
    transform: rotate(25deg);
    transition: .7s;
}

.animated-btn:hover::before{
    width: 100%;
}

.animated-btn:hover::after{
    left: 120%;
}

.animated-btn:hover{
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(79,70,229,0.35);
    color: #fff;
}
/* services */
.services-section{
    background: #f8f9fa;
}

.title{
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
    color: #111827;
}

.section-title p{
    max-width: 700px;
    margin: auto;
    color: #666;
    line-height: 1.7;
}

.service-card{
    background: #fff;
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.service-card:hover{
    transform: translateY(-8px);
}

.service-icon{
    width: 80px;
    height: 80px;
    margin: auto auto 20px;
    border-radius: 50%;
    background: #e75404;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i{
    font-size: 32px;
    color: #fff;
}

.service-card h4{
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p{
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Responsive */
@media(max-width:768px){

    .section-title h2{
        font-size: 30px;
    }

    .service-card{
        padding: 30px 20px;
    }
}

/* how it work  */
.process-section{
    background: #e5efff;
    overflow: hidden;
}

.process-wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.process-card{
    position: relative;
    width: 320px;
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: 0.4s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    z-index: 1;
}

.process-card:hover{
    transform: translateY(-10px);
}

.active-card{
    background: #0d6efd;
    color: #fff;
}

.active-card p{
    color: rgba(255,255,255,0.85);
}

.process-step{
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
}

.process-step span{
    width: 50px;
    height: 50px;
    background: #111;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    border: 4px solid #fff;
}

.active-card .process-step span{
    background: #fff;
    color: #0d6efd;
}

.process-icon{
    width: 90px;
    height: 90px;
    background: #eef4ff;
    border-radius: 20px;
    margin: 20px auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(45deg);
}

.process-icon i{
    font-size: 34px;
    color: #0d6efd;
    transform: rotate(-45deg);
}

.active-card .process-icon{
    background: rgba(255,255,255,0.15);
}

.active-card .process-icon i{
    color: #fff;
}

.process-card h4{
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.process-card p{
    color: #000000;
    line-height: 1.7;
    margin-bottom: 0;
}

.process-line{
    width: 70px;
    height: 4px;
    background: #0d6efd;
    border-radius: 50px;
}

/* Responsive */
@media(max-width:991px){

    .process-wrapper{
        flex-direction: column;
    }

    .process-line{
        width: 4px;
        height: 60px;
    }
}

@media(max-width:768px){

    .process-card{
        width: 100%;
        padding: 35px 25px;
    }

    .process-card h4{
        font-size: 22px;
    }
}
/* request */
.cta-section{
    background: linear-gradient(135deg, #0d6efd, #2563eb);
    position: relative;
    overflow: hidden;
}

.cta-box{
    max-width: 850px;
    margin: auto;
    padding: 70px 40px;
    border-radius: 30px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
}

.cta-title{
    font-size: 52px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.cta-text{
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.cta-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    background: #fff;
    color: #0d6efd;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}

.cta-btn:hover{
    background: #111827;
    color: #fff;
}

/* Responsive */
@media(max-width:768px){

    .cta-box{
        padding: 50px 25px;
    }

    .cta-title{
        font-size: 34px;
    }

    .cta-text{
        font-size: 16px;
    }
}
/* footer */
.footer-section{
    background: #111827;
    color: #fff;
}

.footer-logo img{
width: 200px;
  background: #fff;
  margin-bottom: 10px;
}
.footer-title{
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}

.footer-text{
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 0;
}

.footer-links li{
    margin-bottom: 12px;
}

.footer-links a{
    color: #cbd5e1;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover{
    color: #0d6efd;
    padding-left: 5px;
}

.footer-contact li{
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    color: #cbd5e1;
}

.footer-contact span{
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-contact i{
    color: #0d6efd;
}

.footer-contact a{
    color: #cbd5e1;
    text-decoration: none;
    transition: 0.3s;
}

.footer-contact a:hover{
    color: #0d6efd;
}

.footer-bottom{
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
    padding-top: 25px;
}

.footer-bottom p{
    color: #94a3b8;
    font-size: 15px;
}

/* Responsive */
@media(max-width:768px){

    .footer-section{
        text-align: center;
    }

    .footer-contact li{
        justify-content: center;
    }
}
/* =========================
   ABOUT SECTION
========================= */

.about-section{
    padding:90px 8%;
    background:#f4f7fc;
}

.about-container{
    max-width:1200px;
    margin:auto;

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:50px;

    align-items:center;
}

/* IMAGE */

.about-image{
    position:relative;
}

.about-image img{
    width:100%;
    border-radius:25px;
    display:block;
    box-shadow:0 15px 40px rgba(0,0,0,0.12);
    transition:0.4s ease;
}

.about-image:hover img{
    transform:scale(1.03);
}

.about-content p{
    font-size:16px;
    color:#666;
    margin-bottom:30px;
    line-height:1.8;
}

/* BUTTON */

.about-btn{
    display:inline-block;
    padding:14px 34px;
    background:linear-gradient(135deg,#0f318c,#1f5fff);
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:0.3s ease;
}

.about-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 25px rgba(15,49,140,0.25);
}

/* RESPONSIVE */

@media(max-width:900px){

    .about-container{
        grid-template-columns:1fr;
    }

    .about-content h2{
        font-size:32px;
    }

}
.text-orange{
      color:#e75404;
}
/* support */
/* =========================
   PRINTER SUPPORT SECTION
========================= */

.printer-support-section{
    background:#f7faff;
    position:relative;
    overflow:hidden;
}

.support-badge{
    background:#e9f1ff;
    color:#0f318c;
    padding:10px 22px;
    border-radius:50px;
    font-weight:600;
    display:inline-block;
    margin-bottom:20px;
}

.support-title{
    font-size:48px;
    font-weight:800;
    color:#111827;
    margin-bottom:20px;
}

.support-desc{
    max-width:750px;
    margin:auto;
    color:#6b7280;
    line-height:1.8;
}

/* LEFT SIDE */

.support-info-card{
    background:#0f318c;
    padding:40px;
    border-radius:30px;
    color:#fff;
    height:100%;
    position:relative;
    overflow:hidden;
}

.support-box{
    display:flex;
    gap:20px;
    margin-bottom:30px;
    align-items:flex-start;
}

.support-icon{
    width:65px;
    height:65px;
    min-width:65px;
    border-radius:18px;
    background:rgba(255,255,255,0.12);

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:24px;
}

.support-box h5{
    font-size:22px;
    margin-bottom:8px;
}

.support-box p{
    margin:0;
    color:#dce7ff;
    line-height:1.7;
}

.support-contact{
    margin-top:40px;
    padding-top:30px;
    border-top:1px solid rgba(255,255,255,0.2);
}

.support-contact h4{
    margin-bottom:15px;
}

.support-contact a{
    color:#fff;
    text-decoration:none;
    font-size:20px;
    font-weight:700;
}

/* FORM */

.support-form-card{
    background:#fff;
    padding:45px;
    border-radius:30px;
    box-shadow:0 15px 50px rgba(0,0,0,0.06);
}

.support-form-card label{
    font-weight:600;
    margin-bottom:10px;
    color:#111827;
}

.support-form-card .form-control{
    height:58px;
    border-radius:14px;
    border:1px solid #dbe3f0;
    padding:12px 18px;
    box-shadow:none;
}

.support-form-card textarea.form-control{
    height:auto;
    resize:none;
}

.support-form-card .form-control:focus{
    border-color:#0f318c;
    box-shadow:0 0 0 4px rgba(15,49,140,0.1);
}

.support-btn{
    width:100%;
    height:60px;
    border:none;
    border-radius:16px;
    background:#0f318c;
    color:#fff;
    font-size:18px;
    font-weight:700;
    transition:0.4s;
}

.support-btn:hover{
    transform:translateY(-3px);
    background:#081f5c;
}

/* RESPONSIVE */

@media(max-width:991px){

    .support-title{
        font-size:36px;
    }

    .support-form-card,
    .support-info-card{
        padding:30px;
    }

}

@media(max-width:576px){

    .support-title{
        font-size:30px;
    }

    .support-form-card{
        padding:25px;
    }

}
  .chat-wrapper {
      max-width: 1100px;
      margin: 50px auto;
    }

    .hero-box {
      padding: 40px;
    }

    .hero-box h1 {
      font-size: 52px;
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 20px;
    }

    .hero-box p {
      color: #64748b;
      font-size: 18px;
    }

    .chat-box {
      background: #fff;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    }

    .chat-header {
      background: #0f172a;
      color: white;
      padding: 20px;
    }
.chat-body{
    padding:25px;
    background:#f8fafc;
    height:400px;
    overflow-y:auto;
}

@media (max-width:576px){
    .chat-body{
        height:350px !important;
    }

}
@media(min-width:576px){
    .chat-popup{
        right:25px;
    }
}

    .bot-message {
      background: white;
      padding: 15px;
      border-radius: 18px;
      margin-bottom: 15px;
      width: fit-content;
      max-width: 85%;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }

    .user-message {
      background: #2563eb;
      color: white;
      padding: 15px;
      border-radius: 18px;
      margin-left: auto;
      width: fit-content;
      margin-bottom: 15px;
    }

    .option-btn {
      border: 1px solid #cbd5e1;
      background: white;
      padding: 12px 18px;
      border-radius: 12px;
      margin: 5px;
      transition: 0.3s;
      cursor: pointer;
    }

    .option-btn:hover {
      background: #2563eb;
      color: white;
    }

    .solution-card {
      background: #eff6ff;
      border: 1px solid #bfdbfe;
      border-radius: 18px;
      padding: 20px;
      margin-top: 20px;
    }

    .lead-form {
      background: white;
      border-radius: 20px;
      padding: 25px;
      margin-top: 25px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }

    .lead-form input {
      margin-bottom: 15px;
      border-radius: 12px;
      padding: 12px;
    }

    .submit-btn {
      background: #0f172a;
      color: white;
      padding: 14px;
      border: none;
      width: 100%;
      border-radius: 12px;
      font-weight: 600;
    }

    .submit-btn:hover {
      background: black;
    }
    .chat-toggle{
   position:fixed;
   bottom:25px;
   right:25px;
   background:#2563eb;
   color:#fff;
   padding:15px 22px;
   border-radius:50px;
   cursor:pointer;
   z-index:9999;
   font-weight:600;
   box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

.chat-popup{
   position:fixed;
   bottom:95px;
 
   width:380px;
   height:auto;
   background:#fff;
   border-radius:24px;
   overflow:hidden;
   display:none;
   z-index:9999;
   box-shadow:0 20px 50px rgba(0,0,0,0.15);
}



.chat-row{
    display:flex;
    align-items:flex-start;
    gap:10px;
    margin-bottom:15px;
}

.bot-avatar,
.user-avatar{
    width:40px;
    height:40px;
    border-radius:50%;
    overflow:hidden;
    flex-shrink:0;
}

.bot-avatar img,
.user-avatar img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.bot-message{
    background:#f1f1f1;
    padding:12px 15px;
    border-radius:15px;
    max-width:80%;
}

.user-row{
    display:flex;
    justify-content:flex-end;
    margin-bottom:15px;
}

.user-inner{
    display:flex;
    align-items:flex-start;
    gap:10px;
    flex-direction:row-reverse;
}

.user-message{
    background:#0d6efd;
    color:#fff;
    padding:12px 15px;
    border-radius:15px;
    max-width:80%;
}


/*  loader  */
.typing-loader{
    display:flex;
    align-items:center;
    gap:5px;
    padding:12px 15px;
    background:#f1f1f1;
    width:70px;
    border-radius:12px;
    margin-bottom:15px;
        margin-left:50px;
}

.typing-loader span{
    width:8px;
    height:8px;
    background:#777;
    border-radius:50%;
    animation:typing 1s infinite;
}

.typing-loader span:nth-child(2){
    animation-delay:0.2s;
}

.typing-loader span:nth-child(3){
    animation-delay:0.4s;
}

@keyframes typing{

    0%{
        opacity:0.3;
        transform:translateY(0px);
    }

    50%{
        opacity:1;
        transform:translateY(-4px);
    }

    100%{
        opacity:0.3;
        transform:translateY(0px);
    }

}
.selected-option{
    background:#0d6efd !important;
    color:#fff !important;
    border-color:#0d6efd !important;
    opacity:1 !important;
}

.option-btn:disabled{
    cursor:not-allowed;
    opacity:0.7;
}