/* ===== CSS Variables ===== */
:root {
  --primary: #006838;
  --secondary: #059669;
  --light-bg: #f8f9fa;
  --dark-text: #333;
  --white: #ffffff;
  --gray-600: #6c757d;
  --border-color: #e9ecef;
  --shadow: 0 2px 15px rgba(0,0,0,0.08);
  --radius: 8px;
}

/* ===== Global Styles ===== */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--dark-text);
  overflow-x: hidden;
}

a { text-decoration: none; transition: color 0.3s; }
img { max-width: 100%; height: auto; }
section { padding: 60px 0; }

.section-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  color: var(--gray-600);
  margin-bottom: 2rem;
}

/* ===== TOP BAR ===== */
.top-bar {
  background-color: #1a1a1a;
  color: #ccc;
  font-size: 0.78rem;
  padding: 6px 0;
  border-bottom: 1px solid #333;
}
.top-bar a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.2s;
}
.top-bar a:hover { color: #fff; }
.top-bar .separator { margin: 0 8px; color: #555; }

/* ===== MAIN HEADER ===== */
.main-header {
  background: #fff;
  padding: 12px 0;
  border-bottom: 1px solid #e9ecef;
}
.logo-text {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.logo-text span { color: var(--secondary); }

/* Search Bar */
.header-search-bar {
  display: flex;
  align-items: center;
  flex: 1;
  max-width: 500px;
  margin: 0 30px;
}
.header-search-bar .search-category {
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-right: none;
  border-radius: 4px 0 0 4px;
  padding: 8px 14px;
  font-size: 0.85rem;
  color: #333;
  cursor: pointer;
}
.header-search-bar input {
  flex: 1;
  border: 1px solid #dee2e6;
  border-left: none;
  border-right: none;
  padding: 8px 14px;
  font-size: 0.9rem;
  outline: none;
}
.header-search-bar .search-btn {
  background: var(--secondary);
  color: #fff;
  border: none;
  border-radius: 0 4px 4px 0;
  padding: 8px 20px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
}
.header-search-bar .search-btn:hover {
  background: #047857;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.82rem;
}
.header-actions a {
  color: #333;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
}
.header-actions .sign-in-btn {
  background: var(--secondary);
  color: #fff;
  padding: 6px 16px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.82rem;
}
.header-actions .sign-in-btn:hover {
  background: #047857;
}

/* ===== NAV BAR ===== */
.site-nav {
  background: #fff;
  border-bottom: 1px solid #e9ecef;
  padding: 0;
}
.site-nav .nav-link {
  color: #333;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 12px 16px;
  transition: color 0.2s;
}
.site-nav .nav-link:hover {
  color: var(--secondary);
}
.site-nav .nav-link i {
  margin-right: 4px;
}

/* ===== HERO ===== */
.hero-section {
  padding: 20px 0;
  background: #fff;
}
.hero-banner-main {
  border-radius: 8px;
  overflow: hidden;
  height: 360px;
  position: relative;
  display: flex;
  align-items: center;
  padding: 40px;
  background-size: cover;
  background-position: right center;
}
.hero-banner-main::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 40%; bottom: 0;
  background: linear-gradient(to right, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.7) 70%, transparent 100%);
}
.hero-banner-main > div {
  position: relative;
  z-index: 2;
  max-width: 55%;
}
.hero-banner-main h1 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 8px;
}
.hero-banner-main .hero-highlight {
  color: var(--secondary);
  font-size: 0.9rem;
  font-weight: 500;
  display: block;
  margin-bottom: 10px;
}
.hero-banner-main p {
  font-size: 0.82rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

.hero-banner-side {
  border-radius: 8px;
  overflow: hidden;
  height: 170px;
  padding: 25px;
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 12px;
  background-size: cover;
  background-position: center;
}
.hero-banner-side::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 36, 86, 0.75);
  border-radius: 8px;
}
.hero-banner-side > div {
  position: relative;
  z-index: 2;
}
.hero-banner-side h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.hero-banner-side p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 10px;
}
.hero-banner-side.banner-purple::before {
  background: linear-gradient(135deg, rgba(99, 50, 150, 0.85), rgba(140, 80, 200, 0.75));
}

/* ===== Buttons ===== */
.btn-primary-custom {
  background: var(--secondary);
  color: var(--white);
  border: none;
  border-radius: 25px;
  padding: 10px 28px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s;
}

