:root {
  --primary-color: #ffffff;
  --secondry-color: #000;
  --nav-font-color: #000;
  --primary-bg: #000;
  --blue-color: #0047ff;
  --green-color: #55a520;
  --yellow-color: #fadd00;
  --black-color: #000;
  --white-color: #ffffff;
  --toggle-btn-bg: #1b1b1b;
  --submit-btn-bg: #1b1b1b;
  --overlay-color: rgba(0, 0, 0, 0.1);
}

@media (prefers-color-scheme: light) {
  :root {
    --primary-bg: #ffffff;
    --primary-color: #000000;
    --overlay-color: rgba(255, 255, 255, 0.1);
    --submit-btn-bg: #fff;
  }
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--primary-bg);
  font-family: "Anton", sans-serif;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  height: 100%;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: #000;
}

.m-t-b {
  margin: 10% 0;
}

/* Header Section */

header {
  padding: 10px;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: uppercase;
  font-size: 25px;
  position: sticky;
  top: 0;
  z-index: 999;
  max-width: 1200px;
  margin: 0 auto;
}
nav {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo {
  width: 30px;
  height: 30px;
  background-color: var(--blue-color);
}

.menu-items {
  display: flex;
  gap: 10px;
}

.menu-item:not(:last-child)::after {
  content: "/";
}

.industry-hub {
  display: flex;
}

.industry-hub > p {
  transform: scaleX(1);
  transform-origin: right;
  height: auto;
  opacity: 1;
  width: max-content;
  transition: transform 1s ease-in-out, opacity 1s ease-in-out;
}

.industry-hub:hover > p {
  transform: scaleX(0);
  height: 0;
  opacity: 0;
  width: 0;
  overflow: hidden;
  visibility: hidden;
}

.industry-hub .menu-items {
  transform: scaleX(0);
  height: 0;
  opacity: 0;
  transform-origin: right;
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out,
    height 0.5s ease-in-out;
}

.industry-hub:hover .menu-items {
  transform: scaleX(1);
  opacity: 1;
  height: auto;
}

.mobile-menu-open-icon {
  display: none;
}

.mobile-menus {
  display: none;
}

/* Home Hero Section */

.home_hero_section {
  height: 100vh;
}

.hero-container {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  color: var(--primary-color);
  font-family: "Inter", sans-serif;
  padding: clamp(0px, 2.7vw, 40px);
  position: relative;
}

.hero-container::after {
  content: "";
  max-width: 200px;
  max-height: 200px;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  filter: blur(150px);
  background-color: var(--blue-color);
  position: absolute;
  bottom: 0;
  right: 10%;
  z-index: -1;
}

.hero-container::before {
  content: "";
  max-width: 200px;
  max-height: 200px;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  filter: blur(150px);
  background-color: red;
  position: absolute;
  bottom: 0;
  left: 20%;
  z-index: -1;
}

.hero-heading {
  font-family: "Inter", sans-serif;
  font-size: clamp(3.5rem, 9vw, 8rem);
  letter-spacing: -4px;
  line-height: 100%;
  font-weight: 600;
  text-transform: capitalize;
  position: relative;
  z-index: 2;
}

.hero-heading::after {
  content: "";
  position: absolute;
  height: 7px;
  width: 250px;
  border: solid 8px var(--blue-color);
  border-color: var(--blue-color) transparent transparent transparent;
  border-radius: 50%;
  bottom: -5%;
  right: 10%;
  clip-path: inset(0 0 50% 0);
  z-index: -1;
}

.hero-sub-heading {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0px;
  margin-top: 20px;
}

.hero-logo {
  max-width: 800px;
  margin-left: auto;
  width: 100%;
}

.hero-logo::after {
  content: "";
  width: 46px;
  height: 50px;
  background-color: var(--blue-color);
  position: absolute;
  right: 1px;
  bottom: 12%;
  z-index: -1;
}

/* Recent Work Section */
.recent-deliveries {
  display: flex;
  height: 100vh;
}

.top-section {
  width: 40%;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-direction: column;
}

.top-section-heading {
  font-size: clamp(2.75rem, 10vw, 7rem);
  font-family: "Anton", sans-serif;
  line-height: 100%;
  color: var(--primary-color);
  text-transform: uppercase;
}

.view-change-section {
  display: flex;
  gap: 20px;
  align-items: center;
}

.view-toggler {
  width: 100px;
  height: 35px;
  border-radius: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background-color: rgb(33, 33, 33);
  position: relative;
  color: #fff;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.view-toggler::before {
  content: "";
  width: 28px;
  height: 28px;
  background-color: rgb(0, 98, 255);
  position: absolute;
  border-radius: 50%;
  left: 9%;
  z-index: 0;
  transition: left 0.5s ease;
}

.view-toggler.active::before {
  left: 66.4%;
}

.view-toggler i {
  position: relative;
  font-size: 15px;
}

.active-desktop,
.active-mobile {
  color: rgb(99, 99, 99);
  font-family: "Inter", sans-serif;
}

.bottom-section {
  width: 60%;
}

.desktop-view-mode {
  height: 100%;
  /* display: none; */
}

.active-desktop.active {
  color: var(--primary-color);
}

.active-mobile.active {
  color: var(--primary-color);
}

.mobile-view-mode {
  height: 100%;
}

.slider-wrapper {
  overflow-x: hidden;
  width: 100%;
  position: relative;
  height: 100%;
}

.slides {
  display: flex;
  height: 100%;
}

.desktop-view-mode .slider-wrapper .slides .slide {
  flex: 0 0 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 100px;
  color: #fff;
}

.mobile-view-mode .slider-wrapper .slides .slide {
  flex: 0 0 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 100px;
  color: #fff;
}

.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
}

