main {
  padding-bottom: 160px;
}
@media (max-width: 762px) {
  main {
    padding-bottom: 80px;
  }
}
/* ====== Background Layers ====== */
main .container {
  position: relative;
}
main .background-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;

  z-index: -1;
}

main .background-layer.active {
  opacity: 1;
  z-index: -12;
}

main .background-layer img {
  width: 100%;
  height: 100%;
  display: block;
}

main .all-content {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(2, auto);
  animation: slideInUp 1.5s ease-out 0.1s both;
  -webkit-animation: slideInUp 1.5s ease-out 0.1s both;
  gap: 180px;
  overflow: hidden;
  padding-top: 123px;
  padding-bottom: 52px;
}
@media (max-width: 762px) {
  main .all-content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  main .all-content .slider {
    order: -1;
  }

  main .all-content .content {
    order: 0;
  }
}
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
    -webkit-transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
main .all-content .content {
  display: flex;
  flex-direction: column;
  text-align: right;
  gap: 40px;
  animation: slideInRight 0.8s ease-out;
  user-select: none;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

main .all-content .content h1 {
  font-weight: 800;
  font-size: 80px;
  line-height: 101px;
  letter-spacing: -2%;
  text-align: right;
  color: #042147;
  margin: 0;
  padding-top: 97px;
}

main .all-content .content p {
  font-weight: 400;
  font-size: 24px;
  line-height: 38px;
  text-align: right;
  color: #3f4853;
  margin: 0;
}

@media (max-width: 762px) {
  main .all-content .content h1 {
    font-weight: 800;
    font-size: 32px;
    line-height: 44.8px;
    letter-spacing: -2%;
    text-align: center;
    padding-top: 40px;
    margin: 0;
  }

  main .all-content .content p {
    font-weight: 400;
    font-size: 16px;
    line-height: 23.8px;
    letter-spacing: -2%;
    text-align: center;
    margin: 0;
  }
  main .all-content .content .desktop-text {
    display: none;
  }
  main .all-content .content .mobile-text {
    display: block;
  }
}
/* ====== Buttons ====== */
main .all-content .main-slider-buttons {
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

main .all-content .main-slider-buttons button {
  padding: 10px 20px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: -1%;
  vertical-align: middle;
}

main .all-content .btn-1 {
  background: #042147;
  color: white;
  width: 311px;
  height: 72px;
}

main .all-content .btn-1:hover {
  transform: translateY(-3px);
}

main .all-content .btn-2 {
  background: #dbfe01;
  color: #042147;
  width: 289px;
  height: 72px;
}
@media (max-width: 762px) {
  main .all-content .main-slider-buttons {
    display: flex;
    gap: 8px;
    justify-content: center;
  }

  main .all-content .main-slider-buttons button {
    padding: 18px 14px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
    vertical-align: middle;
  }

  main .all-content .btn-1 {
    width: 157px;
    height: 46px;
  }

  main .all-content .btn-2 {
    width: 135px;
    height: 46px;
  }
}
main .all-content .btn-2:hover {
  background: var(--main-color);
  color: white;
  transform: translateY(-3px);
}

/* ====== Icons Section ====== */
main .all-content .icons {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;

  gap: 25.33px;
}

main .all-content .icons > div {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}
main .all-content .icons .one img {
  width: 65px;
  height: 58px;
}
main .all-content .icons .two img {
  width: 56px;
  height: 56px;
}

main .all-content .icons > div:hover {
  transform: translateY(-2px);
}

main .all-content .icons p {
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  text-align: center;
  color: #042147;
}
@media (max-width: 762px) {
  main .all-content .icons {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 12px;
    align-items: center;
  }

  main .all-content .icons > div {
    display: flex;
    align-items: center;
    gap: 6px;
  }
  main .all-content .icons > div p {
    font-weight: 700;
    font-size: 10px;
    line-height: 100%;
    text-align: center;
  }
  main .all-content .icons .one img {
    width: 37.63px;
    height: 33.86px;
  }
  main .all-content .icons .two img {
    width: 32.56px;
    height: 32.56px;
  }
  main .all-content .icons .three img {
    width: 65.68px;
    height: 34.89px;
  }
  main .all-content .icons .four img {
    width: 38.12px;
    height: 31.13px;
  }

  main .all-content .icons p {
    font-weight: 700;
    font-size: 13px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
  }
}

main .all-content .slider {
  position: relative;
}

main .all-content .slider-wrapper .mySwiper {
  max-width: 605px;
  max-height: 698px;
}
@media (max-width: 762px) {
  main .all-content .slider-wrapper .mySwiper {
    max-width: 363px;
    max-height: 298px;
  }
}
main .all-content .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

main .all-content .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}
main .all-content .swiper-slide img {
  transition: all 0.8s ease-in-out;
  transform-origin: center center;
}

main .all-content .swiper-slide-active img {
  transform: scale(1);
  height: 100%;
  opacity: 1;
}

main .all-content .swiper-slide-prev img,
main .all-content .swiper-slide-next img {
  transform: scale(0.9) translateY(10px);
  height: 90%;
  opacity: 0.85;
}

main .pagination-custom {
  display: flex;
  justify-content: center;
  gap: 4px;
  position: absolute;
  left: 50%;
  transform: translateX(50%);
  margin-top: 40px;
  margin-bottom: 52px;
}
@media (max-width: 762px) {
  main .pagination-custom {
    transform: translateX(-50%);
  }
}
main .pagination-dot {
  width: 7px;
  height: 7px;
  background: #a0a19e;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.35s ease;
}

main .pagination-dot.active {
  width: 78px;
  height: 7px;
  border-radius: 5px;
  background: #11448c;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.8);
}
@media (min-width: 992px) and (max-width: 1400px) {
  main .all-content {
    gap: 80px;
    justify-content: space-between;
  }
  main .all-content .content h1 {
    font-size: 60px;
    line-height: 75.6px;
  }
  main .all-content .content p {
    font-size: 20px;
    line-height: 31.6px;
  }
  main .all-content .main-slider-buttons {
    gap: 12px;
    justify-content: normal;
  }
  main .all-content .main-slider-buttons button {
    padding: 8px 16px;
    font-size: 20px;
    line-height: 96%;
  }

  main .all-content .btn-1 {
    width: 275px;
    height: 64px;
  }
  main .all-content .btn-2 {
    width: 240px;
    height: 64px;
  }
  main .all-content .icons p {
    font-size: 12px;
  }
  main .all-content .icons .one img {
    width: 55px;
    height: 48px;
  }
  main .all-content .icons .two img {
    width: 46px;
    height: 46px;
  }
  main .all-content .icons .three img {
    width: 103px;
    height: 50px;
  }
  main .all-content .icons .four img {
    width: 55px;
    height: 44px;
  }
}
@media (min-width: 762px) and (max-width: 992px) {
  main .all-content {
    gap: 60px;
    justify-content: space-between;
  }
  main .all-content .content h1 {
    font-size: 48px;
    line-height: 60.48px;
  }
  main .all-content .content p {
    font-size: 18px;
    line-height: 28.44px;
  }
  main .all-content .main-slider-buttons {
    gap: 10px;
    justify-content: normal;
  }
  main .all-content .main-slider-buttons button {
    padding: 8px 16px;
    font-size: 16px;
    line-height: 96%;
  }

  main .all-content .btn-1 {
    width: 240px;
    height: 56px;
  }
  main .all-content .btn-2 {
    width: 210px;
    height: 56px;
  }
  main .all-content .icons p {
    font-size: 12px;
  }
  main .all-content .icons {
    gap: 10px;
  }
  main .all-content .icons .one img {
    width: 48px;
    height: 42px;
  }
  main .all-content .icons .two img {
    width: 40px;
    height: 40px;
  }
  main .all-content .icons .three img {
    width: 90px;
    height: 44px;
  }
  main .all-content .icons .four img {
    width: 48px;
    height: 38px;
  }
}
@media (max-width: 762px) {
  main .pagination-dot,
  main .pagination-dot.active {
    height: 3.8px;
  }
}

/*  */
.section-one {
  padding-bottom: 160px;
}

.section-one .desktop h2 {
  font-weight: 700;
  font-size: 46px;
  line-height: 168%;
  text-align: center;
  color: var(--main-color);
  padding-bottom: 80px;
  margin: 0;
}

.section-one .desktop .icons {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  justify-content: center;
  gap: 45px;
  padding: 0px 116px;
  padding-bottom: 80px;
}

.section-one .desktop .icons > span {
  position: relative;
  width: 100%;
  height: 1px;
  border: 1px dashed #9f9f9f;
}
.section-one .desktop .icons > span::after,
.section-one .desktop .icons > span::before {
  position: absolute;
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 3px solid #9f9f9f;
  top: 50%;
  transform: translateY(-50%);
}

.section-one .desktop .icons > span::before {
  right: -32px;
}
.section-one .desktop .icons > span::after {
  left: -32px;
}
.section-one .desktop .text {
  display: flex;
  justify-content: center;
  align-items: start;
  gap: 68.5px;
}

.section-one .desktop .text > div h4 {
  font-weight: 700;
  font-size: 28px;
  line-height: 100%;
  margin: 0;
  padding-bottom: 16px;
}
.section-one .desktop .text > div p {
  font-weight: 400;
  font-size: 19px;
  line-height: 34px;
  text-align: center;
  text-transform: uppercase;
  margin: 0;
}
.section-one .mobile {
  display: none;
}
@media (min-width: 762px) and (max-width: 1360px) {
  .section-one .desktop .text > div p br {
    display: none;
  }
}
@media (min-width: 992px) and (max-width: 1360px) {
  .section-one {
    padding-bottom: 100px;
  }
  .section-one .desktop h2 {
    font-size: 42px;
    line-height: 160%;
  }
  .section-one .desktop .text {
    display: flex;
    justify-content: center;
    align-items: start;
    gap: 40.5px;
  }
  .section-one .desktop .text > div h4 {
    font-size: 21px;
  }

  .section-one .desktop .text > div p {
    font-size: 18px;
  }
}
@media (min-width: 762px) and (max-width: 992px) {
  .section-one {
    padding-bottom: 80px;
  }
  .section-one .desktop h2 {
    font-size: 38px;
    line-height: 140%;
  }
  .section-one .desktop .icons {
    padding: 0px 40px;
    padding-bottom: 80px;
  }
  .section-one .desktop .text {
    display: flex;
    justify-content: center;
    align-items: start;
    gap: 30.5px;
  }
  .section-one .desktop .text > div h4 {
    font-size: 18px;
  }

  .section-one .desktop .text > div p {
    font-size: 18px;
  }
}
@media (max-width: 762px) {
  .section-one {
    padding-bottom: 80px;
  }
  .section-one .desktop {
    display: none;
  }
  .section-one .mobile {
    display: block;
  }
  .section-one .mobile .content {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .section-one .mobile .content h2 {
    font-weight: 700;
    font-size: 22px;
    line-height: 168%;
    letter-spacing: -2%;
    text-align: center;
    text-transform: uppercase;
    color: #042147;
    padding-bottom: 20px;
  }
  .section-one .mobile .content div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .section-one .mobile .content h4 {
    margin-bottom: 20px;
    color: #000000;
    font-weight: 700;
    font-size: 22px;
    line-height: 100%;
    letter-spacing: -2%;
    text-align: center;
    text-transform: uppercase;
  }
  .section-one .mobile .content p {
    font-weight: 400;
    font-size: 16px;
    line-height: 34px;
    letter-spacing: -2%;
    text-align: center;
    color: #3f4853;
    padding-bottom: 40px;
    border-bottom: 1px solid #57584f33;
  }
  .section-one .mobile .content img {
    width: 73px;
    height: 73px;
    margin-bottom: 40px;
  }
}

/* section-two */
.security-section {
  margin-bottom: 80px;
}
.security-section .desktop {
  display: block;
}
.security-section .mobile {
  display: none;
}
@media (max-width: 762px) {
  .security-section .desktop {
    display: none;
  }
  .security-section .mobile {
    display: block;
  }
}
/* desktop */
.security-section .desktop .text {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-bottom: 80px;
}
.security-section .desktop .text h2 {
  margin-bottom: 0;
}
.security-section .desktop .text p {
  margin-bottom: 0;
}
.security-section .desktop .services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (max-width: 762px) {
  .security-section .desktop .services {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
  }
}

.security-section .desktop .services .image {
  position: relative;
  display: flex;
  justify-content: center;
  overflow: hidden;
  border-radius: 20px;
  -webkit-border-radius: 20px;
}
.security-section .desktop .services .image > img {
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease; /* أنيميشن ناعم */
}
.security-section .desktop .services .image:hover > img {
  transform: scale(1.2);
}
.security-section .desktop .services .image .text-content {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 323px;
  bottom: 80px;
  transform: translateY(100%);
  transition: transform 0.8s cubic-bezier(0.25, 1.5, 0.5, 1);
  width: 100%;
}

.security-section .desktop .services .image:hover > .text-content {
  transform: translateY(45px);
}

.security-section .desktop .services .image .text-content .text-one {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.security-section .desktop .services .image .text-content .text-one h3 {
  line-height: 100%;
  text-align: center;
  color: #ffffff;
}
.security-section .desktop .services .image .text-content .text-one.num-1 h3,
.security-section .desktop .services .image .text-content .text-one.num-2 h3 {
  font-size: 32px;
  font-weight: 700;
}
.security-section .desktop .services .image .text-content .text-one.num-3 h3,
.security-section .desktop .services .image .text-content .text-one.num-4 h3 {
  font-size: 28px;
  font-weight: 800;
  line-height: 43px;
  text-align: right;
}
@media (min-width: 992px) and (max-width: 1260px) {
  .security-section .desktop .services .image .text-content .text-one.num-1 h3,
  .security-section .desktop .services .image .text-content .text-one.num-2 h3 {
    font-size: 28px;
  }
  .security-section .desktop .services .image .text-content .text-one.num-3 h3,
  .security-section .desktop .services .image .text-content .text-one.num-4 h3 {
    font-size: 24px;
  }
}
@media (min-width: 162px) and (max-width: 992px) {
  .security-section .desktop .services .image .text-content .text-one.num-1 h3,
  .security-section .desktop .services .image .text-content .text-one.num-2 h3 {
    font-size: 24px;
  }
  .security-section .desktop .services .image .text-content .text-one.num-3 h3,
  .security-section .desktop .services .image .text-content .text-one.num-4 h3 {
    font-size: 18px;
  }
}

.security-section .desktop .services .image .text-content .text-two {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.security-section .desktop .services .image .text-content .text-two div {
  display: flex;
  gap: 8px;
}
.security-section .desktop .services .image .text-content .text-two div p {
  display: block;
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  text-align: center;
  color: #eaf9ff;
  padding: 10px 20px;
  background-color: #a8a99c33;
  backdrop-filter: blur(7.3px);
  -webkit-backdrop-filter: blur(7.3px);
  border-radius: 14px;
  -webkit-border-radius: 14px;
}
/* mobile */

.security-section .mobile .text {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-bottom: 80px;
}
.security-section .mobile .text h2 {
  font-weight: 700;
  font-size: 32px;
  line-height: 100%;
  color: #042147;
}
.security-section .mobile .text p {
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  text-align: center;
  margin-bottom: 0;
  color: #3f4853;
}
.security-section .mobile .services {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.security-section .mobile .services .image {
  position: relative;
  display: flex;
  justify-content: center;
  overflow: hidden;
  border-radius: 20px;
}
.security-section .mobile .services .image > img {
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease; /* أنيميشن ناعم */
}
/* .security-section .mobile .services .image:hover > img {
  transform: scale(1.2);
} */
.security-section .mobile .services .image .text-content {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px 0;
  transition: transform 0.8s cubic-bezier(0.25, 1.5, 0.5, 1);
  height: 300px;
}

/* .security-section .mobile .services .image:hover > .text-content {
  transform: translateY(45px);
} */

.security-section .mobile .services .image .text-content > div {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.security-section .mobile .services .image .text-content .text-one h3 {
  line-height: 100%;
  text-align: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: -2%;
}

.security-section .mobile .services .image .text-content .text-two {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.security-section .mobile .services .image .text-content .text-two div {
  display: flex;
  gap: 8px;
}
.security-section .mobile .services .image .text-content .text-two div p {
  display: block;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: -2%;
  text-align: center;
  color: #eaf9ff;
  padding: 10px 20px;
  background-color: #a8a99c33;
  backdrop-filter: blur(7.3px);
  -webkit-backdrop-filter: blur(7.3px);
  border-radius: 14px;
}

/* .techniques-section */
.techniques-section {
  background-color: #f4f5ed;
  padding-bottom: 54px;
  margin-bottom: 80px;
}
.techniques-section .main-text {
  padding-top: 80px;
  padding-bottom: 80px;
}
.techniques-section .main-text > h2 {
  margin-bottom: 40px;
}
.techniques-section .techniques {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 16px;
  justify-content: center;
}
@media (max-width: 762px) {
  .techniques-section .techniques {
    display: grid;
    grid-template-columns: repeat(1, auto);
    gap: 16px;
    padding: 0;
  }
}

.techniques-section .techniques > div {
  background-color: #fefff5;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 2rem 2.25rem;
  max-width: 478px;
  border-radius: 12px;
  -webkit-border-radius: 12px;
}
.techniques-section .techniques > div h4 {
  font-weight: 700;
  font-size: 28px;
  line-height: 100%;
  letter-spacing: -2%;
  text-align: right;
  margin: 0;
  padding-bottom: 20px;
}
.techniques-section .techniques > div p {
  font-weight: 400;
  font-size: 18px;
  line-height: 34px;
  letter-spacing: -1%;
  text-align: right;
  color: #43484e;
  margin: 0;
}
.techniques-section .show-more {
  display: none;
}
@media (max-width: 762px) {
  .techniques-section {
    padding-bottom: 54px;
    margin-bottom: 80px;
  }
  .techniques-section .main-text {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .techniques-section .main-text > h2 {
    margin-bottom: 40px;
    font-weight: 700;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: -2%;
    text-align: center;
    color: #042147;
  }
  .techniques-section .main-text > p {
    font-weight: 400;
    font-size: 16px;
    line-height: 31px;
    letter-spacing: -2%;
    text-align: center;
    color: #43484e;
  }
  .techniques-section .techniques .hidden-mobile {
    display: none;
  }
  .techniques-section .techniques > div .image {
    margin-top: 4px;
  }
  .techniques-section .show-more {
    display: block;
    margin-top: 40px;
    background-color: #042147;
    padding: 18px 16px;
    border-radius: 8px;
    color: #fbfde9;
  }
  .techniques-section .show-more .show-more-btn {
    background-color: #042147;
    color: #fbfde9;
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
    vertical-align: middle;
    border: none;
  }
  .techniques-section .techniques > div {
    background-color: #fefff5;
    align-items: center;
    padding: 16px 20px;
  }
  .techniques-section .techniques > div h4 {
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    margin: 0;
    color: #042147;
  }
  .techniques-section .techniques > div p {
    color: #43484e;
    margin: 0;
    font-weight: 400;
    font-size: 16px;
    line-height: 34px;
    text-align: center;
  }
  .techniques-section br {
    display: none;
  }
}

/* slider */
.slider-section {
  padding-bottom: 122px;
}
.slider-section .text {
  margin-bottom: 80px;
}
.slider-section .text > h2 {
  margin-bottom: 40px;
}
@media (max-width: 762px) {
  .slider-section {
    padding-bottom: 80px;
  }
  .slider-section .text > h2 {
    font-weight: 700;
    font-size: 24px;
    line-height: 100%;
    text-align: right;
    vertical-align: middle;
    color: #042147;
  }
  .slider-section .text > p {
    font-weight: 400;
    font-size: 16px;
    line-height: 34px;
    text-align: center;
    color: #3f4853;
  }
}
.slider-section .slider-wrapper {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  border-radius: 20px;
  padding: 0 40px;
}

.slider-section .slider-container {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

.slider-section .slider-track {
  display: flex;
  flex-direction: row-reverse;
  gap: 16px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  padding-top: 10px;
}

.slider-section .slider-track.no-transition {
  transition: none;
}

.slider-section .slide-card {
  flex: 0 0 auto;
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  border: 0.5px solid #57584f33;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 10px 10px 16px 10px;
}

.slider-section .slide-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.slider-section .slide-image {
  overflow: hidden;
  position: relative;
}

.slider-section .slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-section .slide-content {
  margin-top: 55.8px;
}

.slider-section .slide-title {
  font-weight: 400;
  font-size: 24px;
  line-height: 100%;
  text-align: right;
  color: var(--main-color);
}

.slider-section .slide-description {
  font-weight: 400;
  font-size: 16px;
  line-height: 27px;
  text-align: right;
  color: #3f4853;
}

.slider-section .slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.slider-section .nav-button {
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.slider-section .nav-button:hover {
  transform: translateY(-2px);
}

.slider-section .nav-button:active {
  transform: translateY(0);
}

.slider-section .pagination {
  display: flex;
  flex-direction: row-reverse;
  gap: 8px;
  align-items: center;
}

.slider-section .page-item {
  font-family: Poppins;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
  vertical-align: middle;
  min-width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  color: #3f4853;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-section .page-item:hover {
  transform: scale(1.1);
}

.slider-section .page-item.active {
  background-color: #042147;
  color: #fafafa;
}

.slider-section .page-item.dots {
  cursor: default;
  background: transparent;
}

.slider-section .page-item.dots:hover {
  background: transparent;
  transform: none;
}

/* Responsive styles */
@media (max-width: 991px) {
  .slider-section .slider-wrapper {
    padding: 30px 20px;
  }

  .slider-section .slide-image {
    height: 220px;
  }
}

@media (max-width: 762px) {
  .slider-section .slider-wrapper {
    padding: 20px 15px;
  }

  .slider-section .slide-image {
    height: 200px;
  }

  .slider-section .slide-title {
    font-size: 20px;
  }

  .slider-section .slide-description {
    font-size: 14px;
  }

  .slider-section .nav-button {
    padding: 6px;
    font-size: 14px;
  }
  .slider-section .pagination {
    display: none;
  }
  .slider-section .page-item {
    min-width: 35px;
    height: 35px;
    font-size: 14px;
  }
  .slider-section .slider-controls {
    gap: 0px;
  }
}

/* slider */
