/* Custom Variables */
:root {
  --primary-green: #007f61;
  --secondary-green: #e7f6f2;

  --tertiary-color: 252, 248, 238;
  --accent-orange: #fca739;
  --accent-light: #fcf8ee;
  --text-light: #656565;
  --text-dark: #181818;
  --background-light-color: #fffaff;
  --border-color: #e4e4e4;
  --light: #f9f9f9;
  --white: #ffffff;
  --black: #000000;

  --font-family-almarai: "Almarai", sans-serif;
  --font-family-inter: "Inter", sans-serif;
}
/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  /* Custom scrollbar for FireFox */
  scrollbar-width: thin;
  scrollbar-color: var(--accent-orange) var(--accent-light);

  /* Custom scrollbar for Major browsers */
  ::-webkit-scrollbar {
    height: 8px;
    width: 8px;
  }
  ::-webkit-scrollbar-thumb {
    background-color: var(--accent-orange);
    border-bottom-right-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
  }
  ::-webkit-scrollbar-thumb:hover {
    background-color: var(--accent-orange);
  }
  ::-webkit-scrollbar-track {
    background-color: var(--accent-light);
  }
  ::selection {
    background-color: var(--primary-green);
    color: white;
  }
}

body {
  direction: rtl;
  text-align: right;
  font-family: var(--font-family-almarai);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 0; /* Remove default padding since navbar is transparent */

  /* Lenis */
  overscroll-behavior: none;
}

/* Lenis */
.lenis {
  overscroll-behavior: none;
}

/* Header & Navigation */
.navbar {
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background-color: var(--white) !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar .logo {
  height: auto;
  width: 4rem;
  transition: width 0.3s ease;
}

.navbar.scrolled .logo {
  width: 3rem;
}

.nav-link {
  color: var(--text-dark) !important;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.5rem 1rem !important;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: var(--primary-green);
  transition: width 0.3s ease;
}

.nav-link:hover::before,
.nav-link.active::before {
  width: 80%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-green) !important;
}

.dropdown-menu {
  border: none;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 0.5rem;
  margin-top: 1rem;
}