.prev-btn {
  left: 20px;
  transition: left 0.5s ease-in-out;
}

.prev-btn:hover {
  left: 15px;
}

.next-btn {
  right: 20px;
  transition: right 0.5s ease-in-out;
}

.next-btn:hover {
  right: 15px;
}

/* Laptop Mockup */

.laptop-mockup-container {
  /* background-color: blue; */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.laptop-mockup-container img {
  width: calc(100% - 15%);
}

.laptop-video {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0);
  width: calc(100% - 34%);
  height: calc(100% - 14%);
  top: 48%;
  transform: translateY(-50%);
  overflow: hidden;
}

.laptop-video video {
  width: 100%;
  object-fit: cover;
}

/* Phone Mockup */

.phone-mockup-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-mockup-container img {
  max-width: 250px;
}

.mobile-video {
  position: absolute;
  background-color: rgb(1, 1, 1);
  width: calc(100% - 10.715%);
  height: calc(100% - 25%);
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
}

.mobile-video video {
  width: 100%;
  object-fit: fill;
  height: 100%;
  object-position: top;
}

/* Home Tabs Section */

.tabs-section {
  background-color: var(--toggle-btn-bg);
  position: relative;
  overflow: hidden;
  height: 30vh;
  width: 80%;
  margin: 100px auto;
  border-radius: 20px;
  transform: translateZ(0); /* Force hardware acceleration */
  will-change: height, width;
  transition: height 0.7s cubic-bezier(0.33, 1, 0.68, 1),
    width 0.7s cubic-bezier(0.33, 1, 0.68, 1), border-radius 0.4s ease;
  contain: strict;
  /* Prevent any external layout interference */
  isolation: isolate;
}

.tabs-section.full-size {
  height: 100vh !important;
  width: 100% !important;
  border-radius: 0;
}

.tabs-section::before {
  content: "";
  max-width: 450px;
  max-height: 450px;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.101);
  /* mix-blend-mode: multiply; */
  position: absolute;
  top: -20%;
  left: 30%;
  transform: translateX(-50%);
  z-index: 0;
  /* filter: drop-shadow(0 0 10px rgba(255,0,100,0.7)); */
  animation: chaoticMovement 120s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes chaoticMovement {
  0% {
    transform: translate(0, 0) rotate(0deg) scale(1);
    opacity: 1;
  }
  10% {
    transform: translate(120%, 50%) rotate(45deg) scale(1.5);
    opacity: 0.8;
  }
  25% {
    transform: translate(-80%, 30%) rotate(-90deg) scale(0.7);
    opacity: 1;
  }
  40% {
    transform: translate(40%, -70%) rotate(180deg) scale(1.3);
    opacity: 0.6;
  }
  55% {
    transform: translate(-60%, 90%) rotate(270deg) scale(0.9);
    opacity: 1;
  }
  70% {
    transform: translate(90%, -40%) rotate(360deg) scale(1.7);
    opacity: 0.7;
  }
  85% {
    transform: translate(-30%, 60%) rotate(45deg) scale(0.5);
    opacity: 1;
  }
  100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
    opacity: 1;
  }
}

