body {
  /* font-family: "Unbounded", sans-serif; */
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}


::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #111;
}

::-webkit-scrollbar-thumb {
  background: #f47a14;
  border-radius: 10px;
}

a {
  text-decoration: none;
  font-family: "Poppins", sans-serif;
}

.list-global {
  li {
    margin-bottom: 10px;
  }
}

.container {
  max-width: 1440px;
}

.main-title-h1 {
  font-family: "Inter", sans-serif;
  font-size: 90px;
  line-height: 1.2;
  font-weight: 700;
  /* letter-spacing: -2px; */
  margin-bottom: 20px;
  text-transform: capitalize;
}


@keyframes fadeInUpBlur {
  0% {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(8px);
  }

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


@keyframes fireGlow {
  0% {
    text-shadow:
      0 0 2px #f47a14,
      0 0 4px #f47a14,
      0 0 6px #f47a14;
  }

  50% {
    text-shadow:
      0 0 4px #f47a14,
      0 0 8px #f47a14,
      0 0 12px #f47a14;
  }

  100% {
    text-shadow:
      0 0 2px #f47a14,
      0 0 4px #f47a14,
      0 0 6px #f47a14;
  }
}

.main-title-h2 {
  font-family: "Inter", sans-serif;
  font-size: 55px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: capitalize;
}

/* .animate-heading{
  transition: all 0.8s ease-out;
  animation: fireGlow 2s ease-in-out infinite;
}


.animate-heading.animate{
  animation: fireGlow 2s ease-in-out infinite;
  
} */

.main-title-h3 {
  font-family: "Inter", sans-serif;
  font-size: 38px;
  line-height: 1.2;
  font-weight: 400;
  text-transform: capitalize;
}


.main-title-h4 {
  font-family: "Inter", sans-serif;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: capitalize;
}

.main-title-h5 {
  font-family: "Inter", sans-serif;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 600;
  text-transform: capitalize;
}

.main-title-h6 {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 600;
  text-transform: capitalize;
}

.short-title {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1875rem, 0.9875rem + 1vw, 2.1875rem);
  line-height: 1.2;
  font-weight: 600;
  color: #f47a14;
  display: block;
  margin-bottom: 20px;
}

.text-orange {
  color: #f47a14;
}

.text-p {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.5;
}

.p-100 {
  padding: 100px 0;
}

.p-50 {
  padding: 50px 0;
}

.title-white {
  color: #fff;
}

.title-black {
  color: #000;
}

.top-rate-btn {
  color: #f47a14;
  font-size: 20px;
  text-decoration: underline !important;
  font-weight: 600;
  transition: 0.3s ease-in-out;
}

.primary-btn {
  position: relative;
  font-size: 20px;
  color: #fff;
  background: transparent;
  border-radius: 100px;
  height: 57px;
  line-height: 15px;
  min-width: 150px;
  display: inline-block;
  padding: 20px 20px;
  -webkit-box-shadow: 1px 1px 13px #f47a14, -1px -1px 13px #f47a14;
  box-shadow: 1px 1px 13px #f47a14, -1px -1px 13px #f47a14;
  transition: 0.3s ease-in-out;
}

.primary-btn:hover {
  -webkit-box-shadow: 1px 1px 13px #f47a14, -1px -1px 13px #f47a14;
  box-shadow: 1px 1px 13px #f47a14, -1px -1px 13px #f47a14;
  color: #fff;
  background: #f47a14;
}


.secondary-btn {
  position: relative;
  font-size: 18px;
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
  border-radius: 100px;
  height: 57px;
  line-height: 50px;
  min-width: 150px;
  display: inline-block;
  padding: 0px 20px;
  transition: 0.4s ease-in-out;
  overflow: hidden;
  z-index: 1;
}

.secondary-btn::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 0%;
  top: 0;
  left: -40px;
  transform: skewX(45deg);
  background-color: #f47a14;
  z-index: -1;
  transition: all 1s;
}

.secondary-btn:hover::before {
  width: 160%;
}

.secondary-btn:hover {
  color: #fff;
}

/* header css start */


header {
  position: relative;
  top: 0;
  width: 100%;
  z-index: 999;
  background-color: transparent;
  transition: all 0.3s ease;
}

.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  animation: slideSticky 0.3s ease forwards;
}

.sticky-header .get-quote-btn {
  background-color: #000;
  color: #fff;
  border: 2px solid #000;
}

@keyframes slideSticky {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }

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


header .get-quote-btn {
  background: rgba(255, 255, 255, 0.17);
  border: 3px solid #FFFFFF;
  backdrop-filter: blur(8px);
  /* Note: backdrop-filter has minimal browser support */
  border-radius: 50px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  color: #000;
  font-size: 20px;
  font-weight: 600;
  transition: 0.3s ease-in-out;
  overflow: hidden;
  z-index: 1;
  position: relative;
}

header .get-quote-btn:focus {
  box-shadow: none;
  outline: none;
}

/* header .get-quote-btn:hover{
    background: #f47a14;
    border: 3px solid #f47a14;
    color: #fff;
} */

.get-quote-btn::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 0%;
  top: 0;
  left: -40px;
  transform: skewX(45deg);
  background-color: #f47a14;
  z-index: -1;
  transition: all 1s;
}

.get-quote-btn:hover::before {
  width: 160%;
}

.get-quote-btn:hover {
  color: #fff;
}

header .navbar .collapse .navbar-nav .nav-item a {
  font-weight: 500;
  font-size: 16px;
  color: #000;
  transition: 0.3s ease-in-out;
  padding-right: 1rem;
  padding-left: 1rem;
  position: relative;
}


.white-header .navbar .collapse .navbar-nav .nav-item a {
  color: #fff;
}

.white-header .get-quote-btn {
  color: #fff;
}

.white-header.sticky-header .navbar .collapse .navbar-nav .nav-item a {
  color: #000;
}

header .navbar .collapse .navbar-nav .nav-item a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #f47a14;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease-in-out;
}

/* Show underline on hover */
header .navbar .collapse .navbar-nav .nav-item a:hover::after {
  transform: scaleX(1);
}

header .navbar .collapse .navbar-nav .nav-item a:hover {
  color: #f47a14;
}

/* header .navbar .collapse .navbar-nav .nav-item .nav-link.active {
    color: #f47a14;
} */


.custom-dropdown {
  position: relative;
}

.custom-dropdown .dropdown-list {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border-radius: 8px;
  min-width: 180px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  z-index: 1000;
}


/* .custom-dropdown .dropdown-list {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border-radius: 12px;
    min-width: 220px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.25);
    z-index: 1000;
} */



.white-header .custom-dropdown .dropdown-list li .dropdown-item {
  color: #000 !important;
}

.custom-dropdown .dropdown-item.active,
.custom-dropdown .dropdown-item:active {
  background-color: transparent !important;
}

.dropdown-item:focus,
.dropdown-item:hover {
  background-color: transparent !important;
  color: inherit !important;
  /* Keeps the original text color */
  outline: none !important;
  /* Optional: removes focus outline if unwanted */
  box-shadow: none !important;
  /* Optional: removes Bootstrap’s shadow focus */
}

.dropdown-item:focus {
  background-color: transparent !important;
}

.custom-dropdown:hover .dropdown-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.custom-dropdown .dropdown-list li {
  list-style: none;
}

.custom-dropdown .dropdown-list li a {
  display: block;
  padding: 10px 20px;
  color: #fff;
  text-decoration: none;
  transition: background 0.3s ease;
}

.custom-dropdown .dropdown-list li a:hover {

  color: #fff;
}


/* header css end */


/* banner css start */

.banner-hero {
  background-image: url("../images/hero-banner.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  height: 100vh;
  margin-top: -74px;
  padding-bottom: 100px;
  position: relative;
  z-index: 1;
}

.botton-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 20px;
  margin-top: 20px;
}

.botton-btn .case-btn {
  font-size: 20px;
  color: #fff;
  border: 2px solid #fff;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  background: transparent;
  padding: 0 20px;
  border-radius: 100px;
  transition: 0.3s ease-in-out;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.case-btn::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 0%;
  top: 0;
  left: -40px;
  transform: skewX(45deg);
  background-color: #f47a14;
  z-index: -1;
  transition: all 1s;
}

.case-btn:hover::before {
  width: 160%;
}

.case-btn:hover {
  color: #fff;
}


