@charset "UTF-8";
.shamel-btn {
  background-color: #6366f1;
  color: #fff;
  border-radius: 10px;
  padding: 10px 20px;
  font-weight: 600;
  font-size: 16px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.shamel-btn:hover {
  background-color: rgb(66.24, 69.87, 238.06);
  color: #fff;
}
.shamel-btn:hover::after {
  transform: translateX(0);
}
.shamel-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(169.2, 170.85, 247.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.manage-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.manage-section .manage-text h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
}
.manage-section .container {
  position: relative;
  z-index: 2;
}
.manage-section .manage-content {
  padding: 20px 0;
}
.manage-section .manage-content .manage-title {
  font-size: 3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.manage-section .manage-content .manage-subtitle {
  font-size: 1.2rem;
  color: #6c757d;
  margin-bottom: 3rem;
  line-height: 1.6;
}
.manage-section .manage-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.manage-section .manage-steps .manage-step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1rem 0;
}
.manage-section .manage-steps .manage-step .step-number {
  min-width: 50px;
  height: 50px;
  background-color: #e9e9fc;
  color: #6366f1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.manage-section .manage-steps .manage-step .step-content {
  flex: 1;
}
.manage-section .manage-steps .manage-step .step-content .step-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.8rem;
}
.manage-section .manage-steps .manage-step .step-content .step-text {
  color: #6c757d;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}
.manage-section .manage-image-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 500px;
}
.manage-section .manage-image-container .manage-base-image {
  width: 100%;
  max-width: 450px;
  height: auto;
  z-index: 1;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}
