@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap");

/* Theme styles start  */

body {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  background-color: #eb2227;
}

p,
span {
  font-family: "PT Sans", serif !important;
  font-style: normal;
  /* font-optical-sizing: auto; */
}

b {
  font-weight: 500 !important;
}

@media screen and (min-width: 1900px) {
  .custom-container {
    max-width: 1800px !important;
  }
}

@media screen and (min-width: 1400px) and (max-width: 1600px) {
  .custom-container {
    max-width: 1500px !important;
  }
}

@media screen and (min-width: 1600px) and (max-width: 1700px) {
  .custom-container {
    max-width: 1600px !important;
  }
}

@media screen and (min-width: 1700px) and (max-width: 1800px) {
  .custom-container {
    max-width: 1700px !important;
  }
}

@media screen and (min-width: 1800px) and (max-width: 1920px) {
  .custom-container {
    max-width: 1770px !important;
  }
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
  .custom-container {
    max-width: 1150px !important;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1400px) {
  .custom-container {
    max-width: 1350px !important;
  }
}

@media screen and (min-width: 576px) and (max-width: 768px) {
  .custom-container {
    max-width: 740px !important;
  }
}

/* Medium devices (tablets, 768px and up) */
@media screen and (min-width: 768px) and (max-width: 992px) {
  .custom-container {
    max-width: 950px !important;
  }
}

.txt-grey {
  color: rgba(71, 71, 71, 1);
}

.txt-grey__2 {
  color: rgba(142, 144, 144, 1);
}

.txt-dark-red {
  color: #f50816;
}

.bg-grey {
  background-color: #474747 !important;
}

.bg-mobile-header {
  background-color: #a60004;
}

.txt-blog-title {
  font-size: 40px;
}

.custom-logo {
  width: 80px;
}

@media screen and (max-width: 768px) {
  body {
    overflow-x: hidden !important;
  }
}

@media screen and (min-width: 576px) and (max-width: 992px) {
  .custom-heading {
    font-size: 42px !important;
  }
}

@media screen and (min-width: 576px) and (max-width: 768px) {
  .display-2 {
    font-size: 36px !important;
  }
  .display-6 {
    font-size: 18px !important;
  }
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  .display-2 {
    font-size: 36px !important;
  }
  .display-6 {
    font-size: 28px !important;
  }
}
/* Theme styles end  */

/* Header start */

.site-logo {
  width: 100px;
  height: auto;
}

#menu-primary-menu li a {
  color: #fff !important;
}

@media screen and (min-width: 1400px) {
  #menu-primary-menu li a {
    padding-right: 28px;
    padding-left: 28px;
    padding-top: 28px;
    padding-bottom: 28px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1400px) {
  #menu-primary-menu li a {
    padding-right: 28px;
    padding-left: 28px;
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.navbar {
  position: fixed !important;
  top: 0;
  width: 100%;
  z-index: 9999;
  transition: 0.5s;
}

.navbar.hide {
  transform: translateY(-100%); /* Slide up */
}

.navbar.show {
  transform: translateY(0); /* Slide down */
  background-color: #a60004;
}

.cta-btn {
  color: #fff;
  background-color: black;
  padding: 10px 25px;
  border: none;
  border-radius: 10px;
}

.cta-button {
  background-color: black;
  color: white !important;
  /* padding: 10px 20px; */
  border: none;
  border-radius: 30px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition */
  text-decoration: none;
  transform: translateY(0px);
}

.cta-button:hover {
  transform: translateY(-5px); /* Lift the button */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); /* Add a shadow to enhance the lifting effect */
}

.cta-icon {
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: relative;
}

.cta-icon .line {
  display: block;
  width: 20px;
  height: 2px;
  background-color: red;
  margin: 3px 0;
}

.cta-button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.4);
}

.navbar.show .navbar-nav a.active {
  background: linear-gradient(180deg, #a60004 0%, #ff2127 100%);
}

.navbar-toggler {
  border: none !important;
  outline: 0 !important;
  box-shadow: none !important;
}

#offcanvasNavbar {
  background-color: #eb2227 !important;
}

#offcanvasNavbar ul li a {
  color: #fff !important;
}

.cta-button-tab {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: black;
  color: white;
  /* padding: 10px 20px; */
  border: none;
  border-radius: 30px;
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button-tab:hover {
  transform: translateY(-3px);
  /* box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); */
}

.cta-button-tab .cta-text {
  margin-right: 10px;
}

.cta-button-tab.cta-icon {
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: relative;
}

.cta-icon .line {
  display: block;
  width: 20px;
  height: 2px;
  background-color: red;
  margin: 3px 0;
}

.cta-button-tab:focus {
  outline: none;
  /* box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.4); */
}

#menu-primary-menu-2 li a {
  color: #fff;
  text-decoration: none;
  padding-top: 10px;
  padding-bottom: 10px;
}

#menu-primary-menu-2 li {
  padding-top: 10px;
  padding-bottom: 10px;
}

/* Header end */

/* Landing page start */
.bg-red {
  background-color: #eb2227 !important;
  color: white;
}

.landing-page {
  height: 100vh;
}

.btn-custom {
  color: #eb2227;
  background: linear-gradient(#fff, #fff);
  background-repeat: no-repeat;
  background-position: right;
  background-size: 100% 100%;
  padding: 10px 100px;
  border-radius: 10px;
  transition: 0.5s;
}

.btn-custom:hover {
  background-size: 0% 100%;
  border: 1px solid #fff;
  color: #fff;
  font-weight: 700;
}

.btn-custom2 {
  color: #fff;
  background: linear-gradient(#eb2227, #eb2227);
  background-repeat: no-repeat;
  background-position: right;
  background-size: 100% 100%;
  padding: 10px 60px;
  border-radius: 0px;
  transition: 0.5s;
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  .btn-custom2 {
    padding: 5px 20px;
    font-size: 13px !important;
  }
}
@media screen and (min-width: 992px) and (max-width: 1919px) {
  .btn-custom2 {
    padding: 8px 26px;
    font-size: 16px !important;
  }
}

.btn-custom2:hover {
  background-size: 0% 100%;
  border: 1px solid #eb2227;
  color: #eb2227;
  font-weight: 700;
}

.loader {
  width: 550px;
  height: 550px;
  margin: auto;
  position: relative;
}

@media screen and (max-width: 768px) {
  .loader {
    width: 225px;
    height: 225px;
    margin: auto;
    position: relative;
  }
  .loader-area {
    left: 20%;
  }
}

.loader:after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #ff4040;
  /* Slightly lighter red */
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 4px;
  animation: jump7456 0.5s linear infinite;
}

@media screen and (min-width: 768px) {
  .loader-area {
    left: 20%;
  }
}

@keyframes jump7456 {
  15% {
    /* border-bottom-right-radius: 3px; */
  }

  25% {
    transform: translateY(9px) rotate(22.5deg);
  }

  50% {
    transform: translateY(18px) scale(1, 0.9) rotate(45deg);
    /* border-bottom-right-radius: 40px; */
  }

  75% {
    transform: translateY(9px) rotate(67.5deg);
  }

  100% {
    transform: translateY(0) rotate(90deg);
  }
}
/* Landing page end */

/* Homepage start */
@media screen and (min-width: 1920px) {
  .custom-heading {
    font-size: 100px;
  }

  .banner-arrow {
    left: 60%;
    top: 20%;
  }
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
  .custom-heading {
    font-size: 60px;
  }

  .banner-arrow {
    width: 360px;
    height: auto;
    right: 15%;
  }

  .banner-small-arrow {
    width: 270px;
    height: auto;
  }

  .lines-container p {
    font-size: 22px !important;
  }

  .lines-container {
    height: 60vh !important;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1919px) {
  .banner-arrow {
    width: 440px;
    height: auto;
    right: 15%;
  }

  .banner-small-arrow {
    width: 300px;
    height: auto;
  }

  .custom-heading {
    font-size: 66px;
  }
  .lines-container p {
    font-size: 24px !important;
  }

  .lines-container {
    height: 70vh !important;
  }
}

@media screen and (min-width: 576px) and (max-width: 992px) {
  .banner-arrow {
    width: 260px;
    height: auto;
    right: 18%;
  }

  .custom-heading-banner {
    font-size: 64px !important;
  }

  .banner-small-arrow {
    width: 200px;
    height: auto;
  }
}

@media screen and (min-width: 576px) and (max-width: 768px) {
  .banner-logo {
    background-size: contain;
    top: -120px !important;
  }
}

@media screen and (max-width: 576px) {
  .banner-logo {
    background-size: contain;
    top: -200px !important;
  }
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
  .custom-heading-banner {
    font-size: 72px !important;
  }
  .banner-logo {
    background-size: contain;
    top: -50px !important;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1919px) {
  .custom-heading-banner {
    font-size: 82px !important;
  }
  .banner-logo {
    background-size: contain;
    top: -30px !important;
  }
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  .banner-logo {
    background-size: contain;
    top: -100px !important;
  }
}

@media screen and (min-width: 1920px) {
  .custom-heading-banner {
    font-size: 100px !important;
  }
}

@media screen and (max-width: 992px) {
  .custom-heading {
    font-size: 32px;
  }
  .banner-area-work-home {
    min-height: 70vh;
  }
}

@media screen and (min-width: 1400px) {
  .banner-area-work-home {
    min-height: 50vh;
  }
}

.banner-logo {
  background-position: left;
  background-repeat: no-repeat;
  /* width: -webkit-fill-available; */
  width: 100%;
  z-index: 7;
  opacity: 0.85;
  transition: transform 0.1s ease-out; /* Smooth scrolling effect */
  top: 0;
  left: 0;
}

.banner-area {
  height: 100vh;
}

.background_before_content {
  background-color: #eb2227;
  z-index: 9;
  opacity: 0.85;
}

.banner-content-area {
  z-index: 10;
  /* top: 4%; */
  /* left: 0%; */
}

.banner-arrow {
  z-index: 8;
  opacity: 0.3;
  transition: transform 0.1s ease-out; /* Smooth scrolling effect */
}

.banner-small-arrow {
  z-index: 8;
  transition: transform 0.1s ease-out; /* Smooth scrolling effect */
}

.banner-small-arrow {
  top: 1%;
  left: 5%;
}

@media screen and (min-width: 1920px) {
  .background-rotating-text {
    font-size: 500px;
    opacity: 0.5;
  }
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
  .background-rotating-text {
    font-size: 334px;
    opacity: 0.5;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1919px) {
  .background-rotating-text {
    font-size: 380px;
    opacity: 0.5;
  }
}

@media screen and (max-width: 768px) {
  .background-rotating-text {
    font-size: 150px;
    opacity: 0.5;
    font-weight: bold;
  }

  .word-1 {
    top: 15%;
  }
  .word-2 {
    bottom: 35%;
  }
}

.background-before-content-2 {
  background-color: #eb2227;
}

.line1 {
  display: none;
  position: absolute;
  top: 0.1%;
  right: -900px;
  white-space: nowrap;
}

.line2 {
  display: none;
  position: absolute;
  top: 10%;
  left: -900px;
  white-space: nowrap;
}

.banner-content-area3 {
  z-index: 10;
  overflow: hidden;
}

.our-project-card-before-content {
  transition: all 1.5s;
}

@media screen and (min-width: 1920px) {
  .our-project-card-before-content h2 {
    font-size: 130px !important;
  }
  .our-project-card-before-content {
    font-size: 36px !important;
  }
  .our-project-card-before-content {
    top: 55%;
  }
  .our-project-card {
    height: 800px !important;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1919px) {
  .our-project-card-before-content h2 {
    font-size: 66px;
  }
  .our-project-card-before-content {
    font-size: 24px;
  }
  .our-project-card-before-content {
    top: 55%;
  }
  .our-project-card {
    max-height: 600px;
  }
}

@media screen and (min-width: 567px) and (max-width: 992px) {
  .our-project-card-before-content h2 {
    font-size: 36px;
  }
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
  .our-project-card-before-content h2 {
    font-size: 60px;
  }
  .our-project-card-before-content {
    font-size: 22px;
  }
}

.our-project-card {
  width: 100vw;
  height: 800px;
  color: white;
  font-family: Arial, sans-serif;
  background-size: cover;
  background-position: center;
  position: relative;
  transform-origin: center center;
  opacity: 1;
  transform: scale(0.3);
  transition: transform 0.5s ease;
}

.our-project-card-before-content {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  transition: all 0.7s ease;
}

.first-card.expanded .our-project-card-before-content {
  left: 5%;
  transform: translate(0, 0);
  text-align: left;
}

.first-card-short-description {
  transition: opacity 0.3s ease-in;
}

.first-card .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 0, 0, 0.5); /* Red overlay */
  z-index: 2; /* Ensure it sits above the background */
  pointer-events: none;
  opacity: 1; /* Start fully visible */
  transition: opacity 0.5s ease; /* Fallback for browsers without JS */
}

.our-project-card .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 0, 0, 0.5); /* Red overlay */
  z-index: 2; /* Ensure it sits above the background */
  pointer-events: none;
  opacity: 1; /* Start fully visible */
  transition: opacity 0.5s ease; /* Fallback for browsers without JS */
}

.first-card {
  opacity: 1;
  transform: scale(0.5) skew(-20deg);
  width: 700px;
  height: 900px;
  background-color: rgba(235, 34, 39, 0.4);
  z-index: 1;
}

.our-project-card.expanded .overlay {
  opacity: 0;
}

@media screen and (min-width: 1920px) {
  .project-cards-title {
    font-size: 130px;
  }
  .project-cards-description {
    font-size: 36px;
  }
  /* .our-project-card-content {
    left: 5%;
    top: 35%;
    z-index: 3;
  } */
}

@media screen and (min-width: 1200px) and (max-width: 1919px) {
  .project-cards-title {
    font-size: 66px;
  }
  .project-cards-description {
    font-size: 24px;
  }
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
  .project-cards-title {
    font-size: 60px;
  }

  .project-cards-description {
    font-size: 22px;
  }

  .fs-5 {
    font-size: 15px !important;
  }

  .our-project-card {
    max-height: 540px;
  }
}

@media screen and (min-width: 567px) and (max-width: 992px) {
  .project-cards-title {
    font-size: 36px;
  }

  .project-cards-description {
    font-size: 16px;
  }

  .our-project-card-content {
    left: 5%;
    top: 40%;
    z-index: 3;
  }

  .our-project-card {
    max-height: 390px;
  }
}

.black-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 2;
  pointer-events: none;
}

