  .faq-container {
       
        padding: 2rem 0;
    }
    
    .support-guide {
        max-width: 800px;
        margin: 0 auto;
    }
    
    .support-card {
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        border: 1px solid #dee2e6;
    }
    
    .support-icon {
        font-size: 2.5rem;
        color: #0d6efd;
        margin-bottom: 1rem;
    }
    
    .support-text {
        font-size: 1.1rem;
        color: #495057;
    }
    
    .support-number {
        font-weight: bold;
        color: #dc3545;
        direction: ltr;
        display: inline-block;
    }
    
    .faq-item {
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
    }
    
    .faq-item:hover {
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .faq-question {
        background-color: #fff;
        padding: 1.25rem 1.5rem;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid #f1f1f1;
    }
    
    .question-text {
        display: flex;
        align-items: center;
        font-weight: 600;
        color: #212529;
        font-size: 1rem;
    }
    
    .question-icon {
        color: #0d6efd;
        margin-left: 0.75rem;
        font-size: 1.2rem;
        transition: transform 0.3s ease;
    }
    
    .arrow-icon {
        color: #6c757d;
        transition: transform 0.3s ease;
    }
    
    .faq-question[aria-expanded="true"] .question-icon {
        transform: rotate(45deg);
    }
    
    .faq-question[aria-expanded="true"] .arrow-icon {
        transform: rotate(180deg);
    }
    
    .faq-answer {
        background-color: #f8f9fa;
    }
    
    .answer-content {
        padding: 1.5rem;
        color: #495057;
        line-height: 1.8;
        font-size: 0.95rem;
    }
    
    @media (max-width: 768px) {
        .support-text {
            font-size: 1rem;
        }
        
        .question-text {
            font-size: 0.95rem;
        }
        
        .faq-question {
            padding: 1rem;
        }
        
        .answer-content {
            padding: 1rem;
        }
    }
    
    /*************main_bannar*******/
    .hero-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.3;
  color: #2c3e50;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #6c757d;
  margin-bottom: 30px;
  line-height: 1.8;
}

.brand-highlight {
  color: #3a7bd5;
  font-weight: 700;
}

.btn-main {
  background: linear-gradient(135deg, #3a7bd5 0%, #00d2ff 100%);
  border: none;
  color: white;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 50px;
  box-shadow: 0 5px 15px rgba(58, 123, 213, 0.3);
  transition: all 0.3s ease;
}

.btn-main:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(58, 123, 213, 0.4);
  color: white;
}

.btn-outline-main {
  border: 2px solid #3a7bd5;
  color: #3a7bd5;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-outline-main:hover {
  background: linear-gradient(135deg, #3a7bd5 0%, #00d2ff 100%);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(58, 123, 213, 0.3);
}

.hero-image-container {
  position: relative;
  padding: 30px;
}

.hero-main-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  animation: float 6s ease-in-out infinite;
}

.decorative-element {
  position: absolute;
  z-index: 1;
}

.circle-element {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, rgba(58, 123, 213, 0.1) 0%, rgba(0, 210, 255, 0.1) 100%);
  border-radius: 50%;
  bottom: -50px;
  left: -50px;
}

.shape-element {
  width: 100px;
  height: 100px;
  background: url('/assets/img/decorative-shape.png') no-repeat;
  background-size: contain;
  top: 20%;
  left: 10%;
  animation: pulse 4s ease-in-out infinite;
}

.wave-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 100px;
}

.wave-divider .shape-fill {
  fill: #FFFFFF;
}

/* انيميشن‌ها */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); opacity: 0.7; }
}