.manage-section .manage-image-container .manage-floating-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.1);
  width: 65%;
  max-width: 280px;
  height: auto;
  z-index: 3;
  animation: float 3s ease-in-out infinite;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.2));
  transition: transform 0.3s ease, filter 0.3s ease;
  cursor: pointer;
}
.manage-section .manage-image-container .manage-floating-image:hover {
  transform: translate(-50%, -50%) scale(1.15);
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.25));
}
@keyframes float {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1.1) translateY(0px) rotate(0deg);
  }
  33% {
    transform: translate(-50%, -50%) scale(1.1) translateY(-10px) rotate(1deg);
  }
  66% {
    transform: translate(-50%, -50%) scale(1.1) translateY(-5px) rotate(-1deg);
  }
}
@media (max-width: 992px) {
  @keyframes float {
    0%, 100% {
      transform: translate(-50%, -50%) scale(1.05) translateY(0px) rotate(0deg);
    }
    33% {
      transform: translate(-50%, -50%) scale(1.05) translateY(-8px) rotate(1deg);
    }
    66% {
      transform: translate(-50%, -50%) scale(1.05) translateY(-4px) rotate(-1deg);
    }
  }
}
@media (max-width: 768px) {
  @keyframes float {
    0%, 100% {
      transform: translate(-50%, -50%) scale(1.03) translateY(0px) rotate(0deg);
    }
    33% {
      transform: translate(-50%, -50%) scale(1.03) translateY(-6px) rotate(1deg);
    }
    66% {
      transform: translate(-50%, -50%) scale(1.03) translateY(-3px) rotate(-1deg);
    }
  }
}
.manage-section[dir=rtl] .manage-step, .rtl .manage-section .manage-step, html[lang=ar] .manage-section .manage-step, body.rtl .manage-section .manage-step {
  flex-direction: row;
}
.manage-section[dir=rtl] .manage-step .step-number, .rtl .manage-section .manage-step .step-number, html[lang=ar] .manage-section .manage-step .step-number, body.rtl .manage-section .manage-step .step-number {
  order: 1;
  margin-left: 0;
  margin-right: 0;
}
.manage-section[dir=rtl] .manage-step .step-content, .rtl .manage-section .manage-step .step-content, html[lang=ar] .manage-section .manage-step .step-content, body.rtl .manage-section .manage-step .step-content {
  order: 2;
  text-align: right;
  direction: rtl;
}
.manage-section[dir=ltr] .manage-step, .ltr .manage-section .manage-step, html[lang=en] .manage-section .manage-step, body.ltr .manage-section .manage-step {
  flex-direction: row;
}
.manage-section[dir=ltr] .manage-step .step-number, .ltr .manage-section .manage-step .step-number, html[lang=en] .manage-section .manage-step .step-number, body.ltr .manage-section .manage-step .step-number {
  order: 1;
  margin-right: 0;
  margin-left: 0;
}
.manage-section[dir=ltr] .manage-step .step-content, .ltr .manage-section .manage-step .step-content, html[lang=en] .manage-section .manage-step .step-content, body.ltr .manage-section .manage-step .step-content {
  order: 2;
  text-align: left;
  direction: ltr;
}
@media (max-width: 992px) {
  .manage-section {
    padding: 60px 0;
  }
  .manage-section .manage-content .manage-title {
    font-size: 2.5rem;
    text-align: center;
  }
  .manage-section .manage-content .manage-subtitle {
    text-align: center;
    margin-bottom: 2rem;
  }
  .manage-section .manage-image-container {
    height: 400px;
    margin-bottom: 2rem;
  }
  .manage-section .manage-image-container .manage-base-image {
    max-width: 350px;
  }
  .manage-section .manage-image-container .manage-floating-image {
    width: 55%;
    max-width: 200px;
    transform: translate(-50%, -50%) scale(1.05);
  }
  .manage-section .manage-steps {
    gap: 1.5rem;
  }
}
@media (max-width: 768px) {
  .manage-section {
    padding: 40px 0;
  }
  .manage-section .manage-content .manage-title {
    font-size: 2rem;
  }
  .manage-section .manage-content .manage-subtitle {
    font-size: 1.1rem;
  }
  .manage-section .manage-image-container {
    height: 300px;
  }
  .manage-section .manage-image-container .manage-base-image {
    max-width: 280px;
  }
  .manage-section .manage-image-container .manage-floating-image {
    width: 50%;
    max-width: 150px;
    transform: translate(-50%, -50%) scale(1.03);
  }
  .manage-section .manage-steps {
    gap: 1rem;
  }
  .manage-section .manage-steps .manage-step {
    gap: 1rem;
  }
  .manage-section .manage-steps .manage-step .step-number {
    min-width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  .manage-section .manage-steps .manage-step .step-content .step-title {
    font-size: 1.2rem;
  }
  .manage-section .manage-steps .manage-step .step-content .step-text {
    font-size: 0.95rem;
  }
}
@media (max-width: 576px) {
  .manage-section .manage-content .manage-title {
    font-size: 1.8rem;
  }
  .manage-section .manage-text {
    text-align: center;
    font-size: 0.9rem;
    color: black;
  }
  .manage-section .manage-text p {
    width: 75% !important;
    margin: auto;
    margin-top: 10px;
  }
  .manage-section .manage-image-container {
    height: 250px;
  }
  .manage-section .manage-image-container .manage-base-image {
    max-width: 230px;
  }
  .manage-section .manage-image-container .manage-floating-image {
    width: 45%;
    max-width: 120px;
    transform: translate(-50%, -50%) scale(1.02);
  }
}

/* ===== PRICING SECTION ===== */
.pricing-section {
  padding: 80px 0;
  background: #f9fafb;
  position: relative;
}
.pricing-section .container {
  position: relative;
  z-index: 2;
}
.pricing-section .pricing-header {
  margin-bottom: 60px;
}
.pricing-section .pricing-header .pricing-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 16px;
  line-height: 1.2;
}
.pricing-section .pricing-header .pricing-subtitle {
  font-size: 1.1rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
.pricing-section .billing-toggle-container {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}
.pricing-section .billing-toggle-container .billing-toggle {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #ffffff;
  padding: 8px 24px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.1);
  border: 1px solid #e5e7eb;
}
.pricing-section .billing-toggle-container .billing-toggle .billing-option {
  font-size: 1rem;
  font-weight: 500;
  color: #6b7280;
  transition: color 0.3s ease;
  white-space: nowrap;
}
.pricing-section .billing-toggle-container .billing-toggle .billing-option.active {
  color: #111827;
  font-weight: 600;
}
.pricing-section .billing-toggle-container .billing-toggle .billing-switch {
  position: relative;
  width: 60px;
  height: 30px;
  margin: 0 10px;
}
.pricing-section .billing-toggle-container .billing-toggle .billing-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.pricing-section .billing-toggle-container .billing-toggle .billing-switch .billing-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 30px;
}
.pricing-section .billing-toggle-container .billing-toggle .billing-switch .billing-slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}
.pricing-section .billing-toggle-container .billing-toggle .billing-switch input:checked + .billing-slider {
  background-color: #6366f1;
}
.pricing-section .billing-toggle-container .billing-toggle .billing-switch input:checked + .billing-slider:before {
  transform: translateX(30px);
}
.pricing-section .billing-toggle-container .billing-toggle .save-badge {
  background: #6366f1;
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
}
.pricing-section .pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.pricing-section .pricing-cards .pricing-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 30px;
  border: 2px solid #e5e7eb;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.pricing-section .pricing-cards .pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.1);
  border-color: #6366f1;
}
.pricing-section .pricing-cards .pricing-card.featured {
  border-color: #6366f1;
  transform: scale(1.05);
  z-index: 2;
}
.pricing-section .pricing-cards .pricing-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
}
.pricing-section .pricing-cards .pricing-card .plan-header {
  text-align: center;
  margin-bottom: 30px;
}
.pricing-section .pricing-cards .pricing-card .plan-header .plan-badge {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: #6366f1;
}
.pricing-section .pricing-cards .pricing-card .plan-header .plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
  margin-bottom: 8px;
}
.pricing-section .pricing-cards .pricing-card .plan-header .plan-price .currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: #111827;
}
.pricing-section .pricing-cards .pricing-card .plan-header .plan-price .amount {
  font-size: 3.5rem;
  font-weight: 700;
  color: #111827;
  line-height: 1;
}
.pricing-section .pricing-cards .pricing-card .plan-header .plan-price .period {
  font-size: 1rem;
  color: #6b7280;
  font-weight: 500;
}
.pricing-section .pricing-cards .pricing-card .plan-header .billing-info {
  font-size: 0.9rem;
  color: #6b7280;
  margin: 0;
}
.pricing-section .pricing-cards .pricing-card .plan-features {
  flex: 1;
  margin-bottom: 30px;
}
.pricing-section .pricing-cards .pricing-card .plan-features .features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pricing-section .pricing-cards .pricing-card .plan-features .features-list .feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.95rem;
  color: #111827;
}
.pricing-section .pricing-cards .pricing-card .plan-features .features-list .feature-item .feature-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #10b981;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 12px;
  color: white;
}
.pricing-section .pricing-cards .pricing-card .plan-features .features-list .feature-item.unavailable {
  opacity: 0.5;
}
.pricing-section .pricing-cards .pricing-card .plan-features .features-list .feature-item.unavailable .feature-icon {
  background: #e5e7eb;
  color: #6b7280;
}
.pricing-section .pricing-cards .pricing-card .plan-footer {
  text-align: center;
}
.pricing-section .pricing-cards .pricing-card .plan-footer .cta-button {
  width: 100%;
  padding: 16px 24px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  margin-bottom: 16px;
  border: 2px solid transparent;
}
.pricing-section .pricing-cards .pricing-card .plan-footer .cta-button.btn-primary-custom {
  background: #6366f1;
  color: white;
  border-color: #6366f1;
}
.pricing-section .pricing-cards .pricing-card .plan-footer .cta-button.btn-primary-custom:hover {
  background: #4f46e5;
  border-color: #4f46e5;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
  color: white;
}
.pricing-section .pricing-cards .pricing-card .plan-footer .cta-button.btn-outline-primary {
  background: transparent;
  color: #6366f1;
  border-color: #6366f1;
}
.pricing-section .pricing-cards .pricing-card .plan-footer .cta-button.btn-outline-primary:hover {
  background: #6366f1;
  color: white;
  transform: translateY(-2px);
}
.pricing-section .pricing-cards .pricing-card .plan-footer .cta-button i {
  transition: transform 0.3s ease;
}
.pricing-section .pricing-cards .pricing-card .plan-footer .cta-button:hover i {
  transform: translateX(3px);
}
.pricing-section .pricing-cards .pricing-card .plan-footer .no-credit-card {
  font-size: 0.85rem;
  color: #6b7280;
  margin: 0;
}
.pricing-section[dir=rtl] .pricing-cards .pricing-card .plan-features .features-list .feature-item, .rtl .pricing-section .pricing-cards .pricing-card .plan-features .features-list .feature-item, html[lang=ar] .pricing-section .pricing-cards .pricing-card .plan-features .features-list .feature-item, body.rtl .pricing-section .pricing-cards .pricing-card .plan-features .features-list .feature-item {
  flex-direction: row-reverse;
  text-align: right;
}
.pricing-section[dir=rtl] .pricing-cards .pricing-card .plan-footer .cta-button, .rtl .pricing-section .pricing-cards .pricing-card .plan-footer .cta-button, html[lang=ar] .pricing-section .pricing-cards .pricing-card .plan-footer .cta-button, body.rtl .pricing-section .pricing-cards .pricing-card .plan-footer .cta-button {
  flex-direction: row-reverse;
}
.pricing-section[dir=rtl] .pricing-cards .pricing-card .plan-footer .cta-button:hover i, .rtl .pricing-section .pricing-cards .pricing-card .plan-footer .cta-button:hover i, html[lang=ar] .pricing-section .pricing-cards .pricing-card .plan-footer .cta-button:hover i, body.rtl .pricing-section .pricing-cards .pricing-card .plan-footer .cta-button:hover i {
  transform: translateX(-3px);
}
.pricing-section[dir=rtl] .billing-toggle-container .billing-toggle .save-badge, .rtl .pricing-section .billing-toggle-container .billing-toggle .save-badge, html[lang=ar] .pricing-section .billing-toggle-container .billing-toggle .save-badge, body.rtl .pricing-section .billing-toggle-container .billing-toggle .save-badge {
  margin-left: 0;
  margin-right: 10px;
}
@media (max-width: 1200px) {
  .pricing-section .pricing-cards {
    max-width: 900px;
    gap: 25px;
  }
}
@media (max-width: 1024px) and (min-width: 769px) {
  .pricing-section .pricing-cards {
    grid-template-columns: repeat(2, 1fr);
    max-width: 650px;
  }
  .pricing-section .pricing-cards .pricing-card:nth-child(3) {
    grid-column: 1/-1;
    max-width: 320px;
    margin: 20px auto 0;
  }
}
@media (max-width: 992px) {
  .pricing-section {
    padding: 60px 0;
  }
  .pricing-section .pricing-header .pricing-title {
    font-size: 2rem;
  }
  .pricing-section .pricing-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 600px;
  }
  .pricing-section .pricing-cards .pricing-card.featured {
    transform: none;
  }
  .pricing-section .pricing-cards .pricing-card.featured:hover {
    transform: translateY(-5px);
  }
  .pricing-section .pricing-cards .pricing-card:nth-child(3) {
    grid-column: 1/-1;
    max-width: 350px;
    margin: 20px auto 0;
  }
}
@media (max-width: 768px) {
  .pricing-section {
    padding: 40px 0;
  }
  .pricing-section .pricing-header {
    margin-bottom: 40px;
  }
  .pricing-section .pricing-header .pricing-title {
    font-size: 1.8rem;
  }
  .pricing-section .pricing-header .pricing-subtitle {
    font-size: 1rem;
  }
  .pricing-section .billing-toggle-container {
    margin-bottom: 30px;
  }
  .pricing-section .billing-toggle-container .billing-toggle {
    flex-direction: column;
    gap: 15px;
    padding: 16px 20px;
  }
  .pricing-section .billing-toggle-container .billing-toggle .billing-switch {
    order: 2;
  }
  .pricing-section .billing-toggle-container .billing-toggle .save-badge {
    order: 3;
  }
  .pricing-section .pricing-cards {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 320px;
    padding: 0 15px;
  }
  .pricing-section .pricing-cards .pricing-card {
    padding: 25px 20px;
    max-width: 100%;
  }
  .pricing-section .pricing-cards .pricing-card:nth-child(3) {
    grid-column: auto;
    margin: 0;
  }
  .pricing-section .pricing-cards .pricing-card .plan-header .plan-price .amount {
    font-size: 2.5rem;
  }
}
@media (max-width: 576px) {
  .pricing-section {
    padding: 30px 0;
  }
  .pricing-section .pricing-header {
    margin-bottom: 30px;
  }
  .pricing-section .pricing-header .pricing-title {
    font-size: 1.6rem;
  }
  .pricing-section .pricing-header .pricing-subtitle {
    font-size: 0.9rem;
    padding: 0 15px;
  }
  .pricing-section .billing-toggle-container {
    margin-bottom: 25px;
  }
  .pricing-section .billing-toggle-container .billing-toggle {
    padding: 12px 16px;
    gap: 12px;
    background-color: transparent;
    border: none;
    padding: 0px;
    box-shadow: none;
  }
  .pricing-section .billing-toggle-container .billing-toggle .billing-option {
    font-size: 0.9rem;
  }
  .pricing-section .billing-toggle-container .billing-toggle .billing-switch {
    width: 50px;
    height: 25px;
  }
  .pricing-section .billing-toggle-container .billing-toggle .billing-switch .billing-slider:before {
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
  }
  .pricing-section .billing-toggle-container .billing-toggle .billing-switch input:checked + .billing-slider:before {
    transform: translateX(25px);
  }
  .pricing-section .billing-toggle-container .billing-toggle .save-badge {
    font-size: 0.75rem;
    padding: 3px 8px;
  }
  .pricing-section .pricing-cards {
    max-width: 280px;
    padding: 0 10px;
  }
  .pricing-section .pricing-cards .pricing-card {
    padding: 20px 15px;
  }
  .pricing-section .pricing-cards .pricing-card .plan-header {
    margin-bottom: 25px;
  }
  .pricing-section .pricing-cards .pricing-card .plan-header .plan-badge {
    font-size: 0.8rem;
    margin-bottom: 15px;
  }
  .pricing-section .pricing-cards .pricing-card .plan-header .plan-price .currency {
    font-size: 1.2rem;
  }
  .pricing-section .pricing-cards .pricing-card .plan-header .plan-price .amount {
    font-size: 2rem;
  }
  .pricing-section .pricing-cards .pricing-card .plan-header .plan-price .period {
    font-size: 0.9rem;
  }
  .pricing-section .pricing-cards .pricing-card .plan-header .billing-info {
    font-size: 0.8rem;
  }
  .pricing-section .pricing-cards .pricing-card .plan-features {
    margin-bottom: 25px;
  }
  .pricing-section .pricing-cards .pricing-card .plan-features .features-list .feature-item {
    margin-bottom: 12px;
    font-size: 0.9rem;
  }
  .pricing-section .pricing-cards .pricing-card .plan-features .features-list .feature-item .feature-icon {
    width: 18px;
    height: 18px;
    font-size: 10px;
  }
  .pricing-section .pricing-cards .pricing-card .plan-footer .cta-button {
    padding: 14px 20px;
    font-size: 0.9rem;
  }
  .pricing-section .pricing-cards .pricing-card .plan-footer .no-credit-card {
    font-size: 0.8rem;
  }
}

