* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
  font-family: 'Montserrat', sans-serif;
}

/* Full-screen white overlay */
.loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.3s ease;
  pointer-events: all;
}

/* Hide overlay */
.loader-overlay.hide {
  opacity: 0;
  pointer-events: none;
}



/* Global Css style  */
.bg-purple {
  background-color: #4d419A !important;
}

.bg-light {
  background-color: rgba(246, 243, 252, 1) !important;
}

.text-purple {
  color: #4d419A;
}

h1 {
  font-size: 50px;
}

h3 {
  font-size: 36px;
}

h4 {
  font-size: 20px;
}


h5 {
  font-size: 26px;
}

.text-xs {
  font-size: 14px;

}

.ls-1 {
  letter-spacing: 1px;
}

.ls-2 {
  letter-spacing: 2px;
}

.ls-3 {
  letter-spacing: 3px;
}

.ls-n1 {
  letter-spacing: -1px;
}


.col-5 {
  flex: 0 0 20%;
  max-width: 20%;
}

.btn {
  font-size: 14px;
  font-weight: 500;
}

.mx-lg-10 {
  margin: 0 7rem;

}


.rounded-tr {
  border-top-right-radius: 100px;
}

/* Header style css  */
.header-circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin-top: -55px;
  margin-left: -55px;
  border: 1px solid #4d419A;
  background-color: rgba(246, 243, 252, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
}


.header-circle img {
  margin-top: 70px;
  margin-left: 55px;
  width: 130px;
}



/* Base button style */
.contact-btn {
  color: #fff;
  background-color: #4d419A;
  transition: all 0.3s ease;
}

/* Hover effect */
.contact-btn:hover {
  background-color: #6d63af;
  color: #fff;
  border-color: #4d419a;

}




/* Hero section style css  */
.main-image-background {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: end;
  padding: 0;
  background: url('Images/GIF.png') center/cover no-repeat;
}

/* Hero Text */
.hero-text {
  position: absolute;
  top: 25%;
  right: 5%;
  text-align: end;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease-out forwards;
  animation-delay: 0.3s;
}


.soft-blur-text {

  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease-out forwards;
  animation-delay: 0.5s;
}

/* Optional: scale effect for hero heading */
.hero-text h1 {
  transform: scale(0.95);
  animation: scaleUp 1s ease-out forwards;
  animation-delay: 0.6s;

}

/* ================= Bottom Bar ================= */
.bottom-bar {
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: 40%;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease-out forwards;
  animation-delay: 1s;
  display: flex;
  flex-direction: column;
}

/* Steps Row */
.steps-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 10px;
}

/* Individual Step */
.step {
  flex: 1;
  position: relative;
}

/* Step Labels */
.step .text-white {

  margin-bottom: 0.5rem;
}

/* Step Lines */
.step-line {
  width: 2px;
  height: 0;
  /* animated from 0 to 10px */
  background: #cfcfcf;
  position: absolute;
  bottom: -10px;
  left: 0;
  transform: translateX(-50%);
  animation: growLine 0.5s ease-out forwards;
}

/* Sequential animation delays for each step line */
.step:nth-child(1) .step-line {
  animation-delay: 1.2s;
}

.step:nth-child(2) .step-line {
  animation-delay: 1.4s;
}

.step:nth-child(3) .step-line {
  animation-delay: 1.6s;
}

.step:nth-child(4) .step-line {
  animation-delay: 1.8s;
}

/* Progress Line Background */
.progress-line {
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  position: relative;
  width: 100%;
}

/* Progress Fill */
.progress-fill {
  width: 0;
  /* animated from 0 to 65% */
  height: 100%;
  background: #4d419A;
  border-radius: 2px;
  position: absolute;
  top: 0;
  left: 0;
  animation: fillProgress 1s ease-out forwards;
  animation-delay: 2s;
}

/* ================= Top-right Circle ================= */
.top-circle {
  width: 50vw;
  height: 50vw;
  background: rgba(255, 255, 255, 0.06);
  border: 2px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 60px rgba(255, 255, 255, 0.08);
  pointer-events: none;
  /* so it doesn’t block hover */
  z-index: 1;
  position: absolute;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: top 0.2s ease, left 0.2s ease;

  filter: blur(1px);
  backdrop-filter: blur(1px);
}


