/* ------------------ About Section Start ------------------ */
.about_head,
.about_span {
  color: #901225;
}
/* ------------------ About Section Start ------------------ */

/* ------------------ Services Section Start ------------------ */
/* all styles are scoped under .rotating-cards-widget */
/* .rotating-cards-widget {
  --primary: #b78d65;
  --light: #f8f8f8;
  --dark: #252525;
  --rotate-speed: 40;
  --easing: cubic-bezier(0, 0.37, 1, 0.63);
  display: block;
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  position: relative;
  aspect-ratio: 1 / 1;
  font-family:
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    sans-serif;
}

.rotating-cards-widget .crop {
  width: 100%;
  height: 100%;
  -webkit-mask-image: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0) 50%,
    rgba(0, 0, 0, 1) 50%,
    rgba(0, 0, 0, 1) 100%
  );
  mask-image: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0) 50%,
    rgba(0, 0, 0, 1) 50%,
    rgba(0, 0, 0, 1) 100%
  );
  position: relative;
  z-index: 2;
}

.rotating-cards-widget #card-list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 3;
  --count: 6;
}

.rotating-cards-widget #card-list:hover * {
  animation-play-state: paused;
}

.rotating-cards-widget li {
  list-style: none;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  animation: rotateCW calc(var(--rotate-speed) * 1s) var(--easing) infinite;
  transform-origin: center center;
  pointer-events: auto;
}

.rotating-cards-widget .card {
  width: 27%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 18px 24px;
  gap: 8px;
  background: var(--light);
  border-radius: 12px;
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.08);
  color: var(--dark);
  animation: rotateCCW calc(var(--rotate-speed) * 1s) var(--easing) infinite;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
  word-break: break-word;
}

.rotating-cards-widget .card:hover {
  background: var(--primary);
  transform: scale(1.05);
}

.rotating-cards-widget .card:hover .model-name,
.rotating-cards-widget .card:hover span {
  color: #ffffff;
}

.rotating-cards-widget a {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}

.rotating-cards-widget .model-name {
  font-weight: 700;
  font-size: 18px;
  color: var(--primary);
  transition: color 0.2s;
}

.rotating-cards-widget .card span:last-child {
  font-size: 14px;
  line-height: 1.4;
  color: var(--dark);
  transition: color 0.2s;
}

.rotating-cards-widget li:nth-child(2),
.rotating-cards-widget li:nth-child(2) .card {
  animation-delay: calc((var(--rotate-speed) / var(--count)) * -1s);
}

.rotating-cards-widget li:nth-child(3),
.rotating-cards-widget li:nth-child(3) .card {
  animation-delay: calc((var(--rotate-speed) / var(--count)) * -2s);
}

.rotating-cards-widget li:nth-child(4),
.rotating-cards-widget li:nth-child(4) .card {
  animation-delay: calc((var(--rotate-speed) / var(--count)) * -3s);
}

.rotating-cards-widget li:nth-child(5),
.rotating-cards-widget li:nth-child(5) .card {
  animation-delay: calc((var(--rotate-speed) / var(--count)) * -4s);
}

.rotating-cards-widget li:nth-child(6),
.rotating-cards-widget li:nth-child(6) .card {
  animation-delay: calc((var(--rotate-speed) / var(--count)) * -5s);
}

@keyframes rotateCW {
  from {
    transform: translate3d(0px, -50%, 0) rotate(-45deg);
  }

  to {
    transform: translate3d(0px, -50%, 0) rotate(-315deg);
  }
}

@keyframes rotateCCW {
  from {
    transform: rotate(45deg);
  }

  to {
    transform: rotate(315deg);
  }
}

.rotating-cards-widget .second-circle {
  position: absolute;
  width: 40%;
  aspect-ratio: 1 / 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: var(--primary);
  opacity: 0.15;
  border-radius: 50%;
  z-index: 1;
}

.rotating-cards-widget .last-circle {
  position: absolute;
  width: 66%;
  aspect-ratio: 1 / 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: var(--primary);
  opacity: 0.08;
  border-radius: 50%;
  z-index: 0;
}

.rotating-cards-widget .center-circle {
  position: absolute;
  width: 12px;
  aspect-ratio: 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: var(--primary);
  border-radius: 50%;
  z-index: 10;
  box-shadow: 0 0 12px rgba(183, 141, 101, 0.6);
  opacity: 0.9;
}

.rotating-cards-widget .mask {
  position: absolute;
  top: 50%;
  left: 0;
  width: 50%;
  height: 85%;
  transform: translateY(-50%);
  background-position: 100% 50%;
  background-repeat: no-repeat;
  animation: pulseGlow 5s linear infinite alternate;
  background-image: radial-gradient(
    100% 100% at 100% 50%,
    rgba(183, 141, 101, 0.35) 0%,
    rgba(183, 141, 101, 0.25) 40%,
    rgba(183, 141, 101, 0.1) 70%,
    rgba(183, 141, 101, 0) 100%
  );
  pointer-events: none;
  z-index: 5;
}

.rotating-cards-widget .mask::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background: var(--primary);
}

@keyframes pulseGlow {
  from {
    background-size: 60%;
  }

  to {
    background-size: 100%;
  }
}

@media (max-width: 1100px) {
  .rotating-cards-widget .card {
    padding: 16px 20px;
  }

  .rotating-cards-widget .model-name {
    font-size: 17px;
  }

  .rotating-cards-widget .card span:last-child {
    font-size: 13.5px;
  }
}

@media (max-width: 900px) {
  .rotating-cards-widget .card {
    padding: 14px 18px;
  }

  .rotating-cards-widget .model-name {
    font-size: 16px;
  }

  .rotating-cards-widget .card span:last-child {
    font-size: 13px;
  }
}

@media (max-width: 700px) {
  .rotating-cards-widget .card {
    padding: 12px 16px;
    width: 28%;
  }

  .rotating-cards-widget .model-name {
    font-size: 15px;
  }

  .rotating-cards-widget .card span:last-child {
    font-size: 12.5px;
  }

  .rotating-cards-widget .second-circle {
    width: 44%;
  }

  .rotating-cards-widget .last-circle {
    width: 70%;
  }
}

@media (max-width: 550px) {
  .rotating-cards-widget .card {
    padding: 10px 14px;
    width: 30%;
    gap: 5px;
  }

  .rotating-cards-widget .model-name {
    font-size: 14px;
  }

  .rotating-cards-widget .card span:last-child {
    font-size: 11.5px;
    line-height: 1.3;
  }

  .rotating-cards-widget .mask {
    height: 75%;
  }

  .rotating-cards-widget .center-circle {
    width: 10px;
  }
}

@media (max-width: 420px) {
  .rotating-cards-widget .card {
    padding: 8px 10px;
    width: 32%;
    border-radius: 10px;
  }

  .rotating-cards-widget .model-name {
    font-size: 12.5px;
  }

  .rotating-cards-widget .card span:last-child {
    font-size: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .rotating-cards-widget .mask {
    height: 70%;
  }

  .rotating-cards-widget .second-circle {
    width: 46%;
  }

  .rotating-cards-widget .last-circle {
    width: 74%;
  }
}

@media (max-width: 360px) {
  .rotating-cards-widget .card {
    padding: 6px 8px;
    width: 34%;
    gap: 4px;
  }

  .rotating-cards-widget .model-name {
    font-size: 11px;
  }

  .rotating-cards-widget .card span:last-child {
    font-size: 9px;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }

  .rotating-cards-widget .mask {
    height: 65%;
  }
}

@media (max-width: 320px) {
  .rotating-cards-widget {
    max-width: 320px;
  }

  .rotating-cards-widget .card {
    padding: 5px 6px;
    width: 36%;
    border-radius: 8px;
  }

  .rotating-cards-widget .model-name {
    font-size: 10px;
  }

  .rotating-cards-widget .card span:last-child {
    font-size: 8.5px;
    line-height: 1.2;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }

  .rotating-cards-widget .mask {
    height: 60%;
  }

  .rotating-cards-widget .mask::after {
    width: 1.5px;
  }

  .rotating-cards-widget .center-circle {
    width: 8px;
  }
}

@media (hover: hover) {
  .rotating-cards-widget .card:hover {
    background: var(--primary);
    transform: scale(1.05);
  }
} */
.wns-swiper {
  margin-top: 30px;
    height: 550px;
}
 