/* ===== PRICING ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
.pricing-section .pricing-card {
  animation: fadeInUp 0.6s ease forwards;
}
.pricing-section .pricing-card:nth-child(2) {
  animation-delay: 0.2s;
}
.pricing-section .pricing-card:nth-child(3) {
  animation-delay: 0.4s;
}
.pricing-section .pricing-card.featured .plan-badge {
  animation: pulse 2s infinite;
}
.pricing-section .billing-toggle {
  animation: fadeInUp 0.6s ease forwards;
}

/* ===== ADDITIONAL UTILITY CLASSES ===== */
.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.d-flex {
  display: flex !important;
}

body.rtl .pricing-section .plan-price .amount {
  font-family: "Tajawal", "Almarai", sans-serif;
}

body.ltr .pricing-section .plan-price .amount {
  font-family: "Inter", system-ui, sans-serif;
}

/* Footer Styles */
.footer-section {
  background: var(--light-bg);
  padding: 80px 0 30px;
  border-top: 1px solid var(--border-color);
  position: relative;
}

.footer-top {
  margin-bottom: 60px;
}

.footer-brand {
  margin-bottom: 2rem;
}

.footer-brand h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 12px;
  align-items: center;
}

.social-link {
  width: 40px;
  height: 40px;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 16px;
}