/* ================= Animations ================= */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleUp {
  0% {
    transform: scale(0.95);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes growLine {
  0% {
    height: 0;
  }

  100% {
    height: 10px;
  }
}

@keyframes fillProgress {
  0% {
    width: 0;
  }

  100% {
    width: 55%;
  }
}




















/* interractive gallery  */
/* Interactive Gallery Section */
.interactive-gallery-section {
  padding: 80px 20px;
  color: #333;
  margin-top: 100px;
}

.gallery-text-half {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 40px;
  color: #333;
  position: relative;
}

.gallery-text-half::before {
  content: "";
  position: absolute;
  width: 1000px;
  height: 1000px;
  border-radius: 100%;
  background: rgba(246, 243, 252, 1);
  top: 100%;
  left: 20%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.gallery-header {
  text-align: left;
  margin-bottom: 60px;
  position: relative;
  z-index: 0;
  max-width: 400px;
  margin-left: 25px;
}




.image-gallery {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 300px;
  margin: 0 auto;
  display: flex;
  justify-content: right;
  align-items: center;
}

.gallery-image {
  position: absolute;
  width: 220px;
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transform-origin: center center;
}

/* Gallery Image Hover Zoom */
.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.gallery-image:hover img {
  transform: scale(1.1);
  /* Zoom in slightly */
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  /* Optional shadow */
}

/* Optional: zoom out parent container smoothly */
.gallery-image {
  transition: transform 0.5s ease, z-index 0.5s ease;
}

.gallery-image:hover {
  z-index: 10;
  /* Bring to front on hover */
  transform: scale(1.05);
  /* Slight scale on parent */
}




.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 15px;
  opacity: 1;
  /* always visible */
  transition: opacity 0.3s ease;
}


.image-overlay h4 {

  margin-bottom: 3px;
}

.image-overlay p {

  opacity: 0.9;
}

.gallery-image.sliding-out {
  transform: translateX(300px) rotate(0deg) scale(1) !important;
  opacity: 1;
  /* keep visible */
}

.gallery-image.moving-to-back {
  transition: transform 0.6s ease-in-out, z-index 0.6s ease-in-out;
}


/* Moment Section */
.moment-section {
  max-height: 750px;
  margin-bottom: 200px;
}

/* Card container */
.moment-card {
  position: relative;
  flex: 1 1 calc(20% - 20px);
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);


  height: 340px;
  margin: 50px 0 0 0;
  transition: transform 0.5s ease, height 0.5s ease;
  transform-origin: bottom;
  /* key: keeps base fixed */
}

/* Image cropped slightly from top */
.moment-card img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  object-position: center top;
  border-radius: 20px;
  transition: transform 0.5s ease;
  transform: translateY(-10%);
  /* hides top portion */
}

/* Text overlay */
.moment-card .card-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  color: white;
  padding: 20px;
  z-index: 2;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}



/* Text */

@media (min-width: 768px) {


  .moment-card:hover {
    transform: scaleY(1.2);
    z-index: 10;
  }

  .moment-card:hover img {
    transform: translateY(0%);
  }
}

/* Work Stage Section */
.work-stage-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}



/* Slide-in animation for image */
.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Step Image */
.custom-step-image {
  max-width: 65%;
  position: relative;
  bottom: -30px;
  right: 45px;
  transition: all 0.3s ease;
  z-index: 2;
}

/* Background Shape */
.custom-bg-shape {
  width: 900px;
  height: 900px;

  border-radius: 100%;
  position: absolute;
  top: 25px;
  right: -200px;
  z-index: 0;
}



/* custom section */
/* custom section */
.custom-section {
  background: url('Images/GIF2-min.png') center/cover no-repeat;
  color: #000;
}

/* Card Styles */
.card.custom-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;

  height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  border: none;
}

/* Text stays on top */
.card-text {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 20px;
}

