.lang-btn {
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: #f3f4f6;
}

.lang-btn:hover {
  background-color: #4caf4f;
  transform: translatey(-2px);
  color: white;
}

.special {
  background-color: #e6e6e6;
}

.special:hover {
  background-color: #4caf4f;
  color: white;
}

.speciall {
  background-color: #4a555c;
}

.speciall:hover {
  background-color: #4caf4f;
  color: white;
}

.click {
  cursor: pointer;
  color: white;
}
.click:hover {
  color: #4caf4f;
}
.click:hover img {
  filter: brightness(0) saturate(100%) invert(59%) sepia(73%) saturate(458%)
    hue-rotate(81deg) brightness(95%) contrast(87%);
}

.click-article {
  cursor: pointer;
  transition: all ease 0.3s;
  color: black;
  font-size: 16px;
}
.click-article:hover {
  color: #4caf4f;
}
.click-article:hover img {
  filter: brightness(0) saturate(100%) invert(59%) sepia(73%) saturate(458%)
    hue-rotate(81deg) brightness(95%) contrast(87%);
}

.social-container:hover img {
  filter: brightness(0) saturate(100%) invert(59%) sepia(73%) saturate(458%)
    hue-rotate(81deg) brightness(95%) contrast(87%);
}

.blog-learn {
  color: #000000a6;
  width: fit-content;
}

.blog-learn:hover {
  color: #4caf4f;
}

.blog-learn:hover img {
  rotate: 25deg;
  transition: rotate 0.2s ease;
  filter: brightness(0) saturate(100%) invert(59%) sepia(73%) saturate(458%)
    hue-rotate(81deg) brightness(95%) contrast(87%);
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* Slider Styles */
.slider {
  width: 100%;
  /* height: 60vh; */
  position: relative;
  overflow: hidden;
  padding: 8px 0;
}

.slider-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.slider-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 60vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.slide-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 20px;
}

.slide-title {
  font-family: roboto;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}

.tab-container {
  width: 55%;
}

/* Tabs Component Styles */
.tabs-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.tabs-container {
  display: flex;
  /* margin: 0 auto; */
  justify-items: center;
  flex-direction: column;
}