.social-link:hover {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.footer-column {
  margin-bottom: 2rem;
}

.footer-column h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  display: block;
  padding: 2px 0;
}

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

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
  text-align: center;
}

/* RTL Support */
body.rtl .footer-social {
  justify-content: flex-start;
}

body.ltr .footer-social {
  justify-content: flex-start;
}

body.rtl .footer-links a {
  text-align: right;
}

body.ltr .footer-links a {
  text-align: left;
}

/* Responsive Design */
@media (max-width: 992px) {
  .footer-section {
    padding: 60px 0 20px;
  }
  .footer-top {
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .footer-section {
    padding: 40px 0 20px;
  }
  .footer-brand {
    text-align: center;
    margin-bottom: 3rem;
  }
  .footer-brand p {
    max-width: 100%;
    margin: 0 auto 1.5rem;
  }
  .footer-social {
    justify-content: center;
  }
  .footer-column {
    text-align: center;
    margin-bottom: 2.5rem;
  }
  .footer-links a {
    text-align: center;
  }
}
@media (max-width: 576px) {
  .footer-brand h3 {
    font-size: 1.5rem;
  }
  .footer-column h4 {
    font-size: 1rem;
  }
  .footer-links a {
    font-size: 0.9rem;
  }
}
/* Language Switch Button (for demo) */
.demo-controls {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
}

.lang-btn {
  background: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lang-btn:hover {
  background: var(--primary-hover);
}

.contact-section {
  padding: 80px 0;
  background-color: #f8fafc;
}
.contact-section .container {
  max-width: 1200px;
}
.contact-section .contact-form-container {
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  -webkit-backdrop-filter: none;
          backdrop-filter: none;
  border: none;
}
.contact-section .contact-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 2rem;
  position: relative;
}
.contact-section .contact-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: #6366f1;
  border-radius: 2px;
}
[dir=rtl] .contact-section .contact-title::after {
  right: 0;
  left: auto;
}
.contact-section .contact-form .form-label {
  font-weight: 600;
  color: #111827;
  margin-bottom: 8px;
  font-size: 1.1rem;
}
.contact-section .contact-form .contact-input,
.contact-section .contact-form .contact-textarea {
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 15px 20px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #fff;
  width: 100%;
}
.contact-section .contact-form .contact-input:focus,
.contact-section .contact-form .contact-textarea:focus {
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
  outline: none;
}
.contact-section .contact-form .contact-input::-moz-placeholder, .contact-section .contact-form .contact-textarea::-moz-placeholder {
  color: #6b7280;
}
.contact-section .contact-form .contact-input::placeholder,
.contact-section .contact-form .contact-textarea::placeholder {
  color: #6b7280;
}
.contact-section .contact-form .contact-input.valid,
.contact-section .contact-form .contact-textarea.valid {
  border-color: #10b981;
}
.contact-section .contact-form .contact-input.invalid,
.contact-section .contact-form .contact-textarea.invalid {
  border-color: #ef4444;
}
.contact-section .contact-form .contact-textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-section .contact-submit-btn {
  background: #6366f1;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.contact-section .contact-submit-btn:hover {
  background: rgb(52.2, 56.1, 236.8);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}