.content-above-overlay {
  z-index: 10;
}

.txt-red {
  color: var(--color-red-50, rgba(255, 0, 0, 1));
}

@media screen and (min-width: 1400px) {
  .client-logo-section {
    height: 150vh;
  }
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
  .client-logo-section {
    height: 135vh;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1400px) {
  .client-logo-section {
    height: 145vh;
  }
}

@media screen and (min-width: 1400px) {
  .logo-1 {
    top: 17%;
    left: 5%;
  }
  .logo-2 {
    top: 11%;
    left: 78%;
  }
  .logo-3 {
    top: 34%;
    left: 9%;
  }
  .logo-4 {
    top: 38%;
    left: 45%;
  }
  .logo-5 {
    top: 43%;
    left: 71%;
  }
  .logo-6 {
    top: 51%;
    left: 27%;
  }
  .logo-7 {
    top: 64%;
    left: 10%;
  }
  .logo-8 {
    top: 55%;
    left: 44%;
  }
  .logo-9 {
    top: 69%;
    left: 28%;
  }
  .logo-10 {
    top: 63%;
    left: 79%;
  }
  .logo-11 {
    top: 62%;
    left: 62%;
  }
  .logo-12 {
    top: 77%;
    left: 47%;
  }
  .logo-13 {
    top: 81%;
    left: 10%;
  }
  .logo-14 {
    top: 83%;
    left: 70%;
  }
  .logo-15 {
    top: 39%;
    left: 26%;
  }
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
  .logo-1 {
    top: 23%;
    left: 5%;
  }
  .logo-2 {
    top: 22%;
    left: 45%;
  }
  .logo-3 {
    top: 23%;
    right: 5%;
  }
  .logo-4 {
    top: 40%;
    left: 45%;
  }
  .logo-5 {
    top: 35%;
    left: 71%;
  }
  .logo-6 {
    top: 34%;
    left: 25%;
  }
  .logo-7 {
    top: 44%;
    left: 10%;
  }
  .logo-8 {
    top: 51%;
    left: 27%;
  }
  .logo-9 {
    top: 61%;
    left: 12%;
  }
  .logo-10 {
    top: 55%;
    left: 79%;
  }
  .logo-11 {
    top: 57%;
    left: 47%;
  }
  .logo-12 {
    top: 70%;
    left: 47%;
  }
  .logo-13 {
    top: 68%;
    left: 28%;
  }
  .logo-14 {
    top: 66%;
    left: 70%;
  }
  .logo-15 {
    top: 48%;
    left: 61%;
  }

  .animate-logo {
    height: 130px;
    width: auto;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1400px) {
  .logo-1 {
    top: 30%;
    left: 5%;
  }
  .logo-2 {
    top: 28%;
    left: 45%;
  }
  .logo-3 {
    top: 25%;
    right: 5%;
  }
  .logo-4 {
    top: 40%;
    left: 45%;
  }
  .logo-5 {
    top: 35%;
    left: 71%;
  }
  .logo-6 {
    top: 34%;
    left: 25%;
  }
  .logo-7 {
    top: 44%;
    left: 10%;
  }
  .logo-8 {
    top: 51%;
    left: 27%;
  }
  .logo-9 {
    top: 61%;
    left: 12%;
  }
  .logo-10 {
    top: 55%;
    left: 79%;
  }
  .logo-11 {
    top: 57%;
    left: 47%;
  }
  .logo-12 {
    top: 73%;
    left: 47%;
  }
  .logo-13 {
    top: 68%;
    left: 28%;
  }
  .logo-14 {
    top: 66%;
    left: 70%;
  }
  .logo-15 {
    top: 48%;
    left: 61%;
  }

  .animate-logo {
    height: 130px;
    width: auto;
  }
}

.line-1 {
  display: none;
  position: absolute;
  top: 1%;
  right: -900px;
  white-space: nowrap;
  color: rgba(218, 218, 218, 1);
}

.line-2 {
  display: none;
  position: absolute;
  top: 35%;
  left: -900px;
  white-space: nowrap;
  color: rgba(218, 218, 218, 1);
}

.line-1 {
  display: none;
  position: absolute;
  top: 1%;
  right: -900px;
  white-space: nowrap;
  color: rgba(218, 218, 218, 1);
}

.line-2 {
  display: none;
  position: absolute;
  top: 35%;
  left: -900px;
  white-space: nowrap;
  color: rgba(218, 218, 218, 1);
}

.grey-overlay {
  background-color: rgba(217, 217, 217, 0.5);
  top: 0;
  left: 0;
}

.color-change-text {
  /* transition: color 1.5s ease-in-out;  */
  color: var(--Colour-Black-Balck-40, #474747);
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
  .color-change-text {
    font-size: 58px !important;
  }

  .i-icon {
    max-height: 1087px;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1919px) {
  .color-change-text {
    font-size: 66px !important;
  }

  .i-icon {
    max-height: 1087px;
  }
}

.line {
  position: relative;
}

.line-mask {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #ececec;
  opacity: 1;
  width: 0%;
  height: 100%;
  z-index: 2;
}

.color-change-section {
  height: 100vh;
}

@media screen and (min-width: 576px) and (max-width: 992px) {
  .color-change-section {
    height: 75vh;
  }

  :root {
    --card-height: 460px !important;
  }

  .home-services-description {
    font-size: 14px !important;
  }
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
  :root {
    --card-height: 520px !important;
  }
}

:root {
  --card-height: 660px;
  --card-margin: 0px;
  --card-top-offset: 1em;
  /* --numcards: 4; */
  --testcard-height: max-content;
  --bs-border-color: none !important;
}

#services-cards {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(var(--numcards), var(--card-height));
  gap: var(--card-margin);
  padding-bottom: calc(var(--numcards) * var(--card-top-offset));
  margin-bottom: var(--card-margin);
}

#testimonials-cards {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(var(--numcards), var(--testcard-height));
  gap: var(--card-margin);
  padding-bottom: calc(var(--numcards) * var(--card-top-offset));
  margin-bottom: var(--card-margin);
}

#dev-cards {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(var(--numcards), var(--testcard-height));
  gap: var(--card-margin);
  padding-bottom: calc(var(--numcards) * var(--card-top-offset));
  margin-bottom: var(--card-margin);
}

.services__card {
  position: sticky;
  top: 5.3rem;
  /* top: 7.7rem; */
  padding-top: calc(var(--index) * var(--card-top-offset));
  transition: background-color 0.3s ease-in;
  height: var(--card-height);
  background-color: var(--color-grey-15, #262626);
}

.dev__card {
  position: sticky;
  top: 9rem;
  padding-top: calc(var(--index) * var(--card-top-offset));
  transition: background-color 0.3s ease-in;
  /* height: var(--card-height); */
  background-color: var(--color-grey-15, #262626);
}

.testimonials__card {
  position: sticky;
  top: 5rem;
  padding-top: calc(var(--index) * var(--card-top-offset));
  transition: background-color 0.3s ease-in;
  height: max-content;
  background-color: #eb2227;
}

.services__card .card-content {
  padding: 1.4em;
  height: var(--card-height);
}

.dev__card .card-content {
  padding: 1.4em;
  /* height: var(--card-height); */
}

.testimonials__card .card-content {
  padding: 1.4em;
  /* height: var(--card-height); */
}

.testimonials__card {
  /* border-bottom: 1px solid #ccc; */
}

.testimonials__card:nth-last-child(1) {
  border-bottom: none; /* Remove border for the last item */
}

.testimonials__card:nth-last-child(2):only-child {
  border-bottom: none; /* Handle cases with one item in the last row */
}

.dev__card {
  /* border-bottom: 1px solid #ccc; */
}

.dev__card:nth-last-child(1) {
  border-bottom: none; /* Remove border for the last item */
}

.dev__card:nth-last-child(2):only-child {
  border-bottom: none; /* Handle cases with one item in the last row */
}

.services__card.active {
  background-color: #eb2227;
}

.txt-custom-black {
  color: #262626;
}

.lines-container {
  height: 80vh;
}

@media screen and (min-width: 567px) and (max-width: 992px) {
  .lines-container {
    height: 55vh !important;
  }
}

.line-vertical {
  position: absolute;
  width: 1px;
  height: 600px;
  background-color: #fff;
  opacity: 0.6;
  animation: moveVertically infinite linear;
  z-index: 1;
}

@keyframes moveVertically {
  from {
    transform: translateY(100%);
  }

  to {
    transform: translateY(-100%);
  }
}

@media screen and (min-width: 1400px) {
  .heart-img {
    top: 1%;
    width: 580px;
    left: 62%;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1919px) {
  .heart-img {
    top: 1%;
    width: auto;
    max-height: 500px !important;
    left: 62%;
  }

  .blogs_title {
    font-size: 56px !important;
  }

  .fs-5 {
    font-size: 16px !important;
  }
}

@media screen and (min-width: 1920px) {
  .fs-5 {
    font-size: 20px !important;
  }
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
  .heart-img {
    top: 1%;
    width: auto;
    right: 0%;
    max-height: 430px !important;
  }

  .blogs_title {
    font-size: 48px !important;
  }

  .card-img-blogs {
    height: 470px !important;
  }

  .bottom-cta-title {
    font-size: 60px !important;
  }
  .letter-img {
    max-width: 488px !important;
  }

  .letter-img {
    top: 20%;
    left: 45% !important;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1919px) {
  .card-img-blogs {
    height: 528px !important;
  }

  .bottom-cta-title {
    font-size: 66px !important;
  }

  .letter-img {
    top: 20%;
    left: 50%;
  }
}

.testimonial-item {
  border-bottom: 1px solid #ccc;
}

.testimonial-item:nth-last-child(1) {
  border-bottom: none; /* Remove border for the last item */
}

.testimonial-item:nth-last-child(2):only-child {
  border-bottom: none; /* Handle cases with one item in the last row */
}

.got-a-vision {
  background: var(--Colour-Grey-Grey9, rgba(224, 225, 225, 1));
  min-height: 60vh;
}

.letter-img {
  width: 500px;
  height: auto;
  top: 10%;
  left: 20%;
}

@media screen and (min-width: 1200px) {
  .letter-img {
    top: 20%;
    left: 55%;
  }
}

@media screen and (max-width: 992px) {
  .letter-img {
    top: 20%;
    left: 37%;
  }
}

.btn-cta {
  color: #fff;
  background: #eb2227;
  background-repeat: no-repeat;
  background-position: right;
  background-size: 100% 100%;
  padding: 10px 100px;
  border-radius: 10px;
  transition: 0.5s;
}

.btn-cta:hover {
  background-size: 0% 100%;
  border: 1px solid #eb2227;
  color: #fff;
  font-weight: 700;
}

.project-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: black;
  color: white;
  font-weight: bold;
  width: 100%;
  padding-left: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.project-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

/* Hover effect */
.project-container:hover .project-text {
  color: black;
}

.project-container:hover {
  background-color: white;
}

.project-container:hover .arrow-svg {
  transform: translateY(-10px);
}

/* Arrow SVG */
.arrow-svg {
  transition: transform 0.3s ease;
}

@media screen and (min-width: 992px) {
  .designing-section {
    min-height: 160vh;
  }
  .designing-section img {
    bottom: 0%;
  }
  .counter-text {
    font-size: 450px;
  }
}

@media screen and (min-width: 567px) and (max-width: 992px) {
  .counter-text {
    font-size: 250px;
  }

  .designing-section img {
    bottom: 0%;
  }
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
  .counter-text {
    font-size: 250px;
  }

  .designing-section {
    min-height: 100vh;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1919px) {
  .counter-text {
    font-size: 300px;
  }
  .designing-section {
    min-height: 100vh;
  }
}

.design-section-title {
  font-size: 5rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.05rem;
}

@media screen and (min-width: 567px) and (max-width: 992px) {
  .design-section-title {
    font-size: 4rem;
  }
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
  .design-section-title {
    font-size: 3.75rem;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1919px) {
  .design-section-title {
    font-size: 66px;
  }
}

/* test section for cta start */
.got-a-vision {
  background: var(--Colour-Grey-Grey9, rgba(224, 225, 225, 1));
  min-height: 60vh;
}

/* Project container */
.project-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: black;
  color: white !important;
  font-weight: bold;
  width: 100%;
  padding-left: 30px;
  cursor: pointer;
  opacity: 0;
  animation: fadeInContainer 1s ease-in-out forwards;
}

@keyframes fadeInContainer {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.project-text {
  flex: 1;
  opacity: 0;
  transform: translateX(-100%);
  transition: transform 1s ease-out, opacity 1s ease-out;
}

@keyframes fadeInText {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.project-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(100%);
  transition: transform 1s ease-out, opacity 1s ease-out;
}

.project-container.bg-active {
  transition: all 1.5s ease;
  background: linear-gradient(to right, #000 50%, #ff0707 50%);
  background-size: 200% 100%;
  background-position: left bottom;
}

.project-container.bg-active .project-text,
.project-container.bg-active .project-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Hover effect */
.project-container:hover .project-text {
  /* color: black; Change text color to black */
}

.project-container:hover {
  background-position: right bottom;
}

.project-container:hover .arrow-svg {
  transform: translateY(-10px); /* Move the arrow up */
}

/* Arrow SVG */
.arrow-svg {
  transition: transform 0.3s ease;
}

#lottie-container {
  width: 100%;
  height: 500px;
  margin: 0 auto;
}

#animation-container clipPath {
  width: 400px;
  height: 400px;
}

/* Keyframe animation to fade in and out quickly */
@keyframes fadeInOut {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
  75% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
  }
}

/* Apply the animation to the images */
.background-elemnts {
  opacity: 0;
  animation: fadeInOut 3s ease-in-out infinite; /* 1s for quick fade, infinite loop */
  position: absolute;
  z-index: 2;
  width: 40px;
  height: 42px;
}

/* Add slight delay to each image to make them fade in/out in a staggered fashion */
.element-1 {
  animation-delay: 0s;
}

.element-2 {
  animation-delay: 0.2s;
}

.element-3 {
  animation-delay: 0.4s;
}

.element-4 {
  animation-delay: 0.6s;
}

.element-5 {
  animation-delay: 0.8s;
}

.element-6 {
  animation-delay: 1s;
}

.element-7 {
  animation-delay: 1.2s;
}

.element-8 {
  animation-delay: 1.4s;
}

.element-9 {
  animation-delay: 1.6s;
}

@media screen and (min-width: 1200px) {
  .element-1 {
    top: 10%;
    right: 40%;
  }
  .element-2 {
    top: 5%;
    right: 30%;
  }
  .element-3 {
    top: 30%;
    right: 50%;
  }
  .element-4 {
    top: 38%;
    right: 60%;
  }
  .element-5 {
    top: 20%;
    right: 50%;
  }
  .element-6 {
    top: 40%;
    right: 70%;
  }
  .element-7 {
    top: 50%;
    right: 20%;
  }
  .element-8 {
    top: 10%;
    right: 40%;
  }
  .element-9 {
    top: 10%;
    right: 40%;
  }
}

.logo-1 {
  animation-delay: 0s;
}

.logo-2 {
  animation-delay: 0s;
}

.logo-3 {
  animation-delay: 2s;
}

.logo-4 {
  animation-delay: 3s;
}

.logo-5 {
  animation-delay: 3s;
}

.logo-6 {
  animation-delay: 6s;
}

.logo-7 {
  animation-delay: 4s;
}

.logo-8 {
  animation-delay: 1s;
}

.logo-9 {
  animation-delay: 5s;
}

.logo-10 {
  animation-delay: 3s;
}

.logo-11 {
  animation-delay: 6s;
}

.logo-12 {
  animation-delay: 4s;
}

.logo-13 {
  animation-delay: 8s;
}

.logo-14 {
  animation-delay: 5s;
}

.logo-15 {
  animation-delay: 1s;
}

@keyframes appearTimes {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

.client-logo-container img {
  opacity: 0; /* Invisible initially */
  transform: translateY(20px); /* Slight offset */
  transition: opacity 0.2s ease, transform 0.2s ease;
}

/* Animation class added dynamically */
.animate-logo {
  animation: appearTimes 3s ease-in forwards; /* 'forwards' keeps the final state */
  animation-fill-mode: forwards; /* Ensures it stays in the final state */
}

.background_before_content-2 {
  background-color: #eb2227;
}

.number {
  display: inline-block;
  transition: transform 0.99s ease; /* Smooth transition */
}

.move-left {
  transform: translateX(-220px); /* Moves the number 10px to the left */
}

.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.project-card-mobile-overlay {
  background-color: rgba(0, 0, 0, 0.4);
}

@media screen and (max-width: 768px) {
  .logo-img-mobile {
    height: 100px;
  }
  .background-elemnts {
    display: none;
  }
}

.stunning__mboile {
  background-color: #eaebeb !important;
  min-height: 100vh;
}

@media screen and (max-width: 768px) {
  .accordion-section {
    max-width: none !important;
  }
  .accordion-button-mobile {
    font-size: 36px !important;
  }
  .mobile-accordion {
    border: none !important;
    border-color: transparent !important;
  }

  .accordion-button:not(.collapsed)::after {
    content: "";
    width: 30px;
    height: 30px;
  }
}

.heart-testimonials-stars,
.heart-testimonials {
  right: 0;
}

.heart-img {
  animation: floatUpDown 2.4s ease-in-out infinite;
}

@media screen and (min-width: 576px) and (max-width: 992px) {
  .heart-img {
    max-width: 500px;
    height: auto;
    right: 0;
  }

  .stunning-section .i-icon {
    /* max-height: 440px; */
    /* left: -7.5rem; */
    max-width: 350px;
  }
}

@media screen and (min-width: 576px) and (max-width: 768px) {
  #home-services-cards {
    background-color: #eaebeb !important;
  }

  .stunning__mboile {
    min-height: 90vh !important;
  }
}

@media screen and (max-width: 576px) {
  #home-services-cards {
    background-color: #eaebeb !important;
  }

  .stunning__mboile {
    min-height: 80vh !important;
  }
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
  .client-logo-section {
    height: 145vh;
  }
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  .letter-img {
    width: 355px !important;
  }
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
  .letter-img {
    width: 400px !important;
  }
}

@media screen and (max-width: 576px) {
  .custom-heading-stunning {
    font-size: 38px !important;
  }
}

@media screen and (min-width: 576px) and (max-width: 992px) {
  .custom-heading-stunning {
    font-size: 42px !important;
  }
}
/* Homepage end */

/* Footer styles start */
.footer-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  left: 0;
}

.footer-desktop {
  min-height: 90vh;
}

.footer-caption {
  color: var(--color-grey-1580, rgba(38, 38, 38, 0.8));
}

.footer-address-btn {
  background-color: #eb2227;
  color: #fff;
  padding: 10px 30px;
}

#footerMenuOne ul li a {
  text-decoration: none;
  color: #000;
  font-size: 24px;
}

@media screen and (max-width: 576px) {
  #footerMenuOne ul li a {
    font-size: 18px;
  }
}

@media screen and (min-width: 576px) and (max-width: 992px) {
  #footerMenuOne ul li a {
    font-size: 20px;
  }
}