/* Image container starts as proper circle */
.img-container {
  width: 180px;
  /* default circle size */
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  top: 65%;
  /* visually aligned */
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  transition: all 0.6s ease-in-out;
  z-index: 1;
  pointer-events: none;
}

/* Overlay for text readability */
.img-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  /* transparent by default */
  transition: background 0.6s ease-in-out;
  z-index: 2;
  /* above image but below text */
}

/* Image itself */
.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
}

@media (min-width: 768px) {

  /* Hover: expand container to full card */
  .custom-card:hover .img-container {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    top: 50%;
    transform: translate(-50%, -50%) scale(1);
  }

  /* Hover: zoom image slightly */
  .custom-card:hover .card-img {
    transform: scale(1.2);
    border-radius: 20px;
  }

  /* Hover: show blackish overlay */
  .custom-card:hover .img-container::after {
    background: rgba(0, 0, 0, 0.5);
    /* semi-transparent black */
  }

  /* Text hover style */
  .custom-card:hover .card-text h4,
  .custom-card:hover .card-text p {
    color: #fff;

    position: relative;
    z-index: 3;
    /* above overlay */
  }
}




/* Ready main style css  */
.ready-main-section {

  border-bottom-left-radius: 100px;
  padding: 140px 20px;
  margin-bottom: 200px;
  position: relative;

}




.btn-purple-outline {
  background-color: transparent;
  color: #4d419A;
  border: 2px solid #4d419A;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.btn-purple-outline:hover {
  background-color: #4d419A;
  color: #fff;
}

/* Right image container */
.ready-image-container {
  position: absolute;
  top: 65%;
  right: 5%;
  transform: translateY(-50%);
  display: grid;
  grid-template-columns: auto auto;
  gap: 20px;
  align-items: center;
}

/* Fade-up animation from bottom */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  /* start below */
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
  /* move up into place */
}


.image-col {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.first-img {
  max-width: 250px;
  border-radius: 10px;
}

.last-img {
  max-width: 300px;
  border-radius: 10px;
}


.middle-img {
  max-width: 250px;
  margin-top: 20px;
  border-radius: 10px;
}


/* footer style css  */

.footer-logo {
  width: 100px;
}

.footer-icon {

  max-width: 80%;
  height: auto;

}

@media (min-width: 1680px) and (max-width: 1920px) {
  h1 {
    font-size: 54px;
  }

  h3 {
    font-size: 40px;
  }

  h4 {
    font-size: 28px;
  }


  h5 {
    font-size: 28px;
  }

  .text-xs {
    font-size: 20px;

  }

  p {
    font-size: 18px;
  }

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1420px;
  }

  .header-circle {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    margin-top: -60px;
    margin-left: -60px;
  }

  .header-circle img {
    margin-top: 80px;
    margin-left: 55px;
    width: 200px;
  }
  .hero-text{
   
    top: 40%;
 }

 .gallery-image {
    position: absolute;
    width: 340px;
    height: 440px;
 }

  .gallery-text-half::before {
    width: 1200px;
    height: 1200px;
    top: 120%;
    left: 10%;
  }

  .moment-card {
    height: 450px;
  }

  .gallery-header {
    margin-left: -50px;
    max-width: 500px;
  }

  .custom-bg-shape {
    width: 1200px;
    height: 1200px;
  }

  .card.custom-card {
    width: 330px;

    height: 420px;
  }
  .ready-image-container {

    top: 70%;
    right: 12%;
  }
   .first-img {
    max-width: 300px;
  }
   .middle-img {
    max-width: 300px;
  }
  .last-img {
    max-width: 350px;
  }

  .mx-lg-10 {
    margin: 0 1rem;
  }
}

@media (min-width: 1440px) and (max-width: 1680px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1100px;
  }




  .moment-section {
    max-height: 850px;
    margin-bottom: 250px;
  }


  .ps-md-5 {
    padding-left: unset !important;
  }

  .moment-card {
    height: 450px;
  }

  .gallery-header {
    margin-left: -50px;
    max-width: 500px;
  }

  .custom-bg-shape {
    top: 0px;
    right: -300px;
  }

  .custom-step-image {

    bottom: -30px;
    right: -60px;
  }

  .card.custom-card {
    width: 300px;

    height: 420px;
  }

  .mx-lg-10 {
    margin: 0 1rem;
  }

   .ready-image-container {

    top: 70%;
    right: 12%;
  }
   .first-img {
    max-width: 300px;
  }
   .middle-img {
    max-width: 300px;
  }
  .last-img {
    max-width: 350px;
  }
   .gallery-image {
    position: absolute;
    width: 300px;
    height: 400px;
 }
}