.wns-swiper .swiper-wrapper {
  align-items: stretch;
}
 
.wns-swiper .swiper-slide {
  display: flex;
  height: auto;
}
 
.wns-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #1f1f1f;
}
 
.wns-media {
  height: clamp(215px, 25vw, 320px);
  flex-shrink: 0;
}
 
.wns-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
 
.wns-content {
  flex: 1;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  padding: clamp(18px, 2vw, 30px);
 
  /* display: flex;
  flex-direction: column;
  justify-content: center; */
}
 
.wns-content p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.read-more-btn{
  margin-top:auto;
  font-size: 16px;
  font-weight: 600;
}
/* ------------------ Services Section End ------------------ */



/* ------------------ Expertise Section Start ------------------ */
.expertise_left {
  min-height: 400px;
}
.expertise_img {
  object-fit: cover;
}
/* ------------------ Expertise Section End ------------------ */



/* ------------------ Testimonial Section Start  ------------------ */

.testimonial-section {
  /* padding: 4rem 5%; */
  text-align: center;
  width: 100%;
  overflow: hidden;
}

.section-title {
  font-size: clamp(2.2rem, 6vw, 3.2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 3.5rem;
  color: #252525;
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #b78d65, transparent);
  border-radius: 4px;
}
/* .section-title span {
  color: #b78d65;
  font-weight: 700;
  background: linear-gradient(145deg, #b78d65, #c49a6c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
} */

/* carousel container */
.carousel {
  position: relative;
  /* max-width: 1080px; */
  margin: 0 auto;
  overflow: hidden; /* ← masks the track for smooth slide */
  padding: 1rem 0 2rem 0;
  /* border-radius: 48px 48px 32px 32px; */
}

.track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform;
  cursor: grab;
}
.track:active {
  cursor: grabbing;
}

