:root {
  /* Light Theme Variables */
  --primary: #31699B;
  --primary-dark: #265278;
  --primary-light: #e8f1f8;
  --secondary: #E5A324;
  --secondary-dark: #b37d1c;
  --secondary-light: #fdf3e2;
  --text: #1e293b;
  --text-light: #64748b;
  --background: #ffffff;
  --background-alt: #f8fafc;
  --border: #e2e8f0;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --radius: 0.5rem;
  --font-family: "Myriad Pro", "Myriad", Arial, sans-serif;
}

/* Dark Theme Variables */
.dark-theme {
  --primary: #31699B;
  --primary-dark: #265278;
  --primary-light: #1a3b54;
  --secondary: #E5A324;
  --secondary-dark: #b37d1c;
  --secondary-light: #8c6116;
  --text: #f1f5f9;
  --text-light: #cbd5e1;
  --background: #0f172a;
  --background-alt: #1e293b;
  --border: #334155;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.2);
}

/* Icon Styles for Dark Mode */
.dark-theme .icon-circle svg {
  color: var(--secondary);
}

.dark-theme .industry-icon svg {
  color: var(--secondary);
}

.dark-theme .feature-icon {
  color: var(--secondary);
}

.dark-theme .contact-icon {
  color: var(--secondary);
}

.dark-theme .language-btn,
.dark-theme .theme-btn {
  color: var(--secondary);
}

.dark-theme .language-btn:hover,
.dark-theme .theme-btn:hover {
  background-color: var(--secondary);
  color: var(--text);
}

.dark-theme .language-option.active {
  background-color: var(--primary-light);
  color: var(--secondary);
}

.dark-theme .chatbot-button {
  background-color: var(--secondary);
  color: var(--text);
}

.dark-theme .chatbot-button:hover {
  background-color: var(--secondary-dark);
}

.dark-theme .chatbot-send {
  background-color: var(--secondary);
  color: var(--text);
}

.dark-theme .chatbot-send:hover {
  background-color: var(--secondary-dark);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-family);
}

body {
  font-family: var(--font-family);
  color: var(--text);
  background-color: var(--background);
  line-height: 1.5;
  transition: background-color 0.3s ease, color 0.3s ease;
  overflow-x: hidden;
}

[dir="rtl"] body {
  font-family: var(--font-family);
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.btn-primary {
  background-color: var(--primary);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary-light);
  border-color: var(--primary);
}

.btn-secondary {
  background-color: white;
  color: var(--primary);
}

.btn-secondary:hover {
  background-color: var(--secondary);
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--background);
  z-index: 100;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 5rem;
  padding: 0 1rem;
}

/* Media queries for header */
@media (max-width: 1024px) {
  .header-container {
    height: 4.5rem;
    padding: 0 0.875rem;
  }
  header {
    margin-bottom: 0.5rem;
  }
}

@media (max-width: 768px) {
  .header-container {
    height: 4rem;
    padding: 0 0.75rem;
  }
  header {
    margin-bottom: 0.5rem;
  }
}