@media (max-width: 1200px) {

  h1 {
    font-size: 32px;
  }

  h4 {
    font-size: 18px;
  }

  h5 {
    font-size: 20px;
  }

  .mx-lg-10 {
    margin: unset;

  }


  .gallery-text-half::before {
    width: 800px;
    height: 800px;
    top: 100%;
    left: 30%;

  }

  .moment-section {
    max-height: 600px !important;
    margin-bottom: 150px;
  }



  .img-container {
    width: 120px;
    height: 120px;

  }

  .card.custom-card {


    height: 300px;
  }
}


@media (max-width: 1024px) {

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 28px;
  }



  h4 {
    font-size: 16px;
  }

  .text-xs {
    font-size: 10px;
  }


  h5 {
    font-size: 20px;
  }

  .hero-text {
    top: 30%;
    right: 5%;
  }


  /* .top-circle {
        width: 60vw;
        height: 60vw;
        top: -10vw;
        right: -10vw;
      } */

  .progress-fill {
    width: 50%;
  }



  .main-image-background {
    min-height: 60vh;
  }

  /* Step Image */
  .custom-step-image {
    max-width: 60%;
    position: relative;
    bottom: -80px;
    right: 45px;
    transition: all 0.3s ease;
    z-index: 2;
  }

  /* Background Shape */
  .custom-bg-shape {
    width: 550px;
    height: 550px;


    top: 60px;
    right: -75px;

  }

  .ready-image-container {

    top: 80%;
  }

  .first-img {
    max-width: 150px;
    border-radius: 10px;
  }

  .last-img {
    max-width: 200px;
    border-radius: 10px;
  }

  .gallery-text-half::before {

        top: 100%;
        left: 0%;
    }




  .middle-img {
    max-width: 150px;
    margin-top: 20px;
    border-radius: 10px;
  }

  .moment-section {
    max-height: 900px !important;
    margin-bottom: 100px;
  }

  .moment-card .card-text {

    padding: 10px;
  }

  .gallery-header {

    margin-left: -30px;
  }



  .img-container {
    width: 125px;
    height: 125px;
  }

  .card.custom-card {


    height: 280px;
    width: 240px;
  }

  .btn-purple-outline {
    background-color: transparent;
    color: #4d419A;
    border: 2px solid #4d419A;
    padding: 6px 10px;
  }

  .moment-card {
    height: 270px;
  }

  .col-5 {
    flex: 0 0 26%;
    max-width: 26%;
    /* 2 per row on medium screens */
  }

}


/* ================= Responsive ================= */
@media (max-width: 768px) {

  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }

  h5 {
    font-size: 16px;
  }

  h4 {
    font-size: 24px;
  }

  p {
    font-size: 14px;
  }

  .btn {
    font-size: 12px;
    font-weight: 600;
  }


  .header-circle {
    width: 150px;
    height: 150px;


  }

  .header-circle img {

    width: 80px;
  }



  .bottom-bar {

    width: 50%;
  }

  .image-gallery {


    justify-content: center;

  }

  .work-stage-section {
    padding: 30px 0 100px;
  }

  /* Background Shape */
  .custom-bg-shape {
    width: 550px;
    height: 550px;


    top: 300px;
    right: -100px;

  }

  .custom-step-image {
    max-width: 50%;
    position: relative;
    bottom: -80px;
    right: -100px;
    transition: all 0.3s ease;
    z-index: 2;
  }

  .ready-main-section {

    border-bottom-left-radius: 100px;
    padding: 60px 20px 200px 20px;
    margin-bottom: 200px;
    position: relative;
  }

  .ready-image-container {
    position: absolute;
    top: auto;
    right: 20px;
    transform: none;
    justify-content: center;
    margin-top: 30px;
    grid-template-columns: auto auto;
    gap: 10px;
  }

  .image-col img {
    max-width: 150px;
  }

  .middle-img {
    max-width: 150px;
    margin-top: 10px;
  }

  .gallery-text-half {

    padding-left: unset;
    padding: 0 20px;
  }

  .interactive-gallery-section {
    padding: 40px 20px;
  }


  .hero-text {
    right: 2%;
    top: 20%;
  }

  .bottom-bar {
    width: 90%;
    left: 5%;
  }

  .moment-section {
    max-height: 850px !important;
    margin-bottom: 40px;
  }

  .moment-card {
    height: 400px;
    max-width: 60%;

  }

  .gallery-text-half::before {
    all: unset;
  }

  .gallery-header {

    margin-left: 0;
  }

  .img-container {
    width: 200px;
    height: 200px;

  }

  .card.custom-card {


    height: 350px;
  }

  .text-xs {
    font-size: 14px;

  }

  .col-5 {
    flex: 0 0 30%;
    max-width: 30%;
  }

  .interactive-gallery-section {

    margin-top: 0;
  }


}




