    :root {
      --primary: #009687;
      --primary-dark: #3a56d4;
      --primary-light: #eef2ff;
      --secondary: #0f172a;
      --accent: #f72585;
      --accent-light: #fce4ec;
      --success: #06d6a0;
      --warning: #ffd166;
      --light: #f8fafc;
      --gray: #64748b;
      --light-gray: #e2e8f0;
      --dark: #0f172a;
      --gradient-primary: linear-gradient(135deg, #009687 0%, #008c96 100%);
      --gradient-accent: linear-gradient(135deg, #f72585 0%, #b5179e 100%);
      --gradient-light: linear-gradient(135deg, #f0f9ff 0%, #e6f7ff 100%);
      --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
      --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
      --radius: 16px;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }
    body {
      font-family: 'Inter', sans-serif;
      color: var(--secondary);
      line-height: 1.7;
      background-color: var(--light);
      overflow-x: hidden;
    }

    h1, h2, h3, h4, h5, h6 {
      font-weight: 700;
      line-height: 1.2;
    }

    .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

    /* Header */
    header {
      background-color: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
      position: fixed;
      width: 100%;
      top: 0;
      z-index: 1030;
      transition: var(--transition);
    }

    header.scrolled {
      background-color: rgba(255, 255, 255, 0.98);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .navbar-brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 24px;
      font-weight: 800;
      background: var(--gradient-primary);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      text-decoration: none;
    }

    .nav-link { 
      color: var(--secondary) !important; 
      font-weight: 500; 
      transition: var(--transition); 
      position: relative; 
      padding: 8px 16px !important;
      border-radius: 8px;
    }
    
    .nav-link:hover { 
      color: var(--primary) !important; 
      background-color: var(--primary-light);
    }
    
    .nav-link.active {
      color: var(--primary) !important;
      background-color: var(--primary-light);
    }



    .cta-button {
      background: var(--gradient-primary);
      color: white;
      padding: 10px 24px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      transition: var(--transition);
      border: none;
      cursor: pointer;
      display: inline-block;
      box-shadow: 0 4px 14px rgba(67, 97, 238, 0.3);
    }
    
    .cta-button:hover { 
      transform: translateY(-3px); 
      box-shadow: 0 6px 20px rgba(67, 97, 238, 0.4);
      color: white;
    }

    .cta-button-secondary {
      background: transparent;
      color: var(--primary);
      border: 2px solid var(--primary);
    }
    
    .cta-button-secondary:hover {
      background: var(--primary);
      color: white;
    }

    /* Hero Section */
    .hero {
      padding: 180px 0 100px;
      background: var(--gradient-light);
      position: relative;
      overflow: hidden;
    }
    
    .hero::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 800px;
      height: 800px;
      background: radial-gradient(circle, rgba(67, 97, 238, 0.1) 0%, rgba(67, 97, 238, 0) 70%);
      border-radius: 50%;
      z-index: 0;
    }

    .hero-content {
      display: flex;
      align-items: center;
      gap: 60px;
      position: relative;
      z-index: 1;
    }
    
    .hero-text { flex: 1; }
    
    .hero-text h1 {
      font-size: 3.5rem;
      font-weight: 800;
      line-height: 1.1;
      margin-bottom: 24px;
      color: var(--dark);
    }
    
    .hero-text h1 .gradient-text {
      background: var(--gradient-primary);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    
    .hero-text p {
      font-size: 1.25rem;
      color: var(--gray);
      margin-bottom: 32px;
      max-width: 600px;
    }
    
    .hero-buttons {
      display: flex;
      gap: 16px;
      margin-bottom: 32px;
    }
    
    .hero-stats {
      display: flex;
      gap: 32px;
    }
    
    .stat {
      display: flex;
      flex-direction: column;
    }
    
    .stat-value {
      font-size: 2rem;
      font-weight: 800;
      color: var(--primary);
    }
    
    .stat-label {
      font-size: 0.9rem;
      color: var(--gray);
    }
    
    .hero-image {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    
    .hero-image img {
      max-width: 100%;
      border-radius: var(--radius);
      box-shadow: var(--shadow-lg);
      transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
      transition: var(--transition);
    }
    
    .hero-image img:hover {
      transform: perspective(1000px) rotateY(0) rotateX(0);
    }

    /* Section Styling */
    .section {
      padding: 100px 0;
      position: relative;
    }
    
    .section-title {
      text-align: center;
      margin-bottom: 60px;
    }
    
    .section-title h2 {
      font-size: 2.5rem;
      font-weight: 800;
      margin-bottom: 16px;
      color: var(--dark);
    }
    
    .section-title p {
      color: var(--gray);
      max-width: 700px;
      margin: 0 auto;
      font-size: 1.1rem;
    }
    
    .section-badge {
      display: inline-block;
      background: var(--gradient-accent);
      color: white;
      padding: 6px 16px;
      border-radius: 50px;
      font-size: 0.8rem;
      font-weight: 600;
      margin-bottom: 16px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    /* Features Grid */
    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }
    
    .feature-card {
      background: white;
      border-radius: var(--radius);
      padding: 40px 30px;
      box-shadow: var(--shadow);
      transition: var(--transition);
      border: 1px solid var(--light-gray);
      position: relative;
      overflow: hidden;
    }
    
    .feature-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: var(--gradient-primary);
    }
    
    .feature-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-lg);
    }
    
    .feature-icon {
      width: 70px;
      height: 70px;
      background: var(--primary-light);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
      transition: var(--transition);
    }
    
    .feature-card:hover .feature-icon {
      background: var(--gradient-primary);
      transform: scale(1.1);
    }
    
    .feature-icon i {
      font-size: 28px;
      color: var(--primary);
      transition: var(--transition);
    }
    
    .feature-card:hover .feature-icon i {
      color: white;
    }
    
    .feature-card h3 {
      font-size: 1.5rem;
      margin-bottom: 16px;
      color: var(--dark);
    }

    /* Unique Selling Points */
    .usp-section {
      background: var(--gradient-primary);
      color: white;
      position: relative;
      overflow: hidden;
    }
    
    .usp-section::before {
      content: '';
      position: absolute;
      top: -100px;
      left: -100px;
      width: 300px;
      height: 300px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
    }
    
    .usp-section::after {
      content: '';
      position: absolute;
      bottom: -150px;
      right: -100px;
      width: 400px;
      height: 400px;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 50%;
    }
    
    .usp-section .section-title h2,
    .usp-section .section-title p {
      color: white;
    }
    
    .usp-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      position: relative;
      z-index: 1;
    }
    
    .usp-card {
      text-align: center;
      padding: 40px 20px;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      border-radius: var(--radius);
      border: 1px solid rgba(255, 255, 255, 0.2);
      transition: var(--transition);
    }
    
    .usp-card:hover {
      transform: translateY(-5px);
      background: rgba(255, 255, 255, 0.15);
    }
    
    .usp-icon {
      width: 80px;
      height: 80px;
      background: rgba(255, 255, 255, 0.2);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
    }
    
    .usp-icon i {
      font-size: 32px;
      color: white;
    }
    
    .usp-card h3 {
      font-size: 1.3rem;
      margin-bottom: 15px;
    }

    /* Pricing Section */
    .pricing-section {
      background: var(--light);
    }
    
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }
    