.tabs-section-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  margin: 0 auto;
  padding: 5%;
  color: var(--white-color);
  opacity: 0;
  transform: scale(0.98);
  transition: opacity 0.6s ease 0.15s,
    transform 0.6s cubic-bezier(0.33, 1, 0.68, 1) 0.15s;
}

.tabs-section.full-size .tabs-section-container {
  opacity: 1;
  transform: scale(1);
}

.dynamic_content {
  font-size: clamp(26px, 5vw, 54px);
  line-height: 1.2;
  margin-bottom: 5rem;
  min-height: 80px;
  font-family: "Inter", sans-serif;
  position: relative;
  transition: opacity 0.3s ease;
}

.home_tabs {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  list-style: none;
}

.home_tab {
  max-width: max-content;
  display: flex;
  gap: 5px;
  align-items: center;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: all 0.3s ease;
  position: relative;
}

.home_tab:hover {
  border-color: #999;
}

.home_tab.active {
  border-color: #000;
}

.home_tab i {
  font-size: 0;
  opacity: 0;
  transition: opacity 0.3s ease, font-size 0.3s ease-in-out;
}

.home_tab.active i {
  font-size: clamp(16px, 2vw, 22px);
  opacity: 1;
}

.tab-title {
  font-size: clamp(18px, 2.5vw, 32px);
  display: flex;
  text-transform: uppercase;
  gap: 10px;
  color: var(--white-color);
  letter-spacing: 1px;
}

.tab-title > *:not(:first-child)::before {
  content: "/";
  margin-right: 10px;
}