.botton-btn .play-btn {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.botton-btn .play-btn img {
  margin-right: 10px;
}

.botton-btn .play-btn:hover {
  color: #f47a14;
}

/* banner css end */


/* Tech Logos css start */

.tech-logos .main-logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tech-logos .main-logos .logo-item {
  transition: transform 0.4s ease, box-shadow 0.4s ease, border 0.4s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.tech-logos .main-logos .logo-item:hover {
  transform: scale(1.05);
  /* subtle zoom */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border: 2px solid #f47a14;
  animation: glowPulse 2s ease-in-out infinite;
}

/* Tech Logos css end */


/* Game Counter css Start */

.game-counter {
  background-image: url("../images/game-counter-back.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.stats-flex {
  display: flex;
  justify-content: space-between;
  gap: 80px;
}

.game-counter .stats-flex .counter {
  font-size: 55px;
  color: #f47a14;
  font-weight: 700;
  margin-bottom: 10px;
}

.game-counter .stats-flex p {
  font-size: 25px;
  color: #fff;
  margin-bottom: 0;
}

/* Game Counter css End */


/* Top Rated css Start */

.top-rated {
  /* background-image: url("../images/top-back.webp");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;  */
  background: #000;
  position: relative;
}

.top-rated .potfolio-box {
  border-radius: 30px;
  background: #000;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  border: 2px solid #000;
  border: 1px solid #a6a6a663;
}

/* .top-rated .portfolio-swiper .swiper-slide-active .potfolio-box{
  border: 2px solid #f47a14;
} */

.top-rated .portfolio-swiper .swiper-slide-next,
.top-rated .portfolio-swiper .swiper-slide-prev {
  opacity: 0.1;
}

.top-rated .potfolio-box .slide-left {
  flex: 1 1 50%;
  padding-right: 30px;
}

.top-rated .potfolio-box .slide-right {
  flex: 1 1 40%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-rated .potfolio-box .slide-content {
  display: flex;
  gap: 20px;
  padding: 30px;
}


.top-rated .category {
  font-size: 18px;
  line-height: 1.2;
  display: block;
  margin-bottom: 20px;
}

.top-rated ul li {
  color: #fff;
  font-size: 18px;
  line-height: 32px;
  margin-bottom: 10px;
}

.top-rated ul {
  margin-top: 20px;
  margin-bottom: 20px;
}

.top-rated .case-porfolio-btn {
  background: #A6A6A6;
  position: relative;
  transition: all 1s;
  overflow: hidden;
  border: 3px solid #FFFFFF;
  backdrop-filter: blur(8px);
  /* Note: backdrop-filter has minimal browser support */
  border-radius: 50px;
  height: 50px;
  display: inline-block;
  line-height: 45px;
  min-width: 150px;
  padding: 0 20px;
  color: #242424;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s ease-in-out;
}

.top-rated .case-porfolio-btn:hover {
  color: white;
}


.top-rated .case-porfolio-btn::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 0%;
  top: 0;
  left: -40px;
  transform: skewX(45deg);
  background-color: #808080;
  z-index: -1;
  transition: all 1s;
}

.top-rated .case-porfolio-btn:hover::before {
  width: 160%;
}



.top-rated .top-rate-btn {
  font-size: 16px;
  text-align: right;
  display: block;
}


.top-rated .top-rate-btn:hover {
  color: #fff;
}

.top-rated .game-pro-box {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.657) 0%, rgba(0, 0, 0, 0.657) 100%);
  backdrop-filter: blur(7.5px);
  border-radius: 30px;
  padding: 50px 35px;
  border: 1px solid #81818173;
  animation: glowBorder 2s infinite ease-in-out;
}

@keyframes glowBorder {
  0% {
    box-shadow: 0 0 0px #f47a14;
  }

  50% {
    box-shadow: 0 0 15px 5px #f47a14;
  }

  100% {
    box-shadow: 0 0 0px #f47a14;
  }
}

.top-rated .game-pro-box .game-flex {
  display: flex;
  align-items: center;
  column-gap: 15px;
  margin-bottom: 20px;
}

.top-rated .game-pro-box .game-flex .portfolio-btn {
  height: 46px;
  background: #f47a14;
  color: #fff;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  font-size: 12px;
  font-weight: 400;
}

.top-rated .game-pro-box .game-flex .portfolio-btn.case-study-btn {
  height: auto;
  color: #f47a14;
  font-size: 14px;
  padding: 0;
  background: none;
}

/* .top-rated .game-pro-box ul{
    margin-top: 20px;
}

.top-rated .game-pro-box ul li{
    color: #fff;
    font-size: 18px;
    line-height: 32px;
    margin-bottom: 10px;
} */

/* Top Rated css End */


/* Services Games Start */
.services-games .services-game-box {
  background: linear-gradient(90deg, #FFFFFF 0%, #F8F8F8 100%);
  border-radius: 7px;
  height: 100%;
  padding: 30px;
  border: 1px solid #DADADA;
  transition:
    box-shadow 0.4s ease,
    transform 0.4s ease;
  cursor: pointer;
}

.services-games .services-game-box:hover {
  background: linear-gradient(90deg, #FFFFFF 0%, #F2F2F2 100%);
  transform: translateY(-4px);
  border-color: #f47a14;
  background: #f47a14;
  box-shadow: 0 0 10px rgba(244, 122, 20, 0.5);
  animation: glowPulse 1.5s ease-in-out infinite;
}

.services-games .services-game-box:hover .short-title {
  color: #fff;
}

.services-games .services-game-box:hover p {
  color: #fff;
}

.services-games .services-game-box .short-title {
  font-size: 22px;

}

.services-games .services-game-box p {
  margin-bottom: 0;
  font-size: 18px;
  line-height: 28px;
}

/* Types Games css Start */

.types-games {
  background-image: url("../images/types-games-back-new.webp");
  background-size: cover;
  background-repeat: repeat;
  background-position: bottom center;
  animation: moveBackground 30s linear infinite;
}

@keyframes moveBackground {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 1000px 0;
    /* Moves background to the right */
  }
}

.game-category {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.game-category.animate {
  animation: fadeInUp 0.6s ease forwards;
}

.types-games .game-category-grid {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 20px;
  padding: 30px 0;
}


.types-games .game-category {
  background-color: #1C1C1C;
  border: 1px solid #E6E6E6;
  color: #fff;
  font-weight: 600;
  padding: 30px 20px;
  font-size: 24px;
  transform: skew(-12deg);
  border-radius: 4px;
  display: inline-block;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s ease, background-color 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  position: relative;
  text-align: center;
  overflow: hidden;
}

.types-games .game-category.nav-link.active {
  background-color: #f47a14;
  /* Highlight active tab */
  box-shadow: 0 6px 15px rgba(244, 122, 20, 0.4);
  color: #fff;
}

.types-games .tab-content>.tab-pane.custom-fade {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* When active, apply smooth visible state */
.types-games .tab-content>.tab-pane.custom-fade.active.show {
  opacity: 1;
  transform: translateY(0);
}

.types-games .game-category:hover {
  background-color: #f47a14;
  transform: skew(-12deg) translateY(-5px);
  box-shadow: 0 8px 20px rgba(244, 122, 20, 0.6);
}

.types-games .game-category::before {
  content: '';
}

.types-games .game-category span {
  display: inline-block;
  transform: skew(12deg) scale(1.02);
  transition: transform 0.4s ease;
  /* Counter-skew text */
}

/* Types Games css End */


/* Technologies Logos css Start */

.technologies-logos {
  background-image: url("../images/technologies-back.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.technologies-logos.tech-mobile .tech-item img {
  filter: brightness(0), invert(1);
}

.tech-plateform-main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 60px;
  row-gap: 40px;
}

.tech-plateform-main .tech-item {
  transition: transform 0.3s ease;
  cursor: pointer;
}

.tech-item:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(244, 122, 20, 0.9);
}

/* Technologies Logos css End */


/* Wokflow css Start */

.workflow-right {
  max-height: 400px;
  /* 3 cards height */
  overflow-y: auto;
  padding-right: 10px;
  scroll-behavior: smooth;
}

.workflow-step {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  align-items: flex-start;
}

.workflow-step .step-num {
  position: relative;
  /* enable positioning for pseudo */
  background: #000;
  color: #fff;
  font-weight: bold;
  width: 50px;
  height: 50px;
  display: grid;
  place-content: center;
  font-size: 20px;
  padding: 0 10px;
  /* transform: rotate(5deg); */
}

.workflow-step:not(:last-child) .step-num::after {
  content: "";
  position: absolute;
  bottom: -90px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 80px;
  background: #000;
}

/* Wokflow css End */


/* cta css start */


/* .ready-to-bring-cta{
aspect-ratio: 1920 / 890;
background-image: url("../images/cta-back.webp");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center; 
} */

.ready-to-bring-cta p {
  margin-bottom: 40px;
}

.ready-to-bring-cta {
  z-index: 0;
  aspect-ratio: 1176 / 784;
}

.ready-to-bring-cta .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.1);
  /* dark overlay */
  z-index: -1;
}

.ready-to-bring-cta .bg-fallback-image {
  background: url('../images/cta-back.webp') center center / cover no-repeat;
  position: absolute;
  inset: 0;
  z-index: -3;
}

.ready-to-bring-cta .bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.ready-to-bring-cta .z-1 {
  position: relative;
  z-index: 1;
}

/* cta css end */


/* test css start */
.testimonial-client {
  background-image: url("../images/testimonials-back-new.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.testimonial-client .testclient .box img {
  margin-bottom: 20px;
}

.testimonial-client .testclient {
  margin-top: 50px;
}

.testimonial-client .testclient .box .client-title {
  font-size: 22px;
  display: block;
  margin-bottom: 20px;
}

/* test css end */

/* awards start */

.awards-games {
  background-image: url("../images/game-counter-back.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.awards-games .awardsgamesslider {
  margin-top: 40px;
}

.awards-games .awards-box {
  background: rgba(67, 67, 67, 0.3);
  backdrop-filter: blur(4px);
  border-radius: 20px;
  padding: 0px 20px;
  text-align: center;
  border: 1px solid #BBBBBB;
  transition: 0.3s ease-in-out;
  height: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;

}

.awards-games .awards-box:hover {
  animation: glowPulse 1.5s ease-in-out infinite;
  border-color: #f47a14;
  /* 👈 Keep border visible */
}

.awards-games .awards-box img {
  filter: grayscale(100%);
  transition: filter 0.3s ease;
  height: auto;
}

.awards-games .awards-box:hover img {
  filter: grayscale(0%);
}

/* awards end */


/* from sec start */

.form-sec {
  background-image: url("../images/form-sec-back.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
  aspect-ratio: 1920 / 1102;
  position: relative;
  z-index: 1;
}

.form-sec .form-box {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.792) 0%, rgba(255, 255, 255, 0.792) 100%);
  backdrop-filter: blur(6px);
  border-radius: 42px;
  padding: 60px 40px;
  max-width: 700px;
  width: 100%;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
  /* 🟠 Glowing orange border effect */
  border: 2px solid transparent;
  animation: glowPulse 2.5s ease-in-out infinite;
}


@keyframes glowPulse {
  0% {
    box-shadow: 0 0 10px rgba(244, 122, 20, 0.2), 0 0 20px rgba(244, 122, 20, 0.15);
  }

  50% {
    box-shadow: 0 0 25px rgba(244, 122, 20, 0.6), 0 0 50px rgba(244, 122, 20, 0.4);
  }

  100% {
    box-shadow: 0 0 10px rgba(244, 122, 20, 0.2), 0 0 20px rgba(244, 122, 20, 0.15);
  }
}

.form-sec .form-box .contact-form {
  margin-top: 30px;
}

.form-sec .form-box .contact-form label {
  font-weight: 400;
  display: block;
  margin-bottom: 5px;
  color: #383838;
  font-size: 18px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  background: transparent;
  margin-bottom: 20px;
  border-bottom: 2px solid #d3d3d3;
  font-size: 16px;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #000;
  outline: none;
}

.form-sec .form-box .contact-form .btn-submit {
  background: #000;
  color: #fff;
  height: 70px;
  font-size: 18px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border: 2px solid #000;
  text-align: center;
  width: 100%;
  transition: 0.3s ease-in-out;
}

.form-sec .form-box .contact-form .btn-submit:hover {
  background: transparent;
  color: #000;
}

/* from sec end */

/* footer start */
.footer {
  background-image: url("../images/footer-back.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding-bottom: 0 !important;
  margin-top: -50px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 90px;
  justify-content: space-between;
}

.footer-section .footer-item {
  margin-top: 30px;
}


.footer a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 18px;
  line-height: 1.2;
}

.footer a:hover,
.footer .highlight {
  color: #f47a14;
}

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

.footer ul li {
  margin-bottom: 20px;
}

.footer-section ul li a {
  color: white;
  position: relative;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 18px;
  line-height: 1.2;
  padding-bottom: 5px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-section ul li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #f47a14;
  transition: width 0.3s ease;
}

.footer-section ul li a:hover::after {
  width: 100%;
}

.footer-section ul li a:hover {
  color: #f47a14;
}

.social-icons ul {
  display: flex;
  column-gap: 20px;
  margin-top: 10px;
}

.social-icons ul li a svg {
  transition: 0.3s ease-in-out;
  padding-bottom: 5px;
}

.social-icons ul li a:hover svg path {
  fill: #f47a14;
}


.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #333;
  padding: 20px 0 30px 0;
  font-size: 0.9rem;
  color: white;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-links a {
  color: white;
  position: relative;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 18px;
  line-height: 1.2;
  transition: color 0.3s;
  padding-bottom: 5px;
}

.footer-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #f47a14;
  transition: width 0.3s ease;
}

.footer-links a:hover::after {
  width: 100%;
}


.footer-links a:hover {
  color: #f47a14;
}

/* footer end */


input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  box-shadow: 0 0 0 1000px #f8f8f8 inset !important;
  -webkit-box-shadow: 0 0 0 1000px #f8f8f8 inset !important;
  -webkit-text-fill-color: #000 !important;
  transition: background-color 5000s ease-in-out 0s;
  caret-color: #000;
}