#footerMenuOne ul li {
  padding-top: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(142, 144, 144, 0.7);
}

@media screen and (min-width: 768px) {
  #footerMenuOne ul li:nth-last-child(1) {
    border-bottom: none;
  }
}

@media screen and (min-width: 990px) {
  .bottom-area-footer {
    height: 40px;
    background-color: #f50816;
  }

  .word-1 {
    top: 0%;
    right: 0%;
  }

  .word-2 {
    bottom: -15%;
    left: 0%;
  }

  .banner-area-works {
    min-height: 100vh;
  }
}

@media screen and (max-width: 768px) {
  .banner-area-works {
    min-height: 80vh;
  }

  .mobile-custom-logo {
    width: 64px;
  }

  .custom-heading {
    /* font-size: 48px !important; */
  }

  .paragraph__mobile {
    font-size: 14px !important;
  }

  .custom-heading-mobile {
    font-size: 40px !important;
  }
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
  .custom-heading-mobile {
    font-size: 32px !important;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1919px) {
  .custom-heading-mobile {
    font-size: 36px !important;
  }
}

.icon-on-view .i-icon {
  transform: translateY(0%) !important;
}

.i-icon {
  top: 10%;
  transition: transform 2s ease-out;
  transform: translateY(100%);
}

.floating-badge {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.floating-badge:hover {
  transform: scale(1.05);
}

@media screen and (max-width: 576px) {
  .floating-badge {
    width: 80px !important;
    height: 80px !important;
  }
  .floating-badge {
    bottom: 73px !important;
  }
}

.back-to-top {
  position: fixed;
  bottom: 12px;
  right: 10px;
  background: #f50816;
  color: #fff;
  font-size: 18px;
  width: 38px;
  height: 38px;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 10000;
}

.back-to-top:hover {
  background: rgb(255, 255, 255);
  color: #f50816;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}
/* Footer styles end */

/* Works styles start */
.accordion-item {
  /* border-bottom: 1px solid #ccc; */
  background-color: #1f1f1f;
}

.accordion-item:hover {
  background-color: #f50816 !important;
}

.accordion-header {
  background-color: #1f1f1f;
  border: none;
  padding: 10px;
  text-align: left;
  cursor: pointer;
  width: 100%;
}

.accordion-header:hover {
  background-color: #f50816 !important;
}

.accordion-item:nth-child(even) .accordion-header {
  background-color: #474747; /* Color for even headers */
}

.accordion-item:nth-of-type(2n) {
  background-color: #474747; /* Color for even headers */
}

.accordion-content {
  padding: 0 10px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.open-accordion .move {
  opacity: 0 !important;
}

.open-accordion {
  background-color: #f50816 !important;
}

.open-accordion button {
  background-color: #f50816 !important;
}

.move {
  background-size: cover;
  background-position: center;
  height: 370px;
  aspect-ratio: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
  pointer-events: none;
  z-index: 100;
}

.result_hover {
  opacity: 1 !important;
  z-index: 10;
}

@media screen and (min-width: 992px) {
  .acc-img {
    width: auto;
    height: 539px;
  }
}

@media screen and (max-width: 768px) {
  .acc-img {
    width: auto;
    height: 373px;
  }
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  .acc-img {
    width: auto;
    height: 373px;
  }
}
.accordion-content img {
  transition: transform 0.3s ease, margin-top 0.3s ease; /* Smooth transition */
  display: block;
  width: 100%; /* Make sure the image takes the full width */
  box-shadow: 8px 12px 10.7px 0px #00000040;
}

.move-up {
  transform: translateY(-10px); /* Moves the image up by 10px */
}

@media screen and (min-width: 992px) {
  .move-up {
    margin-top: -40px; /* Adjust margin to make the image move up */
  }
}

.accordion-title {
  transition: opacity 0.3s ease; /* Smooth opacity transition */
}

.hidden-title {
  opacity: 0; /* Makes the title invisible without removing it from the layout */
}

.accordion-header .accordion-icon {
  float: right; /* Ensures the icon is on the right side */
}

.taxonomy-filters {
  padding: 15px;
  background-color: #f5f5f5;
}

.filter-btn {
  background-color: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  color: black;
  font-weight: 500;
}

.filter-btn-1st {
  position: relative;
  background-color: transparent;
  height: 60px;
  line-height: 60px;
  font-size: 32px;
  border: none;
  padding: 0 15px;
}

.filter-btn-1st::after {
  position: absolute;
  content: "";
  width: 50px;
  height: 60px;
}

.filter-btn-1st::after {
  left: 35%;
  bottom: 0;
  border-right: 2px solid black;
  border-bottom: 2px solid black;
  border-top: 2px solid black;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.filter-btn-rest {
  position: relative;
  background-color: transparent;
  height: 60px;
  line-height: 60px;
  /* font-size: 32px; */
  border: none;
  padding: 0 44px;
  width: fit-content;
}

.filter-btn-rest::before,
.filter-btn-rest::after {
  position: absolute;
  content: "";
  width: 40px;
  height: 60px;
}

.filter-btn-rest::before {
  left: 0;
  top: 1%;
  border-left: 2px solid black;
  border-bottom: 2px solid black;
  border-top: 2px solid black;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.filter-btn-rest::after {
  right: 0;
  top: 1%;
  border-right: 2px solid black;
  border-bottom: 2px solid black;
  border-top: 2px solid black;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.filter-btn span {
  display: inline-block;
}

.filter-btn.active,
.filter-btn:hover {
  border-color: #ff0000;
  color: #ff0000;
  font-weight: 500;
}
.filter-btn.active {
  font-weight: bold !important;
}

.filter-btn.active span {
  text-decoration: underline;
}

.filter-btn-rest .filter-btn {
  padding: 0 20px; /* Default left and right padding */
  border: none;
  font-size: 16px;
}

.filter-btn-rest .filter-btn:first-child {
  padding-left: 0; /* No padding on the left for the first button */
}

.filter-btn-rest .filter-btn:last-child {
  padding-right: 0; /* No padding on the right for the last button */
}

.the-work-content {
  color: #fff;
}

@media screen and (max-width: 768px) {
  .the-work-content {
    font-size: 14px !important;
  }
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  .the-work-content {
    font-size: 16px !important;
  }
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
  .the-work-content {
    font-size: 18px !important;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1400px) {
  .the-work-content {
    font-size: 19px !important;
  }
}

@media screen and (min-width: 1400px) and (max-width: 1600px) {
  .the-work-content {
    font-size: 20px !important;
  }
}

.odd {
  background-color: #1f1f1f; /* Light gray for odd rows */
}

.even {
  background-color: #474747; /* White for even rows */
}

.word-1 {
  /* display: none; */
  position: absolute;
  top: 1%;
  right: 0px;
  white-space: nowrap;
  /* color: rgba(218, 218, 218, 1); */
}

.word-2 {
  /* display: none; */
  position: absolute;
  /* top: 1%; */
  left: 0px;
  white-space: nowrap;
  /* color: rgba(218, 218, 218, 1); */
}

/* Link Styles */
.works__archive__btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.8rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
  background-color: #fff; /* Gray-50 */
  /* border: 2px solid #fff; */
  border-radius: 15px;
  overflow: hidden;
  z-index: 10;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  width: max-content;
}

.works__archive__btn:hover {
  color: #fff;
}

.works__archive__btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #000;
  border-radius: 10px;
  z-index: -1;
  transition: all 0.7s ease-in-out;
}

.works__archive__btn:hover::before {
  left: 0;
}

.link-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.2rem;
  height: 2.2rem;
  border: none;
  border-radius: 50%;
  padding: 0.5rem;
  transform: rotate(45deg);
  transition: all 0.3s ease-in-out;
  background-color: transparent;
}

.works__archive__btn:hover .link-icon {
  transform: rotate(45deg);
  background-color: #000;
  border: none;
}

.link-icon path {
  fill: rgba(245, 8, 22, 1);
  transition: fill 0.3s ease-in-out;
}

.works__archive__btn:hover .link-icon path {
  fill: rgba(245, 8, 22, 1);
}

#taxonomy-filter-dropdown {
  font-size: 18px !important;
  font-weight: 700 !important;
  border: none !important;
  background-color: transparent !important;
}

@media screen and (min-width: 768px) {
  .next-project-section-img {
    min-height: 70vh;
  }
}

@media screen and (max-width: 768px) {
  .next-project-section-img {
    min-height: 50vh;
  }
}

@media screen and (max-width: 576px) {
  .word-2-works {
    bottom: 0% !important;
  }

  .word-1-works {
    top: 46% !important;
  }
}

@media screen and (min-width: 576px) and (max-width: 768px) {
  .background-rotating-text {
    font-size: 240px !important;
  }

  .word-1-works {
    top: 15% !important;
  }

  .word-2-works {
    top: 48% !important;
  }
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  .word-1-works {
    top: 15% !important;
  }

  .word-2-works {
    top: 48% !important;
  }

  .banner-area-works {
    min-height: 80vh;
  }
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
  .background-rotating-text {
    font-size: 400px !important;
  }

  .word-1-works {
    top: 12% !important;
  }

  .word-2-works {
    top: 50% !important;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1400px) {
  .background-rotating-text {
    font-size: 400px !important;
  }

  .word-1-works {
    top: 10% !important;
  }

  .word-2-works {
    top: 50% !important;
  }
}

@media screen and (min-width: 1400px) {
  .background-rotating-text {
    font-size: 500px !important;
  }

  .word-1-works {
    top: 6.7% !important;
  }

  .word-2-works {
    top: 50% !important;
  }
}

@media screen and (max-width: 1200px) {
  .works-filter-dropdown:focus {
    box-shadow: none !important;
  }

  .works-filter-dropdown {
    padding-right: 5px !important;
  }

  .filter-btn-rest {
    padding: 0 0px !important;
  }
}

@media screen and (max-width: 1200px) {
  .hidden-title {
    opacity: 1 !important;
  }
}

/* Base styles for the dropdown container */
.custom-dropdown {
  /* position: relative; */
  /* display: inline-block; */
}

/* Styles for the dropdown menu */
.custom-dropdown-menu {
  display: block;
  position: absolute;
  background-color: #ffffff;
  min-width: max-content;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 20px;
  margin: 0;
  list-style: none;
  opacity: 0;
  transform: scale(0.95) translateY(-10px);
  transform-origin: top center;
  transition: opacity 0.5s ease, transform 0.5s ease;
  visibility: hidden;
  right: 0%;
}

/* Show the dropdown menu on hover */
.custom-dropdown:hover .custom-dropdown-menu {
  opacity: 1;
  transform: scale(1) translateY(0);
  visibility: visible;
}

/* Styles for dropdown items */
.custom-dropdown-item {
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
  background-color: transparent;
  border: none;
  width: 100%;
  cursor: pointer;
  color: #333;
  transition: color 0.2s ease;
}

/* Hover effect for dropdown items */
.custom-dropdown-item:hover {
  background-color: transparent;
  color: rgba(245, 8, 22, 1);
}
.fa-angle-down::before {
  font-size: 18px;
}

.taxonomy-filters {
  position: sticky;
  position: -webkit-sticky;
  background-color: #f0f0f0;
  z-index: 1;
  transition: opacity 0.3s ease-out, visibility 0.3s ease-out;
  opacity: 1;
  visibility: visible;
}

.hidden {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-out, visibility 0.3s ease-out;
}

@media screen and (min-width: 1920px) {
  .taxonomy-filters {
    top: 9.3% !important;
  }
}

@media screen and (max-width: 576px) {
  .taxonomy-filters {
    top: 9.3%;
  }
}

@media screen and (min-width: 576px) and (max-width: 768px) {
  .taxonomy-filters {
    top: 8.3%;
  }
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  .taxonomy-filters {
    top: 11%;
  }
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
  .taxonomy-filters {
    top: 11%;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1400px) {
  .taxonomy-filters {
    top: 8.7%;
  }
}

@media screen and (min-width: 1400px) and (max-width: 1600px) {
  .taxonomy-filters {
    top: 7.5%;
  }
}
@media screen and (min-width: 1600px) and (max-width: 1920px) {
  .taxonomy-filters {
    top: 9.5%;
  }
}
/* Works styles end */

/* Single works start */

.single__work__banner__image {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 90vh;
}

.linear__before__banner {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0) 71.73%,
      rgba(255, 255, 255, 0.5) 81.74%,
      #ffffff 99.55%
    );
}

.single__work__banner {
  background-position: left;
  background-repeat: no-repeat;
  background-size: cover;
}

.single__work__banner {
  min-height: 150vh;
}

.single__work__banner__image::before {
  content: "";
  background-image: linear-gradient(
    to top,
    rgb(255 255 255),
    rgba(239, 239, 239, 0)
  );
  position: absolute;
  height: 200px;
  right: 0;
  bottom: 0;
  left: 0;
}

@media screen and (min-width: 1200px) and (max-width: 1400px) {
  .intro__content__wrapper img {
    top: 52%;
    left: 42% !important;
  }
}

.intro__content__wrapper img {
  top: 52%;
  left: 45%;
}

@media screen and (min-width: 1440px) {
  .responsive__design_img__2 {
    height: 590px;
  }

  .packaging__img__wrapper {
    min-height: 700px;
  }
  .packaging__img__wrapper .img-1 {
    /* width: 500px; */
    left: 0;
  }
  .packaging__img__wrapper .img-2 {
    /* width: 500px; */
    left: 20%;
  }
}

.next-project-overlay {
  background: #f50816;
  opacity: 0.2;
}
/* Single works end */

/* Services start */
@media screen and (max-width: 992px) {
  .banner_area_services {
    min-height: 100vh;
  }
}

@media screen and (min-width: 992px) {
  .service__word__2 {
    bottom: -10%;
    left: 0%;
  }

  .banner_area_services {
    min-height: 110vh;
  }
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  .service__word__2 {
    bottom: 0%;
  }
}

.service__word__1 {
  /* display: none; */
  position: absolute;
  left: 0px;
  white-space: nowrap;
  /* color: rgba(218, 218, 218, 1); */
}

.service__word__2 {
  /* display: none; */
  position: absolute;
  white-space: nowrap;
  /* color: rgba(218, 218, 218, 1); */
}

.scrolldown {
  --color: white;
  --sizeX: 45px;
  --sizeY: 65px;
  position: relative;
  width: var(--sizeX);
  height: var(--sizeY);
  margin-left: var(sizeX / 2);
  border: calc(var(--sizeX) / 12) solid var(--color);
  border-radius: 20px;
  box-sizing: border-box;
  margin-bottom: 16px;
  cursor: pointer;
}

.scrolldown::before {
  content: "";
  position: absolute;
  bottom: 30px;
  left: 50%;
  width: 6px;
  height: 6px;
  margin-left: -3px;
  background-color: var(--color);
  border-radius: 100%;
  animation: scrolldown-anim 2s infinite;
  box-sizing: border-box;
  box-shadow: 0px -5px 3px 1px #2a547066;
}

@keyframes scrolldown-anim {
  0% {
    opacity: 0;
    height: 6px;
  }

  40% {
    opacity: 1;
    height: 10px;
  }

  80% {
    transform: translate(0, 20px);
    height: 10px;
    opacity: 0;
  }

  100% {
    height: 3px;
    opacity: 0;
  }
}

.chevrons {
  padding: 6px 0 0 0;
  margin-left: 5.4px;
  margin-top: 70px;
  width: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.chevrondown {
  margin-top: -6px;
  position: relative;
  border: solid var(--color);
  border-width: 0 3px 3px 0;
  display: inline-block;
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
}

.chevrondown:nth-child(odd) {
  animation: pulse54012 500ms ease infinite alternate;
}

.chevrondown:nth-child(even) {
  animation: pulse54012 500ms ease infinite alternate 250ms;
}

@keyframes pulse54012 {
  from {
    opacity: 0;
  }

  to {
    opacity: 0.5;
  }
}

@media screen and (min-width: 990px) {
  .service__word__3 {
    bottom: 10%;
    left: 10%;
  }
}

.service__word__3 {
  /* display: none; */
  position: absolute;
  left: -750px;
  white-space: nowrap;
  /* color: rgba(218, 218, 218, 1); */
}

.service__word__3 h2 {
  font-size: 250px;
  color: rgba(218, 218, 218, 0.3);
}

.service__word__marquee {
  font-size: 250px;
  opacity: 0.2;
  color: #1f1f1f;
  mix-blend-mode: color-burn;
  font-weight: bold;
}

.keyword-item {
  margin-left: 0; /* No margin for all initially */
}

.floating-image {
  position: relative;
  display: block;
  margin: 0 auto;
  animation: float 3s ease-in-out infinite; /* Floating animation */
  transition: transform 0.5s ease-out; /* Smooth transform */
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}

@media screen and (min-width: 1440px) {
  .floating-image-container {
    left: 3.5%;
    top: 2.5%;
  }
}

.strategy-cta::before {
  width: 50px;
  height: 50px;
  background-color: #fff;
  top: 0%;
  right: 0%;
  display: block;
  content: "";
  position: absolute;
}

.scroll-indicator {
  --color: #fff;
  --sizeX: 45px;
  --sizeY: 65px;
  position: relative;
  width: var(--sizeX);
  height: var(--sizeY);
  margin-left: var(sizeX / 2);
  border: calc(var(--sizeX) / 12) solid var(--color);
  border-radius: 15px;
  box-sizing: border-box;
  margin-bottom: 16px;
  cursor: pointer;
}

.scroll-indicator::before {
  content: "";
  position: absolute;
  bottom: 30px;
  left: 50%;
  width: 6px;
  height: 6px;
  margin-left: -3px;
  background-color: var(--color);
  border-radius: 100%;
  animation: scroll-indicator-anim 2s infinite;
  box-sizing: border-box;
  box-shadow: 0px -5px 3px 1px #2a547066;
}

@keyframes scroll-indicator-anim {
  0% {
    opacity: 0;
    height: 6px;
  }

  40% {
    opacity: 1;
    height: 10px;
  }

  80% {
    transform: translate(0, 20px);
    height: 10px;
    opacity: 0;
  }

  100% {
    height: 3px;
    opacity: 0;
  }
}

.scroll-arrows {
  padding: 6px 0 0 0;
  margin-left: 5.4px;
  margin-top: 70px;
  width: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scroll-arrow {
  margin-top: -6px;
  position: relative;
  border: solid var(--color);
  border-width: 0 3px 3px 0;
  display: inline-block;
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
}

.scroll-arrow:nth-child(odd) {
  animation: scroll-pulse 500ms ease infinite alternate;
}

.scroll-arrow:nth-child(even) {
  animation: scroll-pulse 500ms ease infinite alternate 250ms;
}

@keyframes scroll-pulse {
  from {
    opacity: 0;
  }

  to {
    opacity: 0.5;
  }
}

.floating-image-design {
  position: relative;
  display: block;
  margin: 0 auto;
  animation: float-design 3s ease-in-out infinite; /* Floating animation */
  transition: transform 0.5s ease-out; /* Smooth transform */
}

@keyframes float-design {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}

@media screen and (min-width: 1440px) {
  .floating-image-container-design {
    left: 0%;
    top: 40%;
  }
}

@media screen and (min-width: 990px) {
  .design__word__1 {
    top: 0%;
    left: 10%;
  }

  .design__word__2 {
    top: 25%;
    left: 20%;
  }
}

.design__word__1 {
  position: absolute;
  left: -750px;
  white-space: nowrap;
}

.design__word__2 {
  position: absolute;
  left: -650px;
  white-space: nowrap;
}

#design-cards {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(var(--numcards), var(--testcard-height));
  gap: var(--card-margin);
  padding-bottom: calc(var(--numcards) * var(--card-top-offset));
  margin-bottom: var(--card-margin);
}

.design__card {
  position: sticky !important;
  top: 5rem;
  padding-top: calc(var(--index) * var(--card-top-offset));
  transition: background-color 0.3s ease-in;
  height: max-content;
  background-color: #eb2227;
}

.design__card .card-content {
  padding: 1.4em;
  /* height: var(--card-height); */
}

.design__card {
  border-bottom: 1px solid #ccc;
}

.design__card:nth-last-child(1) {
  border-bottom: none; /* Remove border for the last item */
}

.design__card:nth-last-child(2):only-child {
  border-bottom: none; /* Handle cases with one item in the last row */
}

@media screen and (min-width: 990px) {
  .devop__word__1 {
    top: 0%;
    left: 10%;
  }

  .devop__word__2 {
    top: 30%;
    left: 20%;
  }
}

.devop__word__1 {
  position: absolute;
  left: -750px;
  white-space: nowrap;
}

.devop__word__2 {
  position: absolute;
  left: -650px;
  white-space: nowrap;
}
.devop-background_before_content {
  background-color: #474747;
  z-index: 9;
  opacity: 0.85;
}

.floating-image-devops {
  position: relative;
  display: block;
  margin: 0 auto;
  animation: float-design-devops 3s ease-in-out infinite; /* Floating animation */
  transition: transform 0.5s ease-out; /* Smooth transform */
}

@keyframes float-design-devops {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}

@media screen and (min-width: 1440px) {
  .devops__section {
    top: 33%;
  }
  .marketing__section {
    top: 10%;
  }
}

.floating-image-mrk {
  position: relative;
  display: block;
  margin: 0 auto;
  animation: float-design-mrk 3s ease-in-out infinite; /* Floating animation */
  transition: transform 0.5s ease-out; /* Smooth transform */
}

@keyframes float-design-mrk {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* General Section Styling */
.circle-section {
  height: 100vh; /* Full viewport height */
  background-color: #f4f4f4; /* Background color for the section */
}

/* Circle Image Styling */
.circle-image {
  bottom: 0;
  right: 0;
  width: 100px; /* Initial size */
  height: 100px;
  background-size: cover;
  background-position: center;
  transform: scale(1); /* Initial scale */
  transition: transform 1.5s ease, bottom 1.5s ease, right 1.5s ease;
}

/* Circle Text Styling */
.circle-text {
  opacity: 0; /* Initially hidden */
  transition: opacity 1s ease;
}

/* Active State for Animation */
.circle-section.active .circle-image {
  bottom: 50%; /* Center vertically */
  right: 50%; /* Center horizontally */
  transform: translate(50%, 50%) scale(50); /* Expand to cover section */
}

.circle-section.active .circle-text {
  opacity: 1; /* Make text visible */
}

@media screen and (min-width: 992px) {
  .startup-title-section {
    min-height: 660px;
  }
}

@media screen and (min-width: 768px) and (max-height: 992px) {
  .startup-title-section {
    min-height: 350px;
  }
}

.custom-stacking-section {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.custom-cards-wrapper {
  display: flex;
  position: absolute;
  top: 2%;
  /* Center vertically */
  /* transform: translateY(-50%); */
  /* Offset by 50% of its height */
  height: 300px;
}

.custom-card {
  width: 1400px;
  height: 640px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
  position: absolute;
  transform: translateX(100vw);
  background-color: #f50816;
  /* Start off-screen */
}

.pin-spacer {
  padding: 0px !important;
  background-color: #fff;
}

.custom-card:nth-child(1) {
  background-color: #1f1f1f !important;
}

/* Floating Menu */
#floatingMenu {
  position: fixed;
  top: 20%;
  left: 5%;
  transform: translateX(-50%);
  z-index: 1000;
  padding: 1rem;
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 0; /* Initially hidden */
  pointer-events: none;
}

#floatingMenu.visible {
  opacity: 1;
  pointer-events: auto;
}

.floating-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.floating-menu li {
  margin-bottom: 10px;
}

.floating-menu a {
  text-decoration: none;
  color: #474747;
  font-weight: bold;
  transition: color 0.3s ease, font-weight 0.3s ease;
}

.floating-menu a.active {
  font-weight: bold;
  color: #f50816;
  font-size: 24px;
}

/* Sections */
.section {
  height: 100vh;
  border-bottom: 1px solid #ddd;
  padding: 20px;
  box-sizing: border-box;
}

.highlight-links {
  color: #333333; /* Change to your desired color */
}

.marquee-wrapper-stratergy {
  top: 2%;
}

.bg-services-gradient-red {
  background: linear-gradient(180deg, #eb2227 20.55%, #9b0b0f 122.09%);
}

.keywords-container {
  background-color: #333333;
}

.bg-services-gradient-grey {
  background: linear-gradient(180deg, #474747 20.55%, #000000 122.09%);
}

@media screen and (min-width: 992px) {
  .top-nav-services {
    position: sticky;
    z-index: 9998;
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    top: 9%;
    transform: translateX(-50%);
    opacity: 0; /* Initially hidden */
    pointer-events: none;
  }
}

.floating-menu-links.active {
  color: #fff !important;
  font-weight: 700 !important;
}

.floating-menu-links:hover {
  color: #eb2227;
}

.floating-menu-links {
  color: #fff !important;
}

@media screen and (max-width: 768px) {
  .service__word__2 {
    bottom: 0;
  }

  .service__word__1 {
    bottom: 24%;
  }

  .menu-link-services {
    gap: 5px;
  }

  .top-nav-services {
    position: sticky;
    z-index: 9999;
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    top: 8.5%;
    transform: translateX(-50%);
    opacity: 0; /* Initially hidden */
    pointer-events: none;
  }

  .service__word__marquee {
    font-size: 64px;
  }
  .menu-link-services {
    width: 100%;
  }

  .menu-link-services a {
    font-size: 12px !important;
  }

  #testimonials-cards {
    padding-inline-start: 0px !important;
  }

  .keyword-item {
    margin: 0.5rem 0; /* Add vertical spacing */
    text-align: left; /* Align text to the left (optional) */
  }
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  #testimonials-cards {
    padding-inline-start: 0px !important;
  }
}

@media screen and (min-width: 992px) {
  .service__word__1 {
    top: 0%;
  }
  .menu-link-services {
    width: 75%;
  }
}

.startup-cards-mobile {
  min-height: 270px;
}

.owl-carousel-startup-mobile .owl-dots button.owl-dot.active {
  background-color: #eb2227 !important;
  width: 80px;
  height: 8px;
  border-radius: 10px;
}

.owl-carousel-startup-mobile .owl-dots button.owl-dot {
  background-color: #474747 !important;
}

.owl-carousel-startup-mobile .owl-dots button.owl-dot {
  width: 20px;
  height: 3.8px;
  border-radius: 10px;
  display: inline-block;
  background: #8e9090;
  margin: 0 3px;
  justify-content: center;
}

.owl-carousel-startup-mobile .owl-dots {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 55px;
}

@media screen and (max-width: 768px) {
  .all-services {
    position: relative;
    max-width: 100vw !important;
  }
}

.top-nav-services {
  opacity: 0;
  transition: opacity 0.5s ease; /* Smooth fade effect */
}

.marquee {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-design {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  white-space: nowrap;
}

.marquee .service__word__marquee {
  will-change: transform;
  transform: translateX(0);
  animation: marquee linear infinite;
  white-space: nowrap;
  flex-shrink: 0;
}

.marquee-design .service__word__marquee {
  will-change: transform;
  transform: translateX(0);
  animation: marquee-design linear infinite;
  white-space: nowrap;
  flex-shrink: 0;
}

.marquee-wrapper {
  overflow: hidden;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes marquee-design {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

:root {
  --mobileServiceCards: 4;
  --mobilecardHeight: 90vh;
  --mobilecardTopPadding: 5.5em;
  --mobilecardMargin: 4vw;
}

#home-services-cards {
  list-style: none;
  padding-left: 0;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(
    var(--mobileServiceCards),
    var(--mobilecardHeight)
  );
  gap: var(--mobilecardMargin);
  padding-bottom: calc(var(--mobileServiceCards) * var(--mobilecardTopPadding));
  margin-bottom: var(--mobilecardMargin);
  overflow: visible;
}

#card1 {
  --index: 1;
  background-color: #1f1f1f;
}

#card2 {
  --index: 2;
  background-color: #eb2227;
}

#card3 {
  --index: 3;
  background-color: #1f1f1f;
}

#card4 {
  --index: 4;
  background-color: #eb2227;
}

#card1 .card {
  background: #1f1f1f;
}

#card2 .card {
  background-color: #eb2227;
}

#card3 .card {
  background: #1f1f1f;
}