.home_tab .see-work-link {
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.home_tab a {
  text-decoration: none;
  color: #ffffff8f;
  transition: color 0.3s ease;
}

.home_tab.active p {
  transform: scaleX(1);
}

.home_tab a:hover {
  color: #ffffff;
}

.strategies-section {
  padding: 3%;
  /* height: 100vh; */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.strategies-section-tagline {
  color: transparent;
  background-image: linear-gradient(90deg, #ff6b6b, #0075fa);
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: flex;
  width: max-content;
  text-align: center;
  font-size: clamp(38px, 5vw, 54px);
  font-weight: 600;
  font-family: "Inter", sans-serif;
}

.reveal_effect {
  position: relative;
  overflow: hidden;
  touch-action: pan-y;
  padding: 4% 0;
}

.bg-full-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  /* background: radial-gradient(
    circle at 200px 250px,
    rgba(0 0 0 / 57%) 100px,
    rgba(0 0 0 / 57%) 300px
  ); */
  top: 0;
  left: 0;
  transition: top 0.5s ease-in-out, left 0.5s ease-in-out;
}

.strategies-heading {
  font-size: clamp(5rem, 16vw, 15rem);
  text-align: center;
  text-transform: uppercase;
  color: red;
  line-height: 100%;
  font-weight: 400;
}

.strategies-description {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  text-align: center;
  color: #ffffff;
  max-width: 900px;
  margin: 0 auto;
  font-family: "Inter", sans-serif;
}

/* Business Needs Section */
.business-needs-section {
  height: 100vh;
}
.business-main-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  height: 100%;
  color: var(--primary-color);
  position: relative;
}

.business-paragraph {
  font-size: 42px;
  font-family: "Inter", sans-serif;
  text-transform: capitalize;
  font-weight: bold;
  max-width: 450px;
  text-align: center;
}

.business-btn {
  all: unset;
  text-transform: capitalize;
  font-family: "Inter", sans-serif;
  background-color: var(--blue-color);
  padding: 15px 40px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 20px;
}

.business-icon {
  position: absolute;
}

.wp-icon {
  top: 12%;
  left: 15%;
  width: 12%;
  /* max-width: 120px; */
}

.php-icon {
  top: 40%;
  left: 5%;
  width: 9%;
}

.shopify-icon {
  top: 55%;
  left: 18%;
  width: 7%;
}

.magento-icon {
  left: 7%;
  top: 70%;
  width: 8%;
}

.google-icon {
  top: 22%;
  left: 85%;
  width: 9%;
}

.webly-icon {
  left: 60%;
  top: 20%;
}

.woo-icon {
  left: 78%;
}

.hostinger-icon {
  top: 75%;
  left: 70%;
  width: 8%;
}

.laravel-icon {
  top: 60%;
  left: 83%;
  width: 7%;
}

/* Client Section */

.client-slider-section {
  display: none;
}

.client-section {
  display: flex;
  align-items: center;
  height: 100vh;
  padding: 5%;
  background-color: var(--blue-color);
}

.client-section-container {
  display: grid;
  grid-template-columns: clamp(40%, -5vw, 35%) 1fr;
  align-items: center;
  gap: 20px;
  color: var(--white-color);
}

.clients {
  /* background-color: red; */
}

.client {
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  color: #ffffff;
  transition: color 0.3s ease-in-out;
}

.client-name {
  cursor: pointer;
  color: #ffffff;
  opacity: 0.6;
  text-transform: uppercase;
}

.client-name:hover {
  color: #ffffff;
  opacity: 1;
}

.client.active .client-name {
  color: #ffffff;
  opacity: 1;
}

.client i {
  font-size: 0;
  margin-left: 0px;
  transition: font-size 0.3s ease-in-out, margin-left 0.3s ease;
}

.client.active i {
  font-size: 2rem;
  margin-left: 10px;
}

.client-about {
  display: flex;
  flex-direction: column;
  gap: 50px;
  /* background-color: red; */
}

.client-info {
  font-size: clamp(1.5rem, 3.2vw, 2rem);
  line-height: 110%;
  text-transform: uppercase;
  position: relative;
}

.client-info::before {
  content: "";
  width: clamp(50px, 5.5vw, 80px);
  height: 50px;
  position: absolute;
  top: clamp(-60px, -5vw, -45px);
  left: 0;
  background-image: var(--quote-url);
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}

.client-other-info {
  display: flex;
  gap: 15px;
}

.client-img {
  width: 150px;
  height: 180px;
  object-fit: cover;
  object-position: top;
}

.client-other-info-name {
  font-size: 1.5rem;
  text-transform: uppercase;
}
.client-other-info-tag {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
}

/* CTA Banner Section */
.cta-banner-section {
  height: 100%;
}

.cta-banner-container {
  background-color: #55a520;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 30%;
  padding: 7%;
  gap: 20px;
  /* align-items: center; */
}

.cta-banner-container-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cta-banner-heading {
  all: unset;
  font-size: clamp(3rem, 5vw, 5.5rem);
  text-transform: uppercase;
  color: #ffffff;
  line-height: 120%;
}

.cta-banner-description {
  font-size: 1.25rem;
  font-family: "Inter", sans-serif;
  line-height: 120%;
  color: #ffffff;
}

.cta-banner-btn {
  width: max-content;
  all: unset;
}

.cta-banner-btn a {
  color: #fff;
  display: block;
  text-transform: uppercase;
  font-size: 1.6rem;
  background-color: #000;
  width: max-content;
  padding: 1% 15% 1% 1.5%;
}

.cta-banner-container-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.cta-banner-container-right-side {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cta-banner-container-right-side-heading {
  all: unset;
  font-size: clamp(3rem, 5vw, 4rem);
  line-height: 110%;
  color: #ffffff;
  letter-spacing: 5px;
}

.cta-banner-container-right-side-description {
  font-size: 1.25rem;
  line-height: 120%;
  color: #ffffff;
  font-family: "Inter", sans-serif;
}

/* Our Services Section */
.our-services-section {
  height: 100%;
  position: relative;
}

.services_bg_video {
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: -1;
}

.our-services-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 80px;
  height: 100%;
  padding: 20px;
}

.our-services-heading {
  font-size: clamp(2.75rem, 10vw, 7.75rem);
  line-height: 84%;
  text-align: center;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 5px;
}

.our-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.our-service {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: rgba(255, 255, 255, 0.201);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  padding: 25px;
  backdrop-filter: blur(10px);
}

.our-service-heading {
  font-size: 2rem;
  line-height: 120%;
  color: var(--primary-color);
  text-transform: capitalize;
  letter-spacing: 2px;
}

.our-service-description {
  font-size: 1.2rem;
  line-height: 120%;
  color: var(--primary-color);
  font-family: "Inter", sans-serif;
}

.our-service-btn {
  all: unset;
}

.our-service-btn a {
  width: max-content;
  color: var(--primary-color);
  font-size: 1.1rem;
  line-height: 110%;
  border-bottom: 1px solid var(--primary-color);
  text-transform: uppercase;
}

/* Industries Section */
.industries-section {
  padding: 5%;
  background-color: var(--yellow-color);
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: center;
}

.industries-section-heading {
  all: unset;
  font-size: clamp(3.5rem, 9vw, 8rem);
  color: var(--black-color);
  text-transform: uppercase;
  width: 60%;
  line-height: 110%;
  letter-spacing: 5px;
}

.industrie-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-bottom: 2px solid var(--black-color);
  padding: 2% 0;
}