.dropdown-item {
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.dropdown-item:hover {
  background-color: var(--secondary-green);
  color: var(--primary-green);
}

.btn-login {
  background-color: var(--primary-green);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-login:hover {
  background-color: var(--primary-green);
  opacity: 0.9;
  color: var(--white);
  transform: translateY(-1px);
}
.navbar.scrolled .btn-login {
  padding: 0.5rem 1rem;
}
/* Mobile Navigation */
@media (max-width: 991.98px) {
  .navbar .logo {
    width: 3rem;
  }

  .navbar.scrolled .logo {
    width: 2.5rem;
  }

  .navbar-collapse {
    background-color: var(--white);
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-top: 1rem;
  }

  .navbar-nav {
    gap: 0;
  }

  .nav-link::before {
    display: none;
  }

  .nav-buttons {
    margin-top: 1rem;
    text-align: center;
  }

  .dropdown-menu {
    border: none;
    box-shadow: none;
    padding-right: 1rem;
    margin-top: 0;
  }
}

/* Hero Section */
.hero-section {
  position: relative;
  background-color: rgba(var(--tertiary-color));
  background-size: 84px 84px;
  background-image: linear-gradient(180deg, #d8d4cd88 2px, transparent 2px),
    linear-gradient(90deg, #d8d4cd88 2px, rgba(var(--tertiary-color)) 2px);
  clip-path: url(#hero-clip);
}

.hero-section-content {
  padding: 12rem 0 6rem;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 6rem;
  color: var(--black);
}

.hero-title span.highlight {
  position: relative;
}

.hero-title span.highlight svg {
  position: absolute;
  inset-inline-start: 50%;
  transform: translate(48%, -35%);
  z-index: -1;
  height: 100%;
  width: 110%;
  top: 50%;
}

.hero-cta .btn-primary {
  padding: 0.75rem 1.5rem;
  font-size: 1.1rem;
  border-radius: 8px;
  background-color: var(--primary-green);
  border: none;
  transition: all 0.3s ease;
}

.hero-cta .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 127, 97, 0.3);
}

.hero-image {
  position: absolute;
  inset-inline-end: 0;
  padding-inline-end: 0;
  max-width: max-content;
  z-index: 10;
}

.image-wrapper {
  max-width: 90%;
}

.main-image {
  object-fit: contain;
  position: relative;
  z-index: 1;
}

.chart-overlay {
  position: absolute;
  bottom: 20%;
  inset-inline-start: -10%;
  z-index: 2;
  padding: 1rem;
  border-radius: 12px;
  animation: float 6s ease-in-out infinite;
}
.chart-overlay::before {
  content: "";
  position: absolute;
  bottom: -4rem;
  z-index: 2;
  inset-inline-start: 50%;
  transform: translateX(25%);
  width: 100%;
  height: 5rem;
  background-image: url("../images/arrow.webp");
  background-position: center;
  background-repeat: no-repeat;
}

.hero-image .shape {
  animation: float 6s ease-in-out infinite;
  position: absolute;
  border-radius: 50%;
  z-index: 2;
}

.hero-image .shape.shape-2 {
  background-color: var(--accent-orange);
  inset-inline-end: 10%;
  bottom: 10%;
  height: 16px;
  width: 16px;
}

/* Hero Shapes */
.hero-shapes .shape {
  position: absolute;
  border-radius: 50%;
}

.hero-shapes .shape-1 {
  top: 20%;
  inset-inline-start: 45%;
  width: 20px;
  height: 20px;
  background-color: var(--accent-orange);
  animation: float 6s ease-in-out infinite;
}

.hero-shapes .shape-2 {
  bottom: 20%;
  inset-inline-start: 30%;
  width: 20px;
  height: 20px;
  background-color: var(--primary-green);
  animation: float 8s ease-in-out infinite;
}

.hero-shapes .shape-3 {
  top: 30%;
  right: 10%;
  width: 10px;
  height: 10px;
  background-color: var(--accent-orange);
  animation: float 7s ease-in-out infinite;
}

.hero-shapes .triangle {
  animation: float 6s ease-in-out infinite;
  inset-inline-start: 0%;
  width: 4rem;
  border-radius: 0;
  bottom: 25%;
}

/* Integration Logos */
.integration-logos {
  position: relative;
  z-index: 2;
  margin: 2rem auto;
  padding: 2rem;
  background: rgba(var(--tertiary-color), 0.8);
  max-width: 74%;
}

.logos-slider {
  padding: 1rem 0;
}

.logos-slider .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.logos-slider .owl-nav button {
  background: rgba(245, 245, 245, 0.5) !important;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25),
    4px 4px 12px 0px rgba(0, 0, 0, 0.12);
  border-radius: 50% !important;
  padding: 0 !important;
  margin: 0 !important;
  pointer-events: auto;
  height: 40px;
  width: 40px;
  position: relative;
}

.logos-slider .owl-nav button::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  border: 2px dashed var(--accent-orange);
  animation: rotation 10s linear infinite;
  animation-play-state: paused;
}

.logos-slider .owl-nav button:hover::before {
  animation-play-state: running;
}

.logos-slider .owl-nav button:hover {
  background: rgba(245, 245, 245, 0.8) !important;
}

.logos-slider .owl-nav button:hover {
  color: var(--primary-green) !important;
}
.logos-slider .owl-nav button span {
  color: var(--text-dark);
  display: inline-block;
  font-size: 20px;
  line-height: 1;
}
.logos-slider .owl-nav button i {
  margin-top: 6px;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.logos-slider .owl-nav button:hover {
  background: rgba(245, 245, 245, 0.95) !important;
}

.logo-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem;
  min-height: 60px;
  border: 1px solid transparent;
}

.logo-item img {
  height: 24px;
  width: auto;
  opacity: 0.6;
  transition: all 0.3s ease;
  filter: grayscale(100%);
  max-width: 100%;
  object-fit: contain;
}

.logo-item:hover img {
  opacity: 1;
  filter: grayscale(0%);
  transform: translateY(-2px);
}

/* Add specific RTL fixes for Owl Carousel */
.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* Animations */
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Responsive Styles */
@media (max-width: 1400px) {
  .chart-overlay {
    inset-inline-start: -15%;
    bottom: 5%;
  }
}

@media (max-width: 991.98px) {
  .hero-section {
    text-align: center;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-title span {
    font-size: 2.2rem;
  }

  .hero-container {
    max-width: 100%;
    padding: 0rem;
  }
  .hero-image {
    position: relative;
    margin-top: 0rem;
    margin-bottom: 3rem;
    padding: 0rem;
  }

  .chart-overlay {
    inset-inline-start: -10%;
    bottom: 15%;
  }

  .integration-logos {
    padding: 1.5rem;
  }

  .logos-slider .owl-nav {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-title span {
    font-size: 1.8rem;
  }

  .hero-badge .badge {
    font-size: 0.9rem;
  }

  .chart-overlay {
    /* display: none; */
    inset-inline-start: 0%;
    bottom: 0%;
  }

  .integration-logos {
    padding: 1rem;
  }

  .logo-item img {
    height: 20px;
  }
}

@media (max-width: 575.98px) {
  .chart-overlay {
    inset-inline-start: -15%;
    bottom: -10%;
    scale: 0.8;
  }
}

@media (max-width: 400px) {
  .chart-overlay {
    inset-inline-start: -20%;
    bottom: -20%;
    scale: 0.7;
  }
}
/* Services Section */
.services-section {
  padding: 6rem 0;
}

.section-header {
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-title span.highlight {
  position: relative;
}

.section-title span.highlight svg {
  transform: translateX(48%) scale(1.3);
  inset-inline-start: 50%;
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: -1;
}

.highlight-wrapper {
  display: inline-block;
  position: relative;
  background-color: var(--secondary-green);
  padding: 0.25rem 1rem;
  border-radius: 30px;
  color: var(--primary-green);
  margin: 0.5rem 0;
}

.service-card {
  background-color: var(--background-light-color);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
  border: 0.5px solid var(--border-color);
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  height: 100%;
  align-items: flex-start;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.05);
  border-color: var(--primary-green);
}

.service-icon {
  width: 84px;
  height: 84px;
  position: relative;
  z-index: 2;
}

.service-icon .icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-green);
  transition: all 0.3s ease;
  position: relative;
  border-radius: 8px;
  padding: 1rem;
  height: 100%;
  width: 100%;
  z-index: 2;
}
.service-icon::after {
  content: "";
  inset: 0;
  position: absolute;
  height: 100%;
  width: 100%;

  border-radius: 12px;
  background: var(--accent-orange);
  transform: translate(-5px, -5px);
  z-index: 0;
}

.service-icon i {
  font-size: 32px;
  color: var(--white);
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  transform: translateY(-2px);
}

.service-card:hover .service-icon::after {
  opacity: 1;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

.service-description {
  color: var(--text-light);
  font-family: var(--font-family-inter);
  font-size: 1.25rem;
  margin-bottom: 0;
  line-height: 1.6;
}

/* Responsive Styles for Services */
@media (max-width: 991.98px) {
  .services-section {
    padding: 4rem 0;
  }

  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 767.98px) {
  .services-section {
    padding: 3rem 0;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .service-card {
    padding: 1.5rem;
  }
}

/* More Button */
.btn-more {
  padding: 0.25rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  background: var(--white);
  color: var(--primary-green);
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.12);
  width: 11.25rem;
  height: 3.5rem;
}

.btn-more:hover {
  background: var(--primary-green);
  color: var(--white);
  border-style: solid;
  transform: translateY(-2px);
  box-shadow: 0px 0px 12px 0px rgba(0, 127, 97, 0.1);
}
.btn-more span {
  border: 1px dashed var(--primary-green);
  width: 100%;
  height: 100%;
  border-radius: 12px;
  text-transform: capitalize;
  padding: 0px 12px 0px 8px;

  font-size: 0.8rem;
  font-weight: 700;
}

.btn-more i {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.btn-more:hover i {
  transform: translateX(-4px);
}

/* About Section */
.about-section {
  position: relative;
  z-index: 1;
}

.about-shape {
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  inset-inline-end: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

/* Footer */
footer .shape {
  position: absolute;
  border-radius: 50%;
}

footer .shape-1 {
  top: 20%;
  inset-inline-start: 45%;
  width: 20px;
  height: 20px;
  background-color: var(--accent-orange);
  animation: float 6s ease-in-out infinite;
}

footer .shape-2 {
  bottom: 25%;
  inset-inline-start: 60%;
  width: 20px;
  height: 20px;
  background-color: var(--primary-green);
  animation: float 8s ease-in-out infinite;
  z-index: 0;
}

footer .triangle {
  animation: float 6s ease-in-out infinite;
  inset-inline-end: 5%;
  width: 4rem;
  border-radius: 0;
  bottom: 50%;
}

.footer {
  /* background-color: var(--primary-green); */
  background-image: url("../images/footer-bg.webp");
  background-repeat: no-repeat;
  background-position: center;
  color: var(--light);
  background-size: cover;
  padding: 5rem 0 1.5rem;
  position: relative;
}

.footer-logo img {
  width: 64px;
  height: auto;
  object-fit: contain;
}
.social-links {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.social-link {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  color: var(--primary-green);
  text-decoration: none;
  border-radius: 50%;
  transition: all 0.3s ease;
  position: relative;
}

.social-link i {
  font-size: 24px;
}

.social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2);
  background-color: var(--primary-green);
  color: var(--white);
}

.footer-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .col-6 {
  max-width: max-content;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--white);
  transform: translateX(-4px);
}

.footer-map {
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 1.3;
  position: relative;
  z-index: 3;
}

.footer-map iframe {
  border-radius: 22px;
  display: block;
}

.footer-bottom {
  padding-top: 1.5rem;
  position: relative;
  margin-top: 1.5rem;
  text-align: center;
}
.footer-bottom::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  inset-inline-start: 0;
  top: 0;
  background-color: rgba(255, 255, 255, 0.5);
  mask-image: linear-gradient(
    to right,
    transparent 10%,
    rgba(255, 255, 255, 1),
    transparent 90%
  );
  z-index: 2;
}

.copyright {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.copyright a {
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
}

.copyright a:hover {
  color: var(--accent-orange);
}

/* Responsive Footer */
@media (max-width: 991.98px) {
  .footer {
    padding: 4rem 0 1.5rem;
  }

  .footer-logo {
    text-align: center;
  }
  .footer-logo img {
    width: 48px;
  }

  .social-links {
    justify-content: center;
  }

  .social-link {
    width: 40px;
    height: 40px;
  }

  .social-link i {
    font-size: 18px;
  }
}

@media (max-width: 767.98px) {
  .footer {
    padding: 3rem 0 1.5rem;
  }

  .footer-title {
    margin-top: 1.5rem;
  }

  .footer-map {
    margin-top: 1rem;
  }
}

/* Statistics Section */
.statistics-section {
  padding: 8% 0 16% 0;
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.statistics-shape {
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  width: 100%;
  z-index: -1;
}

.statistics-section-container {
  background: radial-gradient(50% 50% at 50% 50%, #05ab84 0%, #007f61 100%);
  padding-block: 6rem;
  padding-inline: 2rem;
  border-radius: 22px;
  position: relative;
  z-index: 2;
}

.statistics-section-container::before,
.statistics-section-container::after {
  background-image: url("../images/dots.svg");
  border-radius: 22px;
  background-position: center;
  background-repeat: space;
  inset-inline-start: 0;
  position: absolute;
  height: 64px;
  width: 100%;
  content: "";
  z-index: -1;
}

.statistics-section-container::before {
  border-top-left-radius: 22px;
  border-top-right-radius: 22px;
  top: 0;
}

.statistics-section-container::after {
  bottom: 0;
  border-bottom-left-radius: 22px;
  border-bottom-right-radius: 22px;
}

.statistics-content {
  padding-inline: 1rem;
}

.statistics-content .section-title {
  color: var(--white);
  margin-bottom: 2rem;
  font-size: 2.5rem;
  line-height: 1.2;
}

.statistics-section .btn-more {
  background: var(--light);
  padding: 1rem 2rem;
}

.statistics-section .btn-more:hover {
  background: var(--white);
  color: var(--primary-green);
  box-shadow: 0px 0px 12px 0px rgba(255, 255, 255, 0.2);
}

.statistics-section .btn-more span {
  font-size: 1.25rem;
  border: none;
}

.statistics-cards {
  --col-diff: 3rem;
  --space-removed: calc(-100% / 4);
  --space-removed-half: calc(var(--space-removed) / 2);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 1rem;
  margin-block: calc(var(--space-removed));
  transform: translateY(calc(var(--col-diff) / 2));
  padding-block: calc(var(--space-removed));
}

.stat-card {
  background: var(--light);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(var(--stat-color), 0.2);
  box-shadow: 0px 4px 25px 0px rgba(var(--stat-color), 0.15);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.stat-card:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0 20px 30px rgba(var(--stat-color), 0.1);
  border-color: rgba(var(--stat-color), 0.6);
}

.stat-card:nth-child(even) {
  transform: translateY(calc(-1 * var(--col-diff)));
}
.stat-card:hover:nth-child(even) {
  transform: translateY(calc(calc(-1 * var(--col-diff)) - 0.25rem));
}

.stat-card:nth-child(1) {
  --stat-color: 42, 169, 82;
}

.stat-card:nth-child(2) {
  --stat-color: 132, 119, 211;
}

.stat-card:nth-child(3) {
  --stat-color: 237, 191, 21;
}

.stat-card:nth-child(4) {
  --stat-color: 0, 122, 255;
}

.stat-card:nth-child(5) {
  --stat-color: 23, 123, 141;
}

.stat-card:nth-child(6) {
  --stat-color: 252, 167, 57;
}

.stat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 1rem;
}

.stat-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(var(--stat-color), 0.15);
  border-radius: 8px;
  padding: 0.8rem;
}

.stat-icon i {
  font-size: 32px;
  color: rgba(var(--stat-color));
}

.stat-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--black);
  margin: 0;
}