#card4 .card {
  background-color: #eb2227;
}

.home-services-card-mobile {
  position: sticky;
  top: 0;
  padding-top: calc(var(--index) * var(--mobilecardTopPadding));
}

#home-services-cards .card-body {
  box-sizing: border-box;
  height: var(--mobilecardHeight);
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
}

.animation-wrapper {
  position: relative;
  width: 100vw !important;
  height: 100vh !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 1920px) {
  .animation-wrapper {
    overflow: visible;
  }
}

@media screen and (min-width: 992px) and (max-width: 1280px) {
  .animation-wrapper {
    overflow-y: visible;
    overflow-x: hidden;
  }

  .stack-item {
    width: 940px !important;
    height: 540px !important;
  }

  .lottie-container {
    height: 85vh !important;
    top: 0% !important;
    left: 51% !important;
  }

  .num-startup {
    font-size: 2.9rem !important;
  }

  .num-startup-title {
    font-size: 32px !important;
  }

  .top-nav-services {
    top: 10.5% !important;
  }

  .circle-section {
    /* margin-top: -242px !important; */
  }

  .rings-bellow {
    width: 800px;
  }

  .rings {
    width: 800px;
  }
}

@media screen and (min-width: 1280px) and (max-width: 1450px) {
  .animation-wrapper {
    overflow-y: visible;
    overflow-x: hidden;
  }

  .rings-bellow {
    width: 900px;
  }

  .rings {
    width: 900px;
  }

  .top-nav-services {
    top: 8% !important;
  }

  .stack-item {
    width: 1150px !important;
    height: 580px !important;
  }

  .lottie-container {
    height: 90vh !important;
    top: -4% !important;
    left: 37% !important;
  }

  .num-startup {
    font-size: 3.2rem !important;
  }

  .num-startup-title {
    font-size: 36px !important;
  }

  .circle-section {
    /* margin-top: -282px !important; */
  }
}