.contact-section .contact-submit-btn:active {
  transform: translateY(0);
}
.contact-section .contact-submit-btn i {
  transition: transform 0.3s ease;
}
.contact-section .contact-submit-btn:hover i {
  transform: translateX(3px);
}
[dir=rtl] .contact-section .contact-submit-btn:hover i {
  transform: translateX(-3px);
}
.contact-section .contact-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}
.contact-section .contact-image {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

[dir=rtl] .contact-section .contact-title::after {
  right: 0;
  left: auto;
}
[dir=rtl] .contact-section .contact-submit-btn:hover i {
  transform: translateX(-3px);
}

@media (max-width: 991.98px) {
  .contact-section .contact-form-container {
    margin-bottom: 3rem;
  }
  .contact-section .contact-title {
    font-size: 2rem;
    text-align: center;
  }
  .contact-section .contact-image-container {
    text-align: center;
  }
}
@media (max-width: 767.98px) {
  .contact-section {
    padding: 60px 0;
  }
  .contact-section .contact-title {
    font-size: 1.8rem;
  }
  .contact-section .contact-submit-btn {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 575.98px) {
  .contact-section .contact-title {
    font-size: 1.6rem;
  }
}
.error-message {
  color: #ef4444;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.error-message::before {
  content: "⚠";
  font-size: 1rem;
}

.success-message {
  background: #10b981;
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}
.success-message i {
  font-size: 1.2rem;
}

[dir=rtl] .contact-section .contact-title::after {
  right: 0;
  left: auto;
}

@media (max-width: 991.98px) {
  .contact-section .contact-form-container {
    padding: 30px 20px;
    margin-bottom: 3rem;
  }
  .contact-section .contact-title {
    font-size: 2rem;
    text-align: center;
  }
  .contact-section .contact-image-container {
    text-align: center;
  }
}
@media (max-width: 767.98px) {
  .contact-section {
    padding: 60px 0;
    min-height: auto;
  }
  .contact-section .contact-form-container {
    padding: 25px 15px;
  }
  .contact-section .contact-title {
    font-size: 1.8rem;
  }
  .contact-section .contact-submit-btn {
    width: 100%;
    padding: 18px;
  }
}
@media (max-width: 575.98px) {
  .contact-section .contact-title {
    font-size: 1.6rem;
  }
  .contact-section .contact-form-container {
    padding: 20px 10px;
  }
}
:root {
  --primary-color: #6366f1;
  --primary-hover: #4f46e5;
  --text-dark: #111827;
  --text-muted: #6b7280;
  --light-bg: #f9fafb;
  --white: #ffffff;
  --border-color: #e5e7eb;
}

/* ===== FOOTER SECTION ===== */
.footer-section {
  background: var(--white);
  padding: 80px 0 30px;
  border-top: 1px solid var(--border-color);
  position: relative;
}
.footer-section .container {
  max-width: 1200px;
}
.footer-section .footer-top {
  margin-bottom: 60px;
}
.footer-section .footer-brand {
  margin-bottom: 2rem;
}
.footer-section .footer-brand .logo-container {
  margin-bottom: 1.5rem;
}
.footer-section .footer-brand .logo-container img {
  height: 40px;
  width: auto;
  transition: all 0.3s ease;
}
.footer-section .footer-brand .logo-container img:hover {
  transform: scale(1.05);
}
.footer-section .footer-brand p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 300px;
}
.footer-section .footer-social {
  display: flex;
  gap: 12px;
  align-items: center;
}
.footer-section .footer-social .social-link {
  width: 40px;
  height: 40px;
  background: var(--light-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 16px;
}
.footer-section .footer-social .social-link:hover {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.2);
}
.footer-section .footer-social .social-link:active {
  transform: translateY(0);
}
.footer-section .footer-column {
  margin-bottom: 2rem;
}
.footer-section .footer-column h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  position: relative;
}
.footer-section .footer-column h4::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary-color);
  border-radius: 1px;
  opacity: 0.7;
}
.footer-section .footer-column .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-section .footer-column .footer-links li {
  margin-bottom: 12px;
}
.footer-section .footer-column .footer-links li:last-child {
  margin-bottom: 0;
}
.footer-section .footer-column .footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: block;
  padding: 4px 0;
  position: relative;
}
.footer-section .footer-column .footer-links a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}
.footer-section .footer-column .footer-links a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}
.footer-section .footer-column .footer-links a:hover::before {
  width: 20px;
}
.footer-section .footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
}
.footer-section .footer-bottom p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
  text-align: center;
}