.btn-primary-custom:hover {
  background: #d63031;
  color: var(--white);
  transform: translateY(-1px);
}

.btn-outline-custom {
  border: 2px solid var(--white);
  color: var(--white);
  border-radius: 25px;
  padding: 10px 28px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s;
}

.btn-outline-custom:hover {
  background: var(--white);
  color: var(--primary);
}

/* ===== TRUST BADGES ===== */
.trust-badges {
  padding: 20px 0;
  background: #fff;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
}
.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
}
.trust-badge-item img,
.trust-badge-item .badge-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.trust-badge-item h6 {
  font-size: 0.82rem;
  font-weight: 700;
  margin: 0;
  color: #1a1a2e;
}
.trust-badge-item p {
  font-size: 0.72rem;
  color: #888;
  margin: 0;
}

/* ===== CATEGORY SLIDER ===== */
.category-section {
  padding: 40px 0;
}
.category-section .section-title {
  font-size: 1.5rem;
  text-align: left;
}
.category-section .section-subtitle {
  text-align: left;
  margin-bottom: 25px;
}
.category-card {
  text-align: center;
  padding: 15px 10px;
}
.category-card img {
  width: 100%;
  height: 100px;
  object-fit: contain;
  margin-bottom: 10px;
}
.category-card p {
  font-size: 0.78rem;
  font-weight: 500;
  color: #333;
  margin: 0;
}

/* ===== Product Cards ===== */
.product-card {
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 1.25rem;
  transition: all 0.3s;
  background: var(--white);
  height: 100%;
}

.product-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.product-card .product-img {
  width: 100%;
  height: 180px;
  background: var(--light-bg);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.product-card .product-img i {
  font-size: 3rem;
  color: var(--gray-600);
  opacity: 0.5;
}

.product-card .product-brand {
  font-size: 0.75rem;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-card .product-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark-text);
  margin: 0.5rem 0;
  line-height: 1.4;
}

.product-card .btn-contact {
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 5px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 500;
  width: 100%;
  margin-top: auto;
}

.product-card .btn-contact:hover {
  background: #1a0e36;
}

/* ===== Premium Banners ===== */
.premium-banner {
  border-radius: var(--radius);
  padding: 3rem;
  min-height: 280px;
  display: flex;
  align-items: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.premium-banner.banner-dark {
  background: linear-gradient(135deg, #1a0e36 0%, #2d1b69 100%);
}

.premium-banner.banner-green {
  background: linear-gradient(135deg, #1b5e34 0%, #2d8a4e 100%);
}

.premium-banner h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.premium-banner p {
  opacity: 0.9;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

/* ===== Solutions Section ===== */
.solution-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s;
  height: 100%;
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.solution-card .card-icon {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-bg);
}

.solution-card .card-icon i {
  font-size: 3.5rem;
  color: var(--primary);
}

.solution-card .card-body {
  padding: 1.5rem;
}

.solution-card .card-body h5 {
  font-weight: 700;
  color: var(--primary);
  font-size: 1.1rem;
}

.solution-card .card-body p {
  color: var(--gray-600);
  font-size: 0.875rem;
}

/* ===== Testimonials ===== */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 2rem;
  height: 100%;
  transition: all 0.3s;
}

.testimonial-card:hover {
  box-shadow: var(--shadow);
}

.testimonial-card .stars {
  color: #f5a623;
  margin-bottom: 1rem;
}

.testimonial-card .quote {
  color: var(--gray-600);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-card .author-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
}

.testimonial-card .author-info h6 {
  margin-bottom: 0;
  font-weight: 600;
  font-size: 0.9rem;
}

.testimonial-card .author-info small {
  color: var(--gray-600);
  font-size: 0.8rem;
}

.overall-rating {
  text-align: center;
  padding: 2rem;
  background: var(--light-bg);
  border-radius: var(--radius);
}

.overall-rating .rating-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
}

.overall-rating .stars {
  color: #f5a623;
  font-size: 1.25rem;
}

/* ===== Application Cards ===== */
.application-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  height: 250px;
  display: flex;
  align-items: flex-end;
  transition: all 0.3s;
}

.application-card .card-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.application-card .card-bg i {
  font-size: 4rem;
  opacity: 0.3;
  color: var(--white);
}