@media screen and (min-width: 1450px) and (max-width: 1600px) {
  .animation-wrapper {
    overflow-y: visible;
    overflow-x: hidden;
  }

  .top-nav-services {
    top: 7% !important;
  }
  .lottie-container {
    height: 95vh;
    top: -9%;
    left: 42%;
  }

  .circle-section {
    /* margin-top: -300px; */
  }

  .rings {
    width: 950px;
  }
}

@media screen and (min-width: 1600px) and (max-width: 1919px) {
  .animation-wrapper {
    overflow-y: visible;
    overflow-x: hidden;
  }
  .top-nav-services {
    top: 6% !important;
  }

  .lottie-container {
    height: 99vh;
    top: -9%;
    left: 38%;
  }
  .circle-section {
    /* margin-top: -390px; */
  }
}

.pin-container {
  width: 100%;
  height: 100%;
  position: relative;
  overflow-y: visible;
}

.stack-container {
  position: absolute;
  width: 100%;
  height: 100%;
}

.stack-item {
  position: absolute;
  opacity: 1;
  width: 1400px;
  height: 640px;
  transform: translateX(100vw);
  background-color: #f50816;
}

.stack-item {
  margin-left: 45px;
}

.lottie-container {
  position: absolute;
  width: auto;
  height: 120vh;
  z-index: 600;
  top: -23%;
  left: 33%;
}

