body {
  font-family: "Mulish", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  background-color: #08060a;
  background-image: url('../images/body-bg.webp');
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: top center;
}

a {
  text-decoration: none;
  transition: all 0.25s ease-in-out;
}

.btn {
  border: 0;
}

.btn-check:focus+.btn,
.btn:focus {
  box-shadow: none;
}

.gradient-text {
  background: linear-gradient(90deg, #f857a6, #a62af8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.gradient-button {
  color: #fff;
  background: linear-gradient(135deg, #f857a6, #a62af8);
  background-size: 150% 100%;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.4s ease, background-position 0.8s ease;
  box-shadow: 0 4px 15px rgba(246, 56, 196, 0.4);
}

.gradient-button:hover {
  box-shadow: 0 8px 25px rgba(166, 42, 248, 0.6);
  background-position: right center;
}


.intc-tabs-tbns-wrapper {
  position: relative;
  display: flex;
  background: #f0f0f0;
  border-radius: 50px;
  overflow: hidden;
  width: 500px;
  padding: 5px 10px;
  margin: 0 auto;
}

.intc-tabs-tbns {
  position: relative;
  display: flex;
  overflow: hidden;
  width: 100%;
}

.intc-tabs-tbns input[type="radio"] {
  display: none;
}

.intc-tab-content {
  display: none;
}

.intc-tab-content.active {
  display: block;
  animation: fadeIn 0.5s ease;
}


.intc-tab-label {
  flex: 1;
  text-align: center;
  line-height: 70px;
  font-weight: 500;
  cursor: pointer;
  z-index: 2;
  position: relative;
  transition: color 0.4s;
  color: #333;
}

.intc-tab-slider {
  position: absolute;
  top: 5px;
  bottom: 5px;
  width: 33.33%;
  background: linear-gradient(135deg, #f857a6, #a62af8);
  border-radius: 50px;
  z-index: 1;
  transition: 0.4s ease;
  left: 0;
}

/* Move slider based on which input is checked */
#intc-tab2:checked~.intc-tab-slider {
  left: 33.33%;
}

#intc-tab3:checked~.intc-tab-slider {
  left: 66.66%;
}

/* Change text color on active tab */
#intc-tab1:checked+.intc-tab-label,
#intc-tab2:checked+.intc-tab-label,
#intc-tab3:checked+.intc-tab-label {
  color: #fff;
}

.font-light {
  font-weight: 300;
}

.font-medium {
  font-weight: 500;
}

.flex {
  display: flex;
}

@keyframes burst {
  0% {
    transform: translate(-50%, -50%) scale(0.2);
    opacity: 0.8;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.5;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 0;
  }
}

@keyframes mouseDown {

  20%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(20px);
  }

  80% {
    transform: translateY(-3px);
  }
}