header {
  position: relative;
  top: 0;
  width: 100%;
  z-index: 999;
  background-color: transparent;
  transition: all 0.3s ease;
}

.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  animation: slideSticky 0.3s ease forwards;
}

.sticky-header .get-quote-btn {
  background-color: #000;
  color: #fff;
  border: 2px solid #000;
}

@keyframes slideSticky {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }

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


.img-bottom-watermark {
  position: absolute;
  bottom: 10px;
  right: 0;
}

.img-bottom-watermark img {
  height: 81px;
  width: auto;
}

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

  100% {
    opacity: 1;
  }
}

/* ______________________________________________________ */




/* Service Page Start */

.banner-hero.services-banner {
  background-image: url("../images/services/unreal-game/banner-image.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  animation: diagonalPan 6s ease-in-out infinite alternate;
}

@keyframes diagonalPan {
  0% {
    background-position: 0% 0%;
  }

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


.unreal-experience .unreal-service-box {
  border-radius: 40px;
  background: #252525;
  padding-top: 50px;
  padding-left: 30px;
  position: relative;
  padding-bottom: 50px;
}

.unreal-experience.unreal-experince-2 .unreal-service-box {
  background: linear-gradient(90deg, #FFFFFF 0%, #F8F8F8 100%);
  padding-left: 0;
  padding-right: 50px;
}

.unreal-experience.unreal-experince-2 .unreal-service-box .character-img {
  left: 0;
  right: unset;
}

.unreal-experience .spacing {
  margin-bottom: 60px;
}

.unreal-experience .unreal-service-box .main-num .main-num-flex {
  display: flex;
  column-gap: 20px;
}

.unreal-experience .unreal-service-box .main-num .main-num-flex .num {
  font-size: 26px;
  font-weight: 600;
}

.unreal-experience .unreal-service-box .main-num .main-num-flex .head p {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 24px;
}

.unreal-experience .unreal-service-box .character-img {
  position: absolute;
  top: -50px;
  right: 0;
}

.unreal-experience.unreal-mob-exp .unreal-service-box .character-img img {
  height: 600px;
  width: auto;
}

.unreal-experience.unreal-mob-exp-2 .unreal-service-box .character-img img {
  height: 600px;
  width: auto;
}


.unreal-experience .unreal-service-box .character-img img {
  height: 700px;
  width: auto;
}

.cta-game {
  background-image: url("../images/services/unreal-game/cta-1-back.webp");
}

.cta-game.cta-mobile-game {
  background-position: top center;
  aspect-ratio: 1920 /918;
}


.cta-game.cta-mobile-game.cta-mobile-game-2 {
  aspect-ratio: 1920 /902;
}

.cta-game.cta-mobile-game .cta-spacing {
  padding-bottom: 100px;
}

.cta-game.cta-game-2 {
  background-image: url("../images/services/unreal-game/cta-2-back.webp");
}

.cta-game,
.cta-game.cta-game-2 {
  background-size: cover;
  background-repeat: no-repeat;
  aspect-ratio: 1920 / 771;
  background-position: center;
  filter: blur(8px);
  transition: filter 1.5s ease-out, box-shadow 1.5s ease-out;
  box-shadow: 0 10px 80px rgba(0, 0, 0, 0.6);
  /* dark shadow initially */
}

.cta-game.visible,
.cta-game.cta-game-2.visible {
  filter: blur(0);
  box-shadow: none;
}

.numbers-stats {
  background-image: url("../images/services/unreal-game/numbers-back.webp");
  background-size: cover;
  background-repeat: no-repeat;
}


.numbers-stats .numbers-state-box {
  display: flex;
  column-gap: 20px;
}

.numbers-stats .numbers-state-box .numbers-item {
  background: #E8E8E8;
  border-radius: 40px;
  padding: 20px 15px;
  flex: 0 0 24%;
  border: 1px solid transparent;
  transition:
    border 0.3s ease-in-out,
    transform 0.3s ease-in-out,
    box-shadow 0.3s ease-in-out,
    background-color 0.3s ease-in-out;
  /* height: 100%; */
}

/* Hover effect */


/* Smooth SVG path color transition */
.numbers-stats .numbers-state-box .numbers-item .num-box svg path {
  transition: fill 0.3s ease-in-out;
}

.numbers-stats .numbers-state-box .numbers-item .num-box svg {
  height: 94px;
  width: auto;
  transition: 0.3s ease-in-out;
}

.numbers-stats .numbers-state-box .numbers-item:hover .num-box svg path {
  fill: #f47a14;
}


.numbers-stats .numbers-state-box .numbers-item .num-box {
  background: #313131;
  text-align: center;
  border-radius: 40px;
  padding-top: 30px;
  padding-bottom: 20px;
  height: 100%;
}

.numbers-stats .numbers-state-box .numbers-item .num-box svg {
  margin-bottom: 10px;
}

.journey-boxes .box {
  background: linear-gradient(90deg, #FFFFFF 0%, #F8F8F8 100%);
  border-radius: 7px;
  height: 100%;
  padding: 40px 30px;
  transition: 0.3s ease-in-out;
}

.journey-boxes .box:hover {
  background: #f47a14;
}

.journey-boxes .box .icon svg {
  transition: 0.3s ease-in-out;
}

.journey-boxes .box:hover .box-flex .icon svg path {
  fill: #fff;
  transition: 0.3s ease-in-out;
}

.journey-boxes .box:hover p {
  color: #fff;
}

.journey-boxes .box:hover .box-flex .head h3 {
  color: #fff;
}

.journey-boxes .box:hover .box-flex .num {
  color: #fff;
}


.journey-boxes .box .box-flex {
  display: flex;
  align-items: center;
  column-gap: 20px;
  margin-bottom: 20px;
}

.journey-boxes .box .box-flex .head .short-title {
  font-size: 18px;
  margin-bottom: 0px;
}

.journey-boxes .box p {
  font-size: 16px;
  margin-bottom: 0px;
}

.journey-boxes .box .box-flex .num {
  color: #D7D7D7;
}


.custom-accordion .accordion-item {
  background-color: #121212;
  border: none;
  border-radius: 16px;
  margin-bottom: 50px;
}

.custom-accordion.custom-faqs .accordion-button svg {
  margin-left: auto;
  margin-right: 0;
}

.custom-accordion.custom-faqs .accordion-item {
  margin-bottom: 30px;
}

.custom-accordion .accordion-item:last-child {
  margin-bottom: 0;
}

.custom-faqs button:focus:not(:focus-visible) {

  color: #fff;
}


.accordion-item:first-of-type .accordion-button {
  border-top-left-radius: 16px !important;
  border-top-right-radius: 16px !important;
}

.accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-right-radius: 16px !important;
  border-bottom-left-radius: 16px !important;
}

.custom-accordion .accordion-button {
  background-color: #1a1a1a;
  color: #fff;
  font-weight: 600;
  border-radius: 16px;
  box-shadow: none;
  padding: 20px;
  transition: all 0.3s ease;
}

.custom-accordion .accordion-button svg {
  margin-right: 15px;
  transition: transform 0.3s ease;
}

.custom-accordion .accordion-button:not(.collapsed) {
  background: #f47a14;
}


.custom-accordion .accordion-button:not(.collapsed) svg {
  transform: rotate(90deg);
}

/* .custom-accordion .accordion-button:not(.collapsed) svg path{
  fill: #f47a14;
} */

.custom-accordion .accordion-button::after {
  display: none;
}

/* Animate the collapse/expand */
.accordion-collapse {
  transition: height 0.4s ease, opacity 0.4s ease;
  overflow: hidden;
}

/* Fade & slide in effect for content */
.accordion-body {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.5s ease;

}

/* When accordion is shown */
.accordion-collapse.show .accordion-body {
  opacity: 1;
  transform: translateY(0);
}

.custom-accordion .accordion-button.collapsed {
  background-color: #1a1a1a;
  color: #fff;
}

.custom-accordion .accordion-body {
  background-color: #121212;
  color: #ccc;
  border-top: 1px solid #333;
  padding: 20px;
  font-size: 17px;
  line-height: 1.7;
  border-radius: 0 0 16px 16px;
}

.blogs {
  background-image: url("../images/services/unreal-game/blog-bg.webp");
  background-size: cover;
  background-repeat: no-repeat;
}

.blogs .blogs-box {
  background: linear-gradient(90deg, #FFFFFF 0%, #F8F8F8 100%);
  border-radius: 25px;
  height: 100%;
  padding: 35px 25px;
}

.blogs .blogs-box p {
  color: #3B3B3B;
  font-size: 16px;

}

.blogs .blogs-box .blog-btn {
  color: #f47a14;
  font-size: 18px;
}

.why-choose-game p {
  margin-bottom: 50px;
}

.why-choose-game img {
  height: 550px;
  width: auto;
}

/* Service Page End */


/* Contact Page Start */
.contact-banner {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  animation: diagonalPan 6s ease-in-out infinite alternate;
  margin-top: -104px;
  padding: 150px 0 0px 0;
}

.form-sec.contact-form-sec .form-box {
  margin: 0 auto;
  background: #00000054;
}

.form-sec.contact-form-sec .form-box p {
  font-size: 17px;
}

.form-sec.contact-form-sec .form-box .contact-form {
  text-align: left !important;
}

.form-sec.contact-form-sec .form-box .contact-form label,
.form-sec.contact-form-sec .form-box .contact-form input {
  color: #fff;
}

.form-sec.contact-form-sec .form-box .contact-form textarea {
  color: #fff;
  resize: none;
}

.form-sec.contact-form-sec .form-box .contact-form .btn-submit {
  background: #f47a14;
  color: #fff;
  border: 2px solid #f47a14;
}

.form-sec.contact-form-sec .form-box .contact-form .btn-submit:hover {
  background: transparent;

}

.form-sec.contact-form-sec .contact-form input:focus,
.contact-form textarea:focus {
  border-color: #fff;
  outline: none;
}

.testimonial-client.testimonials-contact {
  background: #000;
}

.testimonial-client.testimonials-contact .box ul {
  margin-top: 50px;
  list-style-type: none;
}

.testimonial-client.testimonials-contact .box ul li {
  color: #f47a14;
  font-size: 17px;
  margin-bottom: 20px;
}

.testimonial-client.testimonials-contact .box ul li:last-child {
  margin-bottom: 0;
}



.client-tek-logos .image-box img {
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}


.client-tek-logos .image-box:hover img {
  filter: grayscale(0%);
}


.types-games.next-section.scrolled-from-swiper {
  padding-top: 130px;
}

.types-games.next-section.p-100 {
  padding-top: 100px;
  /* Or whatever .p-100 gives */
}

/* EXTRA CSS */
.privacy-policy header .get-quote-btn {
  background: #000;
  color: #fff;
  border: 3px solid #000;
}

/* EXTRA CSS */
.terms-and-conditions header .get-quote-btn {
  background: #000;
  color: #fff;
  border: 3px solid #000;
}


/* Blogs Css*/



.search-container {
  display: flex;
  margin-top: 20px;
  align-items: center;
  border-radius: 25px;
  background: rgba(0, 0, 0, 0.001);
  border: 1px solid #ffffff42;
  padding: 5px;
  /* width: 400px; */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.search-container input {
  border: none;
  height: 64px;
  color: white;
  /* 👈 This makes the text visible */
  outline: none;
  padding: 10px 15px;
  border-radius: 55px;
  flex-grow: 1;
  font-size: 16px;
  background: transparent;
}

.search-container input::placeholder {
  color: #fff;
}

.search-container button {
  background-color: #F47A1F;
  border: none;
  height: 52px;
  line-height: 45px;
  outline: none;
  padding: 0px 20px;
  border-radius: 100px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 155px;
}

.search-container button:hover {
  background-color: #e66f1f;
}

.blogs-card-main .category-tabs {
  row-gap: 40px;
  column-gap: 20px;
  justify-content: center;
}

.blogs-card-main .category-tabs .nav-link {
  border-radius: 50px;
  padding: 15px 15px;
  font-weight: 500;
  color: #7B7B7B;
  border: 1px solid #CFCFCF;
  transition: all 0.3s ease;
  font-size: 15px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.blogs-card-main .category-tabs .nav-link.active {
  background: #f47a14;
  /* solid orange */
  color: #fff;
}

.blogs-card-main .category-tabs .nav-link.active::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  background: radial-gradient(circle at left center, rgba(255, 255, 255, 0.4) 0%, transparent 20%),
    radial-gradient(circle at right center, rgba(255, 255, 255, 0.4) 0%, transparent 20%);
  pointer-events: none;
}

.blogs-card-main .category-tabs .nav-item {
  flex: 0 0 18%;
}

.blogs-card-main.category-tabs .nav-link:hover {
  border-color: #ff7a29;
  color: #ff7a29;
}

.blogs-card-main .category-tabs .nav-link.active {
  /* background: linear-gradient(266.32deg, #ff7a29 15%, #ff9a29 85%); */
  color: #fff !important;
  border-color: transparent;
}

.blogs-card-main .tab-pane {
  margin-top: 80px;
}

.blogs-card-main .blog-card-box {
  background: #F8F8F8;
  padding: 30px 20px;
  border-radius: 25px;
  border: 1px solid #DADADA;
  height: 100%;
}

.blogs-card-main .blog-card-box .img {
  margin-bottom: 10px;
}

.blogs-card-main .blog-card-box .content ul {
  margin-top: 20px;
  padding-left: 0;
  margin-bottom: 10px;
}

.blogs-card-main .blog-card-box .content h3 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blogs-card-main .blog-card-box .content p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blogs-card-main .blog-card-box .content ul li {
  font-size: 16px;
  line-height: 1.2;
  margin-bottom: 10px;
  color: #3B3B3B;
  list-style-type: none;
}


.blogs-card-main .blog-card-box p {
  font-size: 16px;
  line-height: 27px;
  color: #3B3B3B;
}

.blogs-card-main .blog-card-box .social-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
}

.blogs-card-main .blog-card-box .social-box .social-icons {
  display: flex;
  align-items: center;
  column-gap: 15px;
}

.blogs-card-main .blog-card-box .social-box .social-icons .box {
  height: 40px;
  width: 40px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #777777;
  transition: 0.3s ease-in-out;
}

.blogs-card-main .blog-card-box .social-box .social-icons .box:hover {
  background: #777777;
}

.blogs-card-main .blog-card-box .social-box .social-icons .box:hover svg path {
  fill: #fff;
}

.blogs-card-main .blog-card-box .social-box .blog-btn a {
  display: block;
  width: 135px;
  color: #f47a14;
  border: 1px solid #f47a14;
  border-radius: 100px;
  font-size: 16px;
  height: 40px;
  line-height: 40px;
  background: #fff;
  padding: 0 20px;
  transition: 0.3s ease-in-out;
}

.blogs-card-main .blog-card-box .social-box .blog-btn a:hover {
  background: #f47a14;
  color: #fff;
}


.blog-detail-top .main {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blog-list li {
  font-size: 16px;
  line-height: 1.2;
  margin-bottom: 10px;
  color: #3B3B3B;
  list-style-type: none;
}

.blog-detail-top .social-links .social-icons {
  display: flex;
  align-items: center;
  column-gap: 15px;
}

.blog-detail-top .social-links .social-icons .box {
  height: 40px;
  width: 40px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #777777;
  transition: 0.3s ease-in-out;
}

.blog-detail-top .social-links .social-icons .box:hover {
  background: #777777;
}

.blog-detail-top .social-links .social-icons .box:hover svg path {
  fill: #fff;
}



.cta-box {
  background: linear-gradient(90deg, #FF4D1C 0%, #F47A1F 100%);
  border-radius: 25px;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.5),
    inset 0 -1px 2px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  color: #fff;
  padding: 20px;
  z-index: 1;
}


.cta-box:after {
  position: absolute;
  content: "";
  top: 10px;
  left: 20px;
  width: 90%;
  height: 90%;
  z-index: -1;
  border: 1px solid #ffffff52;
  border-radius: 25px;
}


.cta-line {
  width: 90%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0px 0 30px;
}

.cta-btn {
  /* background: linear-gradient(135deg, #ff8235, #ff4c4c); */
  background-image: url("../images/blogs/contact-btn-img.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  padding: 12px 40px;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  position: absolute;
  bottom: -22px;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
  color: #fff;
}


.table-of-content {
  background-color: #F9F9F9;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 40px 30px;
  box-sizing: border-box;
  margin-top: 100px;
}

.table-of-content h3 {
  font-weight: 600;
}

.table-of-content ul li {
  margin-bottom: 30px;
  position: relative;
}

.table-of-content ul li:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -15px;
  border-bottom: 1px solid #E2E2E2;
  width: 100%;
  height: 1px;
}


.table-of-content ul li:last-child:after {
  content: none;
}

.table-of-content hr {
  border: none;
  border-top: 1px solid #B3B3B3;
  margin: 0 0 16px;
}

.table-of-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-box {
  margin-top: 50px;
}

.service-btn .btn {
  height: 63px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #7B7B7B;
  color: #7B7B7B;
  padding: 0 15px;
  max-width: 280px;
  width: 100%;
  font-size: 18px;
  transition: 0.3s ease-in-out;
  margin: 0 auto 20px;
}

.service-btn .btn:hover {
  background: linear-gradient(90deg, #FF4D1C 0%, #F47A1F 100%);
  color: #fff;
  border: 1px solid transparent;
}

.blog-content .padd-blog-left {
  padding-left: 70px;
}

.blog-inner-content h2 {
  font-size: clamp(1.875rem, 1.5rem + 1.875vw, 3.75rem);
  margin-bottom: 20px;
  font-weight: 600;
}

.blog-inner-content h3 {
  font-size: clamp(1.5625rem, 1.3125rem + 1.25vw, 2.8125rem);
  margin-bottom: 20px;
  font-weight: 600;
}

.blog-inner-content h4 {
  font-size: clamp(1.375rem, 1.15rem + 1.125vw, 2.5rem);
  margin-bottom: 20px;
  font-weight: 600;
}

.blog-inner-content h5 {
  font-size: clamp(1.25rem, 1.125rem + 0.625vw, 1.875rem);
  margin-bottom: 20px;
  color: #3B3B3B;
  font-weight: 600;
}

.blog-inner-content h6 {
  font-size: clamp(1.0625rem, 1rem + 0.3125vw, 1.375rem);
  margin-bottom: 20px;
  color: #3B3B3B;
  font-weight: 600;
}


.blog-inner-content img {
  width: 100%;
  height: 100%;
  margin-bottom: 20px;
}

.blog-inner-content p {
  font-size: clamp(0.8125rem, 0.75rem + 0.3125vw, 1.125rem);
  color: #3B3B3B;
  font-weight: 400;
  line-height: 1.4;
}

.blog-inner-content .cta-blogs {
  aspect-ratio: 1060 / 428;
  margin-top: 20px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: space-between;
  flex-direction: column;
  margin-bottom: 30px;
  padding-left: 40px;
  padding-right: 40px;
}

.blog-inner-content .cta-blogs h3 {
  color: #ffff;
}

.blog-inner-content .cta-blogs p {
  color: #ffff;
}

.cta-blogs-btn {
  background: linear-gradient(103.64deg, rgba(244, 122, 31, 0.8) 31.89%, rgba(255, 77, 28, 0.8) 62.91%);
  height: 55px;
  max-width: 240px;
  width: 100%;
  display: flex;
  font-size: 18px;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: 0 20px;
  border-radius: 100px;
  border: 1px solid transparent;
  transition: 0.3s ease-in-out;
}

.cta-blogs-btn:hover {
  background: linear-gradient(103.64deg, rgba(255, 77, 28, 0.8) 31.89%, rgba(244, 122, 31, 0.8) 62.91%);
  color: #fff;
}

.blog-inner-content .accordion-button:not(.collapsed) {
  color: #3B3B3B;
  ;
  background-color: transparent;
  box-shadow: none;
}

.blog-inner-content .accordion {
  margin-top: 40px;
}


.blog-inner-content .accordion-item:first-of-type .accordion-button:not(.collapsed) {
  border-top-left-radius: 18px !important;
  border-top-right-radius: 18px !important;
}

.blog-inner-content .accordion-item:last-of-type {
  border-bottom-right-radius: 18px !important;
  border-bottom-left-radius: 18px !important;
}

/* .blog-inner-content h2{
  margin-bottom: 0;
 } */

.blog-inner-content .accordion-button {
  border-radius: 18px;
}

.blog-inner-content .accordion-item:last-of-type .accordion-collapse {
  border-bottom-right-radius: 18px !important;
  border-bottom-left-radius: 18px !important;
}

.blog-inner-content hr {
  margin: 0;
}

/* Hide <hr> when accordion is open */
.blog-inner-content .accordion-button[aria-expanded="false"]+hr {
  display: none;
}

/* Show <hr> when accordion is collapsed */
.blog-inner-content .accordion-button[aria-expanded="true"]+hr {
  display: block;
}

.blog-inner-content .accordion-button:focus {
  border-color: transparent;
  box-shadow: none;
}

.blog-inner-content .accordion-item {
  margin-bottom: 20px;
  border: 1px solid #838383;
  border-radius: 18px;
}


/* service page some other new sections */
.cta-charater-service .cta-revol-box {
  background: linear-gradient(90deg, #000000 56.25%, #252525 100%);
  border-radius: 40px;
  padding: 0 0 0 80px;
  aspect-ratio: 1600 / 669;
}

.gif-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: none;
  /* empty at first */
  transform: translate(-50%, -50%);
  z-index: -1;
  opacity: 0;
  /* hidden at start */
  transition: opacity 1s ease-in-out;
  /* smooth fade */
  border-radius: 40px;
  transition: background 0.3s ease-in-out;
  /* smooth transition */
}

.gif-bg.loaded {
  opacity: 1;
  /* fade in when loaded */
}

.character-img .img img {
  margin-top: -40px;
}

.character-img {
  position: relative;
  z-index: 2;
  max-width: 100%;
  height: auto;
}

.journey-boxes.generes-nft {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right top;
}

.journey-boxes.generes-nft .Generesslider {
  height: 550px;
}

.journey-boxes.generes-nft .Generesslider .swiper-slide {
  margin-bottom: 20px;
}

.journey-boxes.generes-nft .Generesslider .swiper-slide-prev {
  opacity: 0.4;
}

.journey-boxes.generes-nft .Generesslider .swiper-slide {
  transition: 0.3s ease-in-out;
}

.journey-boxes.generes-nft .Generesslider .swiper-slide-next {
  opacity: 0.4;
}

.journey-boxes.generes-nft .Generesslider .swiper-slide-active .box {
  background: #f47a14;
}

.journey-boxes.generes-nft .Generesslider .swiper-slide-active .box .box-flex .num {
  color: #fff;
}

.journey-boxes.generes-nft .Generesslider .swiper-slide-active .box .box-flex .head h3 {
  color: #fff;
}

.journey-boxes.generes-nft .Generesslider .swiper-slide-active .box p {
  color: #fff;
}


.journey-boxes.generes-nft .box {
  height: 100%;
  background: rgba(0, 0, 0, 0.005);
  border-radius: 10px;
  position: relative;
  /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); */
  border: 1px solid rgba(255, 255, 255, 0.2);
  /* subtle border */
  transition: 0.3s ease-in-out;
  padding: 30px 25px;
}


.journey-boxes.generes-nft .box .box-flex {
  margin-bottom: 10px;
}

.journey-boxes.generes-nft .box .box-flex .num {
  font-family: "poppins", sans-serif;
}


.journey-boxes.generes-nft .box:hover {
  background: #f47a14;
}

.journey-boxes.generes-nft .box p {
  max-width: 100%;
}

.journey-boxes.generes-nft .box:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.001);
  top: 0;
  left: 0;
}


/* about us page */
.contact-banner.about-banner {
  height: 100vh;
  padding: 0;
  margin-top: -74px;
}


.contact-banner.about-banner .list-item-about {
  margin-top: 30px;
}


.contact-banner.about-banner .list-item-about ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-left: 0px;
  list-style-type: none;
}


.contact-banner.about-banner .list-item-about ul li {
  position: relative;
  padding: 20px 0px;
  border: 1px solid #ffffff4d;
  border-radius: 100px;
  margin-bottom: 20px;
  text-align: center;
  margin-right: 10px;
  position: relative;
  font-size: 22px;
  line-height: 1.2;
}

.contact-banner.about-banner .list-item-about ul li:before {
  position: absolute;
  content: "";
  background: #FF4D1C;
  border-radius: 100px;
  width: 10px;
  height: 10px;
  left: 20px;
  top: 30px;
}

.contact-banner.about-banner .list-item-about ul li:last-child {
  margin-bottom: 0;
  margin-right: 0;
}

.contact-banner.about-banner .list-item-about ul li:nth-child(3) {
  margin-bottom: 0;
}

.contact-banner.about-banner .list-item-about ul li:nth-child(2) {
  margin-right: 0;
}


.about-tabs .about-tab-box {
  background: linear-gradient(90deg, #000000 56.25%, #252525 100%);
  border-radius: 40px;
  padding: 20px 70px 30px 70px;
}

.about-tabs .about-tab-box .tab-section ul {
  justify-content: space-evenly;
  border-bottom: 1px solid #3B3B3B;
}

/* .about-tabs .about-tab-box .tab-section ul li{
  max-width: 300px;
  width: 100px;
  padding: 20px 10px;
} */

.about-tabs .about-tab-box .tab-section ul li button {
  border: none;
  color: #fff;
  background: transparent;
  transition: 0.3s;
  border-radius: 50px;
  min-width: 200px;
  width: 100%;
  margin-bottom: 10px;

}

.about-tabs .about-tab-box .tab-section ul li .nav-link.active {
  background: #111;
  box-shadow: 0 0 10px rgba(244, 122, 20, 0.4),
    /* outer glow */
    0 0 20px rgba(244, 122, 20, 0.2) inset;
  /* inner glow */
  border-radius: 50px;
}


.awards-games .tekrevol_rating_numbers {
  font-size: 180px;
  font-family: "poppins", sans-serif;
  font-weight: 600;
  line-height: 190px;
}

.awards-games.awards-about .awardsgamesslider {
  margin-bottom: 150px;
}

.process-roadmap-nft .roadmap-box .roadmap-flex {
  display: flex;
  align-items: center;
  column-gap: 30px;
}

.process-roadmap-nft .roadmap-box .box {
  background-image: url("../images/services/nft-game/numbers-back.png");
  background-size: cover;
  background-position: center;
  border-radius: 100%;
  /* background: radial-gradient(circle at center, #2c2c3e, #0d0d1a); */
  width: 106px;
  height: 106px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 100px;
  font-family: "Poppins", sans-serif;
}

.process-roadmap-nft .roadmap-box {
  position: relative;
  z-index: 1;
}

.process-roadmap-nft .spacing {
  margin-top: 160px;
}

.process-roadmap-nft .spacing-2 {
  margin-top: 60px;
}

.roadmap-box.box-1 {
  max-width: 30%;
  float: right;
  margin-right: 320px;
}

.process-roadmap-nft .roadmap-box.box-1:before {
  position: absolute;
  content: "";
  background-image: url(../images/services/nft-game/line-1.png);
  background-repeat: no-repeat;
  width: 687px;
  height: 228px;
  top: 50%;
  right: 360px;
  z-index: -1;
}


.process-roadmap-nft .roadmap-box.box-2:before {
  position: absolute;
  content: "";
  background-image: url(../images/services/nft-game/line-2.png);
  background-repeat: no-repeat;
  width: 315px;
  height: 4px;
  top: 50px;
  left: 130px;
  z-index: -1;
  background-position: center;
}


.process-roadmap-nft .roadmap-box.box-4:before {
  position: absolute;
  content: "";
  background-image: url(../images/services/nft-game/line-4.png);
  background-repeat: no-repeat;
  width: 318px;
  height: 327px;
  top: 50px;
  right: 0;
  z-index: -1;
  background-position: center;
}

.process-roadmap-nft .roadmap-box.box-5:before {
  position: absolute;
  content: "";
  background-image: url(../images/services/nft-game/line-6.png);
  background-repeat: no-repeat;
  width: 448px;
  height: 4px;
  top: 50px;
  right: -120px;
  z-index: -1;
  background-position: center;
}

.process-roadmap-nft .roadmap-box .box.box-5 {
  margin-left: 120px;
}

.process-roadmap-nft .roadmap-box .content h3 {
  margin-bottom: 10px;
  font-size: clamp(1rem, 0.925rem + 0.375vw, 1.375rem);
}

.process-roadmap-nft .roadmap-box .content p {
  margin-bottom: 0;
  font-size: clamp(0.75rem, 0.725rem + 0.125vw, 0.875rem);
}

.cta-game.cta-about-us {
  aspect-ratio: 1920 / 938;
  margin-top: -180px;
}

.cta-game.cta-about-us .cta-spacing p {
  margin-right: 100px;
}

.cta-game.cta-about-us-2 {
  aspect-ratio: 1920 / 874;
  z-index: 99;
  position: relative;
}

.client-tek-logos.client-about-logos .image-box img {
  filter: unset;
}

.form-sec.form-about-us {
  margin-top: -22px;
}

.banner-spacing {
  padding-top: 74px;
}

/* blockchain page css */

.cta-charater-service.cta-blockchain-fold .cta-revol-box {
  background: linear-gradient(90deg, #000000 56.25%, #252525 100%);
}

.cta-charater-service.cta-blockchain-fold .full-height {
  height: 100%;
}

.cta-charater-service.cta-blockchain-fold .character-img {
  height: 100%;
  position: relative;
}

.cta-charater-service.cta-blockchain-fold .character-img {
  height: 100%;
  position: relative;
}

.cta-charater-service.cta-blockchain-fold .character-img:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  /* semi-transparent black */
  z-index: -1;
  border-radius: 40px;
}

.process-roadmap-nft.roadmap-blockchain .spacing-2 {
  margin-top: 90px;
}

.blockchain-developers .block-box {
  background: rgba(0, 0, 0, 0.001);
  border-radius: 55px;
  padding: 5px 10px 5px 5px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  /* smooth transition */
  cursor: pointer;
}

.blockchain-developers .block-box:hover {
  transform: scale(1.05);
  /* slight zoom */
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
  /* deeper shadow */
  border-color: rgba(255, 255, 255, 0.5);
  /* brighter border */
  background: rgba(255, 255, 255, 0.15);
  /* more visible glass effect */

}

.blockchain-developers .block-box .block-flex {
  display: flex;
  align-items: center;
  column-gap: 30px;
}

.blockchain-developers .block-box .block-flex .num {
  background: #fff;
  height: 70px;
  width: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
}


/* Portfolio Page */
.portfolio-game .games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 20px;
  row-gap: 40px;
}

.portfolio-game .games-grid .game-box .game-img {
  margin-bottom: 20px;
}

.portfolio-game .games-grid .game-box .game-img img {
  width: 100%;
  object-fit: cover;
}

.portfolio-game .games-grid .game-box {
  text-align: center;
}

.portfolio-game .games-grid .game-box .game-content p {
  font-size: clamp(0.8125rem, 0.775rem + 0.1875vw, 1rem);
  color: #3B3B3B;
}

.looder_img {
  height: 100px;
  width: auto;
}



/* Android Page css */

.process-roadmap-nft.process-android .spacing {
  margin-top: 130px;
}

.process-roadmap-nft.process-android .spacing-2 {
  margin-top: 72px;
}

.meet-the-dream.meet-android .img-acc img {
  height: 650px;
  width: auto;
}

.meet-the-dream.meet-android .custom-accordion .accordion-item {
  border-radius: 30px;
  background: linear-gradient(to right, #ffffff, #f5f5f5, #f3f3f3, #f2f2f2, #f1f1f1);
  border: 1px solid #eaeaea;
  /* faint border like in your image */
}

.meet-the-dream.meet-android .accordion-item:first-of-type .accordion-button {
  border-top-left-radius: 30px !important;
  border-top-right-radius: 30px !important;
}

.meet-the-dream.meet-android .accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-right-radius: 30px !important;
  border-bottom-left-radius: 30px !important;
}

.meet-the-dream.meet-android .custom-accordion .accordion-button {
  color: #000;
  background: linear-gradient(to right, #ffffff, #f5f5f5, #f3f3f3, #f2f2f2, #f1f1f1);
  border-radius: 30px;
}

.meet-the-dream.meet-android .custom-accordion .accordion-body {
  background: linear-gradient(to right, #ffffff, #f5f5f5, #f3f3f3, #f2f2f2, #f1f1f1);
  color: #000;
  border-top: unset;
  border-radius: 30px;
  padding-top: 10px;
}

.meet-the-dream.meet-android .custom-accordion .accordion-button svg path {
  fill: #000;
}

.journey-boxes.android-journey-game .box {
  background: linear-gradient(90deg, #000000 0%, #1D1D1D 100%);
  border-radius: 8px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Hover effect */
.journey-boxes.android-journey-game .box:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 0 15px rgba(244, 122, 20, 0.6);
}

/* Moving glowing orange border */
.journey-boxes.android-journey-game .box:hover::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  padding: 2px;
  background: linear-gradient(90deg, #f47a14, #ff9b47, #f47a14);
  background-size: 300% 300%;
  animation: borderGlowOrange 4s linear infinite;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

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

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

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


/* ios page css */
.process-roadmap-nft.process-ios-game .spacing {
  margin-top: 120px;
}

.process-roadmap-nft.process-ios-game .spacing-2 {
  margin-top: 50px;
}

.process-roadmap-nft.process-ios-game .roadmap-box.box-4 p {
  max-width: 95%;
}

.journey-boxes.ios-game-why-choose .img img {
  height: 820px;
  width: auto;
}

/* 3D Animation CSS */
.ready-to-bring-cta.cta-story-3d {
  aspect-ratio: 1920 / 740;
  background: linear-gradient(83.63deg, #000000 21.48%, rgba(0, 0, 0, 0.9) 58.6%, rgba(0, 0, 0, 0) 75.05%);
}

.ready-to-bring-cta.cta-story-3d .bg-video {
  object-fit: contain;
  right: 0;
  object-position: right;
}

.ready-to-bring-cta.cta-story-3d:after {
  position: absolute;
  content: "";
  right: -20px;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(83.63deg, #000000 21.48%, rgba(0, 0, 0, 0.9) 58.6%, rgba(0, 0, 0, 0) 75.05%);
  z-index: -1;
}

.ready-to-bring-cta.cta-story-3d .bg-fallback-image {
  background-image: url("https://revolgames.s3.us-east-1.amazonaws.com/assets/cta-back-1760446591-7089.webp");
}

/* UK Advanced Gaming */

.uk-advanced-gaming .box-gaming {
  position: relative;
  min-height: 271px;
  height: 100%;
  width: 100%;
  padding: 0 20px;
  border-radius: 22px;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Dark overlay */
.uk-advanced-gaming .box-gaming::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 22px;
  transition: background 0.4s ease;
  z-index: 1;
}


/* Text content */
.uk-advanced-gaming .box-gaming .main-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 2;
  transition: transform 0.4s ease;
}

/* Hover Effects */
.uk-advanced-gaming .box-gaming:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.uk-advanced-gaming .box-gaming:hover::before {
  background: rgba(0, 0, 0, 0.3);
}

.uk-advanced-gaming .box-gaming:hover .main-content {
  transform: translateY(-8px);
}

.uk-advanced-gaming .box-gaming .main-content .left-content {
  max-width: 80%;
}

.uk-advanced-gaming .box-gaming .main-content .left-content h2 {
  font-weight: 600;
}

.uk-advanced-gaming .box-gaming .btn-arrow {
  position: absolute;
  right: 25px;
  bottom: 50px;
}

.uk-advanced-gaming .box-gaming .btn-arrow svg {
  transition: stroke 0.4s ease;
  transform: rotate(0deg);
}

/* 🔸 Arrow color change on hover */
.uk-advanced-gaming .box-gaming:hover .btn-arrow svg {
  stroke: #f47a14;
  /* or your brand orange */
  transform: rotate(320deg);
}


.lazy-blog-img {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.lazy-blog-img[src^="https"] {
  opacity: 1;
}

/* Game art page css */

.art-services {
  position: relative;
}

.art-services .art-box {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.73) -0.01%, rgba(244, 244, 244, 0.73) 100%);
  border-radius: 22px;
  padding: 40px 0px 40px 20px;
  transition: 0.3s ease-in-out;
  height: 340px;
  position: relative;
}

.art-services.uk-game-services .art-box {
  padding: 40px 20px 40px 20px;
  height: 100%;
  transition: 0.3s ease-in-out;
}

/* .art-services.uk-game-services .swiper-slide:nth-child(even) .art-box {
 background: linear-gradient(90deg, rgba(255, 255, 255, 0.73) -0.01%, rgba(244, 244, 244, 0.73) 100%);
} */


/* .art-services.uk-game-services .swiper-slide:nth-child(even) .art-box h3,
.art-services.uk-game-services .swiper-slide:nth-child(even) .art-box h4,
.art-services.uk-game-services .swiper-slide:nth-child(even) .art-box p {
  color: #000;
} */

.art-services.uk-game-services .art-box p {
  margin-bottom: 0;
}

/* .art-services .art-box:hover{
  background: #1A1A1A;
} */

/* .art-services .art-box:hover h3,
.art-services .art-box:hover h4,
.art-services .art-box:hover p {
  color: #fff;
} */

.art-services .swiper-slide:nth-child(even) .art-box {
  background: #000;
  /* black background */
  color: #fff;
  /* default text color white */
}

/* Ensure individual text elements turn white */
.art-services .swiper-slide:nth-child(even) .art-box h3,
.art-services .swiper-slide:nth-child(even) .art-box h4,
.art-services .swiper-slide:nth-child(even) .art-box p {
  color: #fff;
}


.art-services.uk-game-services .uk-service-slider {
  height: 100%;
}


.art-services .swiper-button-next,
.art-services .swiper-button-prev {
  background: #000;
  border-radius: 50px;
  width: 40px;
  height: 40px;
  bottom: 30%;
  top: unset;
  transition: 0.3s ease-in-out;
}

.art-services .swiper-button-next:hover,
.art-services .swiper-button-prev:hover {
  background: #f47a14;
}

.art-services .swiper-button-next {
  right: 110px;
}

.art-services .swiper-button-prev {
  left: 110px;
}

.art-services .swiper-button-next::after,
.art-services .swiper-button-prev::after {
  width: 20px;
  height: 20px;
  font-size: 20px;
  text-align: center;
  color: #fff;
}

.art-services .art-box .content {
  max-width: 95%;
}

.art-services .art-box .art-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.art-services .art-img {
  position: absolute;
  top: 0;
  right: 0px;
  z-index: 11;
}


.art-services .art-img img {
  height: 330px;
  width: auto;
}


.showcase-gameart-tabs .nav-tabs {
  justify-content: space-between;
}

.showcase-gameart-tabs .nav-tabs .nav-item .nav-link {
  color: #5D5D5D;
  background: transparent;
  border: none;
  font-weight: 500;
}

.showcase-gameart-tabs .nav-tabs .nav-item .nav-link:hover,
.showcase-gameart-tabs .nav-tabs .nav-link.active {
  color: #f47a14;
  background: transparent;
}

.showcase-gameart-tabs .tab-content {
  text-align: center;
}

.showcase-gameart-tabs .tab-content img {
  height: 570px;
  width: auto;
}

.cta-game.cta-mobile-game.cta-game-art-1 {
  aspect-ratio: 1944 / 800;
  background-position: top right;
}

.journey-boxes.best-game-art .box {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.7) 1.93%, rgba(235, 235, 235, 0.7) 100%);
}

.journey-boxes.best-game-art .box:hover {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.7) 1.93%, rgba(235, 235, 235, 0.7) 100%);
}

.journey-boxes.best-game-art .box:hover p {
  color: #000;
}

.journey-boxes.best-game-art .box:hover .box-flex .num {
  color: #D7D7D7;
}

.journey-boxes.best-game-art .box:hover .box-flex .head h3 {
  color: #000;
}


.workflow-art .workflow-art-slider {
  height: 100%;
}

.workflow-art .workflow-box {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.73) -0.01%, rgba(244, 244, 244, 0.73) 100%);
  padding: 30px 20px;
  border-radius: 22px;
  height: 100%;
  position: relative;
}