.tabs-sidebar {
  width: 100%;
  flex-shrink: 0;
  background: white;
  /* overflow: hidden;    */
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

/* Hide scrollbar but keep functionality */
.tabs-sidebar::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for Firefox */
.tabs-sidebar {
  scrollbar-width: none;
}

/* Hide scrollbar for IE and Edge */
.tabs-sidebar {
  -ms-overflow-style: none;
}

.tab-header {
  padding: 20px 24px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: white;
  border-radius: 40px;
  position: relative;
  text-wrap: nowrap;
  width: fit-content;
}

.tab-header:hover {
  background: linear-gradient(135deg, #bcefcf 0%, #ffffff 100%);
}

.tab-header.active {
  border-bottom: 2px solid red;
  border-radius: 0;
  background: white;
}

.tab-title {
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #000000;
  line-height: 1.4;
}

.tabs-content {
  flex: 1;
  background: white;
  padding: 4px;
  margin-top: 4px;
}

.tab-content {
  display: none;
  width: 100%;
  height: 100%;
}

.tab-content.active {
  display: block;
}

/* Responsive Design for Tabs */
@media (min-width: 1024px) {
  .tabs-container {
    /* max-width: 900px; */
    gap: 40px;
    flex-direction: row;
  }

  .tabs-sidebar {
    width: 35%;
  }

  .tab-header {
    padding: 18px 20px;
  }

  .tab-title {
    font-size: 24px;
  }

  .tabs-content {
    padding: 30px;
  }
  .tab-header:hover {
    background: linear-gradient(135deg, #bcefcf 0%, #ffffff 100%);
  }

  .tab-header.active {
    background: linear-gradient(135deg, #bcefcf 0%, #ffffff 100%);
    border-bottom: none;
    border-radius: 40px;
  }
}

/* Slider Component Styles */
.slider-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.slider-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  min-height: 500px;
  overflow: hidden;
}

.slider-track {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: white;
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: visible;
}

.slider-slide {
  flex: 0 0 76.923%; /* <-- CHANGE FROM 66.666% TO 100% */
  width: 100%;
  min-height: 500px;
  padding: 40px;
  opacity: 1;
  transform: none;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.94);
}

.slider-controls {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

.slider-dots {
  display: flex;
  gap: 12px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: #cbd5e1;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slider-dot:hover {
  background: #94a3b8;
  transform: scale(1.1);
}

.slider-dot.active {
  background: #10b981;
  transform: scale(1.2);
}

.slider-arrows {
  display: flex;
  gap: 16px;
}

.slider-arrow {
  width: 48px;
  height: 48px;
  border: none;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slider-arrow:hover {
  background: #f8fafc;
  transform: scale(1.05);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.slider-arrow:active {
  transform: scale(0.95);
}

.slider-arrow img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.slider-arrow:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* Responsive Design for Slider */
@media (max-width: 1024px) {
  .slider-container {
    max-width: 900px;
  }

  .slider-slide {
    padding: 30px;
    min-height: 450px;
    flex: 0 0 66.666%;
  }
}

@media (max-width: 768px) {
  .slider-section {
    padding: 60px 0;
  }

  .slider-container {
    max-width: 100%;
    padding: 0 20px;
  }

  .slider-slide {
    padding: 24px;
    min-height: 400px;
    flex: 0 0 66.666%;
  }

  .slider-controls {
    bottom: 16px;
  }

  .slider-arrow {
    width: 40px;
    height: 40px;
  }

  .slider-arrow img {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 480px) {
  .slider-container {
    padding: 0 16px;
  }

  .slider-slide {
    padding: 20px;
    min-height: 350px;
    flex: 0 0 66.666%;
  }

  .slider-controls {
    bottom: 12px;
  }

  .slider-arrow {
    width: 36px;
    height: 36px;
  }

  .slider-arrow img {
    width: 14px;
    height: 14px;
  }
}

.scroll-left {
  height: 100vh;
  overflow-y: scroll;
  overflow-x: hidden;
  direction: rtl;
}

.scroll-left > * {
  direction: ltr;
}

/* Scrollbar style (desktop) */
.scroll-left::-webkit-scrollbar {
  width: 6px;
  background: #736e6e;
  border-radius: 12px;
}
.scroll-left::-webkit-scrollbar-thumb {
  background: #ffffff;
  border-radius: 5px;
}
.scroll-left::-webkit-scrollbar-button {
  display: none;
}

/* === Tablet & Mobile (<1024px): horizontal scroll with visible bottom bar === */
@media (max-width: 1024px) {
  .scroll-left {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    height: auto;
    max-height: none;
    direction: ltr;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;

    /* 💡 Force scrollbar to show */
    scrollbar-width: thin; /* for Firefox */
    scrollbar-color: #ffffff #736e6e;
  }

  .scroll-left > * {
    flex: 0 0 100%;
    scroll-snap-align: start;
  }

  .scroll-left .flex {
    flex-direction: column-reverse !important;
  }

  .scroll-left .w-1\/2 {
    width: 100% !important;
    padding: 20px !important;
  }

  .scroll-left img {
    width: 100% !important;
    margin-top: 16px;
  }

  /* ✅ Horizontal scrollbar visible (WebKit browsers) */
  .scroll-left::-webkit-scrollbar {
    height: 8px;
    background: #736e6e;
    border-radius: 12px;
    display: block; /* force render */
  }

  .scroll-left::-webkit-scrollbar-thumb {
    background: #ffffff;
    border-radius: 5px;
  }

  .scroll-left::-webkit-scrollbar-button {
    display: none;
  }

  /* 👇 Helps trigger scrollbar rendering on iOS Safari */
  .scroll-left::after {
    content: "";
    flex: 0 0 1px;
  }
}
.projects-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  /* margin-top: 4px; */
}

.projects-track {
  display: flex;
  transition: transform 0.5s ease;
  gap: 12px;
  width: 100%;
}

.projects-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  padding: 0 40px;
}

.projects-dots {
  display: flex;
  gap: 8px;
}

.projects-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: background 0.4s ease;
}

.projects-dot.active {
  background: #4caf4f;
  width: 36px;
  border-radius: 6px;
}

.projects-arrows {
  display: flex;
  gap: 10px;
}

.projects-arrow {
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.projects-arrow:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
input[type="checkbox"] {
  width: 50px; /* Adjust the width as needed */
  accent-color: #4caf4c; /* Change the checkbox color to green */
}

@media (max-width: 768px) {
  .tab-container {
    width: 100%;
  }

  .button-container {
    display: flex;
    flex-wrap: wrap;
  }

  .button-container div {
    width: fit-content;
  }

  /* Step slider */
  /* .step-slide {
    flex: 0 0 90% !important;
    width: 90% !important;
  } */

  /* .slider {
    height: 50vh !important;
  } */

  .step-slider-track {
    gap: 10px !important;
  }

  /* Development process */
  /* .scroll-left {
    height: auto !important;
    max-height: 80vh;
  }

  .scroll-left .flex {
    flex-direction: column !important;
  }

  .scroll-left .w-1\/2 {
    width: 100% !important;
    padding: 20px !important;
  }

  .scroll-left img {
    width: 100% !important;
    margin-top: 16px;
  } */

  /* Cards2 section */
  #cards2-container {
    padding: 20px !important;
  }

  .card2-item {
    width: 100% !important;
    min-width: 100% !important;
  }

  /* Projects slider */
  /* .projects-track > div {
    flex: 0 0 100% !important;
    width: 100% !important;
    min-width: 100% !important;
  } */

  /* .projects-track .flex {
    flex-direction: column !important;
    padding: 20px !important;
  } */

  .projects-track .white {
    width: 100% !important;
  }

  .projects-track img {
    width: 100% !important;
    /* margin-top: 20px; */
  }

  /* Technologies tabs */
  /* .tabs-container {
    flex-direction: column !important;
    border: none !important;
  } */

  /* .tabs-sidebar {
    width: 100% !important;
    border-right: none !important;
    border-bottom: 2px solid #e5e7eb;
  } */

  /* .tabs-content {
    padding: 20px !important;
  } */

  /* .lang-btn {
    width: 100% !important;
    justify-content: flex-start !important;
  } */

  /* Reviews section */
  .review-slide {
    flex-direction: column !important;
    gap: 20px !important;
  }

  .review-slide > div {
    width: 100% !important;
  }

  /* Navigation improvements */
  .projects-navigation,
  .review-navigation {
    padding: 0 20px !important;
  }

  .projects-arrow,
  .review-prev,
  .review-next {
    width: 48px !important;
    height: 48px !important;
  }

  /* Carousel */
  .carousel-slide {
    width: clamp(100px, 30vw, 140px) !important;
    height: clamp(50px, 15vw, 80px) !important;
  }
}

/* this is the start of the responsive design */

.form-container {
  font-family: roboto;
  width: 100%;
  margin-top: 40px;
  display: flex;
  background-color: #f5f5f5;
}

.form-container .block-1 {
  width: 50%;
  padding: 40px;
  display: flex;
  flex-direction: column;
}

.form-container .block-1 .block-1-1 {
  display: flex;
  font-weight: 500;
  font-size: 16px;
  border-radius: 6px;
  border: 1px solid #4caf4f;
  width: fit-content;
  color: #1d1d1d;
  padding: 12px 36px;
}

.form-container .block-1 .block-1-2 {
  font-size: 38px;
  font-weight: 600;
  margin: 30px 0px;
  line-height: 35px;
}

.form-container .block-1 .block-1-3 {
  margin-bottom: 48px;
}

.form-container .block-1 .block-1-3 .block-cont-1 {
  display: flex;
  width: 45%;
}

.form-container .block-1 .block-1-3 .block-cont-2 {
  display: flex;
  width: 45%;
}

.form-container .block-1 .block-1-3 .block-cont-1 .block-span-1 {
  margin-right: 20px;
  margin-bottom: 16px;
}

.form-container .block-1 .block-1-3 .block-cont-1 .block-span-2 {
  font-weight: 400;
  font-size: 18px;
}

.form-container .block-1 .block-1-3 .block-cont-2 .block-span-1 {
  margin-right: 20px;
}

.form-container .block-1 .block-1-3 .block-cont-2 .block-span-2 {
  font-weight: 400;
  font-size: 18px;
}

.form-container .block-1 .block-1-4 img {
  border-radius: 9px;
  width: 100%;
}

.form-container .block-2 {
  width: 50%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  font-size: 16px;
  font-weight: 400;
}

.form-container .block-2 .block-input {
  margin-bottom: 16px;
  width: 100%;
  padding: 12px 8px;
  background-color: white;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.block-input input::placeholder {
  color: black;
}

.form-container .block-2 .block-input input {
  width: 100%;
  outline: none;
}

.form-container .block-2 .block-textarea textarea {
  height: 30vh;
  outline: none;
  margin-bottom: 16px;
  width: 100%;
  padding: 12px 8px;
  background-color: white;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.form-container .block-2 .block-textarea textarea::placeholder {
  color: black;
}

.form-container .block-2 .block-terms {
  margin-bottom: 32px;
  font-size: 16px;
}

.form-container .block-2 .block-submit {
  display: flex;
  font-weight: 500;
  font-size: 20px;
  border-radius: 6px;
  width: fit-content;
  color: white;
  padding: 12px 36px;
  background-color: #4caf4f;
}

.ad-section {
  padding: 50px;
  font-family: roboto;
}

.ad-container {
  padding: 80px 50px;
  background: url("../assets/images/home/banner1.webp") center center / cover
    no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ad-container .block-1 {
  font-weight: 600;
  font-size: 38px;
  color: #fff;
  margin-bottom: 18px;
  line-height: 35px;
}

.ad-container .block-2 {
  font-weight: 400;
  width: 60%;
  font-size: 24px;
  color: #fff;
  margin-bottom: 28px;
  line-height: 30px;
}

.ad-container .block-3 button {
  margin-top: 40px;
  margin-bottom: 24px;
  font-weight: 500;
  font-size: 16px;
  width: fit-content;
}

.faq-container {
  width: 100%;
  margin: 0;
  background: transparent;
  backdrop-filter: blur(0);
  border-radius: 20px;
  box-shadow: none;
  padding: 40px 80px;
  font-family: roboto;
}

.faq-container .block-1 {
  font-weight: 600;
  font-size: 38px;
  text-align: center;
}

.faq-container .block-2 {
  font-weight: 400;
  font-size: 20px;
  text-align: center;
}

.faq-container .block-3 {
  margin-top: 40px;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accordion-item {
  border: none;
  border-bottom: 1px solid #000000;
  border-radius: 0;
  overflow: hidden;
  background: transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: none;
}

.accordion-item:hover {
  box-shadow: none;
  transform: none;
}

.accordion-header {
  background: transparent;
  padding: 20px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: none;
}

.accordion-header:hover {
  background: transparent;
}

.accordion-header.active {
  background: transparent;
  color: inherit;
}

.accordion-title {
  font-family: roboto;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.4;
}

.accordion-icon {
  width: 32px;
  height: 32px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  margin-left: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  color: #2d3748;
}

.accordion-header .accordion-icon::before {
  content: "+";
}
.accordion-header.active .accordion-icon::before {
  content: "-";
}

.accordion-header.active .accordion-icon {
  transform: none;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background: transparent;
  will-change: max-height, padding;
}

.accordion-content.active {
  max-height: 500px;
  padding: 20px 0;
}

.accordion-text {
  font-family: roboto;
  font-weight: 400;
  font-size: 20px;
  color: #4d4d4d;
  line-height: 1.6;
}

.loading {
  text-align: center;
  padding: 40px;
  color: #718096;
  font-size: 1.1rem;
}

.error {
  text-align: center;
  padding: 40px;
  color: #e53e3e;
  background: #fed7d7;
  border-radius: 12px;
  margin-bottom: 20px;
}

.blog-container {
  padding: 40px;
  font-family: roboto;
}

.blog-container .block-cont-1 {
  display: flex;
  justify-content: space-between;
}

.blog-container .block-cont-1 .block-1 .block-1-1 {
  font-weight: 600;
  font-size: 38px;
}

.blog-container .block-cont-1 .block-1 .block-1-2 {
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 24px;
}

.blog-container .block-cont-1 .block-2 {
  font-weight: 500;
  font-size: 18px;
  display: flex;
  align-items: center;
  height: fit-content;
}

.blog-container .block-cont-2 {
  display: flex;
  gap: 30px;
}

.blog-container .block-cont-2 .blog-content {
  width: 33.333333%;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blog-container .block-cont-2 .blog-content .block-1 .block-1-1 img {
  width: 100%;
  border-radius: 9px;
}

.blog-container .block-cont-2 .blog-content .block-1 .block-1-2 {
  display: flex;
  font-weight: 400;
  padding: 12px;
  align-items: center;
  color: rgba(0, 0, 0, 0.65);
}

.blog-container .block-cont-2 .blog-content .block-1 .block-1-2 .block-head {
  margin-right: 20px;
  font-size: 20px;
}

.blog-container .block-cont-2 .blog-content .block-1 .block-1-2 .block-date {
  font-size: 16px;
}

.blog-container .block-cont-2 .blog-content .block-1 .block-1-3 {
  padding: 12px;
  font-weight: 600;
  font-size: 24px;
}

.blog-container .block-cont-2 .blog-content .block-2 {
  font-weight: 500;
  font-size: 18px;
  display: flex;
  align-items: center;
  padding: 12px;
}

.hero-container {
  width: 100%;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("../assets/images/home/hero.webp") center center / cover
    no-repeat;
  height: 100vh;
}

.home-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: roboto;
}

.home-container .block-1 {
  font-weight: bold;
  color: white;
  width: 80%;
  margin-top: 40px;
  margin-bottom: 36px;
  text-align: center;
  font-size: 56px;
  line-height: 60px;
}

.home-container .block-2 {
  font-weight: medium;
  color: white;
  width: 75%;
  margin: 24px 0px;
  text-align: center;
  font-size: 28px;
  line-height: 30px;
}

.home-container .block-3 {
  display: flex;
  gap: 20px;
  margin-top: 36px;
}

.carousel-container {
  margin-top: 20px;
  text-align: center;
  justify-content: center;
  font-family: roboto;
}

.carousel-container .block-1 {
  font-weight: 600;
  font-size: 38px;
}

.carousel-container .block-2 {
  font-weight: 400;
  font-size: 20px;
  margin: 4px 0px;
}

.carousel-container .block-3 {
  margin: 16px 0px;
}

.carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  width: max-content;
  gap: 10px;
  animation: slide-left var(--duration, 25s) linear infinite;
  animation-delay: var(--delay, 1s);
}

.carousel:hover .carousel-track {
  animation-play-state: paused;
}

.carousel-slide {
  flex: 0 0 auto;
  width: clamp(140px, 18vw, 220px);
  height: clamp(70px, 10vw, 120px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  transition: background-color 0.25s ease;
  border-radius: 9px;
}

.carousel-slide img {
  max-width: 70%;
  max-height: 70%;
  object-fit: contain;
}

.carousel-slide:hover {
  background: #f5f5f5;
}

@keyframes slide-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.services-container {
  padding: 40px;
  width: 100%;
  margin: 40px 0px;
  font-family: roboto;
}

.services-container .block-1 .block-1-1 {
  font-weight: 500;
  font-size: 20px;
}

.services-container .block-1 .block-1-2 {
  font-weight: 600;
  font-size: 38px;
}

.services-container .block-1 .block-1-3 {
  font-weight: 400;
  font-size: 20px;
  color: #373737;
  margin-top: 16px;
  margin-bottom: 24px;
}

.services-container .block-1 .block-1-4 {
  margin: 30px 0px;
}

.services-container .block-1 .block-1-4 button {
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  border-radius: 6px;
  border: 0;
  display: inline-block;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 24px;
  padding-right: 24px;
  transition: transform 200ms;
  transform: scale(1);
}

.services-container .block-1 .block-1-4 button:hover {
  transform: scale(1.05);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  background: #f7f8f8;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 2px 10px rgba(65, 174, 93, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: grid;
  grid-template-columns: 70% 30%;
  grid-template-rows: auto 1fr auto;
  column-gap: 16px;
  /* height: 40vh; */
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(65, 174, 93, 0.25);
}

#services-grid .service-card {
  background: #fff;
  color: #222;
  border-radius: 12px;
  padding: 32px 24px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06), 0 2px 8px #4caf4c;
  cursor: pointer;
  /* min-height: 50vh; */
  /* height: fit-content; */
  transition: all 0.3s ease;
}

#services-grid .service-card:hover {
  background: linear-gradient(135deg, #377755 0%, #0a2818 100%);
  color: #fff;
  transform: translateY(-2px);
}

.service-icon {
  width: auto;
  height: auto;
  max-width: 80%;
  max-height: 84px;
  object-fit: contain;
  margin: 20px 0 0;
  grid-column: 2;
  grid-row: 1 / -1;
  justify-self: center;
  transition: filter 0.2s ease;
}

.service-card:hover .service-icon,
#services-grid .service-card:hover .icon-img {
  filter: brightness(0) saturate(100%) invert(100%);
}

#services-grid .service-card .icon-img {
  filter: none;
  transition: filter 0.2s;
}

.service-title {
  font-weight: 600;
  font-size: 24px;
  color: #000;
  margin-bottom: 8px;
  grid-column: 1;
  grid-row: 1;
  transition: color 0.2s ease;
}

.service-desc {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.5);
  grid-column: 1;
  grid-row: 2;
  transition: color 0.2s ease;
}

.learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(0, 0, 0, 0.6);
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  margin-top: 8px;
  grid-column: 1;
  grid-row: 3;
  align-self: end;
  justify-self: start;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.learn-more:hover {
  opacity: 0.9;
}

#services-grid .service-card .learn-more:hover {
  border-bottom-color: #fff;
}

#services-grid .service-card:hover .service-title,
#services-grid .service-card:hover .service-desc,
#services-grid .service-card:hover .learn-more {
  color: #fff;
}