.marquee-text {
  overflow: clip;
}

.marquee-text-track {
  display: flex;
  padding-left: 4.8rem;
  gap: 4.8rem;
  width: max-content;
  animation: marquee-move-text var(--speed, 17s) linear infinite
    var(--direction, forwards);
}

@media screen and (max-width: 768px) {
  .marquee-text p {
    /* padding: 1rem 2.5rem; */
    font-size: 64px;
    opacity: 0.2;
    color: #1f1f1f;
    mix-blend-mode: color-burn;
    font-weight: bold;
  }
}

@media screen and (min-width: 768px) {
  .marquee-text p {
    /* padding: 1rem 2.5rem; */
    font-size: 250px;
    opacity: 0.2;
    color: #1f1f1f;
    mix-blend-mode: color-burn;
    font-weight: bold;
  }
}

@keyframes marquee-move-text {
  to {
    transform: translateX(-20%);
  }
}

.fadeout-horizontal {
  -webkit-mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0) 0%,
    /* Fully transparent at the start */ rgba(0, 0, 0, 1) 8rem,
    /* Increase the fade-in width on the left */ rgba(0, 0, 0, 1)
      calc(100% - 12rem),
    /* Start fading out earlier on the right */ rgba(0, 0, 0, 0) 100%
      /* Fully transparent at the end */
  );
  mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 1) 8rem,
    rgba(0, 0, 0, 1) calc(100% - 12rem),
    rgba(0, 0, 0, 0) 100%
  );
}