.workflow-art .workflow-box .workflow-flex {
  display: flex;
  align-items: center;
  column-gap: 15px;
  margin-bottom: 20px;
}

.workflow-art .workflow-box p {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 25px;
}

.workflow-art .workflow-box .slider-arrow {
  position: absolute;
  top: 50%;
  right: -36px;
  z-index: 11;
  transform: translate(-50%, -50%);
}

.workflow-art .workflow-box .slider-arrow svg {
  height: 35px;
  width: auto;
}

.workflow-art .workflow-box .workflow-flex .num {
  font-weight: 600;
}


/* Uk Mobile Game Css */

.process-uk-game-dev .process-main {
  display: flex;
  column-gap: 20px;
}

.process-uk-game-dev .process-main .process-item .box {
  background-image: url("https://revolgames.s3.us-east-1.amazonaws.com/assets/process-uk-circle-1760715094-6554.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 90px;
  height: 90px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 11;
}

.process-uk-game-dev .process-main .process-item {
  flex: 0 0 15.66%;
  position: relative;
  z-index: 1;
}

.process-uk-game-dev .process-main .process-item:after {
  background-image: url(https://revolgames.s3.us-east-1.amazonaws.com/assets/line-uk-game-1760715616-6870.webp);
  position: absolute;
  content: "";
  top: 35px;
  left: 80px;
  width: 170px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: -1;
}

.process-uk-game-dev .process-main .process-item:last-child:after {
  content: unset;
}

.process-uk-game-dev .process-main .process-item .box .content .process-uk-game-dev .process-main .process-item .box .content p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 20px;
}

.iconic-uk-cta {
  aspect-ratio: 1920 / 918;
  background-size: cover;
  background-color: #000;
}

.journey-boxes.android-journey-game.trusted-uk-box {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.journey-boxes.android-journey-game.trusted-uk-box .box-main {
  display: flex;
  column-gap: 10px;
}

.journey-boxes.android-journey-game.trusted-uk-box .box-main .box-item {
  flex: 0 0 19.99%;
}

.journey-boxes.android-journey-game.trusted-uk-box .box-main .box-item .box-flex {
  column-gap: 12px;
}

/* Services Listing Page */
.contact-banner.about-banner.services-listing-banner .list-item-about ul li {
  font-size: 17px;
  transition: 0.3s ease-in-out;
}

.contact-banner.about-banner.services-listing-banner .list-item-about ul li:hover {
  background: #f47a14;
  border: 1px solid #f47a14;
}

.contact-banner.about-banner.services-listing-banner .list-item-about ul li:before {
  top: 26px;
}

.contact-banner.about-banner.services-listing-banner .form-sec .form-box {
  background: rgba(255, 255, 255, 0.1);
  /* translucent white */
  backdrop-filter: blur(15px);
  /* blur for frosted look */
  -webkit-backdrop-filter: blur(15px);
  /* Safari support */
  border: 1px solid rgba(255, 255, 255, 0.2);
  /* subtle border */
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  /* soft shadow */
  border-radius: 30px;
  max-width: 520px;
  padding: 50px 35px;
  margin-left: auto;
}

/* .contact-banner.about-banner.services-listing-banner .form-sec .form-box input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px rgba(255,255,255,0.1) inset !important;
  color: #ffff !important;
} */


.contact-banner.about-banner.services-listing-banner .form-sec .form-box .looder_img {
  height: 60px;
}

.contact-banner.about-banner.services-listing-banner .form-sec .form-box input {
  height: 25px;
}

.contact-banner.about-banner.services-listing-banner .form-sec .form-box label {
  font-size: 16px;
}

.services-gaming-listing a .listing-box {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.73) -0.01%, rgba(244, 244, 244, 0.73) 100%);
  border-radius: 22px;
  padding: 40px 25px;
  height: 275px;
  position: relative;
  margin-bottom: 70px;
  transform-style: preserve-3d;
  animation: cardFloat 3s ease-in-out infinite;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Keyframes for subtle 3D floating effect */
@keyframes cardFloat {
  0% {
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg) translateY(0);
  }

  25% {
    transform: perspective(1000px) rotateX(4deg) rotateY(-4deg) translateY(-5px);
  }

  50% {
    transform: perspective(1000px) rotateX(0deg) rotateY(4deg) translateY(0);
  }

  75% {
    transform: perspective(1000px) rotateX(-4deg) rotateY(0deg) translateY(5px);
  }

  100% {
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg) translateY(0);
  }
}