.industrie-list:first-child {
  border-top: 2px solid var(--black-color);
}

.industrie-list-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 1.2rem;
  text-transform: capitalize;
}

.industrie-list-heading i {
  font-size: 1.8rem;
}

.industry-list-lists {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-family: "Inter", sans-serif;
}

.industry-list-lists a {
  border-bottom: 1px solid var(--black-color);
  width: max-content;
}

/* Work Page */
.works-section {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.works-heading {
  all: unset;
  text-transform: uppercase;
  color: var(--primary-color);
  font-size: clamp(40px, 9vw, 128px);
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.works-grid > div:nth-child(1) {
  grid-column: span 2;
  color: var(--white-color);
  background-color: #0a0353;
}

.works-grid > div:nth-child(1) .work-detail-link {
  color: var(--white-color);
}

.works-grid > div:nth-child(1) .work-box-top {
  width: 50%;
}

.works-grid > div:nth-child(1) .remote-bg-images {
  display: flex;
  align-items: flex-end;
  position: absolute;
  right: 0;
  bottom: 0;
  gap: 10px;
}

.remote-bg-images > img:nth-child(1) {
  width: 220px;
  height: 150px;
  border-radius: 10px;
}

.remote-bg-images > img:nth-child(2) {
  width: 300px;
  height: 200px;
  border-radius: 10px;
}

.work-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  height: 400px;
  border-radius: 5px;
  border: 1px solid #ffffff42;
  position: relative;
  overflow: hidden;
}

.work-box-top {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.work-box-top-heading h2 {
  all: unset;
  font-size: clamp(38px, 5vw, 64px);
  text-transform: uppercase;
  line-height: 100%;
}

.work-box-top-description {
  font-size: 16px;
  font-family: "Inter", sans-serif;
}

.work-detail-link {
  text-transform: capitalize;
  font-size: clamp(18px, 3vw, 24px);
  position: relative;
}

.work-logo {
  position: absolute;
  right: 5%;
  bottom: 5%;
  width: 60px;
  z-index: 1;
}

.works-grid > div:nth-child(1)::before {
  content: "";
  width: 1200px;
  height: 1200px;
  border-radius: 50%;
  background-color: #a2dd9d;
  position: absolute;
  right: -400px;
  top: 35%;
  transform: rotate(-15deg);
  z-index: 0;
}

.works-grid > div:nth-child(2) {
  background-color: #404040a8;
  color: var(--white-color);
}

.works-grid > div:nth-child(2)::after,
.works-grid > div:nth-child(3)::after {
  content: "";
  width: 500px;
  height: 500px;
  border-radius: 50%;
  top: -15%;
  right: -20%;
  position: absolute;
  background-color: #ffffff40;
  animation: chaoticMovement 60s linear infinite alternate;
}

@keyframes moveAnimate {
}

.works-grid > div:nth-child(2) .work-detail-link {
  color: var(--white-color);
}

.works-grid > div:nth-child(3) {
  background-color: #c1dab9;
  color: var(--black-color);
}

.works-grid > div:nth-child(3)::after {
  animation-direction: alternate-reverse;
}

.works-grid > div:nth-child(4) {
  background-color: #e0c268;
}

.works-grid > div:nth-child(4)::after {
  content: "";
  width: 350px;
  height: 350px;
  position: absolute;
  background-color: #000;
  border-radius: 50%;
  bottom: -190px;
  right: -190px;
  z-index: 0;
}

.works-grid > div:nth-child(5) {
  background-color: #fff;
  color: #213c80;
  background-image: url("/assets/images/appearist-bg.svg");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  animation: bounceAnimate 3s linear infinite alternate;
}

@keyframes bounceAnimate {
  to {
    background-position: center 30px;
  }
}
.works-grid > div:nth-child(5) .work-detail-link {
  color: #213c80;
}

/* Work Single Page */
.work-single-hero {
  height: 100%;
  width: 100%;
  position: relative;
}

.work-single-hero header {
  /* transform: translateY(20px); */
  /* position: absolute; */
}

.work-single-hero img {
  width: 100%;
  height: 100%;
}

.single-hero-overflow {
  position: absolute;
  background-image: linear-gradient(transparent 50%, #000);
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

.work-single-content-head {
  color: var(--primary-color);
  text-transform: uppercase;
  font-family: "Inter", sans-serif;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--primary-color);
}

.work-single-wrapper {
  display: flex;
  gap: 25px;
  color: var(--primary-color);
  font-family: "Inter", sans-serif;
  margin-top: 50px;
}

.work-single-tags-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 50%;
}

.work-single-tag-head {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 32px;
}

.work-single-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.work-single-tags > p {
  padding: 8px;
  border-radius: 5px;
  background-color: #ffffff24;
}

.work-single-contents {
  flex: 50%;
}

.work-single-contents {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.work-single-contents-wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
  overflow: hidden;
  max-height: 400px;
  position: relative;
  transition: max-height 0.3s ease;
}

.work-single-contents-wrapper:not(.expand)::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: linear-gradient(transparent 40%, var(--primary-bg));
}

.work-single-contents-wrapper.expand {
  max-height: 100%;
  margin-bottom: 20px;
}

.work-single-contents-wrapper h2 {
  font-size: clamp(38px, 5.5vw, 64px);
  line-height: 100%;
  text-transform: uppercase;
}

.work-single-contents-wrapper p {
  line-height: 160%;
  font-size: 18px;
}

.expand-button {
  all: unset;
  width: max-content;
  display: flex;
  gap: 5px;
  align-items: center;
  cursor: pointer;
  text-transform: capitalize;
  font-size: 24px;
  padding-bottom: 5px;
  position: relative;
}

.work-single-contents-wrapper + .expand-button i {
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.work-single-contents-wrapper.expand + .expand-button i {
  transform: rotate(-45deg);
}

.expand-button::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--blue-color);
  transition: width 0.5s ease;
}