/* ===== RTL SUPPORT ===== */
body.rtl .footer-section .footer-social {
  justify-content: flex-start;
}
body.rtl .footer-section .footer-column h4::after {
  right: 0;
  left: auto;
}
body.rtl .footer-section .footer-column .footer-links a {
  text-align: right;
}
body.rtl .footer-section .footer-column .footer-links a:hover {
  padding-left: 0;
  padding-right: 5px;
}
body.rtl .footer-section .footer-column .footer-links a:hover::before {
  right: 0;
  left: auto;
}

body.ltr .footer-section .footer-social {
  justify-content: flex-start;
}
body.ltr .footer-section .footer-column .footer-links a {
  text-align: left;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
  .footer-section .footer-brand p {
    max-width: 280px;
  }
}
@media (max-width: 992px) {
  .footer-section {
    padding: 60px 0 20px;
  }
  .footer-section .footer-top {
    margin-bottom: 40px;
  }
  .footer-section .footer-column {
    margin-bottom: 2.5rem;
  }
}
@media (max-width: 768px) {
  .footer-section {
    padding: 40px 0 20px;
  }
  .footer-section .footer-brand {
    text-align: center;
    margin-bottom: 3rem;
  }
  .footer-section .footer-brand p {
    max-width: 100%;
    margin: 0 auto 1.5rem;
  }
  .footer-section .footer-social {
    justify-content: center;
  }
  .footer-section .footer-column {
    text-align: center;
    margin-bottom: 2.5rem;
  }
  .footer-section .footer-column h4::after {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
  .footer-section .footer-column .footer-links a {
    text-align: center;
  }
  .footer-section .footer-column .footer-links a:hover {
    padding-left: 0;
    padding-right: 0;
  }
  .footer-section .footer-column .footer-links a:hover::before {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
  body.rtl .footer-section .footer-column h4::after {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
  body.rtl .footer-section .footer-column .footer-links a:hover::before {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
}
@media (max-width: 576px) {
  .footer-section {
    padding: 30px 0 15px;
  }
  .footer-section .footer-brand .logo-container img {
    height: 35px;
  }
  .footer-section .footer-brand p {
    font-size: 0.9rem;
  }
  .footer-section .footer-social {
    gap: 10px;
  }
  .footer-section .footer-social .social-link {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
  .footer-section .footer-column {
    margin-bottom: 2rem;
  }
  .footer-section .footer-column h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  .footer-section .footer-column .footer-links a {
    font-size: 0.9rem;
    padding: 3px 0;
  }
  .footer-section .footer-column .footer-links li {
    margin-bottom: 10px;
  }
  .footer-section .footer-bottom {
    padding-top: 20px;
  }
  .footer-section .footer-bottom p {
    font-size: 0.85rem;
  }
}
@media (max-width: 400px) {
  .footer-section {
    padding: 25px 0 10px;
  }
  .footer-section .footer-brand .logo-container img {
    height: 30px;
  }
  .footer-section .footer-social .social-link {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }
}
/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInFromBottom {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.footer-section .footer-brand,
.footer-section .footer-column {
  animation: fadeInUp 0.6s ease forwards;
}
.footer-section .footer-column:nth-child(2) {
  animation-delay: 0.1s;
}
.footer-section .footer-column:nth-child(3) {
  animation-delay: 0.2s;
}
.footer-section .footer-column:nth-child(4) {
  animation-delay: 0.3s;
}
.footer-section .footer-column:nth-child(5) {
  animation-delay: 0.4s;
}
.footer-section .footer-bottom {
  animation: slideInFromBottom 0.6s ease forwards;
  animation-delay: 0.5s;
}

/* ===== DARK MODE SUPPORT (Optional) ===== */
@media (prefers-color-scheme: dark) {
  :root {
    --text-dark: #f9fafb;
    --text-muted: #9ca3af;
    --light-bg: #111827;
    --white: #1f2937;
    --border-color: #374151;
  }
  .footer-section {
    background: var(--white);
  }
  .footer-section .social-link {
    background: var(--light-bg);
  }
  .footer-section .social-link:hover {
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
  }
}
.login-btn {
  background: transparent;
  color: #6366f1;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 8px 16px !important;
  position: relative;
  overflow: hidden;
  min-width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}
.login-btn:hover {
  border: 1px solid #6366f1;
  border-radius: 10px;
  color: #6366f1;
}
.login-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

.start-btn {
  background: #6366f1;
  border: none;
  color: #ffffff;
  font-weight: 500;
  transition: all 0.3s ease;
  border-radius: 10px;
  padding: 10px 20px !important;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.start-btn i,
.start-btn .btn-arrow {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
  margin-left: 5px;
}
.rtl .start-btn .btn-arrow {
  margin-left: 0;
  margin-right: 5px;
  transform: rotate(180deg);
}
.start-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}
.start-btn:hover {
  background-color: #4f46e5;
  transform: scale(1.05);
  color: #ffffff;
}
.start-btn:hover .btn-arrow {
  transform: translateX(4px);
}
.rtl .start-btn:hover .btn-arrow {
  transform: rotate(180deg) translateX(-4px);
}
.start-btn:hover::after {
  left: 125%;
}
.start-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

.language-switch-modern {
  display: flex;
}
.language-switch-modern .lang-btn-modern {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  color: #6366f1;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.language-switch-modern .lang-btn-modern .lang-icon {
  font-size: 1.2rem;
  transition: all 0.3s ease;
  color: #6366f1;
}
.language-switch-modern .lang-btn-modern .lang-text {
        font-weight: 600;
        letter-spacing: 0.02em;
        transition: all 0.3s ease;
        text-shadow: none;
        font-size: 22px;
    }

@media (max-width: 767px) {
    .language-switch-modern .lang-btn-modern .lang-text {
        font-size: 25px;
    }
}
.language-switch-modern .lang-btn-modern:focus {
  outline: none !important;
  border: none !important;
}
.language-switch-modern .lang-btn-modern:active {
  outline: none !important;
  border: none !important;
}

.chat-support-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.chat-support-btn .chat-btn-main {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: white;
  border-radius: 50px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4), 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  min-width: 60px;
  justify-content: center;
  position: relative;
  overflow: hidden;
  animation: chatPulse 3s ease-in-out infinite;
}
.chat-support-btn .chat-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}
.chat-support-btn .chat-text {
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  opacity: 0;
  width: 0;
  transition: all 0.3s ease;
  overflow: hidden;
}
.chat-support-btn .chat-tooltip {
  position: absolute;
  bottom: 100%;
  right: 0;
  background: rgba(17, 24, 39, 0.9);
  color: white;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.8rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  margin-bottom: 10px;
}
.chat-support-btn .chat-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 20px;
  border: 6px solid transparent;
  border-top-color: rgba(17, 24, 39, 0.9);
}
.chat-support-btn:hover .chat-btn-main {
  transform: scale(1.05);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5), 0 6px 20px rgba(0, 0, 0, 0.15);
  padding: 15px 25px;
}
.chat-support-btn:hover .chat-text {
  opacity: 1;
  width: auto;
  margin-right: 5px;
}
.chat-support-btn:hover .chat-icon {
  transform: rotate(15deg) scale(1.1);
}
.chat-support-btn:hover .chat-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.chat-support-btn:active .chat-btn-main {
  transform: scale(0.95);
}

@keyframes chatPulse {
  0%, 100% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4), 0 4px 15px rgba(0, 0, 0, 0.1);
  }
  50% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6), 0 4px 15px rgba(0, 0, 0, 0.15);
  }
}
@keyframes iconFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-2px) rotate(5deg);
  }
}
.lang-btn-modern .lang-icon {
  animation: iconFloat 3s ease-in-out infinite;
}