@media screen and (min-width: 992px) {
  .circle-section {
    /* margin-top: -130px; */
  }
}

.top-nav-services {
  background-color: #900b0e;
}

.floating-arrow {
  position: absolute;
  bottom: -16px;
  left: 0;
  width: 20px;
  height: 4px;
  background: #f94d58;
  transition: all 0.3s ease-in-out;
  border-radius: 5px;
}

/* Services end */

/* Blogs start */
.blogs__archive__btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.8rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  background-color: #eb2227; /* Gray-50 */
  /* border: 2px solid #fff; */
  border-radius: 15px;
  overflow: hidden;
  z-index: 10;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  width: max-content;
}

.blogs__archive__btn:hover {
  color: #fff;
}

.blogs__archive__btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #000;
  border-radius: 10px;
  z-index: -1;
  transition: all 0.7s ease-in-out;
}

.blogs__archive__btn:hover::before {
  left: 0;
}

.link-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.2rem;
  height: 2.2rem;
  border: none;
  border-radius: 50%;
  padding: 0.5rem;
  transform: rotate(45deg);
  transition: all 0.3s ease-in-out;
  background-color: transparent;
}

.blogs__archive__btn:hover .link-icon {
  transform: rotate(45deg);
  background-color: #000;
  border: none;
}

.link-icon path {
  fill: rgba(245, 8, 22, 1);
  transition: fill 0.3s ease-in-out;
}

.blogs__archive__btn:hover .link-icon path {
  fill: rgba(245, 8, 22, 1);
}

@media screen and (min-width: 1432px) {
  .latest-blog {
    min-height: 70vh;
  }

  .banner-area-blogs {
    min-height: 90vh;
  }

  .card-img-blogs {
    width: 100%;
    height: 550px;
  }
}

@media screen and (min-width: 1400px) and (max-width: 1920px) {
  .banner-area-blogs {
    height: 80vh;
  }

  .latest-blog {
    height: 70vh;
  }
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  .banner-area-blogs {
    height: 80vh;
  }

  .word-blogs {
    top: 54% !important;
  }

  .background-rotating-text {
    font-size: 280px;
    opacity: 0.5;
  }

  .latest-blog {
    min-height: 60vh;
  }
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
  .banner-area-blogs {
    height: 80vh;
  }

  .latest-blog {
    min-height: 60vh;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1400px) {
  .banner-area-blogs {
    height: 80vh;
  }

  .latest-blog {
    height: 60vh;
  }
}

.latest-blog {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.word-blogs {
  /* display: none; */
  position: absolute;
  top: 10%;
  right: 0px;
  white-space: nowrap;
  /* color: rgba(218, 218, 218, 1); */
}

.works__archive__btn2 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.8rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
  background-color: #fff; /* Gray-50 */
  /* border: 2px solid #fff; */
  border-radius: 15px;
  overflow: hidden;
  z-index: 10;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  width: max-content;
}

.works__archive__btn2:hover {
  color: #fff;
}

.works__archive__btn2::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #000;
  border-radius: 10px;
  z-index: -1;
  transition: all 0.7s ease-in-out;
}

.works__archive__btn2:hover::before {
  left: 0;
}

.link-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.2rem;
  height: 2.2rem;
  border: none;
  border-radius: 50%;
  padding: 0.5rem;
  transform: rotate(90deg);
  transition: all 0.3s ease-in-out;
  background-color: transparent;
}

.works__archive__btn2:hover .link-icon {
  transform: rotate(45deg);
  background-color: #000;
  border: none;
}

.link-icon path {
  fill: #000;
  transition: fill 0.3s ease-in-out;
}