/* رسپانسيو */
@media (max-width: 992px) {
  .hero-section {
    padding: 80px 0;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-image-container {
    margin-top: 50px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .btn-main, .btn-outline-main {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

/******search agent****/
.agent-search-section {
  background-color: #f8f9fa;
  position: relative;
  overflow: hidden;
}

.section-header {
  position: relative;
  z-index: 2;
}

.section-header h2 {
  color: #2c3e50;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(135deg, #3a7bd5 0%, #00d2ff 100%);
  border-radius: 3px;
}

.support-link {
  display: inline-flex;
  align-items: center;
  color: #3a7bd5;
  text-decoration: none;
  transition: all 0.3s;
}

.support-link:hover {
  color: #2c3e50;
}

.support-link i {
  transition: all 0.3s;
}

.support-link:hover i {
  transform: scale(1.2);
}

.search-container {
  position: relative;
  border: 1px solid rgba(58, 123, 213, 0.1);
  transition: all 0.3s;
}

.search-container:hover {
  box-shadow: 0 10px 30px rgba(58, 123, 213, 0.1);
}

.search-loader {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  border-radius: 12px;
}

.input-group {
  box-shadow: 0 5px 15px rgba(58, 123, 213, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.form-control-lg {
  padding: 12px 20px;
  border: none;
  border-right: 1px solid #eee;
}

.btn-primary {
  background: linear-gradient(135deg, #3a7bd5 0%, #00d2ff 100%);
  border: none;
  padding: 0 20px;
}

.agent-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.agent-card {
  display: flex;
  align-items: center;
  padding: 15px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  text-decoration: none;
  color: #333;
  transition: all 0.3s;
  border: 1px solid rgba(58, 123, 213, 0.1);
}

.agent-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(58, 123, 213, 0.15);
  border-color: rgba(58, 123, 213, 0.3);
}

.agent-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-left: 15px;
  border: 3px solid rgba(58, 123, 213, 0.1);
}

.agent-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.agent-content {
  flex: 1;
}

.agent-name {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: #2c3e50;
}

.agent-specialty {
  display: block;
  font-size: 0.9rem;
  color: #6c757d;
  margin-bottom: 5px;
}

.agent-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.agent-code {
  font-size: 0.8rem;
  color: #3a7bd5;
  background-color: rgba(58, 123, 213, 0.1);
  padding: 3px 8px;
  border-radius: 50px;
}

.agent-action {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(58, 123, 213, 0.1);
  color: #3a7bd5;
  border-radius: 50%;
  transition: all 0.3s;
}

.agent-card:hover .agent-action {
  background-color: #3a7bd5;
  color: white;
}

.no-results {
  background-color: #f8f9fa;
  border-radius: 10px;
}

.feature-image-container {
  position: relative;
  height: 100%;
}

.feature-image {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}

.decorative-element-1 {
  position: absolute;
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, rgba(58, 123, 213, 0.1) 0%, rgba(0, 210, 255, 0.1) 100%);
  border-radius: 50%;
  bottom: -50px;
  right: -50px;
  z-index: 1;
}

.decorative-element-2 {
  position: absolute;
  width: 100px;
  height: 100px;
  background: url('assets/img/decorative-shape.png') no-repeat;
  background-size: contain;
  top: 20%;
  left: 10%;
  z-index: 1;
  animation: pulse 4s ease-in-out infinite;
}

/* انيميشن‌ها */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); opacity: 0.7; }
}

/* رسپانسيو */
@media (max-width: 992px) {
  .section-header h2 {
    font-size: 2rem;
  }
  
  .feature-image-container {
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .agent-card {
    padding: 12px;
  }
  
  .agent-avatar {
    width: 50px;
    height: 50px;
    margin-left: 10px;
  }
  
  .agent-name {
    font-size: 1rem;
  }
}

/***************products   ************
.benefits-section {
  background-color: #f8f9fa;
  position: relative;
}

.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, #3a7bd5 0%, #00d2ff 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(58, 123, 213, 0.3);
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 25px;
  line-height: 1.3;
}

.divider {
  position: relative;
  margin: 25px 0;
}

.divider-line {
  height: 2px;
  background: linear-gradient(90deg, rgba(58, 123, 213, 0.1), #3a7bd5 50%, rgba(58, 123, 213, 0.1));
}

.divider-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #f8f9fa;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3a7bd5;
  font-size: 1rem;
  box-shadow: 0 0 0 5px #f8f9fa;
}

.benefits-subtitle {
  font-size: 1.3rem;
  color: #3a7bd5;
  margin-bottom: 25px;
  font-weight: 600;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  padding: 15px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(58, 123, 213, 0.15);
}

.benefit-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(58, 123, 213, 0.1) 0%, rgba(0, 210, 255, 0.1) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3a7bd5;
  font-size: 1rem;
  margin-left: 15px;
  flex-shrink: 0;
}

.benefit-text {
  font-size: 1rem;
  color: #495057;
  line-height: 1.6;
}

.benefits-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 30px;
}

.btn-primary-gradient {
  background: linear-gradient(135deg, #3a7bd5 0%, #00d2ff 100%);
  border: none;
  color: white;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 50px;
  transition: all 0.3s;
  box-shadow: 0 5px 15px rgba(58, 123, 213, 0.3);
}

.btn-primary-gradient:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(58, 123, 213, 0.4);
  color: white;
}

.btn-outline-primary {
  border: 2px solid #3a7bd5;
  color: #3a7bd5;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 50px;
  transition: all 0.3s;
}

.btn-outline-primary:hover {
  background: linear-gradient(135deg, #3a7bd5 0%, #00d2ff 100%);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(58, 123, 213, 0.3);
}

.benefits-image-container {
  position: relative;
  padding: 20px;
}

.benefits-image {
  position: relative;
  z-index: 2;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.benefits-image:hover {
  transform: scale(1.02);
}

.decorative-dots {
  position: absolute;
  width: 150px;
  height: 150px;
  background-image: radial-gradient(#3a7bd5 2px, transparent 2px);
  background-size: 15px 15px;
  top: -30px;
  right: -30px;
  z-index: 1;
  opacity: 0.1;
}

.decorative-circle {
  position: absolute;
  width: 200px;
  height: 200px;
  border: 20px solid rgba(58, 123, 213, 0.05);
  border-radius: 50%;
  bottom: -50px;
  left: -50px;
  z-index: 1;
}

.decorative-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z" fill="%23ffffff"></path></svg>');
  background-size: cover;
  z-index: 0;
}

/* رسپانسيو */
@media (max-width: 992px) {
  .section-title {
    font-size: 1.8rem;
  }
  
  .benefits-image-container {
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.5rem;
  }
  
  .benefit-item {
    padding: 12px;
  }
  
  .benefit-icon {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
  
  .benefits-actions {
    justify-content: center;
  }
}

/****************** charge****************************/

.charge-section {
  background-color: #f8f9fa;
  position: relative;
  overflow: hidden;
}

.section-header {
  position: relative;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(135deg, #3a7bd5 0%, #00d2ff 100%);
  border-radius: 3px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #6c757d;
  max-width: 600px;
  margin: 0 auto;
}

.charge-card {
  background: white;
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
  height: 100%;
}

.charge-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--card-color);
}

.charge-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.charge-card-inner {
  position: relative;
  z-index: 2;
}



.charge-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--card-color) 0%, rgba(0, 210, 255, 0.1) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.charge-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #495057;
  margin-bottom: 10px;
}