.expand-button:hover::after {
  width: 40%;
}

/* Reach us */
.reach-us-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 5%;
  color: var(--primary-color);
}

.reach-us-heading {
  all: unset;
  font-size: clamp(38px, 5.5vw, 64px);
  color: var(--primary-color);
  text-transform: uppercase;
}

.forms_and_contacts-section {
  display: flex;
  gap: 50px;
}

.reach-us-form {
  width: 70%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.reach-us-inputs {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.reach-us-inputs input {
  all: unset;
  flex: 250px;
  padding: 15px;
  font-size: clamp(18px, 3.5vw, 32px);
  border-bottom: 2px solid var(--primary-color);
}

.reach-us-inputs input::placeholder,
.reach-us-form textarea::placeholder {
  text-transform: uppercase;
  font-size: clamp(18px, 3.5vw, 32px);
  color: var(--primary-color);
}

.reach-us-form textarea {
  all: unset;
  resize: none;
  height: 200px;
  padding: 15px;
  font-size: clamp(18px, 3.5vw, 32px);
  border: 2px solid var(--primary-color);
}

.reach-us-btn {
  all: unset;
  width: max-content;
  padding: 10px 40px;
  background-color: var(--submit-btn-bg);
  font-size: 25px;
  text-transform: uppercase;
}

.reach-us-contact {
  display: flex;
  flex-direction: column;
  gap: 50px;
  width: 25%;
}

.reach-us-address {
}

.reachus-address-heading {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.reachus-address-text {
  text-transform: capitalize;
}

.reach-us-address p {
  font-size: 16px;
  font-family: "Inter", sans-serif;
}

.reach-us-tagline {
  font-size: clamp(32px, 5.5vw, 64px);
  text-transform: uppercase;
}

/* Footer Section */
.footer-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-container-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 6px;
  color: var(--primary-color);
  align-items: last baseline;
  border-bottom: 8px solid var(--primary-color);
}

.footer-container-top-heading {
  all: unset;
  font-size: clamp(60px, 8vw, 160px);
  text-transform: uppercase;
}

.footer-container-top-sub-heading {
  font-size: 1.6rem;
  line-height: 110%;
  text-transform: uppercase;
  width: 10rem;
}

.footer-container-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--primary-color);
}