.stat-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-dark);
  font-family: var(--font-family-inter);
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  gap: 0.25rem;
}

.stat-value .plus {
  font-family: var(--font-family-inter);
  color: var(--primary-green);
}

/* Odometer Customization */
.odometer.odometer-auto-theme,
.odometer.odometer-theme-default {
  /* font-family: var(--font-family-inter); */
  line-height: 1;
}

.odometer.odometer-auto-theme .odometer-digit,
.odometer.odometer-theme-default .odometer-digit {
  color: var(--text-dark);
}

.odometer.odometer-auto-theme .odometer-digit .odometer-digit-inner,
.odometer.odometer-theme-default .odometer-digit .odometer-digit-inner {
  text-align: center;
}

@media (max-width: 767.98px) {
  .stat-value {
    font-size: 1.5rem;
  }

  .stat-value .plus {
    font-size: 1rem;
  }
}

/* Responsive styles for statistics section */
@media (max-width: 991.98px) {
  .statistics-section {
    padding: 6% 0 12% 0;
  }

  .statistics-section-container {
    padding-block: 4rem;
    padding-inline: 1.5rem;
  }

  .statistics-content {
    padding-inline: 0;
    text-align: center;
    margin-bottom: 4rem;
    margin-inline: auto;
  }

  .statistics-content .section-title {
    font-size: 2rem;
  }

  .statistics-cards {
    --col-diff: 2rem;
    margin-block: 0;
    padding-block: 0;
    gap: 0.75rem;
  }

  .stat-card {
    padding: 1.25rem;
  }

  .stat-header {
    flex-direction: column-reverse;
    text-align: center;
    gap: 0.75rem;
  }

  .stat-icon {
    width: 60px;
    height: 60px;
  }

  .stat-icon i {
    font-size: 24px;
  }

  .stat-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 767.98px) {
  .statistics-section {
    padding: 4% 0 10% 0;
  }

  .statistics-section-container {
    max-width: 95%;
  }

  .statistics-content .section-title {
    font-size: 1.75rem;
  }

  .statistics-cards {
    --col-diff: 1rem;
    gap: 0.5rem;
  }

  .stat-card {
    padding: 1rem;
  }

  .stat-icon {
    width: 50px;
    height: 50px;
  }

  .stat-icon i {
    font-size: 20px;
  }

  .stat-title {
    font-size: 1.25rem;
  }

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

@media (max-width: 575.98px) {
  .statistics-section-container {
    margin-inline: 0.5rem;
    padding-inline: 1rem;
  }

  .statistics-cards {
    --col-diff: 1rem;
  }

  .stat-card {
    padding: 0.75rem;
  }

  .stat-icon {
    width: 40px;
    height: 40px;
    padding: 0.5rem;
  }

  .stat-icon i {
    font-size: 16px;
  }

  .stat-title {
    font-size: 1rem;
  }

  .stat-value {
    font-size: 1.5rem;
  }

  .stat-value .plus {
    font-size: 1rem;
  }
}

/* Utility Classes */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