.services-gaming-listing a .listing-box.listing-black-box {
  background: linear-gradient(90deg, #1A1A1A -0.01%, #000000 100%);
}

.services-gaming-listing a .listing-box p {
  margin-bottom: 0;
}

.services-gaming-listing a .listing-box .icon {
  position: absolute;
  right: -10px;
  top: -50px;
}

.services-gaming-listing a .listing-box .icon svg {
  height: 130px;
  width: auto;
}

/* Hire Game Page css */
.services-gaming-listing.hire-help-studio a .listing-box {
  height: 100%;
  margin-bottom: 0;
}

.talent-hub {
  background: #000;
}

.talent-hub .curve-line {
  background-image: url("https://revolgames.s3.us-east-1.amazonaws.com/assets/curve-line-1762179163-8327.webp");
  background-repeat: no-repeat;
  background-size: cover;
  height: 350px;
}

.talent-hub .box {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 136px;
  width: 136px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.talent-hub .content {
  text-align: center;
  max-width: 90%;
}

.talent-hub .content p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 25px;
}

.talent-hub .box.box-1 {
  margin-left: 101px;
  margin-top: -60px;
  margin-bottom: 50px;
}

.talent-hub .box.box-2 {
  margin-top: 40px;
  margin-left: 85px;
}

.talent-hub .content.content-2 {
  margin-left: 15px;
}

.talent-hub .content.content-1 {
  margin-left: 20px;
}

.talent-hub .box.box-3 {
  margin-top: -60px;
  margin-left: 95px;
  margin-bottom: 50px;
}

.talent-hub .content.content-3 {
  margin-left: 15px;
}

.talent-hub .box.box-4 {
  margin-left: 100px;
  margin-top: 60px;
}

.talent-hub .content.content-4 {
  margin-left: 15px;
}


/* Homepage one new sec Building */

.building-smarter-vid-cta .building-cta {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  aspect-ratio: 1600 / 873;
  border-radius: 50px;
  padding: 50px 45px;
  background: radial-gradient(50% 50% at 50% 50%, rgba(0, 0, 0, 0.57) 0%, #000000 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.swiper.buildsmarterslider {
  height: 500px;
}

.building-cta .vid-build {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.building-cta .container,
.building-cta .row,
.building-cta h2,
.building-cta p,
.building-cta a,
.building-cta .swiper {
  position: relative;
  z-index: 2;
}

.building-cta .vid-build video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.building-smarter-vid-cta .building-cta .swiper-slide-active .build-box {
  border: 2px solid rgba(244, 122, 20, 0.8);
  box-shadow: 0 0 12px rgba(244, 122, 20, 0.25);
  /* light halo */
  border-radius: 27px;
}

.building-smarter-vid-cta .building-cta .swiper-slide {
  transition: all 0.5s ease;
  transform: scale(0.8);
  /* default smaller size */
  opacity: 0.8;
}

.building-smarter-vid-cta .building-cta .swiper-slide-prev,
.building-smarter-vid-cta .building-cta .swiper-slide-next {
  transform: scale(0.8);
  opacity: 0.9;
}

.building-smarter-vid-cta .building-cta .swiper-slide-active {
  transform: scale(1);
  opacity: 1;
}

.building-cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  /* dark overlay for better text visibility */
  z-index: 1;
}

.building-smarter-vid-cta .building-cta .build-box {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.08) 100%);
  opacity: 0.95;
  backdrop-filter: blur(7.5px);
  border-radius: 27px;
  height: 160px;
  padding: 30px 20px;
  transition: 0.4s ease-in-out;
  border: 2px solid transparent;
}