.application-card.app-life-science {
  background: linear-gradient(135deg, #1565c0 0%, #0d47a1 100%);
}

.application-card.app-clinical {
  background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
}

.application-card.app-industrial {
  background: linear-gradient(135deg, #e65100 0%, #bf360c 100%);
}

.application-card .card-content {
  position: relative;
  z-index: 2;
  padding: 1.5rem;
  color: var(--white);
  width: 100%;
}

.application-card .card-content h5 {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.application-card .card-content p {
  font-size: 0.85rem;
  opacity: 0.9;
  margin-bottom: 0;
}

.application-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* ===== Brands Carousel ===== */
.brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  padding: 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  background: var(--white);
  transition: all 0.3s;
}

.brand-item:hover {
  box-shadow: var(--shadow);
}

.brand-item .brand-placeholder {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== Newsletter ===== */
.newsletter-section {
  background: var(--primary);
  color: var(--white);
  padding: 60px 0;
}

.newsletter-section h3 {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.newsletter-section p {
  opacity: 0.8;
  margin-bottom: 1.5rem;
}

.newsletter-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  gap: 0.5rem;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 20px;
  border: none;
  border-radius: 25px;
  font-size: 0.9rem;
}

.newsletter-form button {
  background: var(--secondary);
  color: var(--white);
  border: none;
  border-radius: 25px;
  padding: 12px 28px;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
}

.newsletter-form button:hover {
  background: #d63031;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--primary);
  color: var(--white);
  padding: 60px 0 0;
}

.site-footer h5 {
  font-weight: 700;
  margin-bottom: 1.25rem;
  font-size: 1.1rem;
}

.site-footer p {
  opacity: 0.8;
  font-size: 0.875rem;
  line-height: 1.7;
}

.site-footer a {
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
  display: block;
  padding: 4px 0;
  transition: all 0.3s;
}

.site-footer a:hover {
  color: var(--white);
  padding-left: 5px;
}

.footer-social a {
  display: inline-flex !important;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  font-size: 0.9rem;
}

.footer-social a:hover {
  background: var(--secondary);
  padding-left: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0;
  margin-top: 3rem;
}

.footer-bottom p {
  margin-bottom: 0;
  font-size: 0.8rem;
}

.payment-icons {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.payment-icons .payment-icon {
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}

/* ===== Tab Navigation ===== */
.product-tabs .nav-link {
  color: var(--gray-600);
  border: none;
  border-bottom: 2px solid transparent;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
}

.product-tabs .nav-link.active {
  color: var(--secondary);
  border-bottom-color: var(--secondary);
  background: transparent;
}

/* ===== Swiper Customization ===== */
.swiper-button-next,
.swiper-button-prev {
  color: var(--primary);
  background: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: var(--shadow);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 1rem;
  font-weight: 700;
}

.swiper-pagination-bullet-active {
  background: var(--secondary);
}

/* ===== Page Header ===== */
.page-header {
  background: linear-gradient(135deg, #00381e 0%, #006838 50%, #008a4b 100%);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.page-header p {
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb-custom {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.875rem;
}

.breadcrumb-custom a {
  color: rgba(255,255,255,0.7);
}

.breadcrumb-custom a:hover {
  color: var(--white);
}

.breadcrumb-custom span {
  opacity: 0.6;
}

/* ===== Contact Form ===== */
.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.contact-form .form-control {
  border: 1px solid var(--border-color);
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 0.9rem;
}

.contact-form .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,104,56,0.1);
}

/* ===== Info Cards (About, Why Work) ===== */
.info-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 2rem;
  height: 100%;
  transition: all 0.3s;
}

.info-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.info-card i {
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.info-card h5 {
  font-weight: 700;
  color: var(--primary);
}

.info-card p {
  color: var(--gray-600);
  font-size: 0.9rem;
}

/* ===== Counter / Stats ===== */
.stat-item {
  text-align: center;
  padding: 2rem;
}

.stat-item .stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
}

.stat-item .stat-label {
  color: var(--gray-600);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
  .hero-banner-main { min-height: 280px; padding: 2rem; }
  .hero-banner-main h1 { font-size: 1.5rem; }
  .newsletter-form { flex-direction: column; }
  .header-search { display: none; }
  section { padding: 40px 0; }
}

@media (max-width: 767px) {
  .hero-banner-side { min-height: 120px; }
  .premium-banner { padding: 2rem; min-height: 200px; }
  .page-header h1 { font-size: 1.75rem; }
  .top-bar .d-flex { flex-direction: column; gap: 5px; }
}

/* ===== Offcanvas Mobile Menu ===== */
.offcanvas-menu {
  background: var(--primary);
  color: var(--white);
}

.offcanvas-menu .offcanvas-header {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.offcanvas-menu .nav-link {
  color: rgba(255,255,255,0.9) !important;
  padding: 0.75rem 1rem !important;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.offcanvas-menu .nav-link:hover {
  color: var(--secondary) !important;
}


/* ===== Brand Logo Box ===== */
.brand-logo-box {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  transition: all 0.3s;
}
.brand-logo-box:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}
.brand-logo-box img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
}

/* ===== Clients Section ===== */
.clients-section {
  padding: 60px 0;
  background: var(--light-bg);
}
.client-logo-box {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 140px;
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.client-logo-box:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.client-logo-box img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
}

/* ===== 5-column grid for clients ===== */
@media (min-width: 992px) {
  .col-lg-custom-5 {
    flex: 0 0 20%;
    max-width: 20%;
  }
}


/* ===== Language Switch ===== */
.lang-switch {
  display: inline-flex;
  gap: 4px;
}
.lang-btn {
  background: transparent;
  border: 1px solid #555;
  color: #ccc;
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 0.72rem;
  cursor: pointer;
  transition: all 0.2s;
}
.lang-btn.active {
  background: var(--secondary);
  border-color: var(--secondary);
  color: #fff;
}
.lang-btn:hover {
  border-color: #fff;
  color: #fff;
}

/* ===== RTL Support ===== */
[dir="rtl"] {
  font-family: 'Inter', 'Segoe UI', Tahoma, sans-serif;
}
[dir="rtl"] .text-start { text-align: right !important; }
[dir="rtl"] .text-end { text-align: left !important; }
[dir="rtl"] .ms-1, [dir="rtl"] .ms-2 { margin-left: 0; margin-right: 0.25rem; }
[dir="rtl"] .me-1, [dir="rtl"] .me-2 { margin-right: 0; margin-left: 0.25rem; }
[dir="rtl"] .header-search-bar { direction: ltr; }
[dir="rtl"] .footer-social a { margin-right: 0; margin-left: 8px; }
[dir="rtl"] .site-footer a:hover { padding-left: 0; padding-right: 5px; }

body.rtl {
  direction: rtl;
  text-align: right;
}

body.rtl .d-flex { direction: rtl; }
body.rtl .me-1 { margin-right: 0 !important; margin-left: 0.25rem !important; }
body.rtl .ms-2 { margin-left: 0 !important; margin-right: 0.5rem !important; }
body.rtl .me-2 { margin-right: 0 !important; margin-left: 0.5rem !important; }
body.rtl .ms-1 { margin-left: 0 !important; margin-right: 0.25rem !important; }

body.rtl .header-search-bar .search-category {
  border-radius: 0 4px 4px 0;
  border-right: 1px solid #dee2e6;
  border-left: none;
}
body.rtl .header-search-bar .search-btn {
  border-radius: 4px 0 0 4px;
}

body.rtl .trust-badge-item { direction: rtl; }
body.rtl .hero-banner-main::before {
  left: auto; right: 0;
  background: linear-gradient(to left, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.7) 70%, transparent 100%);
}
body.rtl .hero-banner-main > div { margin-left: auto; margin-right: 0; }

body.rtl .site-footer a:hover { padding-left: 0; padding-right: 5px; }
body.rtl .footer-social a { margin-right: 0; margin-left: 8px; }

body.rtl .offcanvas-start { left: auto; right: 0; transform: translateX(100%); }
body.rtl .offcanvas.show { transform: translateX(0); }

body.rtl .swiper-button-next { right: auto; left: 10px; }
body.rtl .swiper-button-prev { left: auto; right: 10px; }

body.rtl .breadcrumb-custom { direction: rtl; }
body.rtl .input-group-text { border-radius: 0 4px 4px 0; }
body.rtl .form-control { text-align: right; }

body.rtl .nav-link i { margin-right: 0; margin-left: 4px; }

body.rtl .gap-2 { direction: rtl; }
body.rtl .gap-3 { direction: rtl; }

body.rtl .text-end { text-align: left !important; }
body.rtl .text-start { text-align: right !important; }

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}
.whatsapp-float:hover {
  background-color: #128c7e;
  color: #FFF;
  transform: scale(1.1);
}
@media (max-width: 767px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 26px;
  }
}
