@charset "UTF-8";
:root {
  --primary-color: #3498db;
  --secondary-color: #2c3e50;
  --accent-color: #e74c3c;
  --light-color: #f8f9fa;
  --dark-color: #343a40;
  --success-color: #2ecc71;
  --warning-color: #f39c12;
  --info-color: #17a2b8;
  --primary-color-rgb: 52, 152, 219;
  --secondary-color-rgb: 44, 62, 80;
}

body {
  font-family: Poppins, sans-serif;
  color: #333;
  line-height: 1.6;
}

section {
  padding: 40px 0;
}

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

.hero-section {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: #fff;
  padding: 40px 20px;
  position: relative;
}
.hero-section .profile-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 5px solid rgba(255, 255, 255, 0.3);
  -o-object-fit: cover;
     object-fit: cover;
}
.hero-section .profile-name {
  font-size: 2rem;
  font-weight: 700;
  margin: 15px 0 5px;
}
.hero-section .profile-title {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 5px;
}
.hero-section .profile-company {
  font-size: 1rem;
  opacity: 0.8;
  margin-bottom: 15px;
}
.hero-section .profile-tagline {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 20px;
  max-width: 600px;
}
.hero-section .qr-section {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
}
.hero-section .qr-section .qr-code {
  width: 150px;
  height: 150px;
  background: #f8f9fa;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.hero-section .qr-section .qr-code i {
  font-size: 4rem;
  color: var(--dark-color);
}

.btn-base {
  border-radius: 5px;
  padding: 10px 20px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  background-color: var(--accent-color);
  border: 1px solid var(--accent-color);
  color: var(--light-color);
}
.btn-base:hover, .btn-base:focus {
  color: var(--accent-color);
  border-color: var(--accent-color);
  background-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-base-outline {
  border-radius: 5px;
  padding: 10px 20px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  color: var(--accent-color);
  border-color: var(--accent-color);
  background-color: transparent;
}
.btn-base-outline:hover, .btn-base-outline:focus {
  background-color: var(--accent-color);
  border: 1px solid var(--accent-color);
  color: var(--light-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.action-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}

.btn-action {
  border-radius: 50px;
  padding: 10px 20px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}
.btn-action:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.social-icons {
  display: flex;
  gap: 15px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.social-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: var(--light-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.social-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

.section-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--secondary-color);
  position: relative;
  padding-bottom: 10px;
  display: inline-block;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--primary-color);
}

.section-heading {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--secondary-color);
  padding-bottom: 10px;
}

.about-image {
  position: relative;
  display: inline-block;
}
.about-image .img-container {
  position: relative;
  display: inline-block;
}
.about-image .img-container img {
  width: 100%;
  height: auto;
  border-radius: 5px 100px 5px 100px;
  display: block;
}
.about-image .img-container::before {
  content: "";
  position: absolute;
  top: -15px;
  right: -15px;
  width: 100px;
  height: 100px;
  border-top: 4px solid var(--primary-color);
  border-right: 4px solid var(--primary-color);
  border-top-right-radius: 100px;
}
.about-image .img-container::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: -15px;
  width: 100px;
  height: 100px;
  border-bottom: 4px solid var(--primary-color);
  border-left: 4px solid var(--primary-color);
  border-bottom-left-radius: 100px;
}

@media (max-width: 575px) {
  .about-image {
    margin-bottom: 20px;
  }
}
.services-section {
  background-color: var(--light-color);
}
.services-section .service-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  padding: 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
}
.services-section .service-item:hover, .services-section .service-item.active {
  background-color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}
.services-section .service-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(74, 108, 247, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
  color: var(--primary-color);
  font-size: 1.8rem;
  flex-shrink: 0;
}
.services-section .service-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 10px;
}
.services-section .service-content p {
  color: var(--text-color);
  margin-bottom: 0;
}
.services-section .image-column {
  position: relative;
  height: 100%;
  min-height: 500px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.services-section .service-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.services-section .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(var(--primary-color-rgb), 0.85) 0%, rgba(var(--secondary-color-rgb), 0.85) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 30px;
  color: white;
  text-align: center;
}
.services-section .image-overlay h2 {
  font-weight: 800;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 3px;
}
.services-section .image-overlay p {
  max-width: 400px;
  margin: 0 auto;
}

@media (max-width: 992px) {
  .services-section .image-column {
    min-height: 400px;
  }
}
@media (max-width: 768px) {
  .services-section .service-item {
    flex-direction: column;
    text-align: center;
    margin-bottom: 20px;
  }
  .services-section .service-icon {
    margin: auto;
    margin-bottom: 20px;
  }
}
.product-section .product-card {
  padding: 15px;
  border-radius: 12px;
  background: var(--light-color);
  transition: all 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.product-section .product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}