.works__archive__btn2:hover .link-icon path {
  fill: rgba(245, 8, 22, 1);
}

.testimonials__card:has(~ .active) {
  /* opacit/y: 0.4; */
}

@media screen and (min-width: 992px) {
  .single__blogs__banner {
    min-height: 670px;
  }
}

.single__blogs__banner {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

@media screen and (min-width: 992px) {
  .single-blog-content-img {
    width: 100%;
    height: 480px;
  }
}

.floating-menu {
  position: sticky;
  top: 150px;
  height: calc(100vh - 100px);
  overflow-y: auto;
  padding-right: 15px;
}

.floating-menu a {
  transition: color 0.3s;
}

.floating-menu a:hover {
  color: #007bff;
}

@media screen and (max-width: 992px) {
  .card-img-blogs {
    height: 470px;
    width: 100%;
  }
}

.owl-carousel-blogs-mobile .owl-dots button.owl-dot.active {
  background-color: #eb2227 !important;
  width: 80px;
  height: 8px;
  border-radius: 10px;
}

.owl-carousel-blogs-mobile .owl-dots button.owl-dot {
  background-color: #474747 !important;
}

.owl-carousel-blogs-mobile .owl-dots button.owl-dot {
  width: 20px;
  height: 3.8px;
  border-radius: 10px;
  display: inline-block;
  background: #8e9090;
  margin: 0 3px;
  justify-content: center;
}

.owl-carousel-blogs-mobile .owl-dots {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 55px;
}

@media screen and (max-width: 768px) {
  .banner-area-blogs {
    min-height: 80vh;
  }

  .word-blogs {
    top: 80%;
  }

  .latest-blog {
    min-height: 450px;
  }
}

@media screen and (max-width: 768px) {
  .single__blogs__banner {
    min-height: 70vh;
  }
}

.floating-menu .nav-link {
  position: relative;
  transition: all 0.3s ease;
  color: #8e9090;
  font-weight: 400 !important;
}

.floating-menu .nav-link.active-section {
  color: #000 !important;
  font-weight: bold !important;
}

.floating-menu .nav-link.active-section::before {
  content: "●";
  position: absolute;
  left: 1px;
  color: #000;
  font-size: 14px;
}

.floating-menu .nav-link:hover {
  color: #eb2227;
}

.arthur-area {
  background: rgba(217, 217, 217, 0.5);
}

@media screen and (min-width: 992px) {
  .arthur-area img {
    width: 150px;
    height: 150px;
  }
}

@media screen and (max-width: 768px) {
  .arthur-area img {
    width: 200px;
    height: 150px;
  }
}

@media screen and (min-width: 1200px) {
  .keyword-item:nth-child(1) {
    margin-inline-start: 0px !important;
  }
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
  .blg_title {
    font-size: 15px !important;
  }

  .date_txt {
    font-size: 14px;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1400px) {
  .blg_title {
    font-size: 16px !important;
  }
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  .floating-menu ul li a {
    font-size: 12px !important;
  }

  .single__blogs__banner {
    min-height: 70vh;
  }
}

@media screen and (min-width: 1400px) {
  .arthur-name {
    font-size: 24px !important;
  }
}

@media screen and (max-width: 768px) {
  .arthur-name {
    font-size: 18px !important;
  }
}

@media screen and (min-width: 768px) and (max-width: 1400px) {
  .arthur-name {
    font-size: 20px !important;
  }
}
/* Blogs end */

/* About us start */
@media screen and (min-width: 992px) {
  .banner-area-aboutus {
    min-height: 83vh;
  }

  .services-abt {
    min-height: 125vh;
  }

  .word-abt {
    top: 10%;
  }
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  .banner-area-aboutus {
    min-height: 80vh;
  }

  .word-abt {
    bottom: 0%;
  }

  .word-abt h2 {
    font-size: 180px;
  }
}

.word-abt {
  /* display: none; */
  position: absolute;
  left: 0%;
  white-space: nowrap;
}

.i-icon-abtus {
  right: 8rem;
  bottom: 2.5rem;
  animation: floatUpDown 2.4s ease-in-out infinite;
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
  .i-icon-abtus {
    width: 350px;
    height: auto;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1400px) {
  .i-icon-abtus {
    width: 400px;
    height: auto;
  }
}

@keyframes floatUpDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px); /* Adjust the distance to your liking */
  }
  100% {
    transform: translateY(0);
  }
}

.img-div-values {
  width: 330px;
  height: 260px;
}

.owl-item:nth-child(odd) .value-cards {
  background-color: #be0d10;
}

.owl-item:nth-child(even) .value-cards {
  background-color: #c80028;
}

@media screen and (min-width: 992px) {
  .value-cards {
    min-height: 700px;
  }
}

.values-i-icon {
  right: 15rem;
}

@media screen and (max-width: 768px) {
  .banner-area-aboutus {
    min-height: 80vh;
  }

  .word-abt {
    bottom: 0%;
  }

  .another-design-L-img {
    background-size: cover !important;
    background-position: right !important;
  }

  .value-cards .card-body {
    min-height: 600px;
  }
}

.logo-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.2s ease, transform 0.2s ease; /* Adjust timing here */
}

.logo-item.animate-logo {
  opacity: 1;
  transform: translateY(0);
}

.owl-carousel-aboutus-client-mobile-1 {
  display: flex;
  overflow: hidden;
}

.owl-carousel-aboutus-client-mobile-2 {
  display: flex;
  overflow: hidden;
}

.owl-carousel-aboutus-client-mobile-3 {
  display: flex;
  overflow: hidden;
}

.owl-carousel-aboutus-client-mobile-1 .owl-stage {
  display: flex;
  animation: scroll 12s linear infinite;
  will-change: transform;
  width: 100%;
  transition: transform 0.4s linear;
}

.owl-carousel-aboutus-client-mobile-2 .owl-stage {
  display: flex;
  animation: scroll-rtl 12s linear infinite;
  transition: transform 0.4s linear;
  will-change: transform;
  width: 100%;
}

.owl-carousel-aboutus-client-mobile-3 .owl-stage {
  display: flex;
  animation: scroll 12s linear infinite;
  transition: transform 0.4s linear infinite;
  will-change: transform;
  width: 100%;
}

.owl-carousel-aboutus-client-mobile-1 .owl-item {
  flex: 0 0 auto;
  margin-right: 10px;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
  flex-shrink: 0;
  width: auto !important;
}

.owl-carousel-aboutus-client-mobile-2 .owl-item {
  flex: 0 0 auto;
  margin-right: 10px;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
  flex-shrink: 0;
  width: auto !important;
}

.owl-carousel-aboutus-client-mobile-3 .owl-item {
  flex: 0 0 auto;
  margin-right: 10px;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
  flex-shrink: 0;
  width: auto !important;
}

.owl-carousel-aboutus-client-mobile-1 .owl-item .item {
  width: 220px;
}

.owl-carousel-aboutus-client-mobile-2 .owl-item .item {
  width: 220px;
}

.owl-carousel-aboutus-client-mobile-3 .owl-item .item {
  width: 220px;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

@keyframes scroll-rtl {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(100%);
  }
}

@media screen and (min-width: 576px) and (max-width: 768px) {
  .another-design-L-img {
    background-position: left !important;
  }

  .img-div-values {
    width: 180px;
    height: 180px;
  }
  .value-cards .card-body {
    min-height: 530px;
  }
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  .img-div-values {
    width: 220px;
    height: 220px;
  }

  .value-cards {
    min-height: 550px;
  }
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
  .img-div-values {
    width: 230px;
    height: 230px;
  }

  .value-cards {
    min-height: 595px;
  }

  .value-cards h3 {
    font-size: 26px !important;
  }
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
  .img-div-values {
    width: 250px;
    height: 250px;
  }

  .value-cards {
    min-height: 610px;
  }

  .value-cards h3 {
    font-size: 28px !important;
  }
}
/* About us end */

/* Contact us start */

/* General form styling */
.wpcf7-form {
  color: #fff; /* White text for contrast */
}

/* Label styling */
.wpcf7-form label {
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}

/* Input and textarea styling */
.wpcf7-form input,
.wpcf7-form textarea,
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"] {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid #555; /* Default border color */
  color: #fff; /* White text */
  padding: 10px 0;
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s ease-in-out;
  border-radius: 0px !important;
}

/* Input focus effect */
.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
  border-bottom: 2px solid #007bff; /* Blue underline effect */
}

/* Placeholder text color */
.wpcf7-form ::placeholder {
  color: #bbb;
  opacity: 1;
}

/* Send button styling */
.wpcf7-submit {
  background: #e50914; /* Netflix red */
  color: #fff;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.3s ease-in-out;
}

/* Send button hover effect */
.wpcf7-submit:hover {
  background: #d40813;
}

/* Icon inside button */
.wpcf7-submit::after {
  content: "↗";
  font-size: 14px;
}
.wpcf7 {
  max-width: -webkit-fill-available !important;
  margin: 0 auto !important;
}

/* Contact us end */

/* Thankyou page start */
.thankyou-section {
  min-height: 100vh;
}
/* Thankyou page end */

/* Preloader start */

#preloader {
  left: 0;
  z-index: 999999;
  transition: transform 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

/* Logo Image (Initially Grayscale) */
#preloader-logo img {
  width: 150px; /* Adjust as needed */
  display: block;
  filter: grayscale(100%);
  transition: filter 1.5s ease-in-out;
}

#preloader-logo {
  animation: pulse 1.5s infinite ease-in-out alternate; /* Subtle pulse */
}
/* The mask that reveals color */
.preloader-mask {
  bottom: 0;
  left: 0;
  background: transparent; /* Matches the background */
  transform: scaleY(1);
  transform-origin: bottom;
  transition: transform 1.8s ease-in-out;
}

/* Subtle Pulse Animation */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.05);
  }
}

/* Hide preloader */
.preloader-hidden {
  transform: translateY(-200vh);
  transition: transform 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

/* Preloader end */

/* Privacypolicy start */
.privacy-doc p ,.privacy-doc ul{
  color: #fff !important;
}
/* Privacypolicy end */