/*
Theme Name: Tlawh Academy
Theme URI: https://tlawh.academy
Description: A custom WordPress theme for Tlawh Academy with RTL support, multilingual capabilities, and SEO optimization.
Author: Tlawh Academy
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tlawh-academy
Domain Path: /languages
Tags: education, multilingual, rtl-language-support, responsive-layout, custom-header, custom-menu
*/

/* CSS Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* RTL Support */
.rtl {
  direction: rtl;
  text-align: right;
}

.rtl .container {
  text-align: right;
}

/* Header Styles */
.site-header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #2c5aa0;
  text-decoration: none;
}

.main-navigation ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-navigation li {
  margin: 0 1rem;
}

.main-navigation a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.main-navigation a:hover {
  color: #2c5aa0;
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cta-button {
  background: #28a745;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: #218838;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

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

.btn-primary {
  background: #28a745;
  color: white;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #218838;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: white;
  padding: 12px 30px;
  border: 2px solid white;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: white;
  color: #667eea;
}

.hero-image {
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Features Section */
.features-section {
  padding: 4rem 0;
  background: white;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 1rem;
}

.section-title p {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

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

.feature-card {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: #28a745;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  font-size: 1.5rem;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #333;
}

.feature-card p {
  color: #666;
  line-height: 1.6;
}

/* Programs Section */
.programs-section {
  padding: 4rem 0;
  background: #f8f9fa;
}

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

.program-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.program-card:hover {
  transform: translateY(-5px);
}

.program-image {
  height: 200px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3rem;
}

.program-content {
  padding: 1.5rem;
}

.program-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #333;
}

.program-card p {
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.learn-more {
  color: #2c5aa0;
  text-decoration: none;
  font-weight: 600;
}

.learn-more:hover {
  text-decoration: underline;
}

/* Testimonials Section */
.testimonials-section {
  padding: 4rem 0;
  background: white;
}

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

.testimonial-card {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 10px;
  position: relative;
}

.testimonial-content {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: #555;
  line-height: 1.6;
}

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

.author-avatar {
  width: 50px;
  height: 50px;
  background: #28a745;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
}

.author-info h4 {
  font-size: 1rem;
  color: #333;
  margin-bottom: 0.25rem;
}

.author-info p {
  font-size: 0.9rem;
  color: #666;
}

/* Teachers Section */
.teachers-section {
  padding: 4rem 0;
  background: #f8f9fa;
}

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

.teacher-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.teacher-card:hover {
  transform: translateY(-5px);
}

.teacher-avatar {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  font-size: 2rem;
}

.teacher-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.teacher-title {
  color: #28a745;
  font-weight: 600;
  margin-bottom: 1rem;
}

.teacher-card p {
  color: #666;
  line-height: 1.6;
}

/* FAQ Section */
.faq-section {
  padding: 4rem 0;
  background: white;
}

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

.faq-item {
  margin-bottom: 1rem;
  border: 1px solid #e9ecef;
  border-radius: 5px;
  overflow: hidden;
}

.faq-question {
  background: #f8f9fa;
  padding: 1.5rem;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #e9ecef;
}

.faq-answer {
  padding: 1.5rem;
  display: none;
  background: white;
  color: #666;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-toggle {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

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

/* Blog Section */
.blog-section {
  padding: 4rem 0;
  background: #f8f9fa;
}

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

.blog-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-image {
  height: 200px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
}

.blog-content {
  padding: 1.5rem;
}

.blog-meta {
  color: #28a745;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.blog-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #333;
  line-height: 1.4;
}

.blog-card p {
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.read-more {
  color: #2c5aa0;
  text-decoration: none;
  font-weight: 600;
}

.read-more:hover {
  text-decoration: underline;
}

/* Final CTA Section */
.final-cta-section {
  background: linear-gradient(135deg, #2c5aa0 0%, #1e3c72 100%);
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.final-cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.final-cta-section p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Footer */
.site-footer {
  background: #1a1a1a;
  color: white;
  padding: 3rem 0 1rem;
}

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

.footer-section h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #28a745;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #28a745;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 1rem;
  text-align: center;
  color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .header-content {
    flex-direction: column;
    gap: 1rem;
  }

  .main-navigation ul {
    flex-direction: column;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
    max-width: 250px;
  }
}

/* RTL Specific Styles */
.rtl .main-navigation ul {
  flex-direction: row-reverse;
}

.rtl .hero-content {
  direction: rtl;
}

.rtl .features-grid,
.rtl .programs-grid,
.rtl .testimonials-grid,
.rtl .teachers-grid,
.rtl .blog-grid {
  direction: rtl;
}

.rtl .testimonial-author {
  flex-direction: row-reverse;
}

.rtl .header-content {
  flex-direction: row-reverse;
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
  display: flex;
  opacity: 1;
}

.mobile-menu-content {
  background: white;
  width: 80%;
  max-width: 400px;
  height: 100%;
  padding: 2rem;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.mobile-menu-overlay.active .mobile-menu-content {
  transform: translateX(0);
}

.mobile-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-navigation li {
  border-bottom: 1px solid #eee;
}

.mobile-navigation a {
  display: block;
  padding: 1rem 0;
  text-decoration: none;
  color: #333;
  font-size: 1.1rem;
}

.mobile-language-switcher {
  margin: 2rem 0;
  padding: 1rem 0;
  border-top: 1px solid #eee;
}

.mobile-cta {
  margin-top: 2rem;
}

body.menu-open {
  overflow: hidden;
}

/* Notification Styles */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 15px 20px;
  border-radius: 5px;
  color: white;
  font-weight: 600;
  z-index: 10000;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  max-width: 300px;
}

.notification.show {
  transform: translateX(0);
}

.notification.success {
  background: #28a745;
}

.notification.error {
  background: #dc3545;
}

.notification.warning {
  background: #ffc107;
  color: #333;
}

.notification.info {
  background: #17a2b8;
}

/* Animation Classes */
.animate-in {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease;
}

.feature-card,
.program-card,
.testimonial-card,
.teacher-card,
.blog-card {
  /* opacity: 0; */
  transform: translateY(30px);
}

/* Loading Animation */
.loading {
  position: relative;
  pointer-events: none;
}

.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid #28a745;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Floating Elements Animation */
.floating-element {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.hero-background-elements .element-1 {
  width: 60px;
  height: 60px;
  background: white;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.hero-background-elements .element-2 {
  width: 40px;
  height: 40px;
  background: white;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.hero-background-elements .element-3 {
  width: 80px;
  height: 80px;
  background: white;
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

.cta-background-elements .element-1 {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  top: 10%;
  right: 10%;
  animation-delay: 1s;
}

.cta-background-elements .element-2 {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.1);
  bottom: 15%;
  left: 15%;
  animation-delay: 3s;
}

.cta-background-elements .element-3 {
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.1);
  top: 50%;
  left: 5%;
  animation-delay: 5s;
}

.cta-background-elements .element-4 {
  width: 90px;
  height: 90px;
  background: rgba(255, 255, 255, 0.1);
  top: 30%;
  right: 20%;
  animation-delay: 7s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

/* Stats Animation */
.student-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  padding: 2rem 0;
}

.stat-item {
  text-align: center;
  padding: 1rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: bold;
  color: #28a745;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Programs CTA */
.programs-cta {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: rgba(40, 167, 69, 0.1);
  border-radius: 10px;
}

.programs-cta p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #333;
}

/* Teachers CTA */
.teachers-cta {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: rgba(44, 90, 160, 0.1);
  border-radius: 10px;
}

.teachers-cta h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #2c5aa0;
}

.teachers-cta p {
  margin-bottom: 1.5rem;
  color: #666;
}

/* FAQ CTA */
.faq-cta {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 10px;
}

.faq-cta h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.faq-cta p {
  margin-bottom: 1.5rem;
  color: #666;
}

/* Blog CTA */
.blog-cta {
  text-align: center;
  margin-top: 3rem;
}

/* Trust Indicators */
.trust-indicators {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

.trust-item i {
  margin-right: 0.5rem;
  font-size: 1.1rem;
  color: #28a745;
}

/* Free Trial Offer */
.free-trial-offer {
  margin: 2rem 0;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  text-align: center;
}

.offer-badge {
  display: inline-flex;
  align-items: center;
  background: #28a745;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: 600;
  margin-bottom: 1rem;
}

.offer-badge i {
  margin-right: 0.5rem;
}

/* CTA Contact Info */
.cta-contact-info {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.cta-contact-info .contact-item {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

.cta-contact-info .contact-item i {
  margin-right: 0.5rem;
  width: 16px;
  text-align: center;
}

/* Button Variations */
.btn-large {
  padding: 15px 40px;
  font-size: 1.1rem;
}

.btn-primary i,
.btn-secondary i {
  margin-left: 0.5rem;
}

/* Accessibility */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

/* Focus styles for accessibility */
a:focus,
button:focus {
  outline: 2px solid #28a745;
  outline-offset: 2px;
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .main-navigation {
    display: none;
  }

  .header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .language-switcher {
    display: none;
  }

  .trust-indicators {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .trust-item {
    font-size: 0.8rem;
  }

  .cta-contact-info {
    flex-direction: column;
    gap: 1rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .notification {
    right: 10px;
    left: 10px;
    max-width: none;
  }
}

/* Tailwind CSS Pattern Enhancements */
.text-primary {
  color: #10b981 !important;
}
.text-secondary {
  color: #1e3a8a !important;
}
.text-accent {
  color: #facc15 !important;
}
.bg-primary {
  background-color: #10b981 !important;
}
.bg-secondary {
  background-color: #1e3a8a !important;
}
.bg-accent {
  background-color: #facc15 !important;
}
.border-primary {
  border-color: #10b981 !important;
}
.border-secondary {
  border-color: #1e3a8a !important;
}
.border-accent {
  border-color: #facc15 !important;
}

.hover-transform {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-list {
  list-style: none;
  padding-left: 0;
}

.feature-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}

.feature-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
}

.teacher-credentials {
  list-style: none;
  padding-left: 0;
}

.teacher-credentials li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.25rem;
}

.teacher-credentials li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
}

.popular-badge {
  display: inline-block;
  margin: 0 auto;
}

.wp-block-details summary {
  outline: none;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wp-block-details summary::-webkit-details-marker {
  display: none;
}

.wp-block-details summary:after {
  content: "+";
  font-size: 1.5rem;
  font-weight: bold;
  color: #10b981;
  transition: transform 0.3s ease;
}

.wp-block-details[open] summary:after {
  transform: rotate(45deg);
}

/* Back to Top Button */
#back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

#back-to-top:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

#back-to-top.show {
  opacity: 1;
  visibility: visible;
}

#back-to-top i {
  pointer-events: none;
}

/* RTL Support for Back to Top */
.rtl #back-to-top {
  right: auto;
  left: 30px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  #back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  .rtl #back-to-top {
    right: auto;
    left: 20px;
  }
}