.learn-more-arrow {
  display: inline-block;
  transition: transform 0.2s ease;
}

#services-grid .service-card:hover .learn-more img {
  filter: brightness(0) saturate(100%) invert(100%);
}

#services-grid .service-card .learn-more:hover img {
  transform: rotate(25deg);
}

.about-container {
  display: flex;
  gap: 40px;
  padding: 40px;
  align-items: center;
}

.about-container .block-1 {
  width: 45%;
}

.about-container .block-2 {
  width: 55%;
  font-family: roboto;
  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
}

.about-container .block-2 .block-2-1 {
  font-weight: 600;
  font-size: 20px;
  color: #4caf4f;
  /* padding: 0px 16px; */
  /* margin-top: 150px; */
}

.about-container .block-2 .block-2-2 {
  font-weight: 600;
  font-size: 38px;
  line-height: 35px;
  margin: 20px 0px;
}

.about-container .block-2 .block-2-3 {
  font-weight: 400;
  font-size: 20px;
  margin-top: 8px;
  width: 90%;
}

.about-container .block-2 .block-2-4 {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 14px;
  margin-top: 80px;
  margin-bottom: 24px;
}

.about-container .block-2 .block-2-4 .block-elipsis {
  display: flex;
  width: 49%;
}

.about-container .block-2 .block-2-4 .block-elipsis .elipsis-span-1 {
  margin-right: 20px;
}