@keyframes slideDown {
  0% {
    opacity: 0;
    transform: translateY(-100px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-30px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

@keyframes rippleHover {
  to {
    transform: scale(4);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

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

@keyframes blink {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.navbar-brand {
  position: relative;
  z-index: 9999;
}

header.app-header-wrapper {
  background: transparent;
}

.app-header {
  display: flex;
  width: 100%;
  justify-content: space-between;
  justify-items: center;
  align-items: center;
  margin-top: 29px;
}

.app-navbar-wrapper {
  position: fixed;
  width: auto;
  left: 50%;
  top: 34px;
  z-index: 9999;
  display: flex;
  transform: translateX(-50%);
}

.app-navbar {
  margin: 0 auto;
  display: flex;
  background: rgba(130, 130, 130, 0.3);
  align-items: center;
  height: 70px;
  padding-right: 20px;
  padding-left: 20px;
  border-radius: 50px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  position: relative;
}

.app-navbar::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 50px;
  background: linear-gradient(90deg, #666666, #343434);
  -webkit-mask: linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}


.app-navbar-nav {
  margin: 0;
  padding: 0;
  list-style: none;
}

.app-navbar-nav li {
  display: inline-block;
  border-right: 1px solid #D9D9D9;
  line-height: 0.7;
}

.app-navbar-nav li:last-child {
  border-right: 0 none;
}

.app-navbar-nav li a {
  font-size: 14px;
  color: #A4A4A4;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  padding-right: 15px;
}

.app-navbar-nav li a:hover {
  color: #fff;
}

.app-navbar-nav li.current-menu-item a {
  color: #fff;
  font-weight: 700;
}

.app-navbar-nav li.current-menu-item.menu-item-type-custom a {
  color: #A4A4A4;
  font-weight: 400;
}

.app-header-quick-links a {
  font-size: 54px;
  font-family: "Caveat", cursive;
  background: -webkit-linear-gradient(#F1D93C, #F5B40B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-right: 3px;
  position: relative;
  z-index: 9999;
}


/* Footer styles - to be included with your theme */

/* Contact Form Section Styles */

.contact-form-section {
  padding: 0px 0 40px;
  position: relative;
  color: #ffffff;
}

/* Contact content */
.contact-content {
  padding-right: 20px;
}

.contact-content h2 {
  font-size: 62px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 40px;
  color: #ffffff;
}

.contact-content .highlight {
  color: #c43df6;
  /* Purple color for "Journey!" */
  font-weight: 700;
}

/* Form styling */
.contact-form .form-group {
  margin-bottom: 30px;
  position: relative;
  line-height: 0;
}

.contact-form .form-group::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1px;
  /* border thickness */
  border-radius: 10px;
  background: linear-gradient(90deg, #666666, #343434);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 9;
}

.wpcf7-form-control-wrap {
  position: relative;
  display: block;
}

.contact-form input:active,
.contact-form input:focus,
.contact-form textarea:active,
.contact-form textarea:focus {
  outline: none;
  box-shadow: none;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background-color: rgba(217, 217, 217, 0.1);
  backdrop-filter: blur(35px);
  border: none;
  border-radius: 10px;
  padding: 25px;
  color: #ffffff;
  font-size: 16px;
  line-height: 18px;
}

.contact-form input[type="submit"] {
  width: auto;
  padding: 20px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #666666;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  box-shadow: none;
}

.contact-form textarea {
  resize: none;
  height: 150px;
}

/* Submit button */
.btn-submit {
  background: linear-gradient(to right, #e437f1, #8354f9);
  color: #ffffff;
  border: none;
  border-radius: 30px !important;
  padding: 12px 35px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 150px;
}

.btn-submit:hover {
  opacity: 0.9;
  transform: translateY(-3px);
  box-shadow: 0 7px 15px rgba(228, 55, 241, 0.3);
}

.wpcf7-not-valid-tip {
  color: #dc3232;
  font-size: 14px;
  margin-top: 0;
  position: absolute;
  bottom: -12px;
  left: 20px;
}

/* Chef image */
.contact-image {
  display: flex;
  justify-content: right;
  align-items: center;
  height: 100%;
  text-align: right;
  margin-top: -50px;
}

.contact-image img {
  max-width: 100%;
  height: auto;
}

/* Copyright note */
.footer-copyrigh-wrapper {
  background-color: rgba(100, 100, 100, 0.1);
  backdrop-filter: blur(35px);
  padding-top: 30px;
  padding-bottom: 30px;
}

.copyright-note {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #888888;
  font-size: 12px;
}

.copyright-icon {
  font-size: 18px;
  margin-right: 10px;
  color: #c43df6;
  /* Purple color for icon */
}

.copyright-note p {
  margin: 0;
  font-size: 18px;
  font-weight: 300;
}

/* Animation for chef image */


/* Form validation styling */
.contact-form input:invalid,
.contact-form textarea:invalid {
  box-shadow: none;
}


/* Loading state for form submission */
.form-loading .btn-submit {
  opacity: 0.7;
  pointer-events: none;
  position: relative;
}

.form-loading .btn-submit::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  top: calc(50% - 10px);
  right: 15px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Responsive styles */
@media (max-width: 991px) {
  .contact-content {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .contact-image {
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .contact-form-section {
    padding: 60px 0 30px;
  }

  .contact-content h2 {
    font-size: 36px;
  }

  .contact-image {
    max-width: 300px;
  }

  .copyright-note {
    margin-top: 40px;
  }
}

.app-footer-wrapper {
  padding-top: 50px;
  padding-bottom: 20px;
  position: relative;
  color: #ffffff;
  /* background-color: rgba(100, 100, 100, 0.1);
  backdrop-filter: blur(35px); */
}

/* Logo styling */
.footer-brand img {
  max-width: 180px;
  margin-bottom: 30px;
}

/* Address section */
.footer-address h3,
.footer-contact h3,
.footer-menu h3 {
  font-family: "Mulish", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #F1D93C;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.footer-address p {
  font-family: "Mulish", sans-serif;
  font-size: 14px;
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Contact section */
.footer-contact {
  margin-top: 20px;
  margin-bottom: 20px;
}

.footer-contact a {
  color: #ffffff;
  font-size: 14px;
  text-decoration: none;
}

.footer-contact a:hover {
  color: #F1D93C;
  text-decoration: underline;
}

/* Sitemap link */
.footer-sitemap {
  margin-top: 15px;
}

.footer-sitemap a {
  color: #ffffff;
  font-size: 14px;
  text-decoration: none;
}

.footer-sitemap a:hover {
  color: #F1D93C;
  text-decoration: underline;
}

/* Menu sections */
.footer-menu {
  padding-left: 20px;
  margin-top: 70px;
}

.footer-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-menu ul li {
  margin-bottom: 5px;
  position: relative;
  padding-left: 15px;
}

.footer-menu ul li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #F1D93C;
}

.footer-menu ul li a {
  color: #ffffff;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.footer-menu ul li a:hover {
  color: #F1D93C;
}

/* Copyright section */
.footer-copyright {
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
  text-align: center;
}

.footer-copyright p {
  font-size: 12px;
  color: #ffffff;
  opacity: 0.7;
  letter-spacing: 0.5px;
}

/* Responsive styles */
@media (max-width: 991px) {
  .footer-menu {
    padding-left: 0;
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  .app-footer-wrapper {
    padding-top: 40px;
  }

  .footer-menu {
    margin-top: 30px;
  }

  .footer-copyright {
    margin-top: 30px;
  }
}


/* Banner/Hero Section Styles */

.hero-banner {
  padding: 50px 0 80px;
  position: relative;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-banner::before {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-image: url('../images/banner-pattern.webp');
  background-position: bottom 50px right 70px;
  background-repeat: no-repeat;
  content: "";
  z-index: 1;
}


/* Banner content */
.banner-content {
  color: #ffffff;
  position: relative;
  z-index: 2;
  margin-top: 50px;
}

.banner-content h1 {
  font-size: 60px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 30px;
}

.banner-content .highlight {
  color: #F1D93C;
  font-weight: 800;
  /* Yellow color for "SOLVING" */
}

.banner-content p {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 40px;
}

/* Banner buttons */
.banner-buttons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  position: relative;
  z-index: 999;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  min-width: 150px;
}

.btn-portfolio {
  background: linear-gradient(to right, #e437f1, #c43df6);
  color: #ffffff;
  border: none;
}

.btn-portfolio:hover {
  opacity: 0.9;
  transform: translateY(-3px);
  box-shadow: 0 7px 15px rgba(228, 55, 241, 0.3);
  color: #ffffff;
}

.btn-services {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-services:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  color: #ffffff;
}

/* Banner image */
.banner-image-wrapper {
  position: relative;
  padding-top: 70px;
  padding-left: 70px;
  padding-right: 70px;
}

.banner-image-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  text-align: right;
}

.banner-image-bg img {
  max-width: 490px;
}

.banner-image {
  text-align: right;
  position: relative;
  z-index: 99;
}

.banner-image img {
  animation: float 3s ease-in-out infinite;
  max-width: 360px;
}

/* Client logos section */
.client-logos-wrapper {
  background-color: rgba(217, 217, 217, 0.1);
  padding-top: 10px;
  padding-bottom: 10px;
  margin-top: -150px;
  backdrop-filter: blur(35px);
}

/* .client-logos {
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 120px;
  position: relative;
  z-index: 2;
} */

/* .logo-item {
  opacity: 1;
  transition: all 0.3s ease;
  filter: grayscale(100%);
} */

.logo-item:hover {
  opacity: 1;
  /* filter: grayscale(0%); */
}

.logo-item img {
  max-height: 91px;
  width: auto;
  height: auto;
}

/* Floating animation for the banner image */


/* Gold Portfolio text in header */
.app-header-quick-links a {
  font-size: 54px;
  font-family: "Caveat", cursive;
  background: -webkit-linear-gradient(#F1D93C, #F5B40B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-right: 3px;
  position: relative;
  z-index: 9999;
}

/* Responsive styles */
@media (max-width: 991px) {
  .hero-banner {
    padding: 100px 0 60px;
  }

  .banner-content h1 {
    font-size: 42px;
  }

  .banner-image {
    margin-top: 50px;
  }

  .client-logos {
    gap: 30px;
  }
}

@media (max-width: 767px) {
  .hero-banner {
    padding: 80px 0 50px;
    text-align: center;
  }

  .banner-content h1 {
    font-size: 36px;
  }

  .banner-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .banner-buttons {
    justify-content: center;
  }

  .client-logos {
    margin-top: 0px;
  }
}


/* Portfolio Section Styles */

.portfolio-section {
  padding: 80px 0;

  color: #ffffff;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 25px;
  letter-spacing: 1px;
}

.section-header .highlight {
  color: #c43df6;
  /* Purple color for "PORTFOLIO" */
}

.section-description {
  max-width: 900px;
  margin: 0 auto;
}

.section-description p {
  font-size: 16px;
  line-height: 1.6;
  color: #A4A4A4;
}

/* Portfolio Grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
  margin-top: 30px;
}

.portfolio-item {
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.portfolio-item:hover {
  transform: translateY(-5px);
}

.portfolio-item-inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.portfolio-item img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-item:hover img {
  transform: scale(1.05);
}

.portfolio-item-title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 20px;
  padding-bottom: 30px;
  display: flex;
  align-items: center;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

span.link-icon {
  position: absolute;
  right: 20px;
  background: linear-gradient(100.15deg, #F1D93C 13.61%, #F5B40B 102.33%);
  padding: 4px;
  border-radius: 5px;
  line-height: 0;
  bottom: 30px;
  transition: all 0.3s ease-in-out;
  transform: translate(-50px, 50px);
  opacity: 0;
}

.portfolio-item a:hover span.link-icon {
  transform: translate(0px, 0px);
  opacity: 1;
}

.title-indicator {
  display: inline-block;
  width: 4px;
  height: 20px;
  background-color: #c43df6;
  /* Purple indicator */
  margin-right: 10px;
}


.portfolio-item-title h3 {
  font-size: 24px;
  font-weight: 600;
  margin: 0;
  color: #fff;
  line-height: 24px;
}

/* View All Item */
.portfolio-item.view-all {
  background: rgba(217, 217, 217, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(35px);
  position: relative;
}

.portfolio-item::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1px;
  /* border thickness */
  border-radius: 20px;
  background: linear-gradient(90deg, #666666, #343434);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.view-all-content {
  text-align: center;
}

.view-all-content h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 0px;
  color: #fff;
  transition: all 0.3s ease;
}

.view-all-content h2 {
  font-size: 54px;
  font-weight: 700;
  margin: 0;
  color: #fff;
  transition: all 0.3s ease;
}

.portfolio-item.view-all:hover .view-all-content h3,
.portfolio-item.view-all:hover .view-all-content h2 {
  background: linear-gradient(90deg, #f857a6, #a62af8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* External link icon for second image */
.portfolio-item a::after {
  content: '';
  display: none;
  /* Hidden by default, shown conditionally through JavaScript */
  position: absolute;
  right: 15px;
  bottom: 15px;
  width: 30px;
  height: 30px;
  background-color: #F1D93C;
  border-radius: 5px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="black" viewBox="0 0 16 16"><path d="M5.5 2A.5.5 0 0 0 5 2.5v11a.5.5 0 0 0 .5.5h9a.5.5 0 0 0 .5-.5v-11a.5.5 0 0 0-.5-.5h-9zm0-1h9A1.5 1.5 0 0 1 16 2.5v11a1.5 1.5 0 0 1-1.5 1.5h-9A1.5 1.5 0 0 1 4 13.5v-11A1.5 1.5 0 0 1 5.5 1zM2 4a1 1 0 0 1 1-1h2a.5.5 0 0 1 0 1H3a.5.5 0 0 0-.5.5v8a.5.5 0 0 0 .5.5h8a.5.5 0 0 0 .5-.5V10a.5.5 0 0 1 1 0v2.5A1.5 1.5 0 0 1 11.5 14h-8A1.5 1.5 0 0 1 2 12.5V4z"/><path d="M11.5 3a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-1 0V4h-1a.5.5 0 0 1 0-1h1.5zm-6 0a.5.5 0 0 1 .5.5v9a.5.5 0 0 1-1 0v-9a.5.5 0 0 1 .5-.5z"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 15px;
}

/* Responsive styles */
@media (max-width: 991px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .section-header h2 {
    font-size: 28px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}

/* Client & Testimonials */
.client-and-testimonial-section {
  padding-top: 50px;
  padding-bottom: 90px;
}

.client-and-testimonial-section .section-header h2 {
  font-size: 40px;
  color: #343434;
}

.client-and-testimonial-section .intc-tabs-tbns {
  margin: 0 auto;
}

.intc-tabs-content {
  margin-top: 90px;
}

.client-and-testimonial-section {
  background-color: #fff;
}

.client-grid {
  padding: 40px 20px;
}

.client-grid-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.client-card {
  border: 1px dashed #ddd;
  border-radius: 8px;

  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  height: 150px;
  transition: all 0.3s ease;
}

.client-card a {
  padding: 30px;
  display: block;
}

.client-card a img {
  width: auto;
  max-width: 100%;
  height: auto;
}

.client-card:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.client-logo {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .client-grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .client-grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .client-grid-container {
    grid-template-columns: 1fr;
  }

  .client-card {
    height: 120px;
  }
}

.testimonial-slider {
  padding: 0px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-container {
  position: relative;
  padding: 0 40px;
}

.testimonial-slides-wrapper {
  position: relative;
  overflow: hidden;
  min-height: 400px;
  /* Set a minimum height to prevent layout shift */
}

.testimonial-slide {
  width: 100%;
}

.testimonial-content {
  background-color: #fff;
  border-radius: 8px;
  padding: 0px 30px;
}

.testimonial-header {
  display: table;
  align-items: center;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.testimonial-avatar {
  border-radius: 50%;
  width: 110px;
  height: 110px;
  overflow: hidden;
  margin: 0 auto;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-author-info {
  display: flex;
  flex-direction: column;
}

.testimonial-author-name {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  color: #000;
  margin-top: 20px;
}

.testimonial-author-company {
  font-size: 12px;
  color: #000;
  margin: 5px 0 0 0;
}

.testimonial-text {
  color: #343434;
  line-height: 1.6;
  text-align: justify;
  font-weight: 300;

}

.testimonial-text p {
  margin-bottom: 15px;
}

.testimonial-text p:last-child {
  margin-bottom: 0;
}

/* Navigation arrows */
.testimonial-nav-arrow {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: white;
  border: 1px solid #eee;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.testimonial-nav-arrow:hover {
  background-color: #f5f5f5;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.testimonial-nav-arrow svg {
  color: #555;
}

.testimonial-prev-arrow {
  left: 0;
}

.testimonial-next-arrow {
  right: 0;
}

/* Slide indicators/dots */
.testimonial-indicators {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ccc;
  margin: 0 5px;
  cursor: pointer;
  border: none;
  padding: 0;
  transition: all 0.3s ease;
}

.testimonial-dot.testimonial-dot-active {
  background-color: #666;
  transform: scale(1.2);
}

/* Fade transition animations */
.testimonial-fade-enter {
  transition: opacity 0.5s ease-out;
}

.testimonial-fade-enter-start {
  opacity: 0;
}

.testimonial-fade-enter-end {
  opacity: 1;
}

.testimonial-fade-leave {
  transition: opacity 0s ease-in;
}

.testimonial-fade-leave-start {
  opacity: 1;
}

.testimonial-fade-leave-end {
  opacity: 0;
}

/* Responsive styles */
@media (max-width: 768px) {
  .testimonial-header {
    flex-direction: column;
    text-align: center;
  }

  .testimonial-avatar {
    margin-bottom: 15px;
  }

  .testimonial-slides-wrapper {
    min-height: 500px;
  }
}

@media (max-width: 480px) {
  .testimonial-container {
    padding: 0 20px;
  }

  .testimonial-content {
    padding: 20px;
  }

  .testimonial-slides-wrapper {
    min-height: 600px;
  }
}

.blog-section {
  padding: 40px 20px;
}

.blog-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center;
}

.blog-card {
  flex: 1 1 300px;
  max-width: 380px;
  border-radius: 12px;
  position: relative;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}



.blog-card-image-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
}

.blog-card-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.blog-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0));
  color: white;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-top: 60px;
  transition: all 0.2s ease-in-out 0.2s;
}

.blog-card-title {
  font-size: 22px;
  line-height: 26px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #fff;
  font-weight: 800;
}

.blog-card-description {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 15px;
  opacity: 0.9;
}

.blog-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
}

.btn-blog-readmore-wrapper {
  text-align: center;
  display: flex;
  justify-content: center;
  margin-top: 0px;
  position: absolute;
  width: 100%;
  bottom: -17px;
  left: 50%;
  transform: translate(-50%, 50px);
  opacity: 0;
  transition: all 0.2s ease-in-out 0.2s;
}

.blog-card:hover .btn-blog-readmore-wrapper {
  transform: translate(-50%, 0px);
  opacity: 1;
}

.blog-card:hover .blog-card-content {
  padding-bottom: 40px;
}

.btn-blog-readmore {
  background: linear-gradient(to right, #F1D93C, #F5B40B);
  border-radius: 6px;
  padding: 8px 17px;
  margin-left: 0;
  margin-right: 0;
  display: table;
  float: none;
}

.blog-card-date {
  font-size: 14px;
  font-weight: 500;
}

.blog-card-share-btn {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.blog-card-share-btn:hover {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .blog-container {
    flex-direction: column;
    align-items: center;
  }

  .blog-card {
    width: 100%;
    max-width: 100%;
  }
}

.blog-page {
  padding-bottom: 150px;
  padding-top: 80px;
}

.inner-page-banner-section {
  padding: 50px 0;
  overflow: hidden;
  padding-top: 70px;
}

.inner-page-banner-content {
  padding-right: 20px;
}

.inner-page-banner-section-title {
  font-size: 54px;
  color: #fff;
  margin-bottom: 30px;
  line-height: 1.2;
  font-weight: 400;
}

.inner-page-banner-section-title .inner-page-banner-highlight {
  display: block;
  font-size: 54px;
  background: -webkit-linear-gradient(#F1D93C, #F5B40B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 5px;
  font-weight: 800;
}

.inner-page-banner-description {
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 1.6;
  color: #A4A4A4;
}

.inner-page-banner-actions {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.inner-page-banner-btn {
  padding: 12px 35px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.inner-page-banner-btn-primary {
  background: linear-gradient(to right, #e437f1, #8354f9);
  color: #fff;
  border: none;
}

.inner-page-banner-btn-primary:hover {
  opacity: 0.9;
}

.inner-page-banner-btn-outline {
  border: 1px solid #A4A4A4;
  color: #fff;
  background: transparent;
}

.inner-page-banner-btn-outline:hover {
  border-color: #F5B40B;
  color: #F5B40B;
}

.inner-page-banner-image {
  position: relative;
}

.inner-page-banner-cards-img {
  max-width: 100%;
  height: auto;
  display: block;
  transform: perspective(1000px) rotateY(5deg);
  transition: transform 0.5s ease;
}

.inner-page-banner-cards-img:hover {
  transform: perspective(1000px) rotateY(0deg);
}

/* Responsive styles */
@media (max-width: 991px) {
  .inner-page-banner-content {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .inner-page-banner-section-title,
  .inner-page-banner-section-title .inner-page-banner-highlight {
    font-size: 42px;
  }
}

@media (max-width: 767px) {
  .inner-page-banner-section {
    padding: 60px 0;
  }

  .inner-page-banner-section-title,
  .inner-page-banner-section-title .inner-page-banner-highlight {
    font-size: 36px;
  }

  .inner-page-banner-actions {
    gap: 15px;
    justify-content: center;
  }

  .inner-page-banner-btn {
    width: 100%;
  }
}

/* Team Members Section Styles */

/* Team Page Section Styles */
.team-page-section {
  padding: 80px 0;
  overflow: hidden;
}

.team-page-content {
  padding-right: 20px;
}

.team-page-section-title {
  font-size: 54px;
  color: #fff;
  margin-bottom: 30px;
  line-height: 1;
  font-weight: 700;
}

.team-page-section-title .team-page-highlight {
  display: block;
  font-size: 54px;
  background: -webkit-linear-gradient(#F1D93C, #F5B40B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 5px;
}

.team-page-description {
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 1.6;
  color: #A4A4A4;
}

.team-page-actions {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.team-page-btn {
  padding: 12px 35px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.team-page-btn-primary {
  background: linear-gradient(to right, #e437f1, #8354f9);
  color: #fff;
  border: none;
}

.team-page-btn-primary:hover {
  opacity: 0.9;
}

.team-page-btn-outline {
  border: 1px solid #A4A4A4;
  color: #fff;
  background: transparent;
}

.team-page-btn-outline:hover {
  border-color: #F5B40B;
  color: #F5B40B;
}

.team-page-image {
  position: relative;
}

.team-page-cards-img {
  max-width: 100%;
  height: auto;
  display: block;
  transform: perspective(1000px) rotateY(5deg);
  transition: transform 0.5s ease;
}

.team-page-cards-img:hover {
  transform: perspective(1000px) rotateY(0deg);
}

/* Responsive styles */
@media (max-width: 991px) {
  .team-page-content {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .team-page-section-title,
  .team-page-section-title .team-page-highlight {
    font-size: 42px;
  }
}

@media (max-width: 767px) {
  .team-page-section {
    padding: 60px 0;
  }

  .team-page-section-title,
  .team-page-section-title .team-page-highlight {
    font-size: 36px;
  }

  .team-page-actions {
    gap: 15px;
  }
}

.team-members-section {
  padding-bottom: 80px;
  position: relative;

}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 1px;
}

.section-header .highlight {
  color: #c43df6;
  /* Purple color for "MEMBERS" */
}

/* Team Members Grid */
.team-members-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 90px 25px;
  margin-top: 130px;
}

/* Team Member Card */
.team-member {}

.team-member-inner {
  position: relative;
  border-radius: 12px;

  /* Background color with gradient */
  background-color: rgba(217, 217, 217, 0.1);
  /* Custom gradient border */

  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top-left-radius: 70px;
  backdrop-filter: blur(35px);
}

.team-member-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 12px;
  background: linear-gradient(to right, #e437f1, #8354f9);
  -webkit-mask: linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  border-top-left-radius: 70px;
}

.team-member:hover .team-member-inner {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(196, 61, 246, 0.2);

}

/* Team Member Image */





.team-member-image {
  width: 100%;
  height: 290px;
  position: relative;
}

.team-member-image img {
  position: absolute;
  width: auto;
  height: auto;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.team-member:hover .team-member-image img {
  filter: grayscale(80%);
  /* Slightly reduce the grayscale on hover */
}

/* Divider between image and info */
.team-member-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, #e437f1, #8354f9);
}

/* Team Member Info */
.team-member-info {
  padding: 15px;
  text-align: center;
  position: relative;
  padding-bottom: 45px;
}

.team-member-name {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 5px;
  line-height: 1.2;
}

.team-member-name .highlight {
  color: #F1D93C;
  /* Yellow color for first names */
}

.team-member-position {
  font-size: 12px;
  color: #A4A4A4;
  margin: 0;
  font-weight: 300;
}

p.team-member-position {
  position: absolute;
  background: #272727;
  padding: 8px 14px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  max-width: 90%;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Animation for loading team members */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.team-member {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

/* Stagger animation delay for each team member */
.team-member:nth-child(1) {
  animation-delay: 0.1s;
}

.team-member:nth-child(2) {
  animation-delay: 0.2s;
}

.team-member:nth-child(3) {
  animation-delay: 0.3s;
}

.team-member:nth-child(4) {
  animation-delay: 0.4s;
}

.team-member:nth-child(5) {
  animation-delay: 0.5s;
}

.team-member:nth-child(6) {
  animation-delay: 0.6s;
}

.team-member:nth-child(7) {
  animation-delay: 0.7s;
}

.team-member:nth-child(8) {
  animation-delay: 0.8s;
}

.team-member:nth-child(9) {
  animation-delay: 0.9s;
}

.team-member:nth-child(10) {
  animation-delay: 1.0s;
}

.team-member:nth-child(11) {
  animation-delay: 1.1s;
}

.team-member:nth-child(12) {
  animation-delay: 1.2s;
}

/* Responsive styles */
@media (max-width: 1199px) {
  .team-members-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .team-members-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 90px 20px;
  }

  .section-header {
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .team-members-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 90px 15px;
  }

  .section-header h2 {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .team-members-grid {
    grid-template-columns: 1fr;
    max-width: 280px;
    margin: 0 auto;
  }
}

/* Gallery Section Styles */

.gallery-section {
  padding: 80px 0;
  position: relative;
  color: #ffffff;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 54px;
  font-weight: 300;
  color: #ffffff;
  letter-spacing: 1px;
  margin-bottom: 25px;
}

.section-header span {
  font-weight: 800;
}

/* Section Description */
.section-description {
  max-width: 900px;
  margin: 0 auto 40px;
}

.section-description p {
  font-size: 18px;
  line-height: 1.6;
  color: #A4A4A4;
  text-align: justify;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

div#team-gallery-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}

/* Gallery Items */
.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(196, 61, 246, 0.2);
}

.gallery-link {
  display: block;
  width: 100%;
  height: 100%;
}

.gallery-image {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 66.67%;
  /* 3:2 aspect ratio */
  overflow: hidden;
}

.gallery-image img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image img {
  transform: scale(1.05);
}

/* Gallery Overlay (for items with text) */
.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: #ffffff;
  text-align: left;
}

.gallery-overlay-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 5px;
  text-transform: uppercase;
}

.gallery-overlay-content p {
  font-size: 14px;
  margin: 0;
  opacity: 0.8;
  text-transform: uppercase;
}

/* Lightbox Effect (requires JavaScript/jQuery to fully implement) */
.gallery-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.gallery-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.gallery-lightbox-content {
  max-width: 90%;
  max-height: 90%;
  position: relative;
}

.gallery-lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  display: block;
  border-radius: 5px;
}

.gallery-lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: #ffffff;
  font-size: 30px;
  cursor: pointer;
}

.gallery-lightbox-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
  box-sizing: border-box;
  transform: translateY(-50%);
}

.gallery-lightbox-prev,
.gallery-lightbox-next {
  color: #ffffff;
  font-size: 40px;
  cursor: pointer;
  padding: 10px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.gallery-lightbox-prev:hover,
.gallery-lightbox-next:hover {
  opacity: 1;
}

/* Animation for loading gallery items */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gallery-item {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

/* Staggered animation delay for each gallery item */
.gallery-item:nth-child(1) {
  animation-delay: 0.1s;
}

.gallery-item:nth-child(2) {
  animation-delay: 0.2s;
}

.gallery-item:nth-child(3) {
  animation-delay: 0.3s;
}

.gallery-item:nth-child(4) {
  animation-delay: 0.4s;
}

.gallery-item:nth-child(5) {
  animation-delay: 0.5s;
}

.gallery-item:nth-child(6) {
  animation-delay: 0.6s;
}

.gallery-item:nth-child(7) {
  animation-delay: 0.7s;
}

.gallery-item:nth-child(8) {
  animation-delay: 0.8s;
}

.gallery-item:nth-child(9) {
  animation-delay: 0.9s;
}

/* Responsive styles */
@media (max-width: 1199px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .section-header {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .section-header h2 {
    font-size: 30px;
  }

  .section-description p {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

section.blog-page-single {
  padding-top: 100px;
  padding-bottom: 100px;
}

.post-item-box-img {
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 40px;
}

.post-item-box-img img {
  width: 100%;
}

.post-item-box-header {
  padding-bottom: 20px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #fff;
  margin-bottom: 40px;
  gap: 50px;
}

.post-item-box-title {
  font-weight: 700;
  font-size: 40px;
  background: linear-gradient(90deg, #F1D93C, #F5B40B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  line-height: 46px;
}

.post-item-box-meta-date {
  font-weight: 700;
  font-size: 22px;
  color: #fff;
}

.post-item-box-content-content img {
  width: 100%;
  border-radius: 20px;
  margin-bottom: 20px;
}

.services-section {
  padding: 100px 0;
  position: relative;
  color: #A4A4A4;
}

.section-header {
  margin-bottom: 80px;
}

.section-title {
  font-size: 54px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #ffffff;
}

.text-gradient {
  background: -webkit-linear-gradient(#F1D93C, #F5B40B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.services-diagram {
  position: relative;
  padding: 50px 0;
}

.services-character {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.services-character img {
  width: 100%;
  height: auto;
  animation: float 3s ease-in-out infinite;
  max-width: 415px;
  margin-right: 100px;
}

.services-items {
  position: relative;
  z-index: 1;
}

.service-card {
  background-color: rgba(217, 217, 217, 0.1);
  border-radius: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 30px;
  padding-right: 30px;
  margin-bottom: 30px;
  position: relative;
  transition: all 0.3s ease;
  backdrop-filter: blur(35px);
  -webkit-backdrop-filter: blur(35px);
  max-width: 400px;
  height: 214px;
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 20px;
  background: linear-gradient(90deg, #666666, #343434);
  -webkit-mask: linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.services-center-round-one {
  position: absolute;
  width: 350px;
  height: 350px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(217, 217, 217, 0.09);
  animation: pulse 4s infinite ease-out;
  animation-delay: 0s;
}

.services-center-round-two {
  position: absolute;
  width: 550px;
  height: 550px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(217, 217, 217, 0.09);
  animation: pulse 4s infinite ease-out;
  animation-delay: 1s;
}

.services-center-round-three {
  position: absolute;
  width: 710px;
  height: 710px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(217, 217, 217, 0.09);
  animation: pulse 4s infinite ease-out;
  animation-delay: 2s;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }

  70% {
    opacity: 0.3;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0;
  }
}

/* For a more subtle wave effect, here's an alternative approach
   Uncomment this and comment out the above animation if preferred */
/*
.services-center-round-one,
.services-center-round-two,
.services-center-round-three {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(217, 217, 217, 0.09);
}

.services-center-round-one::after,
.services-center-round-two::after, 
.services-center-round-three::after {
  content: '';
  position: absolute;
  left: -1px;
  top: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: 50%;
  border: 1px solid rgba(217, 217, 217, 0.09);
  animation: ripple 3s infinite ease-out;
}

.services-center-round-one::after {
  animation-delay: 0s;
}

.services-center-round-two::after {
  animation-delay: 1s;
}

.services-center-round-three::after {
  animation-delay: 2s;
}

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}
*/

.service-card-items-left .service-card {
  float: right;
  text-align: right;
}

.service-card-items-left .service-card:nth-child(2) {
  margin-right: 80px;
}

.service-card-items-right .service-card:nth-child(2) {
  margin-left: 80px;
  text-align: left;
}

.service-card:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  background-color: rgba(217, 217, 217, 0.3);
}

.service-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #F5B40B;
}

.text-white {
  color: #ffffff;
}

.service-description {
  font-size: 12px;
  line-height: 1.6;
}

.service-tag {
  position: absolute;
  display: flex;
}

.service-tag-label {
  font-family: "Caveat", cursive;
  font-size: 18px;
  color: #fff;
}

.service-tag.artistry {
  top: 0px;
  right: 50%;
}

.service-tag.artistry .service-tag-label {
  line-height: 0;
  transform: rotate(19deg);
  translate: -7px -8px;
}

.service-tag.proficiency {
  bottom: 250px;
  left: 20px;
}

.service-tag.artistry .service-tag-label {
  line-height: 0;
  transform: rotate(19deg);
  translate: -7px -8px;
}

.proficiency .service-tag-label {
  line-height: 0;
  transform: rotate(331deg);
  translate: 9px 36px;
}

.service-tag.precesion {
  bottom: 60px;
  left: 50%;
  margin-left: -116px;
  transform: rotate(342deg);
}

.precesion .service-tag-label {
  transform: rotate(321deg);
  translate: 7px 25px;
}

.service-tag.dedication {
  right: 20px;
  top: 50px;
}

.dedication .service-tag-label {
  transform: rotate(35deg);
  translate: -16px 40px;
  line-height: 0;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .services-character {
    width: 200px;
    height: 200px;
    position: relative;
    margin: 0 auto 50px;
    top: auto;
    left: auto;
    transform: none;
  }

  .service-tag {
    position: relative;
    top: 0;
    margin-bottom: 10px;
    display: inline-block;
  }

  .service-tag::after {
    display: none;
  }
}

@media (max-width: 767px) {
  .section-title {
    font-size: 36px;
  }

}

/* Jobs Page Styles */

/* Section Headers */
.section-header {
  margin-bottom: 60px;
  padding-top: 60px;
}

.section-title {
  font-size: 42px;
  font-weight: 300;
  text-align: center;
  margin-bottom: 20px;
  color: #ffffff;
}

/* Jobs Listing */
.jobs-listing {
  padding-bottom: 80px;
}

.job-item {
  background-color: rgba(217, 217, 217, 0.1);
  border-radius: 36px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
}

.job-item::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 36px;
  background: linear-gradient(90deg, #666666, #343434);
  -webkit-mask: linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 9;
}

.job-content {
  padding: 40px;
  padding-right: 15px;
}

.job-title {
  font-size: 32px;
  font-weight: 700;
  color: #F1D93C;
  margin-bottom: 20px;
}

.job-title span {
  color: #fff;
}


.job-description {
  padding: 30px;
  background: rgba(9, 9, 9, 0.32);
  border-radius: 16px;
  color: #EAEAEA;

}

.job-description p {
  font-size: 16px;
  line-height: 1.6;
  color: #EAEAEA;
  margin-bottom: 20px;
}

.job-description ul {
  margin: 20px 0;
  padding-left: 20px;
}

.job-description ul li {
  color: #EAEAEA;
  margin-bottom: 10px;
  position: relative;
  list-style-type: none;
  padding-left: 15px;
}

.job-description ul li:before {
  content: "•";
  color: #F5B40B;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.job-image {
  height: 100%;
}

.job-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Apply Button */
.btn-apply {
  background: linear-gradient(45deg, #F1D93C, #F5B40B);
  color: #000000;
  font-weight: 700;
  padding: 12px 25px;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s ease;
  margin-top: 10px;
  display: inline-block;
}

.btn-apply:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(245, 180, 11, 0.3);
}

/* Updated Pagination Styles */

.jobs-pagination {
  text-align: center;
  margin-top: 50px;
}

.pagination-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.page-numbers {
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  text-align: center;
  transition: all 0.3s ease;
  text-decoration: none;
  padding: 9px 18px;
}

.page-numbers.current {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #2a2a2a;
  color: #ffffff;
  border-radius: 10px;
  font-weight: 700;
}

.job-item-row {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.page-numbers.dots {
  color: #ffffff;
}

.page-numbers:not(.current):not(.dots):hover {
  color: #F5B40B;
}

/* Special style for last page number */
.pagination-wrapper .page-numbers:last-child:not(.dots):not(.current) {
  color: #e63cdf;
}

/* Media Queries */
@media (max-width: 991px) {
  .job-image {
    max-height: 100%;
  }
}

@media (max-width: 767px) {
  .job-content {
    padding: 30px;
  }

  .job-title {
    font-size: 28px;
  }

  .section-title {
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  .job-content {
    padding: 25px;
  }

  .section-title {
    font-size: 30px;
  }

  .job-title {
    font-size: 24px;
  }
}

.portfolio-page-banner-section .team-page-image {
  position: relative;
  z-index: 99;
  text-align: center;
  display: flex;
  justify-content: center;
}

.portfolio-page-banner-section .team-page-content {
  padding-right: 20px;
  margin-top: 60px;
}

.portfolio-page-banner-section .team-page-cards-img {
  max-height: 600px;
}

.portfolio-games-section {
  position: relative;
  color: #A4A4A4;
}

.games-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 50px;
  margin-top: 30px;
  margin-bottom: 70px;
}

.game-card {
  position: relative;
}

.game-card::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 20px;
  background: linear-gradient(90deg, #666666, #343434);
  -webkit-mask: linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 9;
}

.game-card-image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.game-card-image-container img {
  width: 100%;
  height: auto;
}

.game-card-image-container::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  border-radius: 20px;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.game-card-content {
  position: absolute;
  left: 0;
  bottom: -85px;
  width: 100%;
  transition: all 0.3s ease-in-out;
  z-index: 99;
}

.game-card-title {
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 30px;
  margin-top: 30px;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.game-card-logo-wrapper {
  display: flex;
  justify-content: center;

}

.game-card-logo {
  width: 90px;
  height: 90px;
  overflow: hidden;
  border-radius: 10px;
}

.game-card-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.game-card-metas {
  display: flex;
  justify-content: center;
  gap: 40px;
  align-items: center;
}

.game-card-meta-item {
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  text-align: center;
}

.game-card-meta-item span {
  font-weight: 400;
  color: #A4A4A4;
  display: block;
}

.game-card-btns {
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  min-height: 51px;
}

.btn-playstore,
.btn-appstore {
  border-radius: 8px;
  display: flex;
  gap: 5px;
  align-items: center;

}

.btn-playstore {
  background-color: #3AB43E;
  color: #fff;
}

.btn-appstore {
  background-color: #128ED3;
  color: #fff;
}

.game-card:hover .game-card-content {
  bottom: -23px;
}

.game-card:hover .game-card-title {
  opacity: 1;
}

.game-card:hover .game-card-btns {
  opacity: 1;
}

.vacancy-sign-wrapper {
  position: fixed;
  right: 50px;
  bottom: 50px;
  z-index: 99;
}

.vacancy-sign {
  position: relative;
  width: 80px;
  height: 80px;
  background-color: #f7e13a;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 30px rgba(247, 225, 58, 0.7);
}

.vacancy-text {
  color: #000;
  font-size: 14px;
  font-weight: bold;
}

.portfolio-page-gallery-category-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.portfolio-page-gallery-sub-category-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0px;
  margin-bottom: 10px;
}

.portfolio-page-gallery-category-nav button {
  color: #fff;
  border: 0;
  transition: all 0.3s ease-in-out;
  background: transparent;
  padding: 14px 20px;
  border-radius: 5px;
  font-size: 18px;
  position: relative;
  font-weight: 900;
}

.portfolio-page-gallery-category-nav button:hover,
.portfolio-page-gallery-category-nav button.gallery-category-active {
  background: rgba(227, 227, 227, 0.22);
}

.portfolio-page-gallery-category-nav button:hover::before,
.portfolio-page-gallery-category-nav button.gallery-category-active::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 5px;
  background: linear-gradient(90deg, #666666, #343434);
  -webkit-mask: linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.portfolio-page-gallery-category-nav button:hover::after,
.portfolio-page-gallery-category-nav button.gallery-category-active::after {
  background-image: url("data:image/svg+xml,%3Csvg width='17' height='10' viewBox='0 0 17 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.95674 8.83985C9.20166 9.50338 8.07141 9.50338 7.31633 8.83985L1.33483 3.58352C-0.0508113 2.36587 0.810408 0.0811768 2.65504 0.0811768H14.618C16.4627 0.0811768 17.3239 2.36588 15.9382 3.58352L9.95674 8.83985Z' fill='url(%23paint0_linear_28_333)'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_28_333' x1='18.2194' y1='7.92871' x2='-6.02982' y2='-0.627869' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23F13CA9'/%3E%3Cstop offset='1' stop-color='%239747FF'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 17px;
  height: 10px;
  margin-left: -5px;
}

.portfolio-page-gallery-sub-category-nav-wrapper {
  display: flex;
  justify-content: center;
}

.portfolio-page-gallery-sub-category-nav {
  background-color: #181818;
  border-radius: 5px;
}

.portfolio-page-gallery-sub-category-nav button {
  color: #fff;
  border: 0;
  transition: all 0.3s ease-in-out;
  background: transparent;
  padding: 14px 26px;
  border-radius: 5px;
  font-size: 16px;
  position: relative;
}

.portfolio-page-gallery-sub-category-nav button:hover,
.portfolio-page-gallery-sub-category-nav button.gallery-sub-category-active {
  background: rgba(227, 227, 227, 0.22);
}

.portfolio-page-gallery-sub-category-nav button:hover::before,
.portfolio-page-gallery-sub-category-nav button.gallery-sub-category-active::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 5px;
  background: linear-gradient(90deg, #666666, #343434);
  -webkit-mask: linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.portfolio-page-gallery-wrapper {
  margin-bottom: 20px;
}

.portfolio-page-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
  margin-bottom: 50px;
}

.portfolio-page-gallery-item {
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-page-gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 15px;
  background: linear-gradient(90deg, #666666, #343434);
  -webkit-mask: linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.portfolio-page-gallery-loadmore {
  display: flex;
  justify-content: center;
}

.btn-loadmore {
  padding: 16px 40px;
  font-size: 24px;
  font-weight: 800;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  background: linear-gradient(to right, #e437f1, #8354f9);
  color: #fff;
  border: none;
}

.portfolio-lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 1);
  bottom: 0;
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  padding: 20px;
}

.portfolio-lightbox-modal.open {
  display: flex;
}

.portfolio-lightbox-content-wrapper {
  width: 100%;
  height: 100%;
}

.portfolio-lightbox-container {
  width: 100%;
  height: 100%;
  padding: 0px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  max-width: 90%;
  max-height: 90%;
  border-radius: 0px;
  overflow: hidden;
}

.portfolio-lightbox-header {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
}

.portfolio-lightbox-gallery-slideshow {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  gap: 20px;
  width: 100%;
  height: 100%;
  padding-top: 65px;
  padding-left: 20px;
  padding-right: 20px;
}

.portfolio-lightbox-gallery-thumb {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  max-width: 165px;
  position: relative;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
}

.portfolio-lightbox-gallery-thumb::-webkit-scrollbar {
  width: 0;
  /* Chrome, Safari, Opera */
  display: none;
}

.portfolio-lightbox-gallery-thumb-inner {
  position: relative;
  padding-left: 15px;
}

.portfolio-lightbox-gallery-thumb-inner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: #363636;
  display: block;
  width: 4px;
  height: 100%;
  border-radius: 18px;
}

.portfolio-lightbox-gallery-container {
  display: flex;
  position: relative;
  width: 100%;
}

.portfolio-lightbox-gallery {
  width: 100%;
  display: flex;
}

.portfolio-lightbox-gallery-thumb-item {
  width: 150px;
  position: relative;
  height: 100px;
  cursor: pointer;
}


.portfolio-lightbox-gallery-thumb-item.active::before {
  position: absolute;
  width: 4px;
  height: 100%;
  background: #F1D93C;
  left: -15px;
  top: 0;
  content: "";
  display: block;
  border-radius: 18px;
}

.portfolio-lightbox-gallery-thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 7px;
}

.portfolio-lightbox-gallery-thumb-item {
  margin-bottom: 10px;
}

.portfolio-lightbox-gallery-item iframe,
.portfolio-lightbox-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 20px;
  background: #1d1c1c;
}

.portfolio-lightbox-gallery-item iframe {
  width: 100%;
}

.portfolio-lightbox-gallery-item {
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
}

.portfolio-lightbox-gallery-item:first-child {
  display: flex;
}

.portfolio-lightbox-gallery-container {
  display: block;
  position: relative;
}






.portfolio-lightbox-gallery-item.active {
  display: flex;
}

.portfolio-lightbox-close {
  background: rgba(217, 217, 217, 0.1);
  border-radius: 5px;
  font-size: 24px;
  line-height: 0;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 3px;
  padding-bottom: 7px;
  cursor: pointer;
  position: relative;
}

.portfolio-lightbox-close::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 5px;
  background: linear-gradient(90deg, #666666, #343434);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.portfolio-lightbox-gallery-slideshow-nav-button {
  position: absolute;
  bottom: 50%;
  width: 100%;
  justify-content: space-between;
  margin-bottom: -30px;
  padding-left: 15px;
  padding-right: 15px;
}

.portfolio-lightbox-gallery-slideshow-nav-button {
  background: #333;
  color: #fff;
  border-radius: 50%;
  border: 0;
  width: 45px;
  height: 45px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.portfolio-lightbox-gallery-slideshow-nav-button::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 50%;
  background: linear-gradient(90deg, #666666, #343434);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.portfolio-lightbox-gallery-slideshow-nav-button:first-child {
  left: 40px;
}

.portfolio-lightbox-gallery-slideshow-nav-button:last-child {
  right: 40px;
}

.youtube-videos-wrapper {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(217, 217, 217, 0.1);
  margin-bottom: 70px;
}

.youtube-videos-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 16px;
  background: linear-gradient(90deg, #666666, #343434);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 9;
}

.youtube-carousel {
  position: relative;
}

.slides-container {
  position: relative;
  height: 450px;
}

.slide {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.8s ease;
  display: none;
}

.slide.active {
  opacity: 1;
  z-index: 1;
  display: block;
}

.youtube-video-item {
  width: 100%;
  height: 100%;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

.youtube-video-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.youtube-video-item:hover img {
  transform: scale(1.03);
}

.youtube-video-item::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ff0000"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 14.5v-9l6 4.5-6 4.5z"/></svg>');
  background-size: 100%;
  transition: opacity 0.3s ease, transform 0.3s ease;
  border-radius: 50%;
}

.youtube-video-item:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

.iframe-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  display: none;
}

.youtube-video-iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.controls {
  position: absolute;
  top: 50%;
  width: 100%;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}

.control-btn {
  pointer-events: auto;
  background-color: rgba(255, 255, 255, 0.8);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}

.control-btn:hover {
  background-color: rgba(255, 255, 255, 1);
}

.slide-title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 12px;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  font-weight: bold;
  z-index: 3;
  text-align: center;
}

.case-studies-section {
  margin-bottom: 90px;
}


.case-study-item-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
  margin-bottom: 50px;
}

.case-study-item-card {
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 300px;
  cursor: pointer;
}

.case-study-item-card::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 20px;
  background: linear-gradient(90deg, #666666, #343434);
  -webkit-mask: linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.case-study-item-card-image {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.case-study-item-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-study-item-card-content {
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 20px;
  padding-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.case-study-item-card:hover .case-study-item-card-content {
  opacity: 1;
  bottom: 0;
}

.case-study-item-card-content h3 {
  font-size: 16px;
}

.case-study-item-card-content-meta {
  display: flex;
  align-items: center;
  font-size: 12px;
  gap: 15px;
}

.case-study-item-card-content-meta div {
  display: flex;
  align-items: center;
  gap: 5px;
}

.case-study-item-card-content-meta div span svg {
  display: block;
  width: 16px;
}

.single-case-study-wrapper {
  margin-bottom: 90px;
}

.single-case-study-content {
  border-radius: 0;
  position: relative;
  padding-right: 80px;
}

.single-case-study-title {
  background: #333;
  padding: 10px 20px;
}

.single-case-study-title h2 {
  margin: 0;
  font-weight: 700;
}

ul.case-study-gallery {
  margin: 0;
  padding: 0;
  list-style: none;
}

ul.case-study-gallery li {
  margin-bottom: 0px;
}

ul.case-study-gallery li:last-child {
  margin-bottom: 0;
}

ul.case-study-gallery li img {
  width: 100%;
  height: auto;
}

.single-case-study-btns-wrapper {
  position: fixed;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
}

.single-case-study-btns {}

.appreciate-btn,
.share-btn {
  padding: 0;
  border: 0;
  background: transparent;
  text-align: center;
  color: #fff;
  font-size: 12px;
  margin-bottom: 10px;
}

.appreciate-btn-svg,
.share-btn-svg {
  width: 50px;
  height: 50px;
  display: block;
  border-radius: 50%;
  padding: 10px;
  line-height: 24px;
  text-align: center;
  margin: 0 auto;
  position: relative;
}

/* .appreciate-btn.liked .appreciate-btn-svg::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.6) 20%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  animation: burst 0.6s ease-out forwards;
} */

.share-btn-svg {
  background: #fff;
}

.appreciate-btn-svg {
  background-color: #0057ff;
  color: #fff;
}

.appreciate-btn-svg svg {
  fill: #fff;
}

.appreciate-btn-svg svg,
.share-btn-svg svg {
  width: 16px;
}

.single-case-study-btns {
  text-align: center;
}

button.appreciate-btn.like-button.disabled {
  opacity: 0.7;
}

div#case-study-gallery-light-box {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.9);
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 70px;
  overflow-y: auto;
  height: 100%;
  margin-bottom: 90px;
  display: none;
}

#case-study-gallery-light-box-content {
  padding-bottom: 50px;
}

.case-study-gallery-light-box-wrapper .close-btn,
.case-study-gallery-light-box-wrapper .close {
  position: fixed;
  top: 15px;
  right: 42px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 9999;
  color: #fff;
}

.app-navbar-mobile-btn {
  background: rgba(130, 130, 130, 0.3);
  border: 0;
  width: 50px;
  height: 44px;
  border-radius: 5px;
  position: relative;
  display: none;
}

.app-navbar-mobile-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 5px;
  background: linear-gradient(90deg, #666666, #343434);
  -webkit-mask: linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.burger {
  position: relative;
  display: block;
  width: 28px;
  height: 3px;
  margin: 0 auto;
  background: #fff;
  transition: all .275s;
  border-radius: 50px;
}

.burger:after,
.burger:before {
  content: '';
  display: block;
  height: 100%;
  background: #fff;
  transition: all .275s;
  border-radius: 50px;
}

.burger:after {
  transform: translateY(5px);
}

.burger:before {
  transform: translateY(-8px);
}

/* Toggle State part */
.is-open-mobile-menu .burger {
  transform: rotate(316deg);
}

.is-open-mobile-menu .burger:before {
  transform: rotate(85deg);
}

.is-open-mobile-menu .burger:after {
  opacity: 0;
}

.is-open-mobile-menu .app-navbar-wrapper {
  position: absolute;
  left: 0;
  top: 100%;
  transform: none;
  width: 100%;
  opacity: 1;
  height: auto;
  overflow: hidden;
  display: block
}

.is-open-mobile-menu .app-navbar {
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: auto;
  border-radius: 10px;
  position: relative;
  max-width: 300px;
  margin: 0 auto;
  text-align: center;
  padding: 20px;
  align-items: center;
  justify-content: center;
}

.is-open-mobile-menu .app-navbar::before {
  border-radius: 10px;
}

.is-open-mobile-menu .app-navbar-nav li {
  display: block;
  border-right: 0;
  line-height: normal;
  margin-bottom: 10px;
}

.is-open-mobile-menu .app-navbar-nav li a {
  color: #A4A4A4;
  padding-top: 7px;
  padding-bottom: 7px;
  padding-left: 15px;
  padding-right: 15px;
  display: block;
  font-size: 18px;
}

.associated-carousel-track-wrapper {
  max-width: 460px;
  position: relative;
}

.associated-carousel-track-wrapper::before {
  position: absolute;
  content: "";
  display: block;
  right: 0;
  top: 0;
  width: 100px;
  height: 100%;
  background: linear-gradient(270deg, #050505 0%, rgba(5, 5, 5, 0) 100%);
  z-index: 9;
}


.associated-carousel-track .slick-list {
  padding: 0 32px 0 0 !important;
}

.associated-carousel-slide {
  padding-right: 15px;
}

.associated-item img {
  width: 100%;
}

.associated-carousel-block {
  margin-top: 30px;
  margin-bottom: 30px;
}

.associated-carousel-block h3 {
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 12px;
}

@media (max-width: 1199px) {
  .app-header-quick-links {
    display: none;
  }

  header.app-header-wrapper {
    position: relative;
  }

  .app-navbar-wrapper {
    display: none;
  }

  .app-navbar-mobile-btn {
    display: block;
  }
}

@media (max-width: 991px) {
  .banner-content {
    margin-top: 0px;
    text-align: center;
  }

  .banner-content p {
    font-size: 16px;
    margin-bottom: 20px;
    max-width: 100%;
  }

  .banner-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    position: relative;
    z-index: 999;
    justify-content: center;
  }

  .btn {
    font-size: 14px;
  }

  .banner-image-wrapper {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .banner-image-bg {
    text-align: center;
  }

  .banner-image {
    margin-top: 50px;
  }

  .view-all .portfolio-item-inner {
    min-height: 260px;
  }

  .portfolio-section {
    padding: 0px 0;
  }

  .services-section {
    padding: 20px 0;
  }

  .view-all-content h3 {
    font-size: 16px;
  }

  .view-all-content h2 {
    font-size: 34px;
  }

  .service-card,
  .service-card-items-left .service-card {
    float: none;
    text-align: center;
    margin: 0 auto;
    display: table;
    margin-bottom: 15px;
    max-width: 100%;
  }

  .service-card-items-left .service-card:nth-child(2) {
    margin-right: auto;
  }

  .service-card-items-right .service-card:nth-child(2) {
    margin-left: auto;
    text-align: center;
  }

  .services-diagram {
    padding: 0;
  }

  .service-tag {
    display: none;
  }

  .portfolio-item-inner {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .client-and-testimonial-section .section-header h2 {
    font-size: 30px;
  }

  .intc-tabs-tbns-wrapper {
    width: 360px;
    padding: 0px 5px;
    max-width: 100%;
  }

  .intc-tab-label {
    line-height: 56px;
    font-size: 14px;
  }

  .intc-tabs-content {
    margin-top: 40px;
  }

  .testimonial-content {
    padding: 0px;
  }

  .testimonial-container {
    padding: 0px;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 15px;
  }

  .contact-form input[type="submit"] {
    padding: 15px;
  }

  .services-center-round-three,
  .services-center-round-two,
  .services-center-round-one {
    display: none;
  }

  .banner-image-bg img {
    max-width: 100%;
  }

  .app-footer-wrapper .col-md-7 .col-md-6 {
    width: 50%;
  }

  .vacancy-sign {
    width: 60px;
    height: 60px;
  }

  .vacancy-text {
    font-size: 10px;
  }

  .portfolio-page-banner-section .team-page-content {
    padding-right: 0;
    margin-top: 0;
    text-align: center;
  }

  .team-page-actions {
    justify-content: center;
  }

  .games-gallery-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .portfolio-page-gallery-category-nav {
    display: block;
    text-align: center;
  }

  .portfolio-page-gallery-category-nav button {
    font-size: 12px;
  }

  .portfolio-page-gallery-sub-category-nav {
    display: block;
    text-align: center;
    background-color: transparent;
  }

  .portfolio-page-gallery-sub-category-nav button {
    padding: 9px 20px;
    border-radius: 5px;
    font-size: 12px;
  }

  .portfolio-page-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .portfolio-lightbox-gallery-slideshow {
    display: block;
  }

  .inner-page-banner-content {
    text-align: center;
  }

  .single-case-study-title h2 {
    font-size: 18px;
  }

  .case-study-item-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .team-page-content {
    text-align: center;
  }

  .team-page-cards-img {
    max-width: 280px;
    margin: 0 auto;
  }

  .portfolio-lightbox-gallery-thumb {
    overflow-x: auto;
    display: flex;
    width: 100%;
    height: auto;
    margin-top: 15px;
    max-width: 100%;
  }

  .portfolio-lightbox-gallery-thumb-inner {
    padding-left: 0;
    display: flex;
  }

  .portfolio-lightbox-gallery-slideshow-nav-button:last-child {
    right: 0px;
  }

  .portfolio-lightbox-gallery-slideshow-nav-button:first-child {
    left: 0px;
  }

  .portfolio-lightbox-gallery-thumb-inner::before {
    content: "";
    position: absolute;
    left: 0;
    top: 100%;
    background: #363636;
    display: block;
    width: 100%;
    height: 4px;
    border-radius: 18px;
    margin-top: -4px;
  }

  .portfolio-lightbox-gallery-thumb-item.active::before {
    position: absolute;
    width: 100%;
    height: 4px;
    background: #F1D93C;
    left: 0;
    top: 100%;
    content: "";
    display: block;
    border-radius: 18px;
    margin-top: 6px;
  }

  .portfolio-lightbox-gallery-item {
    min-height: 300px;
  }

  .portfolio-lightbox-gallery-item iframe {
    min-height: 300px;
  }

  .portfolio-lightbox-container {
    width: 100%;
    height: 100%;
    max-width: 100%;
  }

  .portfolio-lightbox-gallery-thumb-item {
    margin-bottom: 10px;
    margin-right: 10px;
  }

  .single-case-study-content {
    padding-right: 60px;
  }

  .post-item-box-img img {
    width: 100%;
    height: auto;
  }

  .post-item-box-title {
    font-size: 30px;
    line-height: normal;
  }

  .post-item-box-meta-date {
    font-size: 16px;
  }
}