.pricing-card {
  background: white;
  border-radius: var(--radius);
  padding: 24px 20px;   /* reduced from 40px 30px */
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
  border: 1px solid var(--light-gray);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
    
    .pricing-card.popular {
      border-color: var(--primary);
      transform: scale(1.03);
      box-shadow: 0 20px 40px rgba(67, 97, 238, 0.15);
    }
    
    .pricing-card.popular::before {
      content: "Most Popular";
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--gradient-accent);
      color: white;
      padding: 6px 20px;
      border-radius: 50px;
      font-size: 0.8rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    
    .pricing-card h3 {
      font-size: 1.5rem;
      margin-bottom: 10px;
    }
    
    .pricing-card .price {
      font-size: 3rem;
      font-weight: 800;
      margin: 10px 0;
      color: var(--primary);
    }
    
    .pricing-card .price span {
      font-size: 1rem;
      color: var(--gray);
      font-weight: 400;
      top: -50px!important;
    }
    
    .pricing-features {
      list-style: none;
      margin: 30px 0;
      text-align: left;
      flex-grow: 1;
    }
    
    .pricing-features li {
      padding: 10px 0;
      display: flex;
      align-items: flex-start;
      gap: 12px;
    }
    
    .pricing-features li i {
      color: var(--success);
      margin-top: 4px;
      flex-shrink: 0;
    }
    
    .pricing-features li .disabled {
      color: var(--gray);
      text-decoration: line-through;
    }
    
    .pricing-note {
      background: var(--primary-light);
      padding: 20px;
      border-radius: var(--radius);
      margin-top: 40px;
      font-size: 0.9rem;
      color: var(--dark);
      text-align: center;
    }

    .integration-logo{
              color: var(--primary) !important;
      background-color: var(--primary-light);
      margin: 5px;
      text-align: center!important;
      padding: 5px;
      border-radius: 5px;
      border: 1px var(--primary-light) solid;
    }

    /* Industries */
    .industries-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
    }
    
    .industry-card {
      text-align: center;
      padding: 40px 20px;
      border-radius: var(--radius);
      transition: var(--transition);
      border: 1px solid var(--light-gray);
      background: white;
    }
    
    .industry-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow);
      border-color: var(--primary);
    }
    
    .industry-icon {
      width: 80px;
      height: 80px;
      background: var(--primary-light);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      transition: var(--transition);
    }
    
    .industry-card:hover .industry-icon {
      background: var(--gradient-primary);
      transform: scale(1.1);
    }
    
    .industry-icon i {
      font-size: 32px;
      color: var(--primary);
      transition: var(--transition);
    }
    
    .industry-card:hover .industry-icon i {
      color: white;
    }
    
    .industry-card h3 {
      font-size: 1.3rem;
      margin-bottom: 15px;
    }

    /* Benefits */
    .benefits-container {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
    }
    
    .benefit-column {
      flex: 1;
      min-width: 300px;
    }
    
    .benefit-column h3 {
      font-size: 1.5rem;
      margin-bottom: 25px;
      color: var(--dark);
      display: flex;
      align-items: center;
      gap: 12px;
    }
    
    .benefit-list {
      list-style: none;
    }
    
    .benefit-list li {
      padding: 15px 0;
      border-bottom: 1px solid var(--light-gray);
      display: flex;
      gap: 12px;
      align-items: flex-start;
    }
    
    .benefit-list li:last-child {
      border-bottom: none;
    }
    
    .benefit-list i {
      color: var(--success);
      margin-top: 4px;
      flex-shrink: 0;
    }

    /* Demo Form */
    .demo-form-section {
      background: var(--gradient-light);
    }
    
    .form-container {
      max-width: 700px;
      margin: 0 auto;
      background: white;
      border-radius: var(--radius);
      box-shadow: var(--shadow-lg);
      padding: 50px;
      position: relative;
      overflow: hidden;
    }
    
    .form-container::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: var(--gradient-primary);
    }
    
    .form-group {
      margin-bottom: 24px;
    }
    
    .form-group label {
      display: block;
      margin-bottom: 8px;
      font-weight: 500;
      color: var(--dark);
    }
    
    .form-control {
      width: 100%;
      padding: 14px 16px;
      border: 1px solid var(--light-gray);
      border-radius: 8px;
      font-family: 'Inter', sans-serif;
      font-size: 16px;
      transition: var(--transition);
    }
    
    .form-control:focus {
      outline: none;
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.1);
    }
    
    .form-row {
      display: flex;
      gap: 20px;
    }
    
    .form-row .form-group {
      flex: 1;
    }
    
    textarea.form-control {
      min-height: 150px;
      resize: vertical;
    }

    /* Footer */
    footer {
      background: var(--dark);
      color: white;
      padding: 80px 0 30px;
    }
    
    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
      margin-bottom: 40px;
    }
    
    .footer-column h3 {
      font-size: 1.3rem;
      margin-bottom: 24px;
      position: relative;
      padding-bottom: 12px;
    }
    
    .footer-column h3::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 50px;
      height: 3px;
      background: var(--primary);
    }
    
    .footer-links {
      list-style: none;
    }
    
    .footer-links li {
      margin-bottom: 12px;
    }
    
    .footer-links a {
      color: #cbd5e1;
      text-decoration: none;
      transition: var(--transition);
      display: inline-block;
    }
    
    .footer-links a:hover {
      color: white;
      transform: translateX(5px);
    }
    
    .contact-info {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    
    .contact-item {
      display: flex;
      align-items: center;
      gap: 15px;
    }
    
    .contact-icon {
      width: 40px;
      height: 40px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .copyright {
      text-align: center;
      padding-top: 40px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      color: #94a3b8;
      font-size: 0.9rem;
    }

    /* Responsive */
    @media (max-width: 992px) {
      .hero-content { flex-direction: column; text-align: center; }
      .hero-text p { margin: 0 auto 30px; }
      .hero-buttons { justify-content: center; }
      .hero-stats { justify-content: center; }
      .form-row { flex-direction: column; gap: 0; }
      .pricing-card.popular { transform: scale(1); }
    }
    
    @media (max-width: 768px) {
      .hero { padding: 140px 0 80px; }
      .hero-text h1 { font-size: 2.5rem; }
      .section { padding: 80px 0; }
      .section-title h2 { font-size: 2rem; }
      .form-container { padding: 30px; }
    }

    /* Animations */
    .fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
    .fade-in.appear { opacity: 1; transform: translateY(0); }









    .hero-image {
  position: relative;
}

.image-wrapper {
  position: relative;
  display: inline-block;
}

.integration-badge {
  position: absolute;
  width: 70px;   /* bigger circle */
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 32px;   /* bigger icon */
  box-shadow: var(--shadow);
  animation: float 6s ease-in-out infinite;
}

.integration-badge.whatsapp { background: #25D366; top: -20px; left: 20%; }
.integration-badge.sms { background: #2563eb; top: 10%; right: -25px; }
.integration-badge.dynamics { background: #0078D4; bottom: 20%; right: -30px; }
.integration-badge.crm { background: #9333ea; bottom: -25px; left: 30%; }
.integration-badge.email { background: #f97316; top: 25%; left: -25px; }
.integration-badge.api { background: #0f172a; bottom: 5%; right: 20%; }

/* Floating animation */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}









.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto 40px;
  gap: 12px;
  font-size: 16px;
  color: var(--dark);
}

.toggle-label {
  font-weight: 500;
}

.switch {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 28px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ddd;
  transition: 0.4s;
  border-radius: 28px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 3px;
  bottom: 3px;
  background-color: #fff;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: var(--primary);
}

input:checked + .slider:before {
  transform: translateX(24px);
}

@media (max-width: 768px) {
  .pricing-card {
    padding: 18px 15px;
  }
}

#scrollTopBtn {
  display: none; /* Hidden by default */
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 99;
  width: 50px;      /* Equal width */
  height: 50px;     /* Equal height */
  border: none;
  outline: none;
  background: var(--primary);
  color: white;
  cursor: pointer;
  border-radius: 50%; /* Perfect circle */
  font-size: 20px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center; /* Center the icon */
}

#scrollTopBtn:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

.carousel-img {
    width: 150px;      /* Set your desired width */
    height: 100px;     /* Set your desired height */
    object-fit: contain; /* Preserve aspect ratio and avoid stretching */
}



    .clientSliderWrapper {
      position: relative;
      overflow: hidden;
      width: 100%;
      background: #f8f9fa;
      padding: 10px 0;
    }

    .clientSliderTrack {
      display: flex;
      transition: transform 0.5s ease;
    }

    .clientSlide {
      flex: 0 0 20%; /* 5 per row on desktop */
      text-align: center;
      padding: 10px;
    }

    .clientSlide img {
        filter: grayscale(100%);
        transition: 0.3s ease;
        width: 150px;      /* Set your desired width */
        height: 100px;     /* Set your desired height */
        object-fit: contain; /* Preserve aspect ratio and avoid stretching */
    }

    .clientSlide img:hover {
      filter: grayscale(0);
      transform: scale(1.05);
    }

    .clientSliderBtn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: #000000aa;
      border: none;
      color: #fff;
      padding: 10px 15px;
      cursor: pointer;
      z-index: 10;
      border-radius: 50%;
    }

    .clientSliderBtn.leftBtn {
      left: 10px;
    }

    .clientSliderBtn.rightBtn {
      right: 10px;
    }

    /* Responsive */
    @media (max-width: 992px) {
      .clientSlide { flex: 0 0 33.33%; } /* 3 per row */
    }
    @media (max-width: 576px) {
      .clientSlide { flex: 0 0 50%; } /* 2 per row */
    }
    
    
    
    


        .business-solutions-slider {
            max-width: 1400px;
            margin: 50px auto;
            padding: 0 15px;
        }

        .solutions-carousel-item {
            padding: 40px 20px;
        }

        .article-card {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 15px;
            padding: 35px 25px;
            color: white;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            height: 100%;
            transition: transform 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .article-card:hover {
            transform: translateY(-5px);
        }

        .article-card.whatsapp {
            background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
        }

        .article-card.sms {
            background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
        }

        .article-card.callcenter {
            background: linear-gradient(135deg, #F76B1C 0%, #D35400 100%);
        }

        .article-icon {
            font-size: 45px;
            margin-bottom: 20px;
            opacity: 0.9;
        }

        .article-title {
            font-size: 22px;
            font-weight: bold;
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .article-intro {
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 20px;
            opacity: 0.95;
        }

        .benefits-list {
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .benefit-item {
            font-size: 13px;
            margin-bottom: 10px;
            padding-left: 20px;
            position: relative;
            line-height: 1.5;
        }

        .benefit-item:before {
            content: "✓";
            position: absolute;
            left: 0;
            font-weight: bold;
            font-size: 16px;
        }

        .cta-button-slide {
            background: white;
            color: #333;
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            display: inline-block;
            text-align: center;
            font-size: 14px;
            transition: transform 0.3s ease;
        }

        .cta-button-slide:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            color: #333;
        }

        .business-solutions-slider .carousel {
            position: relative;
        }

        .solutions-control-prev,
        .solutions-control-next {
            width: 60px;
            height: 60px;
            background: var(--primary);
            border-radius: 50%;
            opacity: 1;
            top: 50% !important;
            transform: translateY(-50%) !important;
            border: 3px solid white;
            box-shadow: 0 5px 20px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
            position: absolute;
        }

        .solutions-control-prev {
            left: -30px;
        }

        .solutions-control-next {
            right: -30px;
        }

        .solutions-control-prev:hover,
        .solutions-control-next:hover {
            background: var(--primary-light);
            transform: translateY(-50%) scale(1.1) !important;
            box-shadow: 0 8px 25px rgba(0,0,0,0.4);
        }

        .solutions-control-prev-icon,
        .solutions-control-next-icon {
            width: 25px;
            height: 25px;
        }

        @media (max-width: 768px) {
            .solutions-control-prev {
                left: 10px;
            }
            
            .solutions-control-next {
                right: 10px;
            }
        }

        .solutions-indicators button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            margin: 0 5px;
        }

        @media (max-width: 768px) {
            .article-card {
                margin-bottom: 20px;
            }
        }