.lang-btn-modern:hover .lang-icon {
  animation: none;
}

@media (max-width: 991px) {
  .language-switch-modern .lang-btn-modern {
    font-size: 0.9rem;
    gap: 0.6rem;
    margin-top: 10px;
  }
  .right-nav-button {
    flex-direction: column;
    gap: 10px !important;
    width: 100%;
    align-items: stretch;
  }
  .login-btn,
  .start-btn {
    width: 100%;
    text-align: center;
    margin-top: 5px;
  }
}
@media (max-width: 768px) {
  .chat-support-btn {
    bottom: 20px;
    right: 20px;
  }
  .chat-btn-main {
    padding: 12px 16px;
  }
  .chat-icon {
    font-size: 1.3rem;
  }
}
@media (max-width: 576px) {
  .language-switch-modern .lang-btn-modern {
    font-size: 0.85rem;
    min-width: 110px;
    gap: 0.5rem;
  }
  .language-switch-modern .lang-btn-modern .lang-icon {
    font-size: 1.1rem;
  }
}
.features-list {
  margin: 2rem 0;
}
.features-list .feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  gap: 1rem;
  padding: 1rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
}
.features-list .feature-item:hover {
  background-color: rgba(60, 219, 192, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(60, 219, 192, 0.1);
}
.features-list .feature-item .feature-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #3cdbc0, #2bc7a8);
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(60, 219, 192, 0.3);
  transition: all 0.3s ease;
}
.features-list .feature-item .feature-icon i {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
}
.features-list .feature-item span {
  color: #4a4a4a;
  font-size: 1rem;
  line-height: 1.7;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  flex: 1;
  margin-top: 2px;
  transition: color 0.3s ease;
}
.features-list .feature-item:hover .feature-icon {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(60, 219, 192, 0.4);
}
.features-list .feature-item:hover span {
  color: #2a2a2a;
}

.what-do-image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.what-do-image .what-do-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 15px;
  transition: all 0.3s ease;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

.what-do-image .what-do-img:hover {
  transform: scale(1.02);
  filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.3));
}

body.rtl .what-do-badge {
  text-align: right;
}

@media (max-width: 991px) {
  body.rtl .what-do-badge {
    text-align: center;
  }
}
body.rtl .what-do-title,
body.rtl .what-do-description {
  text-align: right;
}

@media (max-width: 991px) {
  body.rtl .what-do-title,
  body.rtl .what-do-description {
    text-align: center;
  }
}
body.rtl .features-list .feature-item {
  flex-direction: row-reverse;
  text-align: right;
}
body.rtl .features-list .feature-item .feature-icon {
  margin-left: 1rem;
  margin-right: 0;
  order: 2;
}
body.rtl .features-list .feature-item span {
  text-align: right;
  order: 1;
}

body:not(.rtl) .features-list .feature-item {
  flex-direction: row;
  text-align: left;
}
body:not(.rtl) .features-list .feature-item .feature-icon {
  margin-right: 1rem;
  margin-left: 0;
  order: 1;
}
body:not(.rtl) .features-list .feature-item span {
  text-align: left;
  order: 2;
}