.building-smarter-vid-cta .building-cta .build-box .build-flex {
  display: flex;
  align-items: center;
  column-gap: 20px;
}

.building-smarter-vid-cta .building-cta .build-box .build-flex .num {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 71px;
  height: 71px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 70px;
}

.building-smarter-vid-cta .building-cta .build-box .build-flex .num h4 {
  margin-bottom: 0;
}

.building-smarter-vid-cta .building-cta .build-box .build-flex .content p {
  margin-bottom: 0;
}


/* web3 game page css */
.unreal-experience.web-3-services .unreal-service-box{
  height: 100%;
}


.unreal-experience.web-3-services .web-3-serv-img{
    position: absolute;
    top: 160px;
    right: -20px;
    z-index: 1;
}

.unreal-experience.web-3-services .web-3-serv-img img{
  height: 500px;
  width: auto;
}

.invest-web3 .invest-content .invest-flex{
  display: flex;
  align-items: center;
  column-gap: 15px;
  margin-bottom: 10px;
}

.invest-web3 .invest-sticky{
    position: sticky;
    top: 110px;
}


.build-fidelity .build-img {
    position: relative;
    perspective: 1000px; /* gives 3D depth */
}

.build-fidelity .build-coin-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transform-style: preserve-3d;
  animation: flip360 2s linear infinite; /* adjust speed as needed */
}

/* 360-degree flip animation */
@keyframes flip360 {
  0% {
    transform: translate(-50%, -50%) rotateY(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotateY(360deg);
  }
}


.build-fidelity .content-box{
  max-width: 23%;
   position: absolute;
}

.build-fidelity .content-box p{
  font-size: 15px;
  margin-bottom: 20px;
}

.build-fidelity .content-box h3 {
  margin-bottom: 30px;
}

.build-fidelity .content-box.box-1 {
    top: 31px;
    left: 65px;
    text-align: right;
}

.build-fidelity .content-box.box-2 {
    left: 42px;
    bottom: 240px;
    text-align: right;
}

.build-fidelity .content-box.box-3 {
    left: 160px;
    bottom: -70px;
    text-align: right;
}

.build-fidelity .content-box.box-4 {
    right: 130px;
    bottom: -50px;
    text-align: left;
}

.build-fidelity .content-box.box-5 {
    text-align: left;
    right: 10px;
    top: 330px;
}

.build-fidelity .content-box.box-6 {
    text-align: left;
    right: 90px;
    top: 20px;
}


.web3-game-types .web-3-main{
  display: flex;
 column-gap: 20px;
 align-content: center;
  margin-top: 70px;
}