:root {
  --brand-indigo: #4f46e5;
  --text-white: #ffffff;
  --gray-700: #374151;
  --gray-500: #6b7280;
  --gray-900: #111827;
  --primary-dark: #1a1f2c;
  --secondary-dark: #161b22;
  --accent-blue: #0ea5e9;
  --accent-gold: #f0c14b;
  --accent-coral: #ff6b6b;
  --accent-green: #00d9a5;
  --accent-purple: #a78bfa;
  --accent-teal: #00d4aa;
  --text-muted: #6b7280;
  --text-light: #d1d5db;
  --border-subtle: #374151;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.7;
  color: var(--primary-dark);
  background: var(--cream);
  overflow-x: hidden;
}

/* ══════════════════════════════════════════════════════
            TYPOGRAPHY - CORMORANT + OUTFIT
═══════════════════════════════════════════════════════ */
h1,
h2,
h3,
h4 {
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-white);
}

h1 {
  font-size: clamp(48px, 7vw, 72px);
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 20px;
}

h3 {
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 16px;
}

p {
  /* font-size: 18px; */
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

.gradient-text {
  background-image: linear-gradient(to right, var(--accent-blue), var(--brand-indigo));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

/* ══════════════════════════════════════════════════════
            LAYOUT
═══════════════════════════════════════════════════════ */
.container {
  max-width: 100%;
  padding: 0 16px;
}

.container-narrow {
  max-width: 100%;
  padding: 0 16px;
}

@media (min-width: 480px) {
  .container {
    padding: 0 24px;
  }

  .container-narrow {
    padding: 0 24px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 1200px;
    padding: 0 32px;
  }

  .container-narrow {
    max-width: 960px;
    padding: 0 32px;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
  }

  .container-narrow {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 48px;
  }
}

section {
  padding: 50px 0;
}

p {
  text-align: start;
}

.mr-4 {
  margin-right: 4px;
}

.mr-10 {
  margin-right: 10px;
}

.pr-20 {
  padding-right: 20px;
}

.pl-20 {
  padding-left: 20px;
}

.scale_1 {
  scale: 1.1;
}

.scale_13 {
  scale: 1.3;
}

.relative {
  position: relative;
}

.custom-border-line {
  border: 1px solid #edecec;
}

.custom-background {
  background: linear-gradient(
    180deg,
    rgba(218, 217, 226, 0.01453081232492992) 0%,
    rgb(240 245 244 / 0%) 28%,
    rgb(233 247 244 / 27%) 60%,
    rgb(233 247 244 / 43%) 76%,
    rgb(233 247 244 / 39%) 85%,
    rgb(233 247 244 / 43%) 100%
  );
}

.btn-primary {
  color: #fff;
  background-color: #0ea5e9;
  padding: 18px 36px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.custom-btn {
  border: 1px solid #0ea5e9;
  color: #0ea5e9;
  padding: 18px 36px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-primary svg {
  width: 18px;
  height: 18px;
}

.custom-button a {
  cursor: pointer;
  font-weight: 700;
  font-family: Helvetica, "sans-serif";
  padding: 10px 20px;
  border-radius: 6px;
  background: #1694d4;
  border: 1px solid transparent;
  text-align: center;
  font-size: 15px;
  text-decoration: none;
  color: white;
  width: 200px;
  /* min-width: 190px; */
}

.development-img img {
  max-height: 420px;
  object-fit: contain;
}

.development--text p {
  font-weight: normal;
  font-size: 18px;
  line-height: 26px;
  color: var(--custom-paragraph-color);
  text-align: center;
  /* margin-top: 24px; */
}

.development--text h2 {
  color: var(--primary-dark);
}

.dev_sub_heading {
  font-size: 24px;
  margin-bottom: 10px;
  color: #292929;
}

/* Responsive styles */
@media (max-width: 768px) {
  .development-img img {
    width: -webkit-fill-available;
  }

  .development-img {
    order: 1;
  }

  .development--text {
    margin-top: 40px;
    order: 2;
  }

  .cost-modal {
    margin-top: 0;
  }
}

.subSection img {
  object-fit: contain;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--primary-dark);
}

.hero-content {
  text-align: center;
  padding: 60px 0;
  margin: 0 auto;
  max-width: 800px;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
  max-width: 1000px;
}

.hero-tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25rem;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: fadeInUp 1s ease-out 0.2s backwards;
  margin-bottom: 1.5rem;
}

.hero h1 {
  color: white;
  animation: fadeInUp 1s ease-out 0.2s backwards;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 20px;
  font-weight: 300;
  color: rgba(250, 249, 246, 0.85);
  line-height: 1.8;
  margin-bottom: 48px;
  text-align: center;
  animation: fadeInUp 1s ease-out 0.4s backwards;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.6s backwards;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .hero {
    padding: 40px;
  }

  .hero-content {
    padding: 80px 0;
  }

  .hero h1 {
    font-size: 2.75rem;
  }

  .hero-subtitle {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
  }

  .hero-cta {
    gap: 16px;
  }

  .hero-cta a {
    padding-block: 18px;
    font-size: 14px;
  }
}

@-moz-document url-prefix() {
  .custom-hero-section .highlight-text {
    display: table;
  }
}

.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor;
}

.item-bg {
  position: absolute;
}

.news-slider {
  z-index: 2;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 60px;
}

@media screen and (max-width: 1300px) {
  .news-slider {
    max-width: 1000px;
    overflow: hidden;
  }
}

@media screen and (max-width: 576px) {
  .news-slider {
    margin-top: 45px;
  }
}

.news-slider__wrp {
  display: flex;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

.news-slider__item {
  width: 380px;
  flex-shrink: 0;
}

@media screen and (max-width: 992px) {
  .news-slider__item {
    width: 340px;
  }
}

.news-slider__item.swiper-slide {
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
  margin: 0 20px;
}

.news-slider__item.swiper-slide-active,
.news-slider__item.swiper-slide-prev,
.news-slider__item.swiper-slide-next {
  opacity: 1;
  pointer-events: auto;
}

.news-slider__ctr {
  position: relative;
  z-index: 12;
}

.news-slider__arrow {
  background: #dde5ff;
  border: none;
  display: inline-flex;
  width: 50px;
  height: 50px;
  justify-content: center;
  align-items: center;
  box-shadow: 0 6px 26px 6px #87a3e94a;
  border-radius: 50%;
  position: absolute;
  top: 0;
  z-index: 12;
  cursor: pointer;
  outline: none !important;
}

.news-slider__arrow:focus {
  outline: none !important;
  background: #b8c9fe;
  box-shadow: 0 6px 10px 6px #08143017;
}

.news-slider__arrow .icon-font {
  display: inline-flex;
}

.news-slider__arrow.news-slider-prev {
  left: 15px;
  transform: translateY(-50%);
}

.news-slider__arrow.news-slider-next {
  right: 15px;
  transform: translateY(-50%);
}

.news-slider__pagination {
  text-align: center;
  margin-top: 20px;
}

.news-slider__pagination .swiper-pagination-bullet {
  width: 13px;
  height: 10px;
  display: inline-block;
  background: #8a92aa;
  opacity: 0.2;
  margin: 0 5px;
  border-radius: 20px;
  transition:
    opacity 0.5s,
    background-color 0.5s,
    width 0.5s;
  transition-delay: 0.5s, 0.5s, 0s;
}

.news-slider__pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: #b8c9fe;
  width: 100px;
  transition-delay: 0s;
}

@media screen and (max-width: 576px) {
  .news-slider__pagination .swiper-pagination-bullet-active {
    width: 70px;
  }
}

.news__item {
  padding: 30px;
  color: #000000;
  border-radius: 20px;
  display: block;
  transition: all 0.3s;
  text-decoration: none;
  background-color: white;
  box-shadow:
    rgba(17, 17, 26, 0.05) 0px 4px 16px,
    rgba(17, 17, 26, 0.05) 0px 8px 32px;
}

@media screen and (min-width: 800px) {
  .news__item:hover {
    scale: 1.02;
    color: #4e4d4d;
    box-shadow:
      rgba(122, 122, 241, 0.123) 0px 4px 16px,
      rgba(133, 133, 241, 0.363) 0px 8px 32px;
    transition-delay: 0.1s;
  }

  .news__item:hover .news-date,
  .news__item:hover .news__title,
  .news__item:hover .news__txt {
    opacity: 1;
    transition-delay: 0.1s;
  }
}

.news__item.active {
  color: #222222;
}

.news__item.active .news-date,
.news__item.active .news__title,
.news__item.active .news__txt {
  opacity: 1;
}

.news__item.active .news__img {
  box-shadow: none;
}

@media screen and (max-width: 992px) {
  .news__item {
    padding: 20px;
  }

  .development--text p {
    font-size: 17px;
    line-height: 24px;
  }
}

@media screen and (max-width: 576px) {
  .news__item {
    padding: 20px;
  }

  .development--text p {
    font-size: 16px;
  }
}

.news-date {
  display: flex;
  gap: 15px;
  /* justify-content: cbetween; */
}

/* @media screen and (max-width: 576px) {
  .news-date {
    margin-bottom: 10px;
    display: inline-flex;
    align-items: center;
    padding-bottom: 0;
  }
} */
.news-date__title {
  display: block;
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: 500;
  text-transform: capitalize;
  color: #000;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  white-space: normal;
  height: 3em;
}

@media screen and (max-width: 576px) {
  .news-date__title {
    margin-right: 10px;
  }
}

.news-date__txt.view-button {
  font-size: 16px;
  border: 2px solid #1b1b1b;
  border-radius: 25px;
  padding: 10px 20px;
  text-transform: capitalize;
  font-weight: 600;
}

.news-date__txt.view-button:hover {
  transition: all 0.3s ease-in-out;
  color: #000000;
  border: 2px solid #1694d4;
}

.news__title {
  font-size: 25px;
  font-weight: 500;
  opacity: 0.7;
  margin-top: 10px;
  margin-bottom: 15px;
  transition: opacity 0.3s;
}

@media screen and (max-width: 576px) {
  .news__title {
    font-size: 22px;
    margin-bottom: 10px;
  }
}

.news__txt {
  margin: 10px 0;
  line-height: 1.6em;
  font-size: 15px;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.news__img {
  max-height: 250px;
  height: 250px;
  margin: 5px 0 15px 0;
  width: 100%;
  object-fit: cover;
}

.news-date .logo_header img {
  max-height: 45px;
  max-width: 45px;
  object-fit: cover;
  border-radius: 10px;
}

@media screen and (max-width: 576px) {
  .news__img {
    height: 180px;
    margin: 15px 0 20px;
  }
}

.news__img img {
  max-width: 100%;
  object-fit: contain;
  height: 100%;
  width: 100%;
}

.nav-bar {
  display: flex;
  align-items: center;
  background-color: #f6f9ff;
  border-radius: 40px;
  padding: 12px 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  width: fit-content;
  border: 2px solid #dde5ff;
  margin: auto;
}

.tab {
  background: none;
  border: none;
  border-radius: 30px;
  padding: 10px 10px;
  margin: 0 5px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition:
    background-color 0.3s,
    color 0.3s;
  min-width: 50px;
}

.tab.active {
  background-color: #b8c9fe;
  color: #000;
  font-weight: bold;
}

.tab:hover {
  background-color: #dce4f7;
}

.dropdown {
  position: relative;
}

.dropdown-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 40px;
  left: 0;
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  overflow: hidden;
  z-index: 10;
}

.dropdown-content a {
  display: block;
  padding: 10px 20px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  transition: background-color 0.2s;
}

.dropdown-content a:hover {
  background-color: #f0f4ff;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* custom Case Studies list  */
.case-study-container-section {
  margin: 40px 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.case-study-container {
  border-radius: 15px;
  padding: 30px;
  /* flex-wrap: wrap; */
  /* background-color: #F1EAFF; */
  border: 1px solid #dad6e1;
  width: 100%;
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(204, 216, 255, 0.4) 0%, rgba(255, 255, 255, 0.4) 100%);
}

.case-study-container-deatils {
  display: flex;
  /* gap: 20px; */
}

.case-study-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.case-study-header h1 {
  color: var(--primary-dark);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.case-study-header .detail_logo {
  width: 32px;
  height: 32px;
  display: inline-flex;
}

.case-study-header .detail_logo img {
  width: 100%;
  height: 100%;
  border: 1px solid #0000007d;
  border-radius: 50px;
}

.case-study-meta {
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  display: flex;
  gap: 5px;
  align-items: center;
}

.case-study-meta p {
  color: var(--gray-700);
}

.case-study-meta p span:first-of-type {
  margin: 0 10px;
}

.case-study-meta p {
  margin-bottom: 5px;
}

.case-study-meta .country_logo {
  width: 25px;
  height: 25px;
  display: inline-block;
  margin-right: 5px;
}

.case-study-description {
  font-size: 17px;
  font-weight: 600;
  text-align: start;
  margin-bottom: 0;
  margin-top: 0;
  color: var(--text-muted);
  line-height: 1.5;
}

.features-grid1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 5px;
  width: max-content;
}

@media (max-width: 768px) {
  .features-grid1 {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .features-grid1 span {
    margin-bottom: 0;
  }
}

.case-study-tags h1 {
  font-size: 25px;
  font-weight: 700;
  color: var(--primary-dark);
}

.case-study-detail {
  font-size: 12px;
  font-weight: 400;
}

.case-study-detail .label {
  color: #4d4d4d;
  margin-bottom: 0;
  font-size: 15px;
}

.case-study-detail .value {
  font-weight: bold;
  color: #333;
  margin-bottom: 0;
  font-size: 15px;
}

.case-study-right {
  /* padding-right: 20px; */
  display: flex;
  justify-content: end;
  align-items: center;
  flex-grow: 1;
}

.case-study-right img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* left: 10%; */
  max-height: 250px;
}

.case-study-container.reverse-layout .case-study-header {
  margin-left: auto;
  /* padding-left: 18px; */
}

.img-blur {
  filter: blur(2px);
}

.case-study-container.reverse-layout .case-study-right {
  justify-content: start;
}

/* 
.JYO-h1 {
  margin-left: 26rem;
} */

/* Mobile Responsiveness */

@media (max-width: 992px) {
  .case-study-container-deatils {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .case-study-container {
    flex-direction: column;
    align-items: center;
  }

  .case-study-left {
    max-width: 100%;
    text-align: center;
    padding-left: 0;
  }

  .case-study-right {
    max-width: 100%;
    justify-content: center;
    align-items: center;
  }

  .case-study-description {
    font-size: 14px;
  }

  .case-study-tags {
    font-size: 12px;
  }

  .case-study-details {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .case-study-details .label {
    font-size: 14px;
  }

  .case-study-details .value {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .case-study-description {
    font-size: 13px;
  }

  .case-study-meta {
    font-size: 10px;
  }

  .case-study-details {
    text-align: center;
  }

  .case-study-details .label,
  .case-study-details .value {
    font-size: 12px;
  }

  .case-study-right img {
    margin: 0 auto;
    display: block;
  }
}

.loadbutton {
  font-family: Helvetica, "sans-serif";
  border: none;
  background-color: #1694d4;
  border-radius: 50px;
  /* letter-spacing: 2px; */
  font-size: 16px;
  /* font-weight: 700; */
  /* line-height: 28px; */
  /* box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset; */
  gap: 5px;
  text-transform: capitalize;
  padding: 10px 20px;
  color: white;
}

.loadbutton:hover {
  transition: all 0.3s ease-in-out;
  background: #01303a;
}

.manor_shadow {
  background: linear-gradient(180deg, rgb(27 51 63 / 24%) 0%, rgba(255, 255, 255, 0.4) 100%);
}

.goldbook_shadow {
  background: linear-gradient(180deg, rgb(255 187 0 / 30%) 0%, rgba(255, 255, 255, 0.4) 100%);
}

.expenizer_shadow {
  background: linear-gradient(180deg, rgb(69 139 135 / 36%) 0%, rgba(255, 255, 255, 0.4) 100%);
}

.brightOffice_shadow {
  background: linear-gradient(180deg, rgb(251 160 39 / 44%) 0%, rgba(255, 255, 255, 0.4) 100%);
}

.tawla_shadow {
  background: linear-gradient(180deg, rgb(9 194 131 / 29%) 0%, rgba(255, 255, 255, 0.4) 100%);
}

.customCredit_shadow {
  background: linear-gradient(180deg, rgb(231 84 151 / 29%) 0%, rgba(255, 255, 255, 0.4) 100%);
}

.JYOJewellery_shadow {
  background: linear-gradient(180deg, rgb(255 241 79 / 41%) 0%, rgba(255, 255, 255, 0.4) 100%);
}

.viridor_shadow {
  background: linear-gradient(180deg, rgb(18 160 76 / 35%) 0%, rgba(255, 255, 255, 0.4) 100%);
}

.onlineOffice_shadow {
  background: linear-gradient(180deg, rgb(121 178 221 / 28%) 0%, rgba(255, 255, 255, 0.4) 100%);
}

.intranet_shadow {
  background: linear-gradient(180deg, rgb(7 76 144 / 30%) 0%, rgba(255, 255, 255, 0.4) 100%);
}

/* Mobile Responsiveness */

@media (max-width: 992px) {
  .case-study-container-deatils {
    gap: 20px;
  }

  .case-study-right img {
    display: none;
  }

  .case-study-right {
    display: none;
  }

  .news-date .logo_header img {
    max-height: 35px;
    max-width: 35px;
  }

  .news-date__title {
    font-size: 21px;
  }
}

@media (max-width: 768px) {
  .case-study-container {
    flex-direction: column;
    align-items: center;
  }

  .case-study-left {
    max-width: 100%;
    text-align: center;
    padding-left: 0;
  }

  .case-study-right {
    max-width: 100%;
    justify-content: center;
    align-items: center;
  }

  .case-study-description {
    font-size: 14px;
  }

  .case-study-tags {
    font-size: 12px;
  }

  .case-study-details {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .case-study-details .label {
    font-size: 14px;
    color: #4d4d4d;
  }

  .case-study-details .value {
    font-size: 14px;
  }

  .pl-20 {
    padding-left: 0;
  }

  .case-study-header h1 {
    font-size: 28px;
  }

  .case-study-meta .country_logo {
    width: 22px;
    height: 22px;
  }

  .case-study-header .detail_logo {
    width: 30px;
    height: 30px;
  }

  .nav-bar {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .nav-bar .tab {
    min-width: auto;
    padding: 3px 10px;
    font-size: 16px;
  }

  .case-study-tags h1 {
    text-align: start;
    font-size: 19px;
  }
}

@media (max-width: 568px) {
  .case-study-meta p {
    font-size: 12px;
  }

  .case-study-description,
  .case-study-tags p,
  .case-study-detail .value {
    font-size: 14px;
  }

  .case-study-container {
    padding: 15px;
  }

  .case-study-header h1 {
    font-size: 22px;
  }

  .case-study-meta {
    font-size: 10px;
  }

  .case-study-detail-text .label,
  .case-study-detail-text .value {
    display: block;
  }

  .case-study-detail-text .label:nth-child(3),
  .case-study-detail-text .value:nth-child(4) {
    margin-top: 10px;
    /* Ensure proper spacing on smaller screens */
  }

  .news-date .logo_header img {
    max-height: 30px;
    max-width: 30px;
  }

  .news-date {
    gap: 10px;
  }

  .news-slider__item.swiper-slide {
    margin: 0 10px;
    padding: 0 12px;
  }

  .case-study-header .detail_logo {
    min-width: 30px;
    min-height: 30px;
  }

  .case-study-meta .country_logo {
    width: 18px;
    height: 18px;
  }
}

/* Navigation buttons styling */
.swiper-button-prev,
.swiper-button-next {
  z-index: 10;
  background: #0ea4e91a;
  backdrop-filter: blur(15px);
  color: #333;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.swiper-button-prev svg,
.swiper-button-next svg {
  width: 20px;
  height: 20px;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-size: 20px;
  font-weight: bold;
}

.swiper-button-prev {
  left: -1px !important;
}

.swiper-button-next {
  right: -1px !important;
}
