@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ------------ NAVBAR SECTION STARTS ------------ */
/* NAVBAR BACKGROUND */
.bg_navbar {
  background-color: #0b1d33;
}

/* LOGO */
.logo_img {
  max-width: 100%;
  filter: brightness(1.8);
}

/* Desktop */
.navbar-brand {
  width: 250px;
  padding-right: 90px;
}

/************* MOBILE FIXES *************/
@media (max-width: 575px) {
  .navbar-brand {
    width: 150px !important;
    padding-right: 0 !important;
  }

  .logo_img {
    max-width: 85% !important;
  }

  .navbar {
    padding: 10px 25px !important;
  }

  .navbar-toggler {
    margin-left: auto !important;
  }

  .bg_navbar {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

/************* IMAGE RESPONSIVE *************/
.navbar-nav {
  position: relative;
}

/************* DROPDOWN BEHAVIOR *************/
/* Desktop hover */
@media (min-width: 992px) {
  .bg_navbar {
    position: relative;
    z-index: 1000;
  }
  .mega-dropdown {
    position: static;
  }

  .mega-dropdown .dropdown-menu {
    position: absolute;
    /* top: 206%; */
    top: 55px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.25s ease;
  }

  .mega-dropdown .dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  /* MEGA MENU BOX */
  .mega-menu {
    min-width: 920px;
    max-width: 1050px;
    padding: 0px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.18);
  }

  .mega-main,
  .mega-list {
    list-style: none;
  }
  .mega-wrapper {
    align-items: flex-start;
  }

  .mega-left,
  .mega-right {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .mega-left {
    padding: 18px 22px;
    border-radius: 12px;
  }

  .mega-right {
    padding-top: 25px;
    padding-bottom: 25px;
    position: relative;
  }

  .mega-tab {
    padding: 12px 14px;
    cursor: pointer;
    border-radius: 8px;
    transition: 0.25s;
  }

  .mega-tab.active,
  .mega-tab:hover {
    background: rgba(231, 68, 93, 0.12);
    color: #e7445d;
  }

  .mega-panel {
    display: none;
    border-left: 1px solid #d4d4d4;
  }
  .mega-panel.active {
    display: block;
  }

  .mega-list li {
    padding: 4px 0;
    font-size: 14px;
  }

  .mega-list a {
    text-decoration: none;
    color: #1f2937;
    transition: 0.25s;
  }

  .mega-list a:hover {
    color: #e7445d;
    transform: translateX(4px);
  }
}

/* For Mobile dropdown */
@media (max-width: 991px) {
  .mega-dropdown .dropdown-menu {
    position: static !important;
    transform: none !important;
    left: auto !important;
    right: auto !important;
    width: 100%;
    max-width: 100%;
    margin: 0;
    border-radius: 0;
  }

  /* prevent overflow from navbar */
  .navbar,
  .navbar-collapse,
  .dropdown-menu {
    overflow-x: hidden;
  }

  .dropdown-menu.mega-menu {
    background: #2f3437;
    padding: 0;
  }

  .mega-wrapper {
    display: block;
  }

  .mega-left,
  .mega-right {
    max-width: 100%;
    padding: 0;
    border: none;
  }

  /* TAB HEADER */
  .mega-tab {
    padding: 16px 18px;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #2f3437;
  }

  /* PLUS / MINUS */
  .mega-tab::after {
    content: "+";
    font-size: 25px;
    transition: transform 0.2s ease;
  }

  .mega-tab.active::after {
    content: "–";
    font-size: 25px;
  }
  .mega-tab.active {
    color: #e7445d;
  }

  /* ACCORDION BODY */
  .mega-panel {
    display: none;
    background: #262a2d;
  }

  .mega-panel.active {
    display: block;
  }

  .mega-list li {
    padding: 12px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .mega-list a {
    color: #ddd;
    font-size: 13px;
    transition: all 0.25s ease;
    text-decoration: none;
    display: block;
  }

  .mega-list a:hover {
    color: #e7445d;
  }
}

/* -------------------------------------------------------------------------- */
@media (min-width: 1118px) and (max-width: 1175px) {
  .font-nav {
    font-size: 15px !important;
  }
  .animated-button1 {
    font-size: 15px !important;
    padding: 14px 30px !important;
  }
}
@media (min-width: 992px) and (max-width: 1117px) {
  .font-nav {
    font-size: 14px !important;
    padding: 0px 6px !important;
  }
  .animated-button1 {
    font-size: 14px !important;
    padding: 13px 25px !important;
  }
  .logo_img{
    max-width: 85%;
  }
}

@media (min-width: 576px) and (max-width: 991px){
  .logo_img{
    max-width: 85% ;
  }
}

/* -------------------------------------------------------------------------- */

/* Hamburger animation */
.animated-toggler .navbar-toggler-icon {
  --w: 24px;
  --h: 2px;
  --gap: 7px;
  background: #fff;
  width: var(--w);
  height: var(--h);
  position: relative;
  transition: background 0.2s ease;
}

.animated-toggler .navbar-toggler-icon::before,
.animated-toggler .navbar-toggler-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: var(--w);
  height: var(--h);
  background: #fff;
  transition: transform 0.25s ease, top 0.25s ease;
}

.animated-toggler .navbar-toggler-icon::before {
  top: calc(-1 * var(--gap));
}

.animated-toggler .navbar-toggler-icon::after {
  top: var(--gap);
}

.animated-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.animated-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.animated-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

/***** CONTACT-US button Animation *****/
.animated-button1 {
  background-color: #e5ccd01f;
  padding: 14px 35px;
  display: inline-block;
  -webkit-transform: translate(0%, 0%);
  transform: translate(0%, 0%);
  overflow: hidden;
  color: #fff;
  font-size: 17px;
  text-align: center;
  text-decoration: none;
}

.animated-button1::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #ffe1e5;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}

.animated-button1:hover::before {
  opacity: 0.2;
}

.animated-button1 span {
  position: absolute;
}

.animated-button1 span:nth-child(1) {
  top: 0px;
  left: 0px;
  width: 100%;
  height: 2px;
  background: linear-gradient(to left, rgba(43, 8, 8, 0), #e7445d);
  -webkit-animation: 2s animateTop linear infinite;
  animation: 2s animateTop linear infinite;
}

@keyframes animateTop {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

.animated-button1 span:nth-child(2) {
  top: 0px;
  right: 0px;
  height: 100%;
  width: 2px;
  background: linear-gradient(to top, rgba(43, 8, 8, 0), #e7445d);
  -webkit-animation: 2s animateRight linear -1s infinite;
  animation: 2s animateRight linear -1s infinite;
}

@keyframes animateRight {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

.animated-button1 span:nth-child(3) {
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, rgba(43, 8, 8, 0), #e7445d);
  -webkit-animation: 2s animateBottom linear infinite;
  animation: 2s animateBottom linear infinite;
}

@keyframes animateBottom {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

.animated-button1 span:nth-child(4) {
  top: 0px;
  left: 0px;
  height: 100%;
  width: 2px;
  background: linear-gradient(to bottom, rgba(43, 8, 8, 0), #e7445d);
  -webkit-animation: 2s animateLeft linear -1s infinite;
  animation: 2s animateLeft linear -1s infinite;
}

@keyframes animateLeft {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}

/* ------------ NAVBAR SECTION ENDS ------------ */

/* ------------ FOOTER SECTION STARTS ------------ */
.logo {
  display: inline-block;
  width: 200px;
}

.footer_links {
  font-size: 16px;
}

.footer_links:hover {
  color: #e7445d !important;
  padding-right: 15px;
}

.footer-shape {
  font-size: 13px;
}

.icon-color {
  color: #e7445d;
}
/* ------------ FOOTER SECTION ENDS ------------ */

/* ------------ HOME SECTION STARTS ------------ */
/********* Hero section *********/
.hero_section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero_video {
  width: 100%;
  object-fit: cover;
  display: none;
}
@media (min-width: 1281px) {
  .video-lg {
    display: block;
  }
}

@media (min-width: 769px) and (max-width: 1280px) {
  .video-md {
    display: block;
    /* height: 650px; */
  }
}

@media (max-width: 768px) {
  .video-sm {
    display: block;
    /* height: 450px; */
  }
}

/********** About Section **********/
.custom-about-section {
  overflow: hidden;
}

.ls-2 {
  letter-spacing: 2px;
}

.lead-text {
  line-height: 1.8;
}

.icon-box {
  width: 40px;
  height: 40px;
  color: #e7445d;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 1.1rem;
  transition: 0.3s;
}

.icon-box:hover {
  background-color: #e7445d;
  color: #fff;
}

.image-container {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.image-container img {
  display: block;
  transition: transform 0.5s ease;
  object-fit: cover;
}

@media (max-width: 575px) {
  .custom-about-section {
    padding-left: 25px !important;
    padding-right: 25px !important;
  }
}

/********** Service Section **********/
.service-tabs {
  display: flex;
  /* justify-content: center; */
  gap: 18px;
  list-style: none;
  margin-bottom: 35px;
}

.service-tabs li {
  padding: 12px 20px;
  border-radius: 8px;
  border: 1px solid #e7445d;
  cursor: pointer;
  font-size: 15px;
  color: #e7445d;
  transition: 0.3s ease;
}

.service-tabs li.active {
  background: #e7445d;
  color: #fff;
  border-color: #e7445d;
  font-weight: 600;
}

.service-tabs li:hover {
  transform: translateY(-3px);
}

.tab-content {
  display: none;
}

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

.swiper {
  width: 100%;
  padding: 20px 0;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 150px;
  font-weight: 600;
}

.service-box {
  border: 1px solid #cfcfcf;
  border-radius: 12px;
  align-items: center;
  transition: 0.3s ease;
  min-height: 300px;
}

.service-box h5 {
  margin-left: 5px;
  margin-right: 5px;
  text-align: center;
  font-size: 16px;
  color: #e7445d;
}

.service-img {
  width: 100%;
  margin-bottom: 15px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.swiper-btn-prev,
.swiper-btn-next {
  width: 50px;
  height: 50px;
  background: #ffffff10;
  backdrop-filter: blur(5px);
  border: 2px solid #666;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 10;
  transition: 0.3s;
}

.swiper-btn-prev img,
.swiper-btn-next img {
  width: 20px;
}

.swiper-btn-prev {
  left: 0px;
  top: 145px;
}

.swiper-btn-next {
  right: 0px;
  top: 145px;
}

.swiper-btn-prev:hover,
.swiper-btn-next:hover {
  background: #e7445d;
  border-color: #e7445d;
  color: #fff;
}

.swiper-btn-prev:hover img,
.swiper-btn-next:hover img {
  filter: invert(1);
}

@media (max-width: 768px) {
  .service-tabs {
    flex-direction: column;
    gap: 12px;
    padding: 0 10px;
  }

  .service-tabs li {
    width: 100%;
    text-align: center;
  }

  .swiper-btn-prev {
    left: 0px;
    top: 150px;
  }

  .swiper-btn-next {
    right: 0px;
    top: 150px;
  }
}

@media (max-width: 575px) {
  .services-wrapper {
    padding: 35px 25px !important;
  }
}

/********** Industry Solutions Section **********/
.panel-1 {
  background-image: url("../img/IndustrySolutions/01Tourism.jpg");
}
.panel-2 {
  background-image: url("../img/IndustrySolutions/02MiningAlliedServices.jpg");
}
.panel-3 {
  background-image: url("../img/IndustrySolutions/03Industry&Trade.jpg");
}
.panel-4 {
  background-image: url("../img/IndustrySolutions/04Healthcare.jpg");
}
.panel-5 {
  background-image: url("../img/IndustrySolutions/05Education.jpg");
}
.panel-6 {
  background-image: url("../img/IndustrySolutions/06Govt&Public.jpg");
}
.panel-7 {
  background-image: url("../img/IndustrySolutions/07Agriculture.jpg");
}

.industry-wrapper {
  display: flex;
  height: 650px;
  overflow: hidden;
  border-radius: 12px;
}

.industry-item {
  flex: 1;
  position: relative;
  background-size: cover;
  background-position: center;
  transition: 0.8s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.industry-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
  z-index: 1;
}

.industry-title {
  writing-mode: vertical-rl;
  font-size: 30px;
  font-weight: 600;
  color: #fff;
  z-index: 2;
}

.industry-info {
  position: absolute;
  bottom: 25px;
  left: 25px;
  z-index: 3;
  color: #fff;
  display: none;
  animation: fadeUp 0.8s ease forwards;
}

.industry-info h3 {
  margin: 0 0 10px 0;
  font-size: 35px;
  font-weight: 700;
  color: #fff;
}

.industry-info ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.industry-info ul li {
  padding-left: 20px;
  position: relative;
  font-size: 18px;
  margin-bottom: 6px;
}

.industry-info ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.industry-wrapper:hover .industry-item {
  flex: 1;
}
.industry-item:hover {
  flex: 3 !important;
}
.industry-item:hover .industry-info {
  display: block;
}
.industry-item:hover .industry-title {
  display: none;
}

/* MOBILE VIEW */
@media (max-width: 768px) {
  .industry-wrapper {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    height: 420px;
  }

  .industry-item {
    min-width: 100%;
    height: 420px;
    flex: none !important;
    scroll-snap-align: center;
  }

  .industry-title {
    display: none !important;
  }

  .industry-info {
    display: block !important;
    bottom: 25px !important;
    left: 25px !important;
  }

  .mobile-dots {
    text-align: center;
    margin-top: 12px;
  }

  .mobile-dots span {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 4px;
    border-radius: 50%;
    background: #ddd;
  }

  .mobile-dots .active {
    background: #e7445d;
  }
}

@media (max-width: 575px) {
  .industry_solutions {
    padding: 35px 25px !important;
  }
}

/********** Project Section **********/
.project_section {
  border-radius: 20px;
}

.project-card {
  text-decoration: none;
  display: block;
  transition: 0.35s ease;
}

.project-card:hover {
  transform: translateY(-8px);
}

.project-img-wrapper {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.08);
  transition: 0.35s ease;
}

.project-card:hover .project-img-wrapper {
  box-shadow: 0px 18px 40px rgba(0, 0, 0, 0.12);
}

.project-img-wrapper img {
  width: 100%;
  border-radius: 14px;
  transition: transform 0.4s ease;
}

.project-card:hover img {
  transform: scale(1.06);
}

.project-title {
  margin-top: 15px;
  font-size: 20px;
  font-weight: 600;
  color: #e7445d;
  text-align: center;
  transition: 0.3s;
}

.viewall-btn {
  font-size: 16px;
  border-radius: 10px;
}

@media (max-width: 767px) {
  .project-title {
    text-align: center;
  }
}

/********** Testimonials Section **********/
.testimonialSwiper .swiper-slide {
  display: flex !important;
  height: auto !important;
}

.testimonial-box {
  flex: 1;
  background: #edebeb;
  padding: 30px;
  border-radius: 11px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
}

.client-logo {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #e0e0e0;
}

.client-name {
  font-weight: 700;
  color: #e7445d;
}

.client-role {
  font-size: 14px;
  color: #333;
}

.quote-large {
  font-size: 30px;
  color: #d7c7ff;
}

.rating {
  font-size: 13px;
}

.testimonial-big-text {
  font-size: 1rem;
  line-height: 1.7;
  font-style: italic;
  color: #222;
  margin-top: 10px;
}

@media (max-width: 575px) {
  .testimonial_section {
    padding-left: 25px !important;
    padding-right: 25px !important;
  }
}

/*************** Customer Stories Section ***************/
/* CUSTOMER STORIES */
.stories-header,
.news-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.stories-arrows,
.news-arrows {
  display: flex;
  gap: 14px;
  z-index: 10;
}

.custom-prev,
.custom-next {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #e7445d;
  background: #fff;
  color: #e7445d;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.custom-prev:hover,
.custom-next:hover {
  background: #e7445d;
  color: #fff;
}

.swiper_customer,
.swiper_news {
  position: relative;
}

.slide_customer,
.slide_news {
  height: 460px;
  border-radius: 0px !important;
  overflow: hidden;
  border: none !important;
}

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

.video_div video {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 12px;
}

.slide-title {
  position: absolute;
  bottom: 52px;
  left: 22px;
  color: #fff;
  font-size: 35px;
  z-index: 2;
}

@media (max-width: 991px) {
  .slide_customer,
  .slide_news {
    height: 420px;
  }
  .slide-title {
    font-size: 30px;
  }
}

@media (max-width: 575px) {
  .slide_customer,
  .slide_news {
    height: 380px;
  }
  .slide-title {
    font-size: 28px;
  }
  .stories-section,
  .lts-section2,
  .wns-section2 {
    padding: 35px 25px !important;
  }
}

/***************** NEWS AND INSIGHTS *****************/
.video_div_news {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 12px;
}

.video_div_news img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
}

.video_div_news::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(2, 2, 2, 0.842), rgba(32, 32, 32, 0.007));
}

.video_div_news h3 {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 30px;
  z-index: 2;
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2;
  transition: bottom 0.35s ease, font-size 0.35s ease;
}

.video_div_news p {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  color: #fff;
  font-size: 16px;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.video_div_news:hover h3 {
  font-size: 40px;
}
.news-prev,
.news-next {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #e7445d;
  background: #fff;
  color: #e7445d;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.news-prev:hover,
.news-next:hover {
  background: #e7445d;
  color: #fff;
}
/* ================= DESKTOP HOVER ================= */
@media (min-width: 992px) {
  .video_div_news h3 {
    bottom: 30px;
  }
  .video_div_news:hover h3 {
    bottom: 100px;
    font-size: 40px;
  }

  .video_div_news:hover p {
    opacity: 1;
    transform: translateY(0);
    /* bottom: 30px; */
  }
}

/* ================= MOBILE / TABLET ================= */
@media (max-width: 991px) {
  .video_div_news {
    height: 460px;
  }

  .video_div_news h3 {
    font-size: 35px;
    bottom: 95px;
  }

  .video_div_news p {
    font-size: 15px;
  }

  .swiper-slide-active .video_div_news p {
    opacity: 1;
    transform: translateY(0);
  }
  .swiper-slide:not(.swiper-slide-active) h3 {
    font-size: 22px;
    bottom: 20px;
  }
}

/* ========== SMALLMOBILE ========== */
@media (min-width: 347px) and (max-width: 575px) {
  .video_div_news {
    height: 460px;
  }
  .video_div_news h3 {
    bottom: 100px;
    font-size: 30px;
  }
  .video_div_news:hover h3 {
    font-size: 22px;
    color: #ffffff;
  }
  .news-section {
    padding: 35px 25px !important;
  }
}
@media (max-width: 320px) {
  .video_div_news {
    height: 460px;
  }
  .video_div_news h3 {
    bottom: 120px;
    font-size: 30px;
  }
  .video_div_news:hover h3 {
    font-size: 22px;
    color: #ffffff;
  }
}
/* ------------ HOME SECTION ENDS ------------ */

/* ================== LTS BUSINESS SOLUTION SLIDER ==================  */

/* ===== SECTION ===== */
/* .lts-section {
        padding: 80px 0;
    } */

/* ===== SWIPER ===== */
.lts-swiper {
  margin-top: 30px;
}

/* REMOVE ANY SLIDE BORDER */
.lts-swiper .swiper-slide {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important;
}

.lts-swiper .swiper-wrapper {
  align-items: stretch;
}

.lts-card {
  background: #1f1f1f;
  height: 100%;
  overflow: hidden;
  border-radius: 12px;
}

.lts-media {
  height: 290px;
}

.lts-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lts-content {
  background: #5fa7a7;
  padding: 25px;
  position: relative;
  min-height: 190px;
}

.lts-content h4 {
  color: #fff;
  font-size: 26px;
  margin-bottom: 10px;
}

.lts-content p {
  color: #ddd;
  font-size: 19px;
  max-width: 85%;
  margin-bottom: 0;
}

/* ===== RESPONSIVE ===== */

/* Large screens */
@media (min-width: 1400px) {
  .lts-media {
    height: 320px;
  }
  .lts-content {
    min-height: 180px;
  }
  .lts-content h4 {
    font-size: 29px;
  }
}

/* Laptop */
@media (max-width: 1199px) {
  .lts-media {
    height: 260px;
  }
  .lts-content {
    min-height: 180px;
  }
  .lts-content h4 {
    font-size: 25px;
  }
  .lts-content p {
    font-size: 18px;
  }
}

/* Tablet */
@media (max-width: 991px) {
  /* .lts-section { padding: 60px 0; } */
  .lts-media {
    height: 240px;
  }
  .lts-content {
    padding: 22px;
    min-height: 170px;
  }
  .lts-content h4 {
    font-size: 23px;
  }
  .lts-content p {
    font-size: 17px;
    max-width: 100%;
  }
}

/* Mobile */
@media (max-width: 639px) {
  /* .lts-section { padding: 50px 0; } */
  .lts-media {
    height: 220px;
  }
  .lts-content {
    padding: 20px;
    min-height: auto;
  }
  .lts-content h4 {
    font-size: 22px;
  }
  .lts-content p {
    font-size: 16px;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .lts-media {
    height: 215px;
  }
  .lts-content h4 {
    font-size: 21px;
  }
  .lts-content p {
    font-size: 15px;
  }
}

/* ================== WHAT'S NEW SECTION ================== */
.wns-swiper {
  margin-top: 30px;
}

.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;
}