.charge-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--card-color);
  margin-bottom: 25px;
}

.btn-charge {
  background: linear-gradient(135deg, var(--card-color) 0%, rgba(0, 210, 255, 0.8) 100%);
  border: none;
  color: white;
  font-weight: 600;
  padding: 10px 25px;
  border-radius: 50px;
  transition: all 0.3s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: inline-flex;
  align-items: center;
}

.btn-charge:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  color: white;
}

.support-notice {
  background: white;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.support-content {
  display: flex;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}

.support-icon {
  font-size: 2.5rem;
  color: #3a7bd5;
  margin-left: 25px;
  flex-shrink: 0;
}

.support-text h4 {
  font-size: 1.3rem;
  color: #2c3e50;
  margin-bottom: 10px;
  font-weight: 600;
}

.support-text p {
  color: #6c757d;
  line-height: 1.8;
  margin-bottom: 0;
}

.support-text strong {
  color: #3a7bd5;
  font-weight: 600;
}

/* رسپانسيو */
@media (max-width: 992px) {
  .section-title {
    font-size: 1.8rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .support-content {
    flex-direction: column;
    text-align: center;
  }
  
  .support-icon {
    margin-left: 0;
    margin-bottom: 20px;
  }
  
  .charge-icon {
    width: 70px;
    height: 70px;
    font-size: 1.5rem;
  }
  
  .charge-amount {
    font-size: 1.3rem;
  }
}

/***************************************work flow *******************/
.workflow-section {
  background-color: #f8f9fa;
  overflow: hidden;
}

.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, #3a7bd5 0%, #00d2ff 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 15px;
  box-shadow: 0 5px 15px rgba(58, 123, 213, 0.3);
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(135deg, #3a7bd5 0%, #00d2ff 100%);
  margin: 15px auto;
  border-radius: 3px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #6c757d;
  max-width: 500px;
  margin: 0 auto;
}

.timeline-wrapper {
  position: relative;
  padding: 40px 0;
}

.timeline-line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #3a7bd5, #00d2ff);
  z-index: 1;
}

.timeline-steps {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.timeline-step {
  display: flex;
  position: relative;
}

.step-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #3a7bd5 0%, #00d2ff 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: 3;
  box-shadow: 0 5px 15px rgba(58, 123, 213, 0.3);
}

.step-card {
  width: calc(50% - 40px);
  padding: 30px;
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: all 0.3s;
}

.timeline-step:nth-child(odd) .step-card {
  margin-right: auto;
  text-align: center;
}

.timeline-step:nth-child(even) .step-card {
  margin-left: auto;
  text-align: center;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(58, 123, 213, 0.15);
}

.step-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(58, 123, 213, 0.1) 0%, rgba(0, 210, 255, 0.1) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.step-icon img {
  width: 40px;
  height: 40px;
  transition: all 0.3s;
}

.step-card:hover .step-icon img {
  transform: scale(1.15);
}

.step-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 15px;
}