@media (max-width: 567px) {

  .col-5 {
    flex: 0 0 50%;
    max-width: 50%;
    /* full width on small screens */
  }

  h1 {
    font-size: 24px;
  }

  h5 {
    font-size: 14px;
  }

  .text-xs {
    font-size: 10px;

  }

  h4 {
    font-size: 16px;
  }

  .hero-text {
    top: 30%;
    right: 3%;

  }

  /* .top-circle {
        width: 70vw;
        height: 70vw;
        top: -8vw;
        right: -12vw;
      } */


  .bottom-bar {

    width: 70%;
  }

  .custom-bg-shape {
    width: 550px;
    height: 550px;
    top: 225px;
    right: -180px;
  }

  .custom-step-image {

    bottom: -80px;
    right: -45px;
  }

  .moment-section {
    max-height: 1150px !important;

  }


  .moment-card {

    height: 300px;
  }




  .moment-card .card-text h5 {

    margin: 0;
  }


  .img-container {
    width: 120px;
    height: 120px;

  }

  .card.custom-card {


    height: 280px;
    width: 100%;
  }

  /* footer responsive css  */


  .footer-logo {
    width: 80px;
  }

  .footer-icon {

    max-width: 70%;
    height: auto;

  }

  .gallery-image {
    position: absolute;
    width: 200px;
    height: 260px;

  }

  .work-stage-section {
    padding: 0 0 100px;
  }
}


@media (max-width: 400px) {
  .col-5 {
    flex: 0 0 75%;
    max-width: 75%;
    /* full width on small screens */
  }

  .moment-section {
    max-height: unset !important;


  }

  .moment-card {
    max-width: 70%;

    margin: 30px 0 0 0;
  }
}



.carousel-indicators {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 0rem;
  padding: 0;
  list-style: none;
}

.carousel-indicators [data-bs-target] {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 10px;
  height: 10px;
}

.carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background-color: rgba(93, 82, 165, 0.3);
  margin: 0 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.carousel-indicators button.active {
  background-color: #e5e4ec;
}

/* Custom Slider for Small Screens */
.custom-slider {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slider-card {
  position: absolute;
  width: 200px;
  height: 280px;
  border-radius: 20px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.slider-card.pos-0 {
  transform: translateX(-100%) scale(0.8);
  opacity: 0.5;
  height: 280px;
  z-index: 1;
}

.slider-card.pos-1 {
  transform: translateX(0) scale(1);
  opacity: 1;
  z-index: 2;
}

.slider-card.pos-2 {
  transform: translateX(100%) scale(0.8);
  opacity: 0.5;
  height: 280px;
  z-index: 1;
}

.slider-card .img-container {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.6s ease-in-out;
  z-index: 1;
}

.slider-card .img-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  transition: background 0.6s ease-in-out;
  z-index: 2;
}

.slider-card .card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
}

.custom-slider {
  transition: opacity 1s ease;
}

.custom-slider.fading {
  opacity: 0;
}