@media (max-width: 480px) {
  .header-container {
    height: 3.5rem;
    padding: 0 0.5rem;
  }
  header {
    margin-bottom: 0.5rem;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.logo-img {
  width: 60px;
  height: 60px;
  margin-top: 15px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo:hover .logo-img {
  transform: rotate(15deg);
}

/* Media queries for logo text size */
@media (max-width: 1024px) {
  .logo {
    font-size: 1.25rem;
  }
  .logo-img {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 768px) {
  .logo {
    font-size: 1.125rem;
  }
  .logo-img {
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 1rem;
  }
  .logo-img {
    width: 40px;
    height: 40px;
  }
}

.nav-desktop {
  display: none;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
    gap: 2rem;
  }

}

.nav-link {
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover {
  color: var(--primary);
  transform: translateY(-2px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.language-switcher, .theme-switcher {
  position: relative;
}

.language-btn, .theme-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.language-btn:hover, .theme-btn:hover {
  background-color: var(--secondary);
  color: var(--text);
}

.language-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: var(--background);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 0.5rem 0;
  min-width: 120px;
  display: none;
  z-index: 10;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

[dir="rtl"] .language-dropdown {
  right: auto;
  left: 0;
}

.language-dropdown.show {
  display: block;
}

.language-option {
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.language-option:hover {
  background-color: var(--secondary);
  color: var(--text);
}

.language-option.active {
  background-color: var(--primary-light);
  color: var(--primary);
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  transition: color 0.3s ease;
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu {
  position: absolute;
  top: 4rem;
  left: 0;
  right: 0;
  background-color: var(--background);
  box-shadow: var(--shadow);
  padding: 1rem;
  display: none;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.mobile-menu.show {
  display: block;
}

.mobile-nav-link {
  display: block;
  padding: 0.75rem 0.5rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.mobile-nav-link:hover {
  color: var(--primary);
}

/* Hero Section */
.hero {
  padding-top: 8rem;
  padding-bottom: 4rem;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary-light) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(49, 105, 155, 0.1); /* Using primary color with opacity */
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: var(--primary-light);
  color: var(--primary);
  border-radius: 9999px;
  font-weight: 500;
  font-size: 0.875rem;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
  
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
  }
}

.hero-image {
  position: relative;
  height: 400px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

@media (min-width: 1024px) {
  .hero-image {
    height: 500px;
  }
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.hero-image:hover .hero-img {
  transform: scale(1.05);
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  display: flex;
  align-items: center;
  padding: 0 8%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.slide.active {
  opacity: 1;
}

/* Background images for each slide with responsive settings */
.slide:nth-child(1) {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/src/image/hero1.png');
}

.slide:nth-child(2) {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/src/image/hero2.jpg');
}

.slide:nth-child(3) {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/src/image/hero3.png');
}

.slide-content {
  max-width: 800px;
  color: white;
  padding: 2rem;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0) 100%);
  border-radius: 8px;
}

.slide-content h1 {
  font-family: var(--font-family);
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.slide-content p {
  font-family: var(--font-family);
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 600px;
  line-height: 1.6;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  background-color: var(--primary);
  color: white;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-weight: 500;
}

.cta-button:hover {
  background-color: var(--secondary-dark);
  transform: translateY(-2px);
}

.cta-button .btn-icon {
  transition: transform 0.3s ease;
}

.cta-button:hover .btn-icon {
  transform: translateX(4px);
}

/* Slider Navigation */
.slider-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.2);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
  z-index: 10;
}

.slider-nav-btn:hover {
  background-color: var(--secondary);
}

.slider-nav-btn.prev {
  left: 20px;
}

.slider-nav-btn.next {
  right: 20px;
}

.slider-nav {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 10;
}

.dot {
  width: 40px;
  height: 8px;
  padding: 0;
  background-color: rgba(255, 255, 255, 0.3);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dot svg {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.dot:hover {
  background-color: rgba(255, 255, 255, 0.5);
}

.dot.active {
  background-color: var(--secondary);
  width: 50px;
}

/* Responsive adjustments for navigation */
@media screen and (max-width: 768px) {
  .slider-nav-btn {
    width: 40px;
    height: 40px;
  }

  .slider-nav-btn.prev {
    left: 10px;
  }

  .slider-nav-btn.next {
    right: 10px;
  }

  .dot {
    width: 32px;
    height: 6px;
  }

  .dot.active {
    width: 40px;
  }
}

@media screen and (max-width: 480px) {
  .hero-slider {
    height: 400px;
  }
  .slide-content h1 {
    font-size: 1.75rem;
  }
  .slide-content p {
    font-size: 1rem;
  }
}

/* Media queries for responsive height */
@media screen and (max-width: 768px) {
  .hero-slider {
    height: 80vh;
  }

  .slide {
    padding: 0 5%;
  }

  .slide-content {
    max-width: 100%;
  }

  .slide-content h1 {
    font-size: 2.5rem;
  }

  .slide-content p {
    font-size: 1.1rem;
  }
}

/* For very small screens */
@media screen and (max-width: 360px) {
  .hero-slider {
    height: 60vh;
  }
}

/* High resolution screens */
@media screen and (min-width: 1920px) {
  .slide-content {
    max-width: 800px;
  }
  .slide-content h1 {
    font-size: 3.5rem;
  }
  .slide-content p {
    font-size: 1.5rem;
  }
}

/* Services Section */
.services {
  padding: 4rem 0;
}

.section-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 4rem;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background-color: var(--background);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

.card:hover {
  box-shadow: var(--shadow-lg);
}

.card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: var(--primary-light);
  margin-bottom: 1rem;
  transition: background-color 0.3s ease;
}

.icon-circle svg {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--primary);
  transition: color 0.3s ease;
}

.card-title {
  font-family: var(--font-family);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text);
  transition: color 0.3s ease;
}

.card-text {
  font-family: var(--font-family);
  color: var(--text-light);
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.card-link {
  display: inline-flex;
  align-items: center;
  color: var(--primary);
  font-weight: 500;
  transition: color 0.3s ease;
}

.card-link:hover {
  text-decoration: underline;
}

.card-link svg {
  margin-left: 0.25rem;
}

[dir="rtl"] .card-link svg {
  margin-left: 0;
  margin-right: 0.25rem;
  transform: scaleX(-1);
}

/* Industries Section */
.industries {
  padding: 4rem 0;
  background-color: var(--background-alt);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (min-width: 768px) {
  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .industries-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.industry-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease;
}

.industry-item:hover {
  transform: translateY(-5px);
}

.industry-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: var(--background);
  box-shadow: var(--shadow);
  margin-bottom: 1rem;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.industry-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
  transition: color 0.3s ease;
}

.industry-name {
  font-weight: 500;
  color: var(--text);
  transition: color 0.3s ease;
}

.center-btn {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

/* Why Choose Us Section */
.why-choose-us {
  padding: 4rem 0;
}

.why-choose-us-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .why-choose-us-container {
    grid-template-columns: 1fr 1fr;
  }
}

.why-choose-us-image {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
}

.why-choose-us-video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media (min-width: 1024px) {
  .why-choose-us-image {
    max-width: 800px;
  }
}

.why-choose-us-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.why-choose-us-title {
  font-size: 2.25rem;
  font-weight: 700;
}

.why-choose-us-text {
  font-size: 1.25rem;
  color: var(--text-light);
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateX(5px);
}

.feature-icon {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.125rem;
  transition: color 0.3s ease;
}

/* Testimonials Section */
.testimonials {
  padding: 4rem 0;
  background-color: var(--background);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background-color: var(--background-alt);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.testimonial-content {
  position: relative;
}

.quote-icon {
  color: var(--primary);
  margin-bottom: 1rem;
}

.quote-icon svg {
  width: 2rem;
  height: 2rem;
}

.testimonial-text {
  font-family: var(--font-family);
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 1.5rem;
  transition: color 0.3s ease;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-image {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
}

.author-info {
  flex: 1;
}

.author-name {
  font-family: var(--font-family);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.25rem;
  transition: color 0.3s ease;
}

.author-title {
  font-family: var(--font-family);
  font-size: 0.9rem;
  color: var(--text-light);
  transition: color 0.3s ease;
}

/* Call to Action Section */
.cta-section {
  padding: 4rem 0;
  background-color: var(--primary);
  color: white;
  text-align: center;
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h2 {
  font-family: var(--font-family);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-content p {
  font-family: var(--font-family);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-content .btn {
  background-color: white;
  color: var(--primary);
  font-size: 1.1rem;
  padding: 1rem 2rem;
}

.cta-content .btn:hover {
  background-color: var(--secondary);
  color: white;
}

/* Footer */
footer {
  background-color: var(--background-alt);
  border-top: 1px solid var(--border);
  padding: 3rem 0;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 1rem;
  color: var(--text);
  transition: color 0.3s ease;
}

.footer-logo .logo-img {
  width: 32px;
  height: 32px;
  transition: filter 0.3s ease;
}

.footer-about {
  color: var(--text-light);
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  color: var(--text-light);
  transition: color 0.2s ease, transform 0.2s ease;
}

.social-link:hover {
  color: var(--primary);
  transform: translateY(-2px);
}

.footer-heading {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 1rem;
  color: var(--text);
  transition: color 0.3s ease;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-link {
  font-family: var(--font-family);
  color: var(--text-light);
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-link:hover {
  color: var(--primary);
  transform: translateX(5px);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.contact-icon {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.125rem;
  transition: color 0.3s ease;
}

.contact-text {
  font-family: var(--font-family);
  color: var(--text-light);
  transition: color 0.3s ease;
}

.footer-bottom {
  font-family: var(--font-family);
  text-align: center;
  padding-top: 2rem;
  margin-top: 3rem;
  border-top: 1px solid var(--border);
  color: var(--text-light);
  transition: color 0.3s ease, border-color 0.3s ease;
}

/* Chatbot Styles */
.chatbot-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
}

[dir="rtl"] .chatbot-container {
  right: auto;
  left: 2rem;
}

.chatbot-button {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background-color: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: transform 0.2s ease, background-color 0.3s ease, color 0.3s ease;
  position: relative;
}

.chatbot-button:hover {
  transform: scale(1.05);
  background-color: var(--primary-dark);
}

.notification-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: var(--secondary);
  color: white;
  font-size: 0.75rem;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.chatbot-window {
  position: absolute;
  bottom: 4.5rem;
  right: 0;
  width: 380px;
  max-height: 600px;
  background-color: var(--background);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: none;
  transition: all 0.3s ease;
  flex-direction: column;
  z-index: 1001;
}

[dir="rtl"] .chatbot-window {
  right: auto;
  left: 0;
}

.chatbot-window.show {
  display: flex !important;
}

.chatbot-header {
  background-color: var(--primary);
  color: white;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.chatbot-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.chatbot-info {
  display: flex;
  flex-direction: column;
}

.chatbot-name {
  font-weight: 600;
  font-size: 1rem;
}

.chatbot-status {
  font-size: 0.75rem;
  opacity: 0.8;
}

.chatbot-actions {
  display: flex;
  gap: 0.5rem;
}

.chatbot-minimize,
.chatbot-close {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  transition: background-color 0.3s ease, color 0.3s ease;
  padding: 0;
  margin: 0;
}

.chatbot-minimize:hover,
.chatbot-close:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.chatbot-messages {
  padding: 1rem;
  height: 400px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: var(--background);
  transition: background-color 0.3s ease;
}

.message {
  display: flex;
  gap: 0.75rem;
  max-width: 85%;
}

.message-bot {
  align-self: flex-start;
}

.message-user {
  align-self: flex-end;
  flex-direction: row-reverse;
}

.message-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.message-user .message-avatar {
  background-color: var(--primary);
  color: white;
}

.message-content {
  background-color: var(--primary-light);
  padding: 0.75rem 1rem;
  border-radius: 1rem;
  border-bottom-left-radius: 0.25rem;
  color: var(--text);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.message-user .message-content {
  background-color: var(--primary);
  color: white;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 0.25rem;
}

.message-text {
  font-size: 0.875rem;
  line-height: 1.5;
}

.message-time {
  font-size: 0.75rem;
  opacity: 0.7;
  margin-top: 0.25rem;
}

.chatbot-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.chatbot-option {
  background-color: var(--primary-light);
  color: var(--text);
  border: none;
  border-radius: 0.5rem;
  padding: 0.75rem;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.chatbot-option:hover {
  background-color: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.chatbot-option i {
  font-size: 1rem;
}

.chatbot-input {
  display: flex;
  padding: 1rem;
  border-top: 1px solid var(--border);
  background-color: var(--background);
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.chatbot-input input {
  flex-grow: 1;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background-color: var(--background);
  color: var(--text);
  outline: none;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.chatbot-input input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px var(--primary-light);
}

.chatbot-send {
  background-color: var(--primary);
  color: white;
  border: none;
  border-radius: var(--radius);
  padding: 0.75rem;
  margin-left: 0.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.chatbot-send:hover {
  background-color: var(--primary-dark);
  transform: scale(1.05);
}

/* Responsive adjustments for chatbot */
@media (max-width: 480px) {
  .chatbot-container {
    bottom: 1rem;
    right: 1rem;
  }

  [dir="rtl"] .chatbot-container {
    right: auto;
    left: 1rem;
  }

  .chatbot-window {
    width: 100%;
    height: 100%;
    border-radius: 0;
  }

  [dir="rtl"] .chatbot-window {
    left: 0;
  }

  .chatbot-header {
    padding: 0.75rem;
  }

  .chatbot-name {
    font-size: 1rem;
  }

  .chatbot-status {
    font-size: 0.75rem;
  }

  .chatbot-input {
    padding: 0.5rem;
  }

  .chatbot-input input {
    font-size: 0.875rem;
    padding: 0.5rem;
  }
}

/* Page Hero Section */
.page-hero {
  padding: 8rem 0 4rem;
  background-color: var(--primary-light);
  text-align: center;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* Icon Size Standardization */
.fas, .fab, .far {
  font-size: 1.25rem; /* Base size for all icons */
}

/* Header Icons */
.theme-btn .fas,
.language-btn .fas,
.mobile-menu-btn .fas {
  font-size: 1.5rem;
}

/* Navigation Icons */
.btn-icon {
  font-size: 1rem;
}

/* Service Card Icons */
.icon-circle .fas {
  font-size: 2rem;
}

/* Industry Icons */
.industry-icon .fas {
  font-size: 2.5rem;
}

/* Feature Icons */
.feature-icon {
  font-size: 1.5rem;
}

/* Social Media Icons */
.social-link .fab {
  font-size: 1.25rem;
}

/* Contact Icons */
.contact-icon {
  font-size: 1.25rem;
}

/* Chatbot Icons */
.chatbot-button .fas {
  font-size: 1.5rem;
}

.chatbot-title .fas {
  font-size: 1.25rem;
}

.chatbot-send .fas {
  font-size: 1rem;
}

/* Slider Navigation Icons */
.slider-nav-btn .fas {
  font-size: 1.5rem;
}

.slider-nav .dot .fas {
  font-size: 0.75rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .icon-circle .fas {
    font-size: 1.75rem;
  }
  
  .industry-icon .fas {
    font-size: 2rem;
  }
  
  .feature-icon {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .icon-circle .fas {
    font-size: 1.5rem;
  }
  
  .industry-icon .fas {
    font-size: 1.75rem;
  }
  
  .feature-icon {
    font-size: 1rem;
  }
}

/* Dark mode transitions */
.card,
.industry-item,
.testimonial-card,
.chatbot-window,
.chatbot-button,
.slider-nav-btn,
.dot,
.icon-circle,
.industry-icon,
.feature-icon,
.social-link,
.contact-icon,
.btn,
.nav-link,
.mobile-nav-link,
.footer-link {
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Dark mode specific styles */
.dark-theme .solution-card {
  background-color: var(--background-alt);
  border-color: var(--border);
}

.dark-theme .solution-title {
  color: var(--text);
}

.dark-theme .solution-description {
  color: var(--text-light);
}

.dark-theme .feature-tag {
  background-color: var(--primary-light);
  color: var(--text);
}

.dark-theme .solution-link {
  color: var(--secondary);
}

.dark-theme .solution-link:hover {
  color: var(--secondary-light);
}

.dark-theme .category-tab {
  color: var(--text-light);
}

.dark-theme .category-tab.active {
  color: var(--text);
  background-color: var(--primary-light);
}

.dark-theme .service-card {
  background-color: var(--background-alt);
  border-color: var(--border);
}

.dark-theme .service-title {
  color: var(--text);
}

.dark-theme .service-description {
  color: var(--text-light);
}

.dark-theme .service-features li {
  color: var(--text-light);
}

.dark-theme .cta-title {
  color: var(--text);
}

.dark-theme .cta-description {
  color: var(--text-light);
} 