/* card – modern glass with depth */
.cardtest {
  flex: 0 0 320px; /* fixed base width, will grow slightly on active */
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  background: linear-gradient(145deg, #ffffff, #fefaf7);
  border-radius: 32px;
  padding: 2.5rem 2rem 2rem 2rem;
  box-shadow: 0 20px 35px -8px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  opacity: 0.8;
  transform: scale(0.92);
  border: 1px solid rgba(255, 255, 255, 0.7);
  display: flex;
  flex-direction: column;
  position: relative;
  backdrop-filter: blur(4px);
}

.cardtest::before {
  content: "“";
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 6rem;
  font-family: serif;
  line-height: 1;
  color: #dab692;
  opacity: 0.2;
  z-index: 1;
  pointer-events: none;
}

.cardtest.active {
  opacity: 1;
  transform: scale(1);
  background: white;
  box-shadow: 0 30px 50px -12px rgba(183, 141, 101, 0.28);
  border: 1px solid #b78d65;
  border-top: 5px solid #b78d65;
}

.quote {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #3a3a3a;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
  font-weight: 400;
  flex: 1;
}

.client {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
  border-top: 1px dashed rgba(183, 141, 101, 0.3);
  padding-top: 1.2rem;
}

.client img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #b78d65;
  box-shadow: 0 6px 14px rgba(183, 141, 101, 0.3);
  transition: 0.2s;
}
.cardtest.active .client img {
  border-color: #901225;
}

.client h4 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: #252525;
  letter-spacing: -0.3px;
}

.client span {
  font-size: 0.85rem;
  color: #6f6f6f;
  display: block;
  font-weight: 400;
}

.stars {
  color: #e6b800; /* warm gold */
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-top: 5px;
  filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.2));
}

/* navigation arrows — soft & floating */
.arrow1 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #b78d65;
  font-size: 1.8rem;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.2s;
  border: 1px solid rgba(255, 255, 255, 0.9);
  line-height: 1;
}
.arrow1:hover {
  background: #b78d65;
  color: white;
  box-shadow: 0 12px 24px rgba(183, 141, 101, 0.4);
  transform: translateY(-50%) scale(1.05);
}
.prev {
  left: 0;
}
.next {
  right: 0;
}

/* dots – minimal & elegant */
.dots {
  margin-top: 2.5rem;
  display: flex;
  gap: 12px;
  justify-content: center;
}
.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: #d9c5b4;
  border-radius: 50%;
  transition: all 0.3s;
  cursor: pointer;
  border: 1px solid transparent;
}
.dot.active {
  background: #b78d65;
  transform: scale(1.3);
  box-shadow: 0 0 0 3px rgba(183, 141, 101, 0.2);
}

/* extra flair: floating shapes */
.carousel::after,
.carousel::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: #dab692;
  opacity: 0.1;
  border-radius: 50%;
  z-index: -1;
  filter: blur(60px);
}
/* .carousel::before {
  top: -30px;
  left: -40px;
}
.carousel::after {
  bottom: -40px;
  right: -30px;
  background: #901225;
  opacity: 0.06;
} */

/* responsive */
@media (max-width: 800px) {
  .track {
    gap: 16px;
  }
  .cardtest  {
    flex: 0 0 280px;
    padding: 2rem 1.5rem;
  }
  .arrow1 {
    width: 42px;
    height: 42px;
    font-size: 1.4rem;
  }
  .prev {
    left: -6px;
  }
  .next {
    right: -6px;
  }
}

@media (max-width: 550px) {
  .cardtest  {
    flex: 0 0 260px;
  }
  .arrow1 {
    display: flex;
  } /* keep visible, but smaller */
  .prev {
    left: -2px;
  }
  .next {
    right: -2px;
  }
  .section-title {
    margin-bottom: 2rem;
  }
}

/* autoplay hint subtle */
.testimonial-section:hover .arrow1 {
  opacity: 1;
}

/* Testimonial Section End */