.about-container .block-2 .block-2-4 .block-elipsis .elipsis-span-2 {
  font-weight: 400;
  font-size: 16px;
}

.about-container .block-2 .block-2-5 {
  display: flex;
  font-weight: 600;
  font-size: 16px;
  color: #4caf4c;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
  border-radius: 6px;
  transition: background-color 0.3s, transform 0.3s, color 0.3s;
  border: 1px solid #4caf4f;
  width: fit-content;
}

.about-container .block-2 .block-2-5:hover {
  background-color: #4caf4f;
  transform: translateY(-5px);
  color: white;
}

.stats-container {
  font-family: roboto;
  display: flex;
  /* padding: 40px; */
  /* margin-bottom: 16px; */
  justify-content: space-between;
  background-color: #263238;
}

.stats-container .block-1 {
  width: 43%;
}

.stats-container .block-1 .block-1-1 {
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
}

.stats-container .block-1 .block-1-2 {
  font-weight: 600;
  font-size: 38px;
  color: #ffffff;
  margin-top: 16px;
  margin-bottom: 16px;
  line-height: 40px;
}

.stats-container .block-1 .block-1-3 {
  font-weight: 400;
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 24px;
}

.stats-container .block-1 .block-1-4 button {
  font-family: "Inter";
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  color: #ffffff;
  cursor: pointer;
  border-radius: 6px;
  border: 0;
  display: inline-block;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 24px;
  padding-right: 24px;
  transition: transform 200ms;
  transform: scale(1);
}

