

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');



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


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

.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 */


@keyframes glowBorder {
  0% {
    box-shadow: 0 0 0px #f47a14;
  }
  50% {
    box-shadow: 0 0 15px 5px #f47a14;
  }
  100% {
    box-shadow: 0 0 0px #f47a14;
  }
}


/* 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;
}


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

.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*/

.banner-hero.blogs-main-banner{
  position: relative;
  z-index: 1;
}

.banner-hero.blogs-main-banner:before{
 position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* semi-transparent black */
  z-index: -1;
}

.banner-hero.blogs-main-banner h1{
  font-size: clamp(2.1875rem, 1.75rem + 2.1875vw, 4.375rem);
}


 .search-container {
      margin-top: 20px;
      border-radius: 25px;
      background: rgba(0, 0, 0, 0.001);
      border: 1px solid #ffffff42;
      padding: 5px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      
    }

     .search-container form {
    display: flex;

    align-items: center;
}

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

    input.search-btn {
      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;
      flex: 0 0 180px;
    }

     input.search-btn: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 h3 a{
   display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blogs-card-main .blog-card-box .content h3 a{
  color: #000;
}

.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: 15px;
            line-height: 1.2;
            margin-bottom: 10px;
            color: #3B3B3B;
            list-style-type: none;
            transition: 0.2s ease-in-out;
        }

        .blogs-card-main .blog-card-box .content ul li a:hover{
          color: #f47a14;
        }


        .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 {
  list-style-type: none;
}
.blog-list li a{
   font-size: 15px;
            line-height: 1.2;
            margin-bottom: 10px;
            color: #3B3B3B;
            list-style-type: none;
            transition: 0.3s ease-in-out;
}

.blog-list li a:hover{
  color: #f47a14;
}

.blog-list li a.active{
         color: #f47a14;
}

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



.blog-content .sidebar {
    position: sticky;
    top: 110px;
}




 .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: 90px;
    }

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

      .table-of-content ul {
      list-style: none;
      padding: 0;
      margin: 0;
      height: 290px;
      overflow-y: auto;
      overflow-x: hidden;
    }
    
  .table-of-content ul li {
    margin-bottom: 30px;
    position: relative;
  }

.table-of-content ul li:last-child {
  margin-bottom: 0;
}

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

    
    .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: 55px;
     margin-bottom: 20px;
     font-weight: 600;
     }

     .blog-card-box h3 a{
      font-size: clamp(1.0625rem, 1rem + 0.3125vw, 1.375rem);
     }

     .blog-inner-content h3 {
     font-size: 45px;
     margin-bottom: 20px;
     font-weight: 600;
     }

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

     .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(1rem, 0.95rem + 0.25vw, 1.25rem);
     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 p a {
    color:#f47a14;
}

     .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: center;
      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;
        padding-bottom: 0;
       }

       .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;
    padding-bottom: 0;
  }

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

.blog-inner-content .accordion-button h6{
  margin-bottom: 10px;
}

/* 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;
}

.blog-inner-content .accordion-body{
  padding-top: 0;
}


.navigation .nav-page-area {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.navigation .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  background: #f5f5f5;
  text-decoration: none;
  transition: all 0.3s ease;
}

.navigation .page-numbers:hover {
  background: #f47a14;
  color: #fff;
}

.navigation .page-numbers.current {
  background: #f47a14;
  color: #fff;
  font-weight: 600;
}

.navigation .page-numbers.dots {
  background: transparent;
  color: #999;
  pointer-events: none;
}

.navigation .page-numbers.next,
.navigation .page-numbers.prev {
  width: auto;
  padding: 0 15px;
  border-radius: 20px;
  background: #eee;
}

.navigation .page-numbers.next:hover,
.navigation .page-numbers.prev:hover {
  background: #f47a14;
  color: #fff;
}

.blog-inner-content .newtable-layout {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

.blog-inner-content .newtable-layout th,
.blog-inner-content .newtable-layout td {
  border: 1px solid #ddd;
  padding: 12px 15px;
  text-align: left;
  font-size: 16px;
}

.blog-inner-content .newtable-layout tr:nth-child(even) {
  background-color: #f9f9f9;
}

.blog-inner-content .newtable-layout tr:first-child {
  background-color: #f47a14;
  color: #fff;
}

.blog-inner-content .newtable-layout th b,
.blog-inner-content .newtable-layout td span {
  font-weight: 400;
}

.blog-inner-content .newtable-layout-container {
    width: 100%;
    overflow-x: auto;
    margin-bottom: 20px;
    margin-top: 20px;
}

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