.step-description {
  color: #6c757d;
  line-height: 1.8;
  margin-bottom: 0;
}

.step-arrow {
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: white;
  transform: rotate(45deg);
  top: 40px;
}

.timeline-step:nth-child(odd) .step-arrow {
  right: -10px;
}

.timeline-step:nth-child(even) .step-arrow {
  left: -10px;
}

.workflow-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-primary-gradient {
  background: linear-gradient(135deg, #3a7bd5 0%, #00d2ff 100%);
  border: none;
  color: white;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 50px;
  transition: all 0.3s;
  box-shadow: 0 5px 15px rgba(58, 123, 213, 0.3);
}

.btn-primary-gradient:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(58, 123, 213, 0.4);
  color: white;
}

.btn-outline-primary {
  border: 2px solid #3a7bd5;
  color: #3a7bd5;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 50px;
  transition: all 0.3s;
}

.btn-outline-primary:hover {
  background: linear-gradient(135deg, #3a7bd5 0%, #00d2ff 100%);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(58, 123, 213, 0.3);
}

.decorative-dots {
  position: absolute;
  width: 200px;
  height: 200px;
  background-image: radial-gradient(#3a7bd5 2px, transparent 2px);
  background-size: 15px 15px;
  top: 50px;
  right: -50px;
  opacity: 0.1;
  z-index: 0;
}

.decorative-circle {
  position: absolute;
  width: 150px;
  height: 150px;
  border: 20px solid rgba(58, 123, 213, 0.05);
  border-radius: 50%;
  bottom: -50px;
  left: -50px;
  z-index: 0;
}

/* انيميشن‌ها */
.timeline-step {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.timeline-step:nth-child(1) { animation-delay: 0.2s; }
.timeline-step:nth-child(2) { animation-delay: 0.4s; }
.timeline-step:nth-child(3) { animation-delay: 0.6s; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* رسپانسيو */
@media (max-width: 992px) {
  .section-title {
    font-size: 1.8rem;
  }
  
  .step-card {
    width: 80%;
    margin: 0 auto 60px !important;
    text-align: center !important;
  }
  
  .timeline-line {
    left: 40px;
  }
  
  .step-number {
    left: 40px;
  }
  
  .step-arrow {
    top: auto;
    bottom: -10px;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) rotate(45deg);
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.5rem;
  }
  
  .step-card {
    width: 100%;
    padding: 20px;
  }
  
  .workflow-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-primary-gradient, .btn-outline-primary {
    width: 100%;
    max-width: 300px;
  }
}