.stats-container .block-1 .block-1-4 button:hover {
  transform: scale(1.05);
}

.stats-container .block-2 {
  width: 40%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  font-family: poppins;
}

.stats-container .block-2 .block-content {
  display: flex;
  flex-direction: column;
}

.stats-container .block-2 .block-content .block-content-1 {
  font-weight: 500;
  font-size: 38px;
  color: #ffffff;
}

.stats-container .block-2 .block-content .block-content-2 {
  font-weight: 500;
  font-size: 18px;
  color: #ffffff;
}

.cards-section {
  background-color: #f5f5f5;
  font-family: roboto;
  margin: 40px 0px;
}

.cards-section .block-1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px;
}

.cards-section .block-1 .block-1-1 {
  color: #373737;
  font-weight: 400;
  font-size: 16px;
}

.cards-section .block-1 .block-1-2 {
  font-weight: 700;
  font-size: 38px;
}

.cards-section .block-1 .block-1-3 {
  font-weight: 400;
  font-size: 20px;
  color: #373737;
  width: 80%;
  text-align: center;
  margin-bottom: 24px;
}

.cards-section .block-2 {
  padding: 40px;
  padding-top: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}

.cards-section .block-2 .card2-item {
  width: calc(33.333% - 16px);
  min-width: 300px;
  background: #f5f5f5;
  border-radius: 16px;
  padding: 24px;
  box-shadow: none;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  font-family: roboto;
}