@media (max-width: 768px) {
  .features-list {
    margin: 1.5rem 0;
  }
  .features-list .feature-item {
    padding: 0.8rem;
    margin-bottom: 1.2rem;
    gap: 0.8rem;
  }
  .features-list .feature-item .feature-icon {
    width: 28px;
    height: 28px;
  }
  .features-list .feature-item .feature-icon i {
    font-size: 14px;
  }
  .features-list .feature-item span {
    font-size: 0.9rem;
    line-height: 1.6;
  }
  body.rtl .features-list .feature-item {
    flex-direction: row-reverse;
    text-align: right;
  }
  body.rtl .features-list .feature-item .feature-icon {
    margin-left: 0.8rem;
    margin-right: 0;
  }
  body:not(.rtl) .features-list .feature-item {
    flex-direction: row;
    text-align: left;
  }
  body:not(.rtl) .features-list .feature-item .feature-icon {
    margin-right: 0.8rem;
    margin-left: 0;
  }
}
@media (max-width: 576px) {
  .features-list {
    margin: 1rem 0;
  }
  .features-list .feature-item {
    padding: 0.6rem;
    margin-bottom: 1rem;
    gap: 0.6rem;
  }
  .features-list .feature-item .feature-icon {
    width: 24px;
    height: 24px;
  }
  .features-list .feature-item .feature-icon i {
    font-size: 12px;
  }
  .features-list .feature-item span {
    font-size: 0.85rem;
    line-height: 1.5;
  }
  body.rtl .features-list .feature-item .feature-icon {
    margin-left: 0.6rem;
    margin-right: 0;
  }
  body:not(.rtl) .features-list .feature-item .feature-icon {
    margin-right: 0.6rem;
    margin-left: 0;
  }
}
@media (min-width: 1200px) {
  .features-list .feature-item {
    padding: 1.2rem;
    margin-bottom: 1.8rem;
  }
  .features-list .feature-item .feature-icon {
    width: 36px;
    height: 36px;
  }
  .features-list .feature-item .feature-icon i {
    font-size: 18px;
  }
  .features-list .feature-item span {
    font-size: 1.1rem;
    line-height: 1.8;
  }
}
@media (min-width: 992px) {
  body.rtl .row .what-do-content {
    order: 2;
  }
  body.rtl .row .what-do-image {
    order: 1;
  }
}
.features-list .feature-item .feature-icon i {
  transition: transform 0.3s ease;
}

body.rtl .features-list .feature-item .feature-icon {
  margin-left: 1rem;
  margin-right: 0;
}
body.rtl .features-list .feature-item .feature-icon i.fa-check,
body.rtl .features-list .feature-item .feature-icon i.fa-check-circle {
  transform: scaleX(1);
}
body.rtl .features-list .feature-item .feature-icon i.fa-arrow-right {
  transform: scaleX(-1);
}
body.rtl .features-list .feature-item .feature-icon i.fa-arrow-left {
  transform: scaleX(1);
}
body.rtl .features-list .feature-item .feature-icon i.fa-chevron-right {
  transform: scaleX(-1);
}
body.rtl .features-list .feature-item .feature-icon i.fa-chevron-left {
  transform: scaleX(1);
}

body:not(.rtl) .features-list .feature-item .feature-icon {
  margin-right: 1rem;
  margin-left: 0;
}
body:not(.rtl) .features-list .feature-item .feature-icon i.fa-check,
body:not(.rtl) .features-list .feature-item .feature-icon i.fa-check-circle,
body:not(.rtl) .features-list .feature-item .feature-icon i.fa-arrow-right,
body:not(.rtl) .features-list .feature-item .feature-icon i.fa-chevron-right {
  transform: scaleX(1);
}
body:not(.rtl) .features-list .feature-item .feature-icon i.fa-arrow-left,
body:not(.rtl) .features-list .feature-item .feature-icon i.fa-chevron-left {
  transform: scaleX(1);
}

body.rtl .features-list .feature-item:hover .feature-icon i.fa-check,
body.rtl .features-list .feature-item:hover .feature-icon i.fa-check-circle {
  transform: scale(1.1) scaleX(1);
}
body.rtl .features-list .feature-item:hover .feature-icon i.fa-arrow-right {
  transform: scale(1.1) scaleX(-1);
}
body.rtl .features-list .feature-item:hover .feature-icon i.fa-chevron-right {
  transform: scale(1.1) scaleX(-1);
}

body:not(.rtl) .features-list .feature-item:hover .feature-icon i {
  transform: scale(1.1) scaleX(1);
}

body.rtl .lang-icon.fa-globe {
  transform: scaleX(1);
}
body.rtl .btn .fa-arrow-right,
body.rtl .cta-button .fa-arrow-right {
  transform: scaleX(-1);
  margin-left: 0.5rem;
  margin-right: 0;
}
body.rtl .btn .fa-arrow-left,
body.rtl .cta-button .fa-arrow-left {
  transform: scaleX(1);
  margin-right: 0.5rem;
  margin-left: 0;
}
body.rtl .fa-quote-left {
  transform: scaleX(-1);
}
body.rtl .fa-quote-right {
  transform: scaleX(1);
}
body.rtl .fa-play {
  transform: scaleX(-1);
}
body.rtl .fa-search {
  transform: scaleX(1);
}
body.rtl .fa-user,
body.rtl .fa-users {
  transform: scaleX(1);
}
body.rtl .fa-cog,
body.rtl .fa-gear {
  transform: scaleX(1);
}
body.rtl .fa-times,
body.rtl .fa-close {
  transform: scaleX(1);
}
body.rtl .fa-check {
  transform: scaleX(1);
}

body:not(.rtl) .btn .fa-arrow-right,
body:not(.rtl) .cta-button .fa-arrow-right {
  transform: scaleX(1);
  margin-left: 0.5rem;
  margin-right: 0;
}
body:not(.rtl) .btn .fa-arrow-left,
body:not(.rtl) .cta-button .fa-arrow-left {
  transform: scaleX(1);
  margin-right: 0.5rem;
  margin-left: 0;
}/*# sourceMappingURL=style2.css.map */