.product-section .product-img {
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 15px;
}
.product-section .product-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s;
}
.product-section .product-card:hover .product-img img {
  transform: scale(1.05);
}
.product-section .product-card h6 {
  font-weight: 600;
  margin-bottom: 8px;
}
.product-section .product-card p {
  color: var(--gray);
  font-size: 0.9rem;
  flex-grow: 1;
}
.product-section .product-card .btn {
  align-self: flex-start;
}

.contact-section,
.appointment-section {
  background-color: var(--light-color);
}

.contact-section.bg-none,
.appointment-section.bg-none {
  background-color: transparent;
}

.contact-section .contact-item,
.appointment-section .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 35px;
  padding: 20px;
  border-radius: 10px;
  background-color: rgba(74, 108, 247, 0.05);
  transition: all 0.3s ease;
}

.contact-section .contact-item:hover,
.appointment-section .contact-item:hover {
  background-color: rgba(74, 108, 247, 0.05);
  transform: translateX(5px);
}

.contact-section .contact-form,
.appointment-section .contact-form {
  padding: 40px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.contact-section .form-control,
.appointment-section .form-control {
  padding: 15px 20px;
  border: 2px solid #eef0f8;
  border-radius: 8px;
  margin-bottom: 25px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-section .form-control:focus,
.appointment-section .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(74, 108, 247, 0.1);
}

.contact-section textarea.form-control,
.appointment-section textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.gallery-section .gallery-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(5, 1fr);
  gap: 8px;
}
.gallery-section .gallery-box .box-1 {
  grid-column: span 2/span 2;
  grid-row: span 3/span 3;
}
.gallery-section .gallery-box .box-2 {
  grid-column: span 2/span 2;
  grid-row: span 2/span 2;
  grid-column-start: 1;
  grid-row-start: 4;
}
.gallery-section .gallery-box .box-3 {
  grid-column: span 2/span 2;
  grid-row: span 2/span 2;
  grid-column-start: 3;
  grid-row-start: 1;
}
.gallery-section .gallery-box .box-4 {
  grid-column: span 2/span 2;
  grid-row: span 3/span 3;
  grid-column-start: 3;
  grid-row-start: 3;
}
.gallery-section .gallery-box .img-box {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.gallery-section .gallery-box .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-section .gallery-box .img-box .gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.gallery-section .gallery-box .img-box .gallery-overlay h4 {
  font-size: 22px;
  margin-bottom: 10px;
}
.gallery-section .gallery-box .img-box .gallery-overlay p {
  font-size: 14px;
  margin-bottom: 15px;
}
.gallery-section .gallery-box .img-box .gallery-overlay .btn-gallery {
  padding: 8px 15px;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.gallery-section .gallery-box .img-box .gallery-overlay .btn-gallery:hover {
  background: #fff;
  color: #333;
}
.gallery-section .gallery-box .img-box:hover img {
  transform: scale(1.1);
}
.gallery-section .gallery-box .img-box:hover .gallery-overlay {
  opacity: 1;
}

@media (max-width: 575px) {
  .gallery-section .gallery-box {
    display: flex;
    flex-wrap: wrap;
  }
}
.testimonials-section {
  background-color: var(--light-color);
}
.testimonials-section .testimonials-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.testimonials-section .testimonials-top .arrows {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.testimonials-section .testimonials-top .arrow-left {
  margin-right: 10px;
}
.testimonials-section .testimonials-top .arrow {
  width: 60px;
  height: 60px;
  overflow: hidden;
  background-color: #f2f2f2;
  color: var(--accent-color);
  border-radius: 50px;
  cursor: pointer;
  font-size: 20px;
  display: inline-block;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-out 0s;
  text-decoration: none;
}
.testimonials-section .testimonials-top .arrow.active, .testimonials-section .testimonials-top .arrow:hover {
  background: var(--accent-color);
  color: var(--light-color);
}
.testimonials-section .testimonial-sliders {
  margin-top: 50px;
  box-shadow: 0px 20px 35px 10px rgba(4, 9, 30, 0.05);
  border-radius: 20px;
}
.testimonials-section .slider-item {
  border-radius: 20px;
  display: flex;
  box-shadow: 0px 20px 35px 10px rgba(4, 9, 30, 0.07);
}
.testimonials-section .slider-item .author-info {
  display: flex;
  align-items: center;
  justify-content: start;
  margin-top: 40px;
}
.testimonials-section .slider-item .author-info img {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  margin-right: 20px;
}
.testimonials-section .slider-item h3 {
  color: var(--cf-theme-dark);
}
.testimonials-section .slider-item .complay-name {
  font-size: 20px;
}
.testimonials-section .slider-item p {
  font-style: italic;
}
.testimonials-section .slider-item .slider-item-content {
  padding: 48px 36px 30px;
}

.map-section {
  background-color: var(--light-color);
}
.map-section .map-container {
  position: relative;
  height: 450px;
  overflow: hidden;
  border-radius: 10px;
}
.map-section .map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.timeline-section {
  position: relative;
  overflow: hidden;
  /* === Central Line === */
  /* === Timeline Item === */
  /* === Responsive === */
  /* Medium Devices (≤1199px) */
  /* Small Devices (≤575px) */
}
.timeline-section .timeline-wrapper {
  position: relative;
  padding: 40px 0;
}
.timeline-section .timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: linear-gradient(180deg, rgb(0, 1, 0) 0%, rgb(0, 1, 0) 100%);
  transform: translateX(-50%);
  z-index: 1;
}
.timeline-section .timeline-items {
  position: relative;
  z-index: 2;
}
.timeline-section .timeline-item {
  position: relative;
  width: 50%;
  padding: 20px 40px;
  box-sizing: border-box;
  /* === Dot === */
  /* === Content === */
}
.timeline-section .timeline-item.left {
  left: 0;
  text-align: right;
}
.timeline-section .timeline-item.left .timeline-dot {
  right: -10px;
  left: auto;
}
.timeline-section .timeline-item.left .timeline-content {
  margin-right: auto;
  transform: translateX(-20px);
}
.timeline-section .timeline-item.right {
  left: 50%;
  text-align: left;
}
.timeline-section .timeline-item.right .timeline-dot {
  left: -10px;
}
.timeline-section .timeline-item.right .timeline-content {
  margin-left: auto;
  transform: translateX(20px);
}
.timeline-section .timeline-item .timeline-dot {
  position: absolute;
  top: 40px;
  width: 20px;
  height: 20px;
  background: var(--primary-color);
  border-radius: 50%;
  border: 4px solid #fff;
  z-index: 3;
  box-shadow: 0 0 10px rgb(0, 1, 0);
}
.timeline-section .timeline-item .timeline-content {
  position: relative;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  padding: 25px 30px;
  max-width: 85%;
  display: inline-block;
  text-align: left;
}
.timeline-section .timeline-item .timeline-content .timeline-year {
  font-weight: 800;
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.timeline-section .timeline-item .timeline-content .timeline-text {
  color: #555;
  line-height: 1.6;
  font-size: 16px;
}

@media (max-width: 1199px) {
  .timeline-section .timeline-item {
    width: 100%;
    left: 0 !important;
    text-align: left !important;
    padding-left: 60px;
  }
  .timeline-section .timeline-item .timeline-dot {
    left: 20px !important;
    right: auto !important;
  }
  .timeline-section .timeline-item .timeline-content {
    margin: 0;
    transform: none !important;
    max-width: 100%;
  }
  .timeline-section .timeline-line {
    left: 30px;
    transform: none;
  }
}
@media (max-width: 575px) {
  .timeline-section .timeline-wrapper {
    padding: 30px 0;
  }
  .timeline-section .timeline-content {
    padding: 20px;
  }
  .timeline-section .timeline-year {
    font-size: 1rem;
  }
  .timeline-section .timeline-text {
    font-size: 14px;
  }
  .timeline-section .timeline-dot {
    width: 16px;
    height: 16px;
    top: 30px;
  }
  .timeline-section .timeline-line {
    width: 3px;
    left: 20px;
  }
}
.team-section {
  background: var(--light-color);
}
.team-section .team-card {
  transition: transform 0.3s, box-shadow 0.3s;
}
.team-section .team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}
.team-section .team-card .team-image img {
  width: 150px;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
}
.team-section .team-card .designation {
  font-size: 0.9rem;
}
.team-section .team-card .team-contact a {
  color: var(--primary-color);
  font-size: 1rem;
  transition: color 0.3s;
}
.team-section .team-card .team-contact a:hover {
  color: var(--secondary-color);
}

.social-section .social-card {
  background: var(--light-color);
  transition: all 0.3s ease;
  text-align: center;
  color: #333;
}
.social-section .social-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  color: var(--primary-color);
}
.social-section .social-icon {
  color: var(--primary-color);
  transition: color 0.3s ease;
}
.social-section .social-card:hover .social-icon {
  color: var(--secondary-color);
}
.social-section .social-name {
  font-weight: 500;
}
.social-section .social-feed .feed-container {
  gap: 15px;
}
.social-section .social-feed .feed-item img {
  width: 120px;
  height: 120px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.social-section .social-feed .feed-item img:hover {
  transform: scale(1.05);
}

.faq-section {
  background: var(--light-color);
}
.faq-section .accordion-button {
  background: #f8f9fa;
  color: #333;
  font-weight: 500;
  border: none;
  border-bottom: 1px solid #ddd;
  transition: background 0.3s ease;
}
.faq-section .accordion-button:focus {
  box-shadow: none;
}
.faq-section .accordion-button:not(.collapsed) {
  background: var(--primary-color);
  color: #fff;
}
.faq-section .accordion-body {
  background: #fff;
  color: #555;
  font-size: 16px;
}

.footer-section {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: #fff;
  text-align: center;
  font-size: 14px;
  position: relative;
}
.footer-section small {
  font-size: 15px;
  opacity: 0.9;
}
.footer-section .footer-links {
  margin-bottom: 8px;
}
.footer-section .footer-link {
  color: #fff;
  font-weight: 500;
  opacity: 0.8;
  transition: all 0.3s ease;
}
.footer-section .footer-link:hover {
  opacity: 1;
  color: var(--accent-color);
  text-decoration: underline;
}
.footer-section .powered-by {
  font-size: 13px;
  opacity: 0.7;
}

.stats-section {
  background-color: var(--light-color);
}

@media (max-width: 576px) {
  .footer-section .footer-section {
    font-size: 13px;
  }
  .footer-section .footer-link {
    display: block;
    margin: 5px 0;
  }
}
/* Responsive */
@media (max-width: 991px) {
  .team-card .team-image img {
    width: 120px;
    height: 120px;
  }
}
@media (max-width: 575px) {
  .team-card .team-image img {
    width: 100px;
    height: 100px;
  }
}
@media (max-width: 768px) {
  .profile-img {
    width: 120px;
    height: 120px;
  }
  .profile-name {
    font-size: 1.6rem;
  }
  .action-buttons {
    justify-content: center;
  }
}
/* General Stats Section Styling */
.stats {
  margin-top: 3rem;
  text-align: center;
  font-family: "Inter", "Poppins", sans-serif;
}

.stats-card {
  padding: 1.5rem 1rem;
}

.stats-card h4 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2b3340;
  margin-bottom: 0.5rem;
}

.stats-card h5 {
  font-size: 1rem;
  font-weight: 600;
  color: #3d4653;
  margin-bottom: 0.5rem;
}

.stats-card p {
  font-size: 0.95rem;
  color: #7b8493;
  line-height: 1.6;
  max-width: 260px;
  margin: 0 auto;
}

/* Responsive Layout */
@media (max-width: 992px) {
  .stats-card {
    margin-bottom: 2rem;
  }
  .stats-card h4 {
    font-size: 2rem;
  }
}
@media (max-width: 576px) {
  .stats-card h4 {
    font-size: 1.8rem;
  }
  .stats-card h5 {
    font-size: 0.95rem;
  }
  .stats-card p {
    font-size: 0.9rem;
  }
}
/* RTL Support */
[dir=rtl] {
  text-align: right;
  direction: rtl;
}

[dir=rtl] body {
  direction: rtl;
  text-align: right;
}

/* Hero Section RTL */
[dir=rtl] .hero-section {
  text-align: right;
}

[dir=rtl] .profile-img {
  margin-left: 0;
  margin-right: auto;
}

[dir=rtl] .qr-section {
  margin-right: 0;
  margin-left: auto;
}

/* Buttons RTL */
[dir=rtl] .btn-base,
[dir=rtl] .btn-base-outline,
[dir=rtl] .btn-action {
  flex-direction: row-reverse;
}

/* Social Icons RTL */
[dir=rtl] .social-icons {
  justify-content: flex-end;
}

/* Section Title RTL */
[dir=rtl] .section-title::after {
  left: auto;
  right: 0;
}

/* About Image RTL */
[dir=rtl] .about-image .img-container img {
  border-radius: 100px 5px 100px 5px;
}

[dir=rtl] .about-image .img-container::before {
  left: -15px;
  right: auto;
  border-left: 4px solid var(--primary-color);
  border-right: none;
  border-top-left-radius: 100px;
  border-top-right-radius: 0;
}

[dir=rtl] .about-image .img-container::after {
  right: -15px;
  left: auto;
  border-right: 4px solid var(--primary-color);
  border-left: none;
  border-bottom-right-radius: 100px;
  border-bottom-left-radius: 0;
}

/* Services Section RTL */
[dir=rtl] .service-item {
  flex-direction: row-reverse;
  text-align: right;
}

[dir=rtl] .service-icon {
  margin-right: 0;
  margin-left: 25px;
}

[dir=rtl] .services-section .image-overlay {
  text-align: right;
}

/* Products Section RTL */
[dir=rtl] .product-card .btn {
  align-self: flex-end;
}

/* Contact Section RTL */
[dir=rtl] .contact-item,
[dir=rtl] .appointment-section .contact-item {
  flex-direction: row-reverse;
  text-align: right;
}

[dir=rtl] .contact-item:hover,
[dir=rtl] .appointment-section .contact-item:hover {
  transform: translateX(-5px);
}

/* Gallery Section RTL */
[dir=rtl] .gallery-box .box-1 {
  grid-column-start: 3;
}

[dir=rtl] .gallery-box .box-2 {
  grid-column-start: 3;
}

[dir=rtl] .gallery-box .box-3 {
  grid-column-start: 1;
}

[dir=rtl] .gallery-box .box-4 {
  grid-column-start: 1;
}

[dir=rtl] .gallery-overlay {
  text-align: right;
}

/* Testimonials Section RTL */
[dir=rtl] .testimonials-top {
  flex-direction: row-reverse;
}

[dir=rtl] .arrow-left {
  margin-right: 0;
  margin-left: 10px;
}

[dir=rtl] .author-info {
  flex-direction: row-reverse;
}

[dir=rtl] .author-info img {
  margin-right: 0;
  margin-left: 20px;
}

[dir=rtl] .slider-item-content {
  text-align: right;
}

/* Timeline Section RTL */
[dir=rtl] .timeline-line {
  right: 50%;
  left: auto;
  transform: translateX(50%);
}

[dir=rtl] .timeline-item.left {
  right: 0;
  left: auto;
  text-align: left;
  padding-right: 40px;
  padding-left: 0;
}

[dir=rtl] .timeline-item.right {
  right: 50%;
  left: auto;
  text-align: right;
  padding-left: 40px;
  padding-right: 0;
}

[dir=rtl] .timeline-item.left .timeline-dot {
  left: -10px;
  right: auto;
}

[dir=rtl] .timeline-item.right .timeline-dot {
  right: -10px;
  left: auto;
}

[dir=rtl] .timeline-item.left .timeline-content {
  margin-left: auto;
  margin-right: 0;
  transform: translateX(20px);
  text-align: right;
}

[dir=rtl] .timeline-item.right .timeline-content {
  margin-right: auto;
  margin-left: 0;
  transform: translateX(-20px);
  text-align: left;
}

/* Responsive Timeline RTL */
@media (max-width: 1199px) {
  [dir=rtl] .timeline-section .timeline-item {
    padding-right: 60px;
    padding-left: 0;
    text-align: right !important;
  }
  [dir=rtl] .timeline-section .timeline-item .timeline-dot {
    right: 20px !important;
    left: auto !important;
  }
  [dir=rtl] .timeline-section .timeline-line {
    right: 30px;
    left: auto;
  }
}
/* Team Section RTL */
[dir=rtl] .team-card .team-contact {
  text-align: right;
}

/* FAQ Section RTL */
[dir=rtl] .accordion-button {
  text-align: right;
}

/* Footer Section RTL */
[dir=rtl] .footer-section {
  text-align: right;
}

[dir=rtl] .footer-links {
  direction: rtl;
}

/* Mobile Responsive RTL */
@media (max-width: 768px) {
  [dir=rtl] .hero-section {
    text-align: center;
  }
  [dir=rtl] .action-buttons {
    justify-content: center;
  }
  [dir=rtl] .social-icons {
    justify-content: center;
  }
  [dir=rtl] .service-item {
    flex-direction: column;
    text-align: center;
  }
  [dir=rtl] .service-icon {
    margin: 0 auto 20px;
  }
  [dir=rtl] .gallery-box {
    display: flex;
    flex-wrap: wrap;
  }
}
@media (max-width: 575px) {
  [dir=rtl] .about-image {
    margin-bottom: 20px;
  }
  [dir=rtl] .footer-link {
    display: block;
    margin: 5px 0;
  }
}/*# sourceMappingURL=visting-card14.css.map */