.cards-section .block-2 .card2-item img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 16px;
}

.cards-section .block-2 .card2-item .title {
  font-weight: 600;
  font-size: 22px;
  line-height: 1.3;
  color: #000000;
}

.cards-section .block-2 .card2-item .description {
  font-weight: 400;
  font-size: 18px;
  color: #454545;
  line-height: 1.5;
}

.project-section {
  padding: 40px;
  font-family: roboto;
}

.project-section .block-1 {
  display: flex;
  align-items: start;
  justify-content: space-between;
}

.project-section .block-1 .block-1-1 .block-cont-1 {
  font-weight: 600;
  font-size: 38px;
}

.project-section .block-1 .block-1-1 .block-cont-2 {
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 24px;
}

.project-section .block-1 .block-1-2 {
  font-weight: 500;
  font-size: 18px;
  display: flex;
}

.project-section .block-2 .block-2-1 {
  display: flex;
  justify-content: space-between;
  border-radius: 12px;
  padding: 32px;
  background-image: url(../assets/images/home/grad1.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.projects-track > div {
  /* flex: 0 0 66% !important;
  width: 66% !important; */
  min-width: 76% !important;
}

.project-section .block-2 .block-2-2 {
  background-image: linear-gradient(90deg, #37a9b6 0%, #040b0c 100%);
}

.project-section .block-2 .block-2-3 {
  background-image: linear-gradient(90deg, #168269 0%, #25ddb2 100%);
}

.project-section .block-2 .block-2-4 {
  background-image: linear-gradient(90deg, #bcaa61 0%, #0a0905 100%);
}

.project-section .block-2 .block-2-5 {
  background-image: linear-gradient(90deg, #6561cd 0%, #a6a4e9 100%);
}

/* When screen width is less than 1024px */
@media (max-width: 1023px) {
  .project-section .block-2 .block-2-1 {
    flex-direction: column;
    padding: 20px;
  }

  .project-section .block-2 .block-cont-1 .block-content .block-head {
    font-weight: 600;
    font-size: 25px;
    /* line-height: 35px; */
  }

  .project-section .block-2 .block-cont-1 .block-content .block-desc {
    font-size: 14px;
  }
  .projects-track > div {
    /* flex: 0 0 66% !important;
  width: 66% !important; */
    min-width: 100% !important;
  }

  .project-section .block-1 {
    display: flex;
    align-items: start;
    /* justify-content: space-between; */
    margin-bottom: 12px;
  }
}

.project-section .block-2 .block-cont-1 {
  color: #ffffff;
  width: 100%;
  font-family: "Inter";
}

.project-section .block-2 .block-cont-2 {
  width: 40%;
  align-items: center;
  justify-content: flex-end;
  display: flex;
}

.project-section .block-2 .block-cont-1 .block-content .block-head {
  font-weight: 600;
  font-size: 34px;
  line-height: 35px;
  width: 100%;
}

.project-section .block-2 .block-cont-1 .block-content .block-desc {
  font-weight: 400;
  font-size: 18px;
  margin-top: 28px;
  margin-bottom: 28px;
}

.project-section .block-2 .block-cont-1 .block-buttons .buttons-container {
  display: flex;
  flex-wrap: wrap;
  font-weight: 600;
  font-size: 14px;
  gap: 8px;
}

.project-section
  .block-2
  .block-cont-1
  .block-buttons
  .buttons-container
  .tech-btn {
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 4px;
  padding-left: 16px;
  padding-right: 16px;
  border: 1px solid;
  border-radius: 9999px;
  font-size: 14px;
}

.project-section
  .block-2
  .block-cont-1
  .block-buttons
  .buttons-container
  .tech-btn:hover {
  background-color: #4caf4f;
  transform: translatey(-2px);
}

.project-section .block-2 .block-cont-1 .block-buttons .view-container {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid;
  border-radius: 6px;
  padding: 10px 12px;
  margin-top: 28px;
  width: fit-content;
  cursor: pointer;
  transition: all 0.3s ease;
}

.project-section .block-2 .block-cont-1 .block-buttons .view-container:hover {
  background-color: #4caf4f;
  transform: translatey(-2px);
}

.project-section
  .block-2
  .block-cont-1
  .block-buttons
  .view-container
  .view-content {
  font-family: inter;
  font-weight: 600;
  font-size: 14px;
}

.slider-block .block-1 {
  font-weight: 400;
  font-size: 16px;
  color: gray;
}

.slider-block .block-2 {
  font-weight: 600;
  font-size: 38px;
  color: white;
  margin-top: 16px;
  margin-bottom: 16px;
  line-height: 40px;
}

.slider-block .block-3 {
  font-weight: 400;
  font-size: 20px;
  color: gray;
  margin-bottom: 24px;
}

.slider-block .block-5 {
  margin-top: 4px;
}

.step-slider-container {
  width: 100%;
  position: relative;
  overflow: hidden;
  background-color: white;
}

.step-slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease-in-out;
  gap: 20px;
  /* padding: 0 10px; */
}

.step-slide {
  flex: 0 0 100%; /* ✅ Mobile: 1 per view */
  height: 415px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  justify-content: center;
  border-radius: 16px;
}

/* ✅ Tablet: show 2 slides side by side */
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .step-slide {
    flex: 0 0 48%;
  }
}

/* ✅ Desktop: show 3 slides (31.25%) */
@media screen and (min-width: 1024px) {
  .step-slide {
    flex: 0 0 31.25%;
  }
}

/* -------------------------------
   🔹 Overlay + Text Styling
-------------------------------- */
.step-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
  border-radius: 16px;
}

/* Base: Desktop hover behavior hidden by default */
.step-slide .step-slide-content-hidden {
  display: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.step-slide .step-slide-content-initial {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

/* ✅ Desktop hover behavior (≥1024px only) */
@media screen and (min-width: 1024px) {
  .step-slide:hover .step-slide-content-initial {
    opacity: 0;
    visibility: hidden;
    display: none;
  }

  .step-slide:hover .step-slide-content-hidden {
    display: block;
    opacity: 1;
    visibility: visible;
  }
}

/* ✅ For Mobile & Tablet (always show “hidden” content) */
@media screen and (max-width: 1023px) {
  .step-slide .step-slide-content-hidden {
    display: block;
    opacity: 1;
    visibility: visible;
  }

  .step-slide .step-slide-content-initial {
    display: none;
    opacity: 0;
    visibility: hidden;
  }
}

/* Text styling remains the same */
.step-slide-content-initial,
.step-slide-content-hidden {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 20px 40px 20px;
}

.step-slide-title {
  font-family: poppins;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .form-container {
    flex-direction: column;
  }

  .form-container .block-1 {
    width: 100%;
    padding: 10px;
  }

  .form-container .block-2 {
    width: 100%;
    padding: 10px;
  }

  .form-container .block-1 .block-1-1 {
    font-size: 14px;
  }

  .form-container .block-1 .block-1-2 {
    font-size: 28px;
    font-weight: normal;
  }

  .form-container .block-1 .block-1-3 {
    width: 100%;
  }

  .form-container .block-1 .block-1-3 .block-cont-1 {
    width: 100%;
  }

  .form-container .block-1 .block-1-3 .block-cont-2 {
    width: 100%;
  }

  .form-container .block-1 .block-1-3 .block-cont-1 .block-span-2 {
    font-size: 16px;
  }

  .form-container .block-1 .block-1-3 .block-cont-2 .block-span-2 {
    font-size: 16px;
  }

  .form-container .block-2 .block-submit {
    display: flex;
    justify-content: center;
    font-size: 16px;
    width: 100%;
  }

  .ad-section {
    padding: 0px;
  }

  .ad-container {
    padding: 20px;
  }

  .ad-container .block-1 {
    font-size: 22px;
    text-align: center;
  }

  .ad-container .block-2 {
    font-size: 16px;
    text-align: center;
    font-weight: 500;
    width: 100%;
  }

  .ad-container .block-3 {
    display: flex;
    justify-content: center;
  }

  .faq-container {
    width: 100%;
    margin: 0;
    background: transparent;
    backdrop-filter: blur(0);
    border-radius: 20px;
    box-shadow: none;
    padding: 10px 20px;
    font-family: roboto;
  }

  .faq-container .block-1 {
    font-size: 28px;
  }

  .faq-container .block-2 {
    font-size: 16px;
  }

  .accordion-title {
    font-size: 14px;
    line-height: 1.4;
  }

  .accordion-text {
    font-family: inter;
    font-weight: 500;
    font-size: 14px;
  }

  .accordion-content.active {
    padding: 0px;
    padding-bottom: 10px;
  }

  .blog-container {
    padding: 10px;
  }

  .blog-container .block-cont-1 {
    flex-direction: column;
  }

  .blog-container .block-cont-1 .block-1 .block-1-1 {
    font-size: 28px;
  }

  .blog-container .block-cont-1 .block-1 .block-1-2 {
    font-size: 16px;
  }

  .blog-container .block-cont-1 .block-2 {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .blog-container .block-cont-2 {
    flex-direction: column;
    gap: 20px;
  }

  .blog-container .block-cont-2 .blog-content {
    width: 100%;
  }

  .blog-container .block-cont-2 .blog-content .block-1 .block-1-2 .block-head {
    font-size: 16px;
  }

  .blog-container .block-cont-2 .blog-content .block-1 .block-1-2 .block-date {
    font-size: 14px;
  }

  .blog-container .block-cont-2 .blog-content .block-1 .block-1-3 {
    font-size: 16px;
  }

  .blog-container .block-cont-2 .blog-content .block-2 {
    font-size: 16px;
  }

  .hero-container {
    width: 100%;
    padding: 10px;
    display: flex;
    justify-content: left;
    height: 80vh;
  }

  .home-container {
    display: flex;
    flex-direction: column;
    align-items: normal;
  }

  .home-container .block-1 {
    width: 100%;
    margin-top: 150px;
    margin-bottom: 36px;
    text-align: left;
    font-size: 36px;
    line-height: 40px;
  }

  .home-container .block-2 {
    width: 100%;
    margin: 24px 0px;
    text-align: left;
    font-weight: 400;
    font-size: 18px;
    line-height: 20px;
  }

  .home-container .block-3 {
    flex-direction: column;
    gap: 20px;
    margin-top: 36px;
  }

  .carousel-container .block-1 {
    font-size: 28px;
    text-align: center;
    line-height: 30px;
    padding: 0px 25px;
  }

  .carousel-container .block-2 {
    font-size: 16px;
    margin: 5px 10px;
  }

  .services-container {
    padding: 20px;
  }

  .services-container .block-1 .block-1-1 {
    font-size: 14px;
  }

  .services-container .block-1 .block-1-2 {
    font-size: 28px;
    line-height: 25px;
    margin-top: 10px;
  }

  .services-container .block-1 .block-1-3 {
    font-size: 16px;
  }

  .services-grid {
    grid-template-columns: 1fr !important;
  }

  .service-card {
    grid-template-columns: 1fr !important;
    height: auto !important;
    min-height: auto !important;
  }

  .service-icon {
    grid-column: 1 !important;
    grid-row: 1 !important;
    margin: 0 0 16px 0 !important;
    justify-self: start !important;
  }

  .service-title {
    font-size: 22px;
    grid-column: 1 !important;
    grid-row: 2 !important;
  }

  .service-desc {
    font-size: 16px;
    grid-column: 1 !important;
    grid-row: 3 !important;
  }

  .learn-more {
    font-size: 18px;
    grid-column: 1 !important;
    grid-row: 4 !important;
  }

  .about-container {
    display: flex;
    flex-direction: column;
    padding: 15px;
  }

  .about-container .block-1 {
    width: 100%;
  }

  .about-container .block-2 {
    width: 100%;
    margin-top: 0px;
  }

  .about-container .block-2 .block-2-1 {
    font-size: 16px;
    margin-top: 0px;
  }

  .about-container .block-2 .block-2-2 {
    font-size: 28px;
    line-height: 30px;
    margin: 10px 0px;
  }

  .about-container .block-2 .block-2-3 {
    font-size: 16px;
    width: 100%;
  }

  .about-container .block-2 .block-2-4 {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .about-container .block-2 .block-2-4 .block-elipsis {
    width: 100%;
  }

  .about-container .block-2 .block-2-4 .block-elipsis .elipsis-span-1 {
    width: 10%;
  }

  .about-container .block-2 .block-2-4 .block-elipsis .elipsis-span-2 {
    width: 90%;
  }

  .center-div {
    display: flex;
    justify-content: center;
  }

  .stats-container {
    display: flex;
    flex-direction: column-reverse;
    padding: 40px 20px;
  }

  .stats-container .block-1 {
    width: 100%;
    margin-top: 50px;
  }

  .stats-container .block-1 .block-1-1 {
    font-size: 14px;
  }

  .stats-container .block-2 {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .stats-container .block-1 .block-1-2 {
    font-size: 28px;
    line-height: 30px;
    margin: 30px 0px;
  }

  .stats-container .block-1 .block-1-3 {
    font-size: 16px;
  }

  .stats-container .block-1 .block-1-4 {
    display: flex;
    justify-content: center;
    /* margin: 30px 0px; */
  }

  .stats-container .block-2 .block-content .block-content-1 {
    font-size: 30px;
  }

  .stats-container .block-2 .block-content .block-content-2 {
    font-size: 16px;
  }

  .cards-section .block-1 {
    display: flex;
    flex-direction: column;
    align-items: left;
    padding: 10px;
  }

  .cards-section .block-1 .block-1-1 {
    font-size: 14px;
  }

  .cards-section .block-1 .block-1-2 {
    font-size: 28px;
  }

  .cards-section .block-1 .block-1-3 {
    font-size: 16px;
    width: 100%;
  }

  .cards-section .block-2 {
    padding: 10px;
    padding-top: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .cards-section .block-2 .card2-item {
    width: 100%;
    padding: 16px;
  }

  .cards-section .block-2 .card2-item .description {
    font-size: 16px;
  }

  .project-section {
    padding: 10px;
  }

  .project-section .block-1 {
    display: flex;
    flex-direction: column;
  }

  .project-section .block-1 .block-1-1 .block-cont-1 {
    font-size: 28px;
  }

  .project-section .block-1 .block-1-1 .block-cont-2 {
    font-size: 16px;
  }

  .project-section .block-1 .block-1-2 {
    font-size: 16px;
    display: flex;
    justify-content: flex-start;
  }

  /* .step-slide {
  flex: 100%;
  width: 100%;
} */
}

.review-carousel {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.review-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.review-group {
  min-width: 100%;
}

/* Each review card takes full width on mobile */
.review-card {
  width: 100%;
  flex-shrink: 0;
}

/* 💻 Large screens: show 4 cards in a 2x2 grid */
@media (min-width: 1024px) {
  .review-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 2rem;
    min-width: 100%;
  }

  .review-card {
    width: auto;
  }
}

/* 📱 Mobile: make cards stack individually */
@media (max-width: 1023px) {
  .review-track {
    display: flex;
  }

  .review-group {
    display: flex;
    flex-wrap: nowrap;
  }

  .review-card {
    width: 100%;
  }
}

.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.scrollbar-hide::-webkit-scrollbar {
  display: none;
}