.footer-container-bottom a {
  color: var(--primary-color);
}

.footer-container-bottom-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-address-container {
  max-width: 250px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-address-container-heading {
  font-size: 1.2rem;
  line-height: 110%;
  font-family: "Inter", sans-serif;
  font-weight: bold;
}

.footer-address-container-detail {
  font-family: "Inter", sans-serif;
  text-transform: capitalize;
  font-size: 1rem;
}

.footer-contact-container {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
}

.footer-container-bottom-right {
}

.footer-copyright-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--primary-color);
  margin-top: 5%;
}

.footer-copyright-section a {
  color: var(--primary-color);
}

.footer-copyright {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-copyright img {
  max-width: 130px;
}

.copyright-tag {
  font-size: 1rem;
  font-family: "Inter", sans-serif;
}

.footer-social-icons {
  display: flex;
  gap: 15px;
  font-size: 2rem;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .menu-items {
    display: none;
  }
  .industry-hub {
    display: none;
  }

  .mobile-menu-open-icon {
    display: block;
  }


  .mobile-menus {
    position: fixed;
    background-color: rgb(29, 29, 29);
    width: 100%;
    height: 100vh;
    top: 0;
    left: 100%;
    z-index: 9999;
    display: none;

  }

  .mobile-menus.active {
    left: 0%;
    overflow-y: scroll;
    display: block;
  }

  .mobile-menu-close-icon {
    position: sticky;
    color: #fff;
    left: calc(100% - 60px);
    top: 15px;
    font-size: 38px;
    /* background-color: red; */
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    
  }

  .mobile-menus-items {
    padding-top: 80px;
    padding-bottom: 20px;
    /* height: 100%; */
    padding-left: 10px;
  }

  .mobile-menu-item {
    
  }

  .mobile-menu-item a {
    padding: 10px;
    width: 100%;
    display: block;
    font-size: 1.875rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .28125rem;
    font-weight: 400;
  }

  .mobile-menus-items li:last-child {
    border-top: 2px solid #ffa98f;
  }

  .mobile-menu-address-section {
    padding: 50px 20px;
    background-color: #ffa98f;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .mobile-menu-logo {
    width: 200px;
  }

  .mobile-menu-address {
    text-transform: capitalize;
    font-family: "Inter", sans-serif;
    max-width: 170px;
    line-height: 150%;
    margin-top: 30px;
    font-size: 18px;
  }

  .mobile-menu-contacts {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .mobile-menu-contacts a {
    border-bottom: 1px solid #000;
    width: max-content;
    font-family: "Inter", sans-serif;
    font-size: 18px;
  }


  .home_hero_section {
    height: 100%;
  }

  .hero-heading {
    line-height: 130%;
    letter-spacing: normal;
  }

  .recent-deliveries {
    flex-direction: column;
    height: 100%;
    gap: 50px;
    margin-top: 20%;
  }

  .top-section {
    width: 100%;
    align-items: center;
  }

  .bottom-section {
    width: 100%;
  }

  .slide-btn {
    width: 30px;
    height: 30px;
  }

  .prev-btn {
    left: 0;
  }

  .next-btn {
    right: 0;
  }

  .laptop-mockup-container img {
    width: calc(100% - -4%);
  }

  .laptop-video {
    width: calc(100% - 20%);
  }

  .our-services-container {
    padding: 0;
    gap: 50px;
  }

  .our-services > * {
    scroll-snap-align: start;
  }

  .our-services {
    display: flex;
    gap: 20px;
    overflow-x: scroll;
    scroll-snap-align: start;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none; /* IE & Edge */
    scrollbar-width: none; /* Firefox */
  }

  .our-services::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
  }

  .our-service {
    flex: 0 0 90%;
    padding: 25px;
  }

  .strategies-section {
    height: 100%;
    padding: 5%;
  }

  .business-paragraph {
    font-size: clamp(32px, 5vw, 42px);
  }

  .business-btn {
    padding: 2% 4%;
    font-size: clamp(16px, 3vw, 18px);
  }

  .wp-icon {
    width: 15%;
    top: 1%;
    left: 55%;
  }

  .php-icon {
    top: 10%;
    left: 15%;
    width: 10%;
  }

  .shopify-icon {
    top: 20%;
    left: 40%;
    width: 10%;
  }

  .magento-icon {
    left: 70%;
    top: 20%;
    width: 10%;
  }

  .google-icon {
    top: 70%;
    left: 70%;
    width: 10%;
  }

  .webly-icon {
    left: 20%;
    top: 68%;
    width: 10%;
  }

  .woo-icon {
    left: 45%;
    top: 75%;
    width: 10%;
  }

  .hostinger-icon {
    top: 80%;
    left: 30%;
    width: 10%;
  }

  .laravel-icon {
    top: 85%;
    left: 62%;
    width: 10%;
  }

  .client-slider-section {
    display: block;
    height: 100vh;
    background-color: var(--blue-color);
  }

  .client-slider-wrapper {
    height: 100%;
    overflow-x: hidden;
  }

  .client-slides {
    height: 100%;
    display: flex;
  }

  .client-slide .client-about {
    color: #ffff;
  }

  .client-slide .client-about .client-other-info {
    flex-direction: column;
    align-items: center;
  }

  .client-slide .client-about .client-other-info > div {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .client-slide .client-about .client-info {
    line-height: 130%;
  }

  .client-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 20px;
    flex: 0 0 100%;
  }

  .client-section {
    display: none;
  }

  .cta-banner-container {
    grid-template-columns: 1fr;
  }

  .industries-section-heading {
    width: 100%;
  }

  .works-grid {
    grid-template-columns: 1fr;
  }

  .works-grid > div:nth-child(1) {
    grid-column: 1;
  }

  .works-grid > div:nth-child(1) .work-box-top {
    width: 100%;
  }

  .work-single-wrapper {
    flex-direction: column-reverse;
    gap: 80px;
  }

  .forms_and_contacts-section {
    flex-direction: column;
  }

  .reach-us-form {
    width: 100%;
  }

  .reach-us-contact {
    width: 100%;
  }

  .footer-container-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-container-bottom-left {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-copyright-section {
    flex-direction: column-reverse;
    gap: 20px;
    align-items: flex-start;
  }
}

@media screen and (max-width: 600px) {
  .wp-icon {
    width: 18%;
    top: 8%;
    left: 53%;
  }

  .php-icon {
    top: 18%;
    left: 10%;
    width: 14%;
  }

  .shopify-icon {
    top: 22%;
    left: 40%;
    width: 12%;
  }

  .magento-icon {
    left: 75%;
    top: 21%;
    width: 15%;
  }

  .google-icon {
    top: 65%;
    left: 75%;
    width: 13%;
  }

  .webly-icon {
    left: 7%;
    top: 65%;
    width: 12%;
  }

  .woo-icon {
    left: 40%;
    top: 70%;
    width: 14%;
  }

  .hostinger-icon {
    top: 80%;
    left: 20%;
    width: 14%;
  }

  .laravel-icon {
    top: 83%;
    left: 62%;
    width: 13%;
  }
}

@media screen and (max-width: 480px) {
  .recent-work-desktop-container {
    top: 150px;
    height: 100%;
  }

  .recent-work-mobile-container {
    /* height: 100%; */
    /* top: 120px; */
  }

  .recent-work-mobile {
    grid-template-columns: repeat(auto-fit, minmax(200px, 250px));
    justify-content: center;
  }

  .video-overlay {
    border-radius: 25px;
  }
}
