/* =============================================================================
   Base Styles
   ========================================================================== */
:root {
    /* Colors */
    --primary-color: #9c27b0;
   --primary-dark: #7b1fa2;
    --primary-light: #e1bee7;
    --secondary-color: #ff4081;
    --secondary-dark: #c60055;
    --secondary-light: #ff80ab;
    --text-dark: #333333;
    --text-medium: #555555;
    --text-light: #777777;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    border-color: #e0e0e0;
    --success-color: #4caf50;
    
    /* Fonts */
    body-font: 'Poppins', sans-serif;
    
    /* Other */
    border-radius: 8px;
   --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-medium);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.5em;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

ul, ol {
    list-style-type: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* =============================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(156, 39, 176, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-light {
    background-color: var(--white);
    color: var(--primary-color);
}

.btn-light:hover {
    background-color: var(--light-bg);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-full {
    display: block;
    width: 100%;
}

/* =============================================================================
   Header & Navigation
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    font-weight: bold;
    font-size: 1.5rem;
    border-radius: 8px;
}

.logo-text {
    font-weight: 700;
    font-size: 1.5rem;
    margin-left: 0.5rem;
    color: var(--text-dark);
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-menu li {
    margin-left: 2rem;
}

.nav-link {
    color: var(--text-medium);
    font-weight: 500;
}

.nav-link:hover {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

/*ED98DD =============================================================================
   Hero Section
   f5f7fa========================================================================== */
.hero {
    
    
    
    background: linear-gradient(135deg, #f5f7fa 30%, #ED98DD 90%);
   
    
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
   
    top: 0;
    left: 0;
    width: 10%;
    height: 10%;
     background-image: url('https://esalon.co.in/esalondemo/images/salonintro.jpg');
    
}
 
  
 


.hero .container {
  position: relative;
  z-index: 2;
}


.hero .container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content h1 {
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text-medium);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-image {
    flex: 1;
    max-width: 600px;
}

.browser-mockup {
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    background: var(--white);
}

.browser-header {
    background-color: #f0f0f0;
    height: 30px;
    display: flex;
    align-items: center;
    padding: 0 12px;
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.red {
    background-color: #ff5f57;
}

.yellow {
    background-color: #ffbd2e;
}

.green {
    background-color: #28ca41;
}

.browser-content {
    padding: 2rem;
    background: var(--white);
}

.dashboard-preview {
    height: 300px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.dashboard-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* =============================================================================
   Features Section
   ========================================================================== */
.features {
    padding: 100px 0;
    background-color: var(--white);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 2rem;
    border-radius: var(--border-radius);
    background-color: var(--white);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background-color: var(--primary-light);
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 1.75rem;
    color: var(--primary-color);
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.35rem;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* =============================================================================
   How It Works
   ========================================================================== */
.how-it-works {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.steps {
    display: flex;
    justify-content: space-between;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    flex: 1;
    text-align: center;
    padding: 0 1rem;
    position: relative;
}

.step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 30px;
    right: -30px;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    font-weight: 600;
    font-size: 1.5rem;
    box-shadow: 0 8px 15px rgba(156, 39, 176, 0.3);
}

.step h3 {
    margin-bottom: 1rem;
}

.step p {
    color: var(--text-light);
}

/* =============================================================================
   Pricing Section
   ========================================================================== */

.bottom-offer-ribbon {
  background-color: #e60000;
  color: white;
  padding: 15px 20px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
  position: sticky;
  bottom: 0;
  z-index: 100;
}

.ribbon-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.ribbon-text {
  animation: blinkText 2s infinite;
}

#bottom-countdown {
  font-weight: bold;
  margin-left: 8px;
  color: #ffeb99;
}

.ribbon-pay-btn {
  background-color: #fff;
  color: #e60000;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.ribbon-pay-btn:hover {
  background-color: #ffcccc;
}

@keyframes blinkText {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

@media (max-width: 500px) {
  .ribbon-content {
    flex-direction: column;
    font-size: 15px;
  }
}




  
.offer-ribbon {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #e60000;
  color: #fff;
  text-align: center;
  padding: 12px 8px;
  font-size: 15px;
  font-weight: 500;
  z-index: 9999;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.offer-text {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.blinking {
  animation: blinkAnim 1s infinite;
}

@keyframes blinkAnim {
  0%   { opacity: 1; }
  50%  { opacity: 0.1; }
  100% { opacity: 1; }
}

.ribbon-pay-btn {
  background-color: #fff;
  color: #e60000;
  padding: 6px 14px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 14px;
  margin-left: 5px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.ribbon-pay-btn:hover {
  background-color: #ffe6e6;
}

@media screen and (max-width: 500px) {
  .offer-text {
    flex-direction: column;
    font-size: 14px;
  }

  .ribbon-pay-btn {
    margin: 6px 0 0;
  }
}  
  
  
  
  
  
 .limited-offer {
  background: linear-gradient(145deg, #fbeeca, #f7dca0);
  padding: 60px 20px;
  text-align: center;
  border-radius: 10px;
  margin: 40px auto;
  max-width: 600px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.offer-box h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #b54600;
}

.offer-amount {
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: bold;
}

.offer-timer-text {
  font-size: 16px;
  margin-bottom: 8px;
  color: #444;
}

.countdown {
  font-size: 26px;
  font-weight: bold;
  color: #e60000;
  margin-bottom: 20px;
}

.pay-btn {
  background-color: #e60000;
  color: #fff;
  padding: 12px 28px;
  font-size: 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.pay-btn:hover {
  background-color: #b30000;
} 
  
  
  
  
   
  .toggle-buttons {
  text-align: center;
  margin-bottom: 30px;
}

.toggle-btn {
  background: none;
  border: 2px solid #ccc;
  padding: 10px 20px;
  margin: 0 10px;
  cursor: pointer;
  border-radius: 5px;
  font-weight: 500;
}

.toggle-btn.active {
  background-color: #4a90e2;
  color: #fff;
  border-color: #4a90e2;
}
 
   
   
.pricing {
    padding: 100px 0;
    background-color: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.pricing-card {
    padding: 2rem;
    border-radius: var(--border-radius);
    background-color: var(--white);
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card.popular {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.popular-tag {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 2rem;
}

.pricing-header h3 {
    margin-bottom: 1rem;
}

.price {
    margin-bottom: 1rem;
}

.currency {
    font-size: 1.5rem;
    vertical-align: top;
    line-height: 1;
}

.amount {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
}

.period {
    font-size: 1rem;
    color: var(--text-light);
}

.pricing-features {
    margin-bottom: 2rem;
}

.pricing-features li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.pricing-features i {
    color: var(--success-color);
    margin-right: 0.75rem;
}

/* =============================================================================
   Testimonials Section
   ========================================================================== */
.testimonials {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.testimonial-slider {
    display: flex;
    overflow-x: hidden;
    margin-bottom: 2rem;
}

.testimonial-slide {
    flex: 0 0 100%;
    padding: 2rem;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-right: 1.5rem;
    transition: var(--transition);
}

.quote-icon {
    font-size: 2rem;
    color: var(--primary-light);
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.author-info h4 {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.author-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
}

.prev-btn, .next-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.prev-btn:hover, .next-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.testimonial-dots {
    display: flex;
    align-items: center;
    margin: 0 1rem;
}

.dot-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--border-color);
    margin: 0 0.25rem;
    cursor: pointer;
    transition: var(--transition);
}

.dot-indicator.active {
    width: 30px;
    border-radius: 5px;
    background-color: var(--primary-color);
}

/* =============================================================================
   FAQ Section
   ========================================================================== */
.faq {
    padding: 100px 0;
    background-color: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    cursor: pointer;
    background-color: var(--white);
    transition: var(--transition);
}

.faq-question h3 {
    font-size: 1.125rem;
    margin-bottom: 0;
    font-weight: 500;
}

.faq-toggle {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-question {
    background-color: var(--primary-light);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 1000px;
}

/* =============================================================================
   CTA Section
   ========================================================================== */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* =============================================================================
   Footer
   ========================================================================== */
.footer {
    padding: 100px 0 30px;
    background-color: #333;
    color: var(--light-bg);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    grid-column: span 2;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer .logo-text {
    color: var(--white);
}

.footer-brand p {
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
}

.footer-links h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links ul li a {
    color: var(--light-bg);
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    opacity: 1;
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* =============================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero {
        padding: 140px 0 80px;
    }
    
    .step:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .steps {
        flex-direction: column;
        gap: 3rem;
    }
    
    .testimonial-slide {
        padding: 1.5rem;
    }
    
    .pricing-card.popular {
        transform: none;
    }
}

@media (max-width: 576px) {
    .navbar {
        height: 70px;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--white);
        flex-direction: column;
        padding: 2rem;
        transition: var(--transition);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}


/* Modal styling */
.modal {
  display: none; 
  position: fixed; 
  z-index: 999; 
  padding-top: 80px; 
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%; 
  overflow: auto;
  background-color: rgba(0,0,0,0.4); 
}

.modal-content {
  background-color: #fff;
  margin: auto;
  padding: 30px;
  border-radius: 8px;
  width: 90%;
  max-width: 400px;
  animation: fadeInUp 0.5s ease;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: #000;
}
.modal input {
  width: 100%;
  padding: 10px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.trusted-brands {
  padding: 60px 0;
  background: #fafafa;
  text-align: center;
}

.brand-carousel img {
  max-width: 100px; /* adjust for your design */
  height: auto;
  margin: 5px 5px;
  
 
}
    

.brand-slide {
  flex: 0 0 auto;
  width: 200px;
  margin: 0 20px;
  animation: scroll 20s linear infinite;
}

.brand-slide img {
  width: 100%;


  transition: filter 0.3s ease, opacity 0.3s ease;
}

.brand-slide img:hover {
  filter: none;
  opacity: 1;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 28px;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
  z-index: 999;
  width: 55px;
  height: 55px;
  line-height: 55px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 4px 4px 12px rgba(0,0,0,0.4);
}

.call-float {
  position: fixed;
  bottom: 90px; /* adjust spacing above WhatsApp button */
  right: 20px;
  background-color: #28a745; /* green shade for call */
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 24px;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
  z-index: 999;
  width: 55px;
  height: 55px;
  line-height: 55px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.call-float:hover {
  transform: scale(1.1);
  box-shadow: 4px 4px 12px rgba(0,0,0,0.4);
}


.avatar-box {
  position: fixed;
  bottom: 100px;
  left: 20px;
  width: 260px;
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  z-index: 9999;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  animation: fadeInUp 1s ease;
  display: none;
}

.avatar-img {
    width: 86px;
    height: 108px;
    border-radius: 50%;
    margin-right: 12px;
    object-fit: cover;
}

.avatar-text {
  font-size: 14px;
  color: #333;
  line-height: 1.4;
  max-width: 160px;
}

.avatar-close {
  position: absolute;
  top: 5px;
  right: 10px;
  font-size: 20px;
  color: #888;
  cursor: pointer;
}

.avatar-close:hover {
  color: #000;
}

/* Keyframes for scrolling */
@keyframes scroll {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-120%